/*:root{*/
    /* colors */
    /*--color-primary: #FDE100;
    --color-white: #fff;
    --color-background: #FDFCF2;
    --color-text: #1D1D1D;*/


    /* spaces */
    /*--spacing-small: 1rem;
    --spacing-medium: 16px;
    --spacing-large: 100px;*/

    /* Typography */
    /*--fs-heading-1: 54px;
    --fs-heading-2: 39px;
    --fs-heading-3: 33px;
    --fs-heading-4: 27px;
    --fs-heading-5: 23px;
    --fs-heading-6: 19px;
    --fs-text: 16px;
    --fs-small: 13px;
    --fs-xs: 11px;

    --wrapper-inline: 16px;
    --radius: 4px;
}*/

    /* ------- */
/* ---- Navigation ---- */
    /* ------- */


    .nav__mobile-search{
        display: none;
    }

/* logo color */
.nav-container.to-white .logo-sec{
    fill: #242424;
    transition: 0.7s all ease;
}
.nav-container.to-white .logo-primary{
    fill: black;
    transition: 0.7s all ease;
}

.nav-container .logo-sec{
    fill: #BCBCBC;
    transition: 0.7s all ease;
}
.nav-container .logo-primary{
    fill: white;
    transition: 0.7s all ease;
}

.logo-container {
    display: flex;
    width: 200px;
}
.logo-container svg{
    width: 200px;
    transition: 0.7s all ease;
}

.nav-container{
    display: flex;
    justify-content: center;
}

.nav-container.is-scrolled.to-white .logo-container{
    display: flex;
    justify-content: center;
}

.nav-container.is-scrolled.to-white .logo-container svg{
    width: 150px;
}

.logo-w .logo-sec{
    fill: #BCBCBC;
}
.logo-w .logo-primary{
    fill: white;
}

.logo-b  .logo-sec{
    fill: #242424;
}
.logo-b  .logo-primary{
    fill: black;
}

.logo-w .logo-sec{
    fill: #BCBCBC;
}
.logo-w .logo-primary{
    fill: white;
}

.vmodal {
    z-index: 10000;
}
/* Nav wrapper */
.nav-container{
    padding: 24px 40px;
    position: fixed;
    width: 100%;
    transition: 0.5s all ease;
    background-color: #ffffff00;
    transition: 0.7s all ease;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
   
}

.is-scrolled.nav-container{
    padding: 12px 20px;
    transition: 0.5s all ease;
}

.nav-container.to-white{
    background-color: white;
    /* height: 100%;
    max-height: 70px; */
    box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    transition: 0.7s all ease;
}

/* Nav top content */
.nav__top-container{
    display: flex;
    justify-content: end;
    height: 100%;
    overflow: hidden;
}

.is-scrolled .nav__top-container{
    height: 0;
}

.nav__top-content{
    display: flex;
    gap: var(--spacing-small)
}

.nav__secondary-links{
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 300;
}

.hideOnMobile {
    display:block;
}

@media screen and (max-width:1250px) {
    .hideOnMobile {
        display:none !important;
    }
}

.nav-container.to-white .nav__secondary-links{
    color: var(--fs-text);
}

.nav__secondary-links .icon-color{
    fill: white;
}

.to-white .nav__secondary-links .icon-color{
    fill: var(--color-text);
}

.nav__mobile-btn{
    display: none;
    cursor: pointer;
}

.nav__mobile-btn .icon-stroke{
    stroke: white;
}

.to-white .nav__mobile-btn .icon-stroke{
    stroke: var(--color-text);
}



/* Nav main content */
.nav__main-content {
    width: 100%;
    display: grid;
    grid-template-columns: 180px auto;
    align-items: center;
    justify-content: space-between;
   
}
.nav__main-links{
    display: flex;
    gap: var(--spacing-small);
    padding: 0;
    margin: 0;
}
.nav__main-link a {
    color: white;
    font-size: 15px;
    font-weight: 500;
    transition: 0.7s all ease;
}

.nav-container.to-white .nav__main-link a{
   color: black;

}

.nav__main-link a::after {
    content: "";
    display: block;
    width: 0;
    border-bottom: 2px solid var(--color-primary);
    transition: width 0.7s ease; /* Add transition to animate width */
}

.nav__main-link a:hover {
    color: var(--color-primary);   
}

.nav__main-link a:hover::after {
    width: 100%;  
}


/* Nav search */
.nav__search-container {
    display: flex;
    justify-content: end;
    padding-top: 16px;
    border-top: 1px solid #ffffff4a;
}

