.menu-selector {
    border-bottom: 1px solid var(--grey);
    padding: 0em 5vw;
    position: sticky;
    /* width: 90vw; */
    top: var(--header-height);
    margin: 0 auto;
    z-index: 9;
    background-color: var(--white);
    transition: top 300ms ease-out;
}
.sticky .menu-selector {
    top: 0;
}
.sticky.up-scroll .menu-selector{
    top: calc(var(--header-height) * 1); 
}
.menu-selector .menu {
    display: flex;
    justify-content: space-between;
    list-style: none;
    font-weight: 500;
    font-size: 1em;
    padding: 0 0px;
    margin: 0;
}

.menu-selector .menu a{
    color: #000;
    opacity: .4;
    transition: .35s;
    padding: 2em 0px;
    display: flex;
    text-decoration: none;
}

.menu-selector .current-menu-item a{
    opacity: 1;
    font-size: 1em;
}

.menu-follower{
    display: block;
    height: 2px;
    background-color: var(--orange);
    position: absolute;
    bottom: -2px;
    left: 118px;
    z-index: 2;
    width: 103px;
    opacity: 0;
    display: none;
    transition: .35s ease;
}


@media screen and (max-width: 1280px), screen and (max-height: 1024px)
{

}


@media (max-width: 1200px) {

}
/* IPAD PRO */
@media (max-width: 1024px) {
    .menu-selector {
        padding: 0em 0vw;
        width: 90vw;
        text-align: center;
    }
}

@media (max-width: 992px) {

}

/* IPAD */
@media (max-width: 768px) {
    .menu-selector .menu a {
        letter-spacing: 1px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .menu-selector {
        display: none;
    }
    .footerReached .menu-selector {
        transform: translate(0px, 100%);
    }
    .menu-menu-pages-container{
        overflow-x: auto;
    }
    .menu-selector .menu {
        flex-wrap: nowrap;
        width: fit-content;
        padding: 0px;
    }
    .menu-selector .menu li {
        width: max-content;
        display: inline-flex;
        padding: 0px;
    }
    .menu-selector ul li a {
        color: #000!important;
        padding: 30px 15px 80px 15px!important;
        margin-right: 15px;
        margin-left: 15px;
    }
    .menu-selector .menu a {
        opacity: 0.7;
    }
}









