body {
    position: relative;
    height: 100vh;
    /*overflow: hidden;*/
    overflow-y: auto;
    font-family: "Work Sans", sans-serif;
}


.header{
    position: absolute;
    width: 100%;
    top: 20px;
    left: 0;
    background: transparent;
}
.header-container{
    position: relative;
    width: 100%;
    max-width: 1200px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #f8f8f8;
    padding: 15px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
}

.header.header-fixed{
    position: fixed;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #f8f8f8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
    z-index: 9999;
}
.header.header-fixed .header-container{
    border: none;
    box-shadow: none;
}

.header.scrolled{
    position: fixed;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #f8f8f8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
    z-index: 9999;
}
.header.scrolled .header-container{
    border: none;
    box-shadow: none;
}
.header-logo{
    width: 70px;
}
.header-head{
    position: absolute;
    top: 15px;
    font-size: 0.8em;
    font-weight: 400;
    font-family: "Oswald", sans-serif;
    letter-spacing: 1.2px;
    color: #999;
}

header ul.nav{
    display: flex;
    gap: 32px;
    margin: 0 0 0 30px;
    border-left: 1px solid #f1f1f1;
    padding: 25px 25px 0;
    list-style: none;
    /*width: 100%;*/
    /*margin-left: auto;*/
}
header .nav a{
    font-weight: 600;
    font-size: 0.9em;
    color: #212529;
    font-family: "Oswald", sans-serif;
    transition: color 0.3s ease;
}
header .nav a:hover{
    color: var(--accent);
}


header ul.nav li.dropdown{
}
header ul.nav li.dropdown a{
    display: flex;
    align-items: center;
    gap: 8px;
}
header ul.nav li.dropdown i{
    color: var(--secondary);
}
header ul.nav li.dropdown img{
    margin-top: 1px;
}
header #menu_toggle{
    display: none;
}
header #menu_toggle {
    user-select: none;
    transition: transform 0.4s ease, color 0.3s;
    cursor: pointer;
}
header #menu_toggle.active {
    transform: rotate(90deg);
}

#menu_overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    overflow: hidden;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.4s ease-in-out;
    pointer-events: none;
    z-index: 8888;
    height: 100vh;
    padding-top: 80px;
    box-sizing: border-box;
}
#menu_overlay.active {
    transform: scaleY(1);
    pointer-events: auto;
}
#menu_overlay ul.nav{
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
}
#menu_overlay ul.nav li > span{
    font-family: "Oswald", sans-serif;
    font-size: 0.8em;
    font-weight: 400;
    letter-spacing: 1.2px;
    color: #999;
}
#menu_overlay ul.nav li a{
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: 1em;
    color: #212529;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}
#menu_overlay ul.nav li a:hover{
    color: var(--accent);
}
#menu_overlay ul.nav.nav-separated{
    /*border-top: 1px solid #f1f1f1;*/
    padding-top: 30px;
}



.lang-switcher {
    position: relative;
}
.lang-switcher .dropdown-toggle {
    /*display: flex;*/
    /*align-items: center;*/
    /*gap: 6px;*/
    /*cursor: pointer;*/
}
.lang-switcher .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 160px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
}
.lang-switcher:hover .dropdown-menu,
.lang-switcher:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-switcher .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    white-space: nowrap;
}
.lang-switcher .dropdown-menu li a:hover {
    background: rgba(0,0,0,.05);
}

.lang-switcher i {
    transition: transform .2s ease;
}
.lang-switcher:hover i {
    transform: rotate(180deg);
}







.slider{
    position: absolute;
    width: 100%;
    height: 800px;
}
.slider .slide {
    position: absolute;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s ease;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: kenburns 10s ease-out forwards;
}
@keyframes kenburns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.15);
    }
}
.slider-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #00000035;
}
.slider .wrapper{
    position: relative;
    margin-top: 250px;
    padding: 30px;
    box-sizing: border-box;
}
.slider .wrapper h1{
    font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 4rem);
    max-width: 600px;
    color: #fff;
    font-family: "Oswald", sans-serif;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .4), 0 1px 2px rgba(0, 0, 0, .6);
}
.slider .wrapper h1 div{
    font-size: clamp(2rem, 5vw, 3.4rem);
}
.slider .wrapper h1 span{
    display: flex;
    font-size: clamp(1rem, 5vw, 1.2rem);
    align-items: center;
    gap: 6px;
}
.slider .separator-mountain{
    width: 100%;
    position: absolute;
    height: 110px;
    background: transparent url(/assets/img/patterns/mountains_pattern_05.png) repeat-x left top;
    bottom: 0;
}
.slider-right{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}
.slider-right h2{
    font-weight: 700;
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-family: "Oswald", sans-serif;
    color: var(--secondary);
    /*text-shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .1);*/
}
.slider-caption-bg {
    position: relative;
    width: 100%;
    height: 100px;
    background: var(--secondary); /* la couleur que tu veux */
    -webkit-mask: url("/assets/img/slider/slide-img.webp") no-repeat center;
    mask: url("/assets/img/slider/slide-img.webp") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}