.nav-container.is-scrolled.to-white .nav__search-container {
    display: none;
}
/*    .nav__search-container:before {
        width: 95%;
        height: 1px;
        background-color: white;
        display: block;
        content: "";
        position: absolute;
        left: 2.5%;
    }*/
.nav__search-content {
    display: flex;
    height: 37px;
    opacity: 1;
    overflow: hidden;
    transition: 0.3s all ease;
    /* gap: var(--spacing-small); */
}

.is-scrolled .nav__search-content{
    height: 0px;
    opacity: 0;
    transition: 0.3s all ease;
}

.search-icon{
    display: flex;
    align-items: center;
}

.search-icon .icon-color{
    fill: white;
}

.search-icon-mobile{
    display: flex;
}

.search-icon-mobile .icon-color{
    fill: white;
}

.to-white .search-icon-mobile .icon-color{
    fill: var(--color-text);
}

.to-white .search-icon .icon-color{
    fill: var(--color-text);
}

.search-icon::after{
    content: "";
    display: block;
    border-right: 1px solid white;
    color: white;
    height: 100%;
    padding-right: 16px;
    transition: 0.7s all ease;
}

.to-white .search-icon::after{
    transition: 0.7s all ease;
    border-right: 1px solid var(--color-text);
    color: var(--color-text);
    
}

.search-input {
    background-color: #ffffff00 !important;
    outline: none !important;
    border: 1px solid #ffffff00 !important;
    min-width: 248px !important;
    padding: 8px !important;
    font-size: var(--fs-small) !important;
    color: white ;
}

.to-white .search-input{
    color: var(--fs-text);
    transition: 0.7s all ease;
}

.search-input::placeholder{
    color: rgba(255, 255, 255, 0.596);
}
.to-white .search-input::placeholder{
    color: rgba(36, 36, 36, 0.596);
}

.nav__search-btn{
    text-transform: uppercase;
    padding: 8px 28px;
    border-radius: var(--radius);
    background-color: #FDE100 !important;
    font-size: var(--fs-small);
    font-weight: 300;
    outline: none;
    border: none;
}

.nav__mobile-search-container{
    display: none;
}

@media(max-width: 1250px){
    .nav-container{
        padding: 24px 16px;
    }
    .is-scrolled.nav-container{
        padding: 12px 16px;
    }
    .nav__top-content{
        display: none;
    }
    .nav__main-links{
        display: none;
    }
    .nav__search-container{
        display: none;
    }
    .nav__mobile-btn{
        display: flex;
    }
    .nav__mobile-search{
        display: flex;
        cursor: pointer;
    }
    .nav__main-content{
        display: grid;
        grid-template-columns: auto 200px auto;
    }
    .nav__mobile-search-container{
        position: absolute;
        top: 80px;
        width: 95%;
        height: 0;
        overflow: hidden;
        display: block;
        transition: 0.7s all ease;
        left: 2.5%;
    }

        .nav__mobile-search-container.is-open {
            height: 50px;
            border: 1px solid #cacaca;
            border-radius: 8px;
        }
        .nav__mobile-search-container input {
            background: rgba(255, 255, 255, 0.52);
            box-shadow: -1px 8px 32px rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(2px) saturate(150%);
            -webkit-backdrop-filter: blur(2px) saturate(150%);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: black;
            width: 100%;
            padding: 0 20px;
            height: 50px;
            border-radius: var(--radius);
            font-size: var(--fs-text);
        }

    
    .mobile-search-btn{
        background-color: var(--color-primary) !important;
        width: fit-content !important;
        border-radius: var(--radius);
        width: 50px !important;
        height: 50px;
        display: flex;
        border: none;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        right: 0;
        box-shadow: 0 0px 10px rgba(0,0,0,0.3);
        opacity: 0;
    }
    .mobile-search-btn.show{
    opacity: 1;
    }
}




/* Nav mobile modals */

.close-modal__btn{
    cursor: pointer;
}

.nav__mobile-modal{
    position: fixed;
    background-color: white;
    top: -100vh;
    height: 100%;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0% 0%);
    transition: 0.7s all ease;
}
.nav__mobile-modal.is-open{
    top: 0;
   clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    transition: 0.7s all ease;
}

.modal-top{
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    height: 60px;
    position: relative;
    align-items: center;
    width: 95%;
    margin:  0 auto;
}
.modal-top p{
    font-weight: 600;
    position: absolute;
    left: 50%;
    font-size: 20px;
    transform: translateX(-50%);
}
.logo-content{
    width: 150px;
    display: flex
;
}
.logo-content img{
    width: 100%;
    height: 100%;
}
.nav__mobile-links ul{
    display: flex;
    flex-direction: column;
    padding-inline: 16px;
}
.nav-mob__main-link{
    padding: 8px 0;
    border-bottom: 1px solid #DCDCDC;
}

