/* FULL MENU CSS */
.fullMenu {
    display: none;  
    position: fixed;
    
    width: 100%;
    height: 100%;
    background-color: #2F4460;
    z-index: 9000;
    color: #ffffff;
    overflow: hidden;

    align-items: center;
    font-family: fabrikatbold,sans-serif;
    background-image: url("../img/network.webp");
    background-size: cover;
    background-position: center;
}
.fullMenu.active {
    display: block; 
    animation-name: popup;
    animation-duration: .4s;
    animation-timing-function: ease-in-out;
}
@keyframes popup {
    from {top: 730px}
    to {top: 0px;}
  }

.fullMenu #particles-js {
    left:10%;
    width: 60%;
    opacity:.7;
}

.fullMenu .holder {
    width: 100%;
    padding: 3rem;

}


.fullMenu.mobile {
    width: initial;

}
.fullMenu.mobile .holder {
    
    padding: 2rem;

}

.fullMenu .menuHeader {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    justify-content: space-between;
}

.fullMenu .menuHeader img {

    width: 140px;
    height: auto;
    border-bottom: 2px solid #e94f3d;
}

.fullMenu .menuHeader #hideFullMenu {
    color: #fff;
    font-size: 1rem;
}


.fullMenu.mobile .menuHeader #hideFullMenu {
    position: absolute;
    left: 90vw;
}

@media only screen and (max-width: 600px) {
    .fullMenu.mobile .menuHeader #hideFullMenu {
        left: 80vw;
    }
}


.fullMenu .cols {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-grow: 0;
    
    padding: 2rem 3rem;
    max-width: 1200px;
}

.fullMenu .col {
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    padding: 0 40px;  
}

.fullMenu.mobile .col {
    width: 100vw;
    margin-top: 3rem;
}

.fullMenu button {
    display: none;
    position: absolute;
    top: -50px;
    border: 0;
    background-color: transparent;
    color: #fff;
    padding: 0;
}

.fullMenu .allLink {
    font-size: 1.4rem;
    margin-top: 20px;
    display: none;
}
.fullMenu .allLink.active {
    color: #ffffff;
    display:block;
}

.fullMenu .allLink a {
    color: #ffffff;
    
    display: inline-block;
}

.fullMenu button {
    display: none
}

.fullMenu.mobile button {
    display: block
}

.fullMenu .col1 {
    padding: 0;
}

.fullMenu .col2,
.fullMenu .col3 {
    border-left: 2px solid #e94f3d
}

.fullMenu .col .menu {
    display: inline-block;
    color: #ffffff55;
    font-size: 1.8rem;
    line-height: 2;

    white-space: nowrap;
    font-family: fabrikatbold,sans-serif;
    font-weight: 500;
    position: relative;
    width: fit-content;

    transition: color .4s ease;
}
.fullMenu .col1 .menu.init {
    
    color: #ffffff;
    
}

.fullMenu .col2 .menu,
.fullMenu .col3 .menu {
    font-size: 1.6rem;
    line-height: 1.8;
}

.fullMenu .col1 .menu.small {
    font-size: 1.4rem;
    line-height: 1.8;
    
}
.fullMenu .col1 a#menu1216,
.fullMenu .col1 a#menu1419 {
    margin-top:20px; 
}


.fullMenu .col2 a.haschildren:after,
.fullMenu .allLink:after {
    display: inline-block;
    content: "";
    width: 18px;
    height: 14px;
    position: relative;
    margin-left: 10px;
    background-image: url("/wp-content/themes/base-child/img/icon-arrow.svg");
    
    background-size:cover;
    opacity:.3;
}

.fullMenu .col1 a.hovered,
.fullMenu .col2 a.hovered,
.fullMenu .col3 a:hover {
    color: #ffffff;
    
    font-weight: 500;
}

.fullMenu .col2 .menu,
.fullMenu .col3 .menu {
    display: block;
    opacity: 0;
    height: 0;
}

.fullMenu .col2 a.active,
.fullMenu .col3 a.active {
    display: block;
    opacity: 1;
    height: 46px;
    transition: opacity 1s ease;
}

#menu1419 {
    background-color: #ffffff;
    color: #e94f3d;
    padding: 3px 15px;
    margin-top: 10px;
}