.slider-caption h2{
    position: absolute;
    top: 0;
    font-weight: 700;
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    font-family: "Oswald", sans-serif;
    color: #fff;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
}
.countdown {
    display: flex;
    gap: 30px;
    color: #fff;
    margin-left: auto;
}
.countdown .time {
    background: var(--secondary);
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.countdown .num {
    display: block;
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    text-align: center;
}

.countdown .label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    opacity: 0.9;
    width: 100%;
    text-align: center;
}
.slider-bottom{
    z-index: 1000;
    display: block;
    position: absolute;
    top: 800px;
    height: 60px;
    width: 100%;
    background-color: #fff;
}
.slider-end{
    padding-top: 870px;
}




.btn-slash {
    position: relative;
    background: var(--secondary);
    border: none;
    color: #fff;
    padding: 16px 48px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    clip-path: polygon(
            10% 0%,
            100% 0%,
            90% 100%,
            0% 100%
    );
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-slash span {
    position: relative;
    z-index: 2;
}

.btn-slash:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}




/*
.btn-slash-fill {
    position: relative;
    background: transparent;
    color: #fff;
    padding: 16px 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
    overflow: hidden;
    background: var(--secondary);
    clip-path: polygon(
            10% 0%,
            100% 0%,
            90% 100%,
            0% 100%
    );
    transition: color 0.3s ease;
}
.btn-slash-fill span {
    position: relative;
    z-index: 2;
}
.btn-slash-fill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 1;
    clip-path: inherit;
}
.btn-slash-fill:hover::before {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.btn-slash-fill:hover {
    color: #fff;
}*/

section .wrapper{
    max-width: 1100px !important;
}


section h3{
    position: relative;
    font-family: Oswald, sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 5vw, 2rem);
    text-transform: uppercase;
}
section h3::before{
    position: absolute;
    content: '';
    width: 50px;
    height: 6px;
    bottom: -8px;
    left: 0;
    background: var(--accent);
}

section h4{
    font-family: Oswald, sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 5vw, 1.5rem);
}