.nav-mob__main-link a{
    font-size: var(--fs-heading-6);
    font-weight: 100;
}
.nav-mob__btns{
    padding-inline: 16px;
}
.nav-mob__btns-content{
    display: flex;
   
    gap: 16px;
}

@media(max-width: 470px){
    .nav-mob__btns-content {
        flex-direction: column;
    }
}
   

    .nav-mob__btns-content a {
        width: 100%;
    }

/* Destinations modal */
.nav-modal__destination {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0% 0%);
    opacity: 1; /* Fallback for older browsers */
    display: none; /* Start hidden */
}

.nav-modal__destination.show {
    display: block; /* Ensure it's visible */
}

.nav-modal__trips{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    /* clip-path: polygon(0 0, 100% 0, 100% 0%, 0% 0%); */
    opacity: 1; /* Fallback for older browsers */
    display: none; /* Start hidden */
}
.nav-modal__trips.show{
    display: block;
}


.nav-modal__sxetika{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    /* clip-path: polygon(0 0, 100% 0, 100% 0%, 0% 0%); */
    opacity: 1; /* Fallback for older browsers */
    display: none; /* Start hidden */
}
.nav-modal__sxetika.show{
    display: block;
}

.nav-modal__sxetika-content{
    width: 95%;
    margin: 0 auto;
    display: grid
;
    grid-template-columns: 1fr 1fr;
    height: calc(100vh - 60px);
    gap: 100px;
}
.nav-modal__photos-sxetika{
    width: 100%;
    position: relative;
    
}

.nav-modal__photos-sxetika li{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.nav-modal__photos-sxetika li img{
    width: 100%;
}

.nav-modal__sxetika__links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.sxetika-link{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.main-destination h1{
    color: #BABABA;
    transition: 0.3s all ease;
}
.main-destination:hover h1{
    color: var(--color-text);
}

.main-destination.active h1{
    color: var(--color-text);
}


.main-destination h1{
    width: fit-content;
    font-size: var(--fs-heading-1);
   
    font-weight: 400;
}

.main-destination h1::after{
    display: block;
    content: "";
    width:0;
    height: 2px;
    background-color: var(--color-primary);
    position: relative;
    transition: 0.3s all ease;
}

.main-destination.active h1::after{
    width: 100%;
}

.main-destination:hover h1::after{
    width: 100%;
}

.nav-modal__destination__links .destination{
    display: grid;
    grid-template-columns: 280px auto;
    gap: 2rem;
    position: relative;
}
.second-destinations{
    position: absolute;
    top: 0;
    left: 300px;
    opacity: 0;
    z-index: 999;
    transition: 0.6s all ease;
}

.second-destinations.show{
    opacity: 1;
    transition: 0.6s all ease;
}

.second-destinations ul{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.second-destinations li a{
    color: #bababa;
    font-size: var(--fs-heading-4);
    transition: 0.3s all ease;
}

.second-destinations li:hover a{
    color: var(--color-text)
}
.nav-modal__destination-content{
    display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        height: calc(100% - 60px);
        align-items: center;
        margin-top: 0;
}
.nav-modal__photos {
    position: relative;
    transform: rotate(0deg) !important;
    height: 100%;
    display: flex;
    align-items: center;
}

.destination-img {
    width: 45vh;
    /* max-width: 400px; */
    height: 60vh;
    position: absolute;
    top: 50%;
    left: 50%;
    box-shadow: 0 10px 10px rgba(0,0,0,0.2);
    transform: translate(-50%, -50%);
    opacity: 0;
    aspect-ratio: 0.7 !important;
    /* transition: 0.5s all ease; */
    overflow: hidden;
}

.destination-img.show{
    opacity: 1;
}


.destination-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 
.destination-style-1{
    transform: translate(-50%, -50%) rotate(5deg);
}
.destination-style-2{
    transform: translate(-50%, -50%) rotate(-5deg);
}
.destination-style-3{
    transform: translate(-50%, -50%) rotate(10deg);
} */




/* .nav-modal__photos ul li{
    width: 400px;
    height: 600px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    right: 0;
   
} */

/* .nav-modal__photos ul li:nth-child(1) {
    transform: translate(-50%, -50%) rotate(5deg);
 }
 .nav-modal__photos ul li:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-10deg);
 }
 .nav-modal__photos ul li:nth-child(3) {
    transform: translate(-50%, -50%) rotate(10deg);
 }
 .nav-modal__photos ul li:nth-child(4) {
    transform: translate(-50%, -50%) rotate(-5deg);
 }
 .nav-modal__photos ul li:nth-child(5) {
    transform: translate(-50%, -50%) rotate(5deg);
 }
 .nav-modal__photos ul li:nth-child(6) {
    transform: translate(-50%, -50%) rotate(-10deg);
 } */

@media(max-width: 1120px){
    .main-destination h1{
        font-size: var(--fs-heading-2);
    }
    .destination-img{
        width: 300px;
        height: 500px;
    }
    .nav-modal__destination__links{
        width: fit-content;
    display: flex
;
    justify-content: center;
    flex-direction: column;
    justify-self: center;
    }
    .nav-modal__destination__links .destination{
        gap: 1rem;
        grid-template-columns: 180px auto;
    }
    .second-destinations{
        left: 200px;
    }
}

.mob-nav-title{
    opacity: 0;
}
.mob-wrapper {
    padding: 0 var(--wrapper-inline);
    height: calc(100dvh - 30px);
    overflow: auto;
    transform: none;
}
/* .mob-wrapper {
    transition: opacity 0.5s ease, transform 0.5s ease;
  } */

.mob-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar in WebKit browsers (Chrome, Safari) */
}
.back-to-main{
    text-align: center;
}
.back-to-main .mob-nav-heading{
    font-size: var(--fs-heading-1);
    line-height: 40px;
}

.mob-destinations__link-container{
    display: grid
    ;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 350px 350px 350px;
        gap: 20px;
        margin-top: 40px;
}

.mob-destinations__link-destination{
    position: relative;
}
.mob-destinations__link-destination h1{
    position: absolute;
    top: 20px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    color: white;
    font-size: var(--fs-heading-4);
}

.mob-link__img-placeholder{
height: 100%;
width: 100%;

}
.mob-link__img-placeholder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mob-link__img-overlay{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.39);
}

.mob__subdestinations-options__container{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
}


.mob__subdestinations-options__content{
   position: absolute;
   bottom: -100vh;
   width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 16px 0 0 0px;
    box-shadow: 0 -10px 10px rgba(0,0,0,0.3);
    border-radius: 12px 12px 0 0;
}

.mob__subdestinations-options__container .main-destination{
    width: 100%;
    background-color: #FDE100;
    padding: 16px;
}

/* .mob__subdestinations-options__container{
    top: -100%;
} */

@media(max-width: 550px){
    .mob-destinations__link-container{
        padding: 20px;
            grid-template-rows: 260px 260px 260px;
            
    }
    
}



/* Nav trips */
/*.nav-trips__fullpage{
    display: none;
}
*/
.atomika-fullpage {
    display: none;
}


.nav-trips__tab {
    padding: 16px;
    margin: 0 auto;
    width: 95%;
    display: flex;
    gap: 16px;
}



.nav-trips__tab h1{
    font-size: var(--fs-heading-4);
    font-weight: 500;
}

.nav-trips__tab a::after {
    content: "";
    display: block;
    width: 0;
    border-bottom: 2px solid var(--color-primary);
    transition: width 0.7s ease; /* Add transition to animate width */
}

.nav-trips__tab a:hover {
    color: var(--color-primary);   
}

.nav-trips__tab a:hover::after {
    width: 100%;  
}

.nav-trips__tab .nav-trips__tab-link.active::after{
    width: 100%;  
}

.nav-trips__wrapper{
    padding: 16px;
    width: 95%;
    margin: 0 auto;
}

.trip-type{
    display: flex;
}

.nav-trips__links-heading{
    position: relative;
    position: relative;
    width: fit-content;
}

.nav-trips__links h1{
    font-size: var(--fs-heading-1);
    z-index: 9;
    position: relative;
    line-height: 33.6px;
    font-weight: 500;
    
}
.nav-trips__links-heading::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    background-color: var(--color-primary);
    z-index: 1;
    opacity: 0.4;
    left: 20px;
    top: 20px;
}

.trip-types__links{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}

.trip-types__links li a{
    font-size: var(--fs-heading-3);
    font-weight: 300;
    opacity: 0.4;
    cursor: pointer;
    transition: 0.3s all ease;
}

.trip-types__links li a:hover{
    opacity: 1;
}

.trip-interests__links {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: auto;
    height: 70vh;
}
    .trip-interests__links::-webkit-scrollbar {
        width: 8px; /* Width of the scrollbar */
    }

    .trip-interests__links::-webkit-scrollbar-track {
        background: #f1f1f1; /* Track color */
        border-radius: 10px;
    }

    .trip-interests__links::-webkit-scrollbar-thumb {
        background: #fff; /* Scrollbar handle color */
        border-radius: 10px;
    }

        .trip-interests__links::-webkit-scrollbar-thumb:hover {
            background: #fff; /* Handle color on hover */
        }