.section-bg{
    background-image: url(/assets/img/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: block;
}
.section-bg::after {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    opacity: .7;
    z-index: 10;
    background: linear-gradient(to right, #fff, #fff);
}
.section-bg .section-container{
    position: relative;
    z-index: 100 !important;
}


.actus{}
.actus a{
    color: #333;
    transition: margin-top 0.3s ease;
}
.actus a:hover{
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11), 0 5px 15px 0 rgba(0, 0, 0, 0.08);
    /*margin-top: -10px;*/
}
.actus img{
    width: 100%;
    height: 100%;
    max-height: 250px;
    object-fit: cover;
    object-position: center;

}






footer{
    position: relative;
    background: var(--secondary);
    color: #fff;
    padding-bottom: 40px;
}
footer::before{
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    height: 110px;
    background: transparent url(/assets/img/patterns/mountains_pattern_06.png) repeat-x left top;
    top: -110px;
    left: 0;
}
footer .footer-block{}
footer .footer-block h3{
    font-family: Oswald, sans-serif;
    max-width: 70%;
}
footer .footer-block a{
    color: #fff;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    margin-top: 5px;
}
footer .footer-block a:hover{
    text-decoration: none;
    color: var(--accent);
}
footer a.link{}
footer a.link:hover{
    text-decoration: underline;
}
footer .social{
    display: flex;
    gap: 15px;
}
footer .social svg{
    width: 24px;
    color: #fff;
    transition: color 0.3s ease-in-out;
}
footer .social svg:hover{
    color: var(--accent);
}




section.section-white{ background: #fff; }
section.section-grey{ background: #F7F8F9; }
section.section-black{ background: #212529; }

section.section-black-mountain{
    position: relative;
    background: #212529;
}
section.section-black-mountain::before{
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    height: 110px;
    background: transparent url(/assets/img/patterns/mountains_pattern_06.png) repeat-x left top;
    top: -110px;
    left: 0;
}

section.section-track{
    position: relative;
    background: #212529;
    z-index: 100;
}
section.section-track::before{
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    height: 110px;
    background: transparent url(/assets/img/patterns/track_02.png) repeat-x left top;
    top: -40px;
    left: 0;
}
section.section-track::after{
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    height: 110px;
    background: transparent url(/assets/img/patterns/track_02.png) repeat-x left top;
    bottom: -60px;
    left: 0;
}


.btn-shine {
    position: relative;
    overflow: hidden;
    padding: 14px 40px;
    background: transparent;
    border: 3px solid #fff;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
}
.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 90%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent
    );
    transform: skewX(-20deg);
    opacity: 0;
    /*border-radius: 25px;*/
}
.btn-shine:hover::before {
    animation: shine 0.5s ease-in-out;
}
.btn-shine:hover { }


.btn-shine-black {
    border: 3px solid var(--secondary);
    color: var(--secondary);
}
.btn-shine-black::before {
    background: linear-gradient(
            120deg,
            transparent,
            rgba(0, 0, 0, 0.5),
            transparent
    );
}
.btn-shine-medium {
    padding: 10px 20px;
}
.btn-shine-small {
    padding: 6px 12px;
    font-size: 0.9em;
    font-weight: 500;
}

@keyframes shine {
    0% {
        left: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    80% {
        left: 80%;
        opacity: 0;
    }
}



.block{
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9em;
    font-weight: 400;
}

.numbers{
    font-family: "Oswald", sans-serif;
    padding: 0 50px;
    font-size: 25px;
}
.numbers > div{
    text-align: center;
    padding: 40px 0;
}
.numbers > div > i{
    font-size: 62px;
    color: var(--secondary);
    font-weight: 100 !important;
    font-variation-settings:
            'FILL' 0,
            'wght' 200,
            'GRAD' 0,
            'opsz' 24
}
.numbers > div .value{
    font-size: 60px;
}






/*
.i-partners-swiper {
    display: none;
}
@media (min-width: 768px) {
    .i-partners-grid {
        display: block;
    }
    .i-partners-swiper {
        display: none;
    }
}

@media (max-width: 767px) {
    .i-partners-grid {
        display: none;
    }
    .i-partners-swiper {
        display: block;
        width: 100% !important;
    }
    .i-partners-swiper .swiper-slide {
        width: 100% !important;
    }
}*/





.partners{
    display: flex;
    gap: 40px;
}
.partners img{
    flex: 1 1 150px;
    min-width: 0;

}



.testimonial-icon{
    width: 160px;
    height: auto;
    fill: white;
}
.testimonial-text{
    font-family: Oswald, sans-serif;
    letter-spacing: 1.15px;
}




.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    /*border-radius: 20px;*/
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    overflow: hidden;
}
.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.video-wrapper.portrait {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 9 / 16;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    overflow: hidden;
}
.video-wrapper.portrait-300 {
    max-width: 300px;
}
.video-wrapper.portrait iframe {
    width: 100%;
    height: 100%;
    border: 0;
}






.lg-container {
    z-index: 99999 !important;
}
.media-filters{
    list-style: none;
    display: inline-flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}
.media-filters li{
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}
.media-filters li.active{
    color: var(--accent);
}
.media-filters li:hover{
    color: var(--accent);
}

.media-gallery {
    margin: 0 auto;
    padding: 0;
}
.media-item {
    position: relative;
    margin-bottom: 15px;
    display: block;
    cursor: pointer;
    width: 260px;
    border: 1px solid #f7f7f7;
    border-radius: 12px;
}

.media-item img {
    width: 100%;
    display: block;
    border-radius: 12px;
}
.media-item.landscape {
    width: 380px;
}

.media-item.portrait {
    width: 240px;
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to top,
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.15),
            transparent
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    pointer-events: none;
    border-radius: 12px;
}
.media-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}
.media-item:hover .media-overlay {
    opacity: 1;
}
.media-item {
    transition: opacity .3s ease, transform .3s ease;
}

.media-item.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(.95);
}



.legals p{
    text-align: justify;
    font-weight: 300;
    font-family: Lexend, sans-serif;
    font-size: 0.9em !important;
}