.trip-interests__links {
    scrollbar-width: thin;
    scrollbar-color: #888 #fff;
}


.trip-interests__links li a{
    font-size: var(--fs-heading-3);
    font-weight: 300;
    opacity: 0.4;
    transition: 0.3s all ease;
}

.trip-interests__links li a:hover{
    opacity: 1;
}



.trip-season__links {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 70vh;
    overflow: auto;
    padding-right: 40px;
}
    .trip-season__links::-webkit-scrollbar {
        width: 8px; /* Width of the scrollbar */
        border-radius: 10px;
    }

    .trip-season__links::-webkit-scrollbar-track {
        background: #f1f1f1; /* Track color */
        border-radius: 10px;
    }

    .trip-season__links::-webkit-scrollbar-thumb {
        background: #fff; /* Scrollbar handle color */
        border-radius: 10px;
    }

        .trip-season__links::-webkit-scrollbar-thumb:hover {
            background: #fff; /* Handle color on hover */
        }

.trip-season__links {
    scrollbar-width: thin;
    scrollbar-color: #888 #fff;
    border-radius: 10px;
}



.trip-season__links li a{
    font-size: var(--fs-heading-3);
    font-weight: 300;
    opacity: 0.4;
    transition: 0.3s all ease;
}

.trip-season__links li a:hover{
    opacity: 1;
}



.nav-trips__images{
    width: 50%;
    /* border: 1px solid black; */
    display: flex;
    justify-content: center;
}
.nav-trips__image-placeholder{
    width: 40vh;
    height: 60vh;
    display: flex;
    justify-content: end;
/*    height: 600px;*/
    position: absolute;
    /* top: 50%; */
    /* left: 50%; */
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    /* transform: translate(-50%, -50%); */
     opacity: 0; 
    /* transition: 0.5s all ease; */
    overflow: hidden;
}

    .nav-trips__image-placeholder:first-child {
        opacity: 1;
    }

    .nav-trips__images trip-types__img {
        position: relative;
    }


.nav-trips__image-placeholder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-trips__wrapper .trip-container {
    display: none;
  }
  
  .nav-trips__wrapper .trip-container .trip-type {
    display: flex;
  }

/* Trip mobile wrapper */
  .mob-trip__wrapper{
    text-align: center;
    z-index: 90;
  }

  .mob-trip__wrapper .mob-nav-heading{
    font-size: 54px;
    line-height: 60px;
    font-weight:500;
  }

.mob-nav__links a {
    font-weight: 300;
  
}

.mob-nav__links{
    padding-bottom: 100px;
}

.trip-tab-container {
    position: fixed;
    bottom: -1000px;
    left: 0;
    background-color: white;
    width: 100%;
    padding: 16px 16px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.057);
    z-index: 9999;
}

  .trip-tab{
    padding: 8px 8px;
    border-radius: 8px;
  }
  .trip-tab.active{
    background-color: var(--color-primary);
  }

  .mob-nav__links li a{
    font-size: var(--fs-heading-5);
  }

.sxetika-link-item h1{
    font-size: 54px;
    font-weight: 400;
}


.atomika-mob-container{
    opacity: 0;
    overflow: hidden;
}

.argia-title {
    font-size: 40px !important;
    margin-top: 20px;
}

.period-title {
    font-size: 40px !important;
    margin-top: 20px;
}

.mob-period-title{
    font-size: 28px;
    margin-top: 20px;
}

.mob-nav__links li{
    list-style: none;
}

[data-mob-wrapper="sxetika"],
[data-mob-wrapper="trips"] {
    opacity: 0;
}



@media(max-width: 1250px){
    .nav-modal__destination, .nav-modal__trips, .nav-modal__sxetika {
        display: none !important;
    }
}


@media (min-width: 1250px) {
    .nav__mobile-modal {
        display: none;
    }
}

.mob__quick-links {
    margin-top: 20px;
    padding-inline: 16px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 40px;
}

.mob__quick-links a {
    color: black
}

    .mob__quick-links a .icon-color{
        fill: black;
    }

@media(max-width: 1250px) {
    

    .nav-container .nav__mobile-search-container {
        top: 80px;
    }

    .nav-container.is-scrolled .nav__mobile-search-container {
        top: 70px;
    }
    

    .nav-container.navStable.to-white .nav__mobile-search-container {
        top: 110px;
    }

    .nav-container.navStable.to-white.is-scrolled .nav__mobile-search-container {
        top: 70px;
    }
}