/***** TYPOGRAPHIE *****/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


/***** VARIABLE *****/

:root {
    --font-color: #0E0E0E;
    --background-color: #F5F5F5;
    --card-color: #EBEBEB;
    --font-color-w-20: #f5f5f530;
    --font-color-w-10: #f5f5f520;
    --font-color-w-60: #f5f5f570;
    --font-color-b-20: #0E0E0E30;
    --font-color-b-10: #0e0e0e20;
    --font-color-b-60: #0e0e0e70;
}


/***** PARAMETRE GENERAUX *****/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--background-color);
    color: var(--font-color);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--font-color);
    margin: 0;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

/***** TEXT *****/

.txt-1 {
    font-size: 1.8vw;
    font-weight: 400;
    line-height: 3vw;
}

.txt-2 {
    font-size: 1.2vw;
    font-weight: 400;
    line-height: 2vw;
}

.txt-c {
    text-align: center;
}

/***** TEXT-COLOR *****/

.fc-1 {
    color: var(--background-color);
}

.fc-w-60 {
    color: var(--font-color-w-60);
}

.fc-b-60 {
    color: var(--font-color-b-60);
}

.fc-b-20 {
    color: var(--font-color-b-20);
}

.fc-b {
    color: var(--font-color);
}

/***** TEXT-SIZE *****/

.fs-1 {
    font-size: 1.2vw;
    font-weight: 400;
}

.fs-2 {
    font-size: 1.7vw;
    font-weight: 500;
}

h1, h2 {
    font-size: 2.5vw;
    font-weight: 400;
    line-height: 3.2vw;
}

h3 {
    font-size: 1.2vw;
    font-weight: 500;
    line-height: 2vw;
}

h4 {
    font-size: 4vw;
    font-weight: 500;
    line-height: 4.5vw;
}

/***** FLEX-BOX *****/

.flex {
    display: flex;
}

.f-c {
    display: flex;
    align-items: center;
}

.f-b {
    display: flex;
    align-items: baseline;
}

.f-col {
    display: flex;
    flex-direction: column;
}

.f-col-sb {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.f-cc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.f-col-cc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.f-sb-c, .f-sb-b, .f-sb-s {
    display: flex;
    justify-content: space-between;
}

.f-sb-c {
    align-items: center;
}

.f-sb-b {
    align-items: baseline;
}

.f-sb-s {
    align-items: start;
}

.f-col-end-sb {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
}

.gap-1-2 {
    gap: .5vw;
}

.gap-1 {
    gap: 1vw;
}

.gap-2 {
    gap: 2vw;
}

.gap-3 {
    gap: 3vw;
}

.gap-4 {
    gap: 4vw;
}

.gap-5 {
    gap: 5vw;
}

.gap-6 {
    gap: 6vw;
}

.gap-8 {
    gap: 8vw;
}


/***** GRID *****/

.g-1-2, .g-1-2-start, .g-1-2-end {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1vw;
}

.g-1-2-end {
    align-items: end;
}

.g-1-2-start {
    align-items: start;
}

.g-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1vw;
}

.g-1-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.g-1-4 {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 1vw;
}

.g-3-2 {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 1vw;
}



/***** CTA-1 - CTA-4 - CTA-6 *****/

.cta-1, .cta-4, .cta-6 {
    padding: 1.5vw 2.5vw;
    border-radius: 100vw;
    cursor: pointer;
}
.cta-1, .cta-4 {
    border: 1px solid var(--font-color-w-20);
    width: fit-content;
}
.cta-6 {
    cursor: pointer;
    border: 1px solid var(--font-color-b-10);
}

.cta-1:hover {
    background: var(--font-color);
}

.cta-4:hover {
    background: var(--background-color);
}

.cta-6:hover {
    background: var(--font-color);
}

.cta-4:hover .cta-txt1 {
    color: var(--font-color);
    opacity: 0;
    transform: translateY(-100%);
}

.cta-4:hover .cta-txt2 {
    color: var(--font-color);
    opacity: 1;
    transform: translateY(-100%);
}

.cta-6:hover .cta-txt1 {
    color: var(--background-color);
    opacity: 0;
    transform: translateY(-100%);
}

.cta-6:hover .cta-txt2 {
    color: var(--background-color);
    opacity: 1;
    transform: translateY(-100%);
}

.cta-txt2 {
    opacity: 0;
}

.cta-1:hover .cta-txt1 {
    opacity: 0;
    transform: translateY(-100%);
}

.cta-1:hover .cta-txt2 {
    opacity: 1;
    transform: translateY(-100%);
}

.cta-box {
    height: 1.5vw;
    overflow: hidden;
}

.cta-txt1, .cta-txt2, .cta-1, .cta-4, .cta-6 {
    transition: .8s cubic-bezier(.12,.85,.25,1);
}

/***** CTA-2 *****/

.cta-2 {
    position: relative;
    width: fit-content;
    padding-bottom: 1.5vw;
    border-bottom: 1px solid var(--font-color-w-20);
}

.cta-2::before {
    content: " ";
    display: block;
    position: absolute;
    top: 100%;
    height: 1px;
    width: 0;
    background: var(--background-color);
    transition: .8s cubic-bezier(.12,.85,.25,1);
}

.cta-2:hover::before{
    width: 100%;
}

.cta-2:hover .arrow-right-2 {
    left: 0;
}

.cta-2:hover .cta-txt-2 {
    transform: translateX(2vw);
}

.cta-box-2 {
    position: relative;
    overflow: hidden;
}

.arrow-right, .arrow-right-2 {
    height: 1vw;
}

.arrow-right-2 {
    position: absolute;
    left: -2vw;
}

.cta-txt-2, .arrow-right, .arrow-right-2 {
    transition: .8s cubic-bezier(.12,.85,.25,1);
}

/***** CTA-3 *****/

.cta-3 {
    position: relative;
    width: fit-content;
    padding-bottom: 1.5vw;
    height: fit-content;
    border-bottom: 1px solid var(--font-color-b-20);
}

.cta-3::before {
    content: " ";
    display: block;
    position: absolute;
    top: 100%;
    height: 1px;
    width: 0;
    background: var(--font-color);
    transition: .8s cubic-bezier(.12,.85,.25,1);
}

.cta-3:hover::before{
    width: 100%;
}

.cta-3:hover .arrow-right-2 {
    left: 0;
}

.cta-3:hover .cta-txt-3 {
    transform: translateX(2vw);
}

.cta-box-3 {
    position: relative;
    overflow: hidden;
}

.arrow-right, .arrow-right-3 {
    height: 1vw;
}

.arrow-right-2 {
    position: absolute;
    left: -2vw;
}

.cta-txt-3, .arrow-right, .arrow-right-2 {
    transition: .8s cubic-bezier(.12,.85,.25,1);
}

/***** CTA-5 - CTA-UP *****/

.cta-5, .cta-up {
    cursor: pointer;
    width: fit-content;
    /*position: relative;
    padding-bottom: 1.5vw;
    border-bottom: 1px solid var(--font-color-w-20);*/
}

.cta-up {
    opacity: 40%;
}

/*.cta-5::before {
    content: " ";
    display: block;
    position: absolute;
    top: 100%;
    height: 1px;
    width: 0;
    background: var(--background-color);
    transition: .8s cubic-bezier(.12,.85,.25,1);
}

.cta-5:hover::before{
    width: 100%;
}*/

.cta-up:hover {
    opacity: 100%;
}

.arrow-down-box {
    overflow: hidden;
    height: 1.3vw;
    gap: .2vw;
    transform: translateY(.1vw);
}

.cta-5, .cta-up, .arrow-down1, .arrow-down2, .arrow-up1, .arrow-up2 {
    transition: .8s cubic-bezier(.12,.85,.25,1);
}

.arrow-down1, .arrow-down2 {
    height: 1.1vw;
    transform: translateY(-1.3vw);
}
.arrow-down1 {
    opacity: 0;
}
.arrow-down2 {
    opacity: 1;
}

.cta-5:hover .arrow-down1 {
    transform: translateY(0);
    opacity: 1;
}

.cta-5:hover .arrow-down2 {
    transform: translateY(0);
    opacity: 0;
}

.arrow-up1, .arrow-up2 {
    height: 1.1vw;
    transform: translateY(0);
}
.arrow-up1 {
    opacity: 1;
}
.arrow-up2 {
    opacity: 0;
}

.cta-up:hover .arrow-up1 {
    transform: translateY(-1.3vw);
    opacity: 0;
}

.cta-up:hover .arrow-up2 {
    transform: translateY(-1.3vw);
    opacity: 1;
}


/***** LINE *****/

.b-top {
    border-top: 1px solid var(--font-color-b-10);
}

/***** WIDTH *****/

.w-1 {
    width: 15vw;
}

.w-2 {
    width: 31vw;
}

.w-3 {
    width: 60vw;
}

.w-4 {
    width: 36vw;
}

.w-5 {
    width: 40vw;
}

.w-70 {
    width: 70vw;
}

.w-75 {
    width: 75vw;
}

/***** PADDING *****/

.pad-top-1 {
    padding-top: .5vw;
}

/***** TRANSITION *****/


.transition {
    display: flex;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    backdrop-filter: blur(20px);
    background-color: var(--background-color);
    position: fixed;
    z-index: 1000;
    top: -150%;
    left: 0;
    opacity: 0;
}

/***** LOADER *****/

.loader {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    background: var(--background-color);
}

.loader-out {
    visibility: hidden;
}

.loader-txt-container {
    overflow: hidden;
    height: 3.5vw;
    width: fit-content;
}

.logo-loader {
    height: 3vw;
    transform: translateY(3.5vw);
    margin: -0.05vw;
}

.loader-bar-box {
    margin-top: 1vw;
    width: 12.4vw;
    height: 1px;
    background: var(--font-color-b-10);
}

.loader-bar {
    width: 0;
    height: 100%;
    background: var(--font-color);
}


/***** MAIN *****/

.scroll-off {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}



/***** NAV *****/

.nav-mobile {
    display: none;
}

.navbar {
    width: 100%;
}

.logo-nav {
    width: 10vw;
}

.nav-link-container {
    width: 30vw;
}

.nav-link {
    position: relative;
    cursor: pointer;
}

.nav-link:hover .cta-txt1 {
    opacity: 0;
    transform: translateY(-100%);
}

.nav-link:hover .cta-txt2 {
    opacity: 1;
    transform: translateY(-100%);
}


/*.nav-link::before {
    content: " ";
    display: block;
    position: absolute;
    inset: 0 0 0 0;
    top: 200%;
    height: 1px;
    background: var(--font-color-w-20);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s cubic-bezier(.12,.85,.25,1);
}

.nav-link:hover::before{
    transform: scaleX(1);
    transform-origin: left;
}*/


/***** HEADER *****/

.header-home, .header-order {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.header-home-container, .order-container {
    width: 100%;
    height: 100%;
}

.header-home-container {
    padding: 2vw 5vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}

.background-hero-home, .background-hero-home-mobile {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
}

.background-hero-home-mobile {
    width: 100%;
}

.background-hero-home {
    width: 52%;
    object-fit: cover;
    object-position: center right;
    transform-origin: center right;
}

.background-hero-fond {
    position: absolute;
    object-fit: cover;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-hero-home-mobile {
    display: none;
    object-fit: cover;
}

.header-txt {
    width: 30vw;
    gap: 3vw;
    /*padding-bottom: 5vw;*/
}

.header-title {
    overflow: hidden;
    align-items: baseline;
    perspective: 40vw;
    width: 100%;
    padding-bottom: 2vw;
}

.header-letter {
    height: 13.72vw;
}


/***** SECTION *****/


.section-home-1, .section-home-2, .section-home-3 {
    padding: 6vw 5vw;
    gap: 7vw;
}

.section-home-2 {
    margin-top: 2vw;
}

.section-home-3 {
    position: relative;
}

.section-home-1-txt {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1vw;
}

.section-home-2-txt {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: end;
    gap: 1vw;
}

.section-home-1-img {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1vw;
}

.home-card {
    gap: 2vw;
}

.home-card-img {
    overflow: hidden;
    width: 100%;
    height: 36vw;
}

.numb-card {
    font-size: 1.2vw;
    font-weight: 400;
}

.img-box {
    overflow: hidden;
    width: 100%;
    height: fit-content;
    border-radius: .5vw;
}

.img-size1, .img-size2, .img-size3, .img-size4, .img-size5, .img-size6 {
    overflow: hidden;
    width: 100%;
}

.img-size1 {
    height: 36vw;
}

.img-size2, .img-size2-2 {
    height: 43vw;
}

.img-size3 {
    height: 20vw;
}

.img-size4 {
    height: 60vw;
}

.img-size5 {
    height: 50vw;
}

.img-size6 {
    height: 60vw;
}

.img-size7 {
    height: 30vw;
}


.img {
    height: 100%;
    width: 100%;
    transform: scale(1.1);
    object-fit: cover;
}

.sp-title {
    padding: 1.5vw 0;
}

.sp-el {
    padding: 2vw 0;
}

.sp-el:not(:last-child) {
    border-bottom: 1px solid var(--font-color-b-10);
}

.box-txt-1-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
}



/***** FOOTER *****/


footer {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-top: 4vw;
    background: var(--font-color);
}

.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8vw;
    padding: 4vw 5vw;
    width: 100%;
}

.f-parallax {
    gap: 8vw;
}

.footer-title {
    width: 36vw;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 3vw;
    border-top: 1px solid var(--font-color-w-10);
}

.logo-footer {
    display: none;
    width: 100%;
}

.footer-links {
    display: flex;
    gap: 5vw;
}

.footer-link {
    cursor: pointer;
    opacity: 40%;
    transition: .8s cubic-bezier(.12,.85,.25,1);
}
.footer-link:hover {
    opacity: 100%;
}


/***** MODAL *****/


.modal-footer-container {
    visibility: hidden;
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100vw;
    height: 100vh;
    transition: visibility .8s;
}

.modal-footer-container.active-modal-footer {
    visibility: visible;
    transition: visibility 0s;
}

.overlay-modal-footer {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--font-color-b-60);
    transition: opacity .8s cubic-bezier(.12,.85,.25,1);
}
.modal-footer-container.active-modal-footer .overlay-modal-footer {
    opacity: 1;
    transition: opacity .8s cubic-bezier(.12,.85,.25,1);
}

.modal-footer {
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 40%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 2vw));
    background: var(--background-color);
    padding: 7vw 8vw;
    border-radius: .5vw;
    transition: opacity .8s cubic-bezier(.12,.85,.25,1),
    transform .8s cubic-bezier(.12,.85,.25,1);
}
.modal-footer-container.active-modal-footer .modal-footer {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: opacity .8s cubic-bezier(.12,.85,.25,1),
    transform .8s cubic-bezier(.12,.85,.25,1);
}

.close-modal-footer {
    position: absolute;
    top: 1.5vw;
    right: 1.5vw;
    border: none;
    background: var(--card-color);
    width: 2vw;
    height: 2vw;
    border-radius: 100%;
    cursor: pointer;
    transition: background .8s cubic-bezier(.12,.85,.25,1);
}
.close-icon-footer {
    width: .5vw;
}

.close-modal-footer:hover {
    background: var(--font-color-b-10);
}

.modal-footer-title {
    display: flex;
    align-items: center;
    gap: 1vw;
    font-size: 1.7vw;
    color: var(--font-color);
}

.emoji-modal {
    height: 2vw;
}

/********** MOBILE **********/


@media screen and (max-width:480px) {

    /***** LOADER *****/

    .loader {
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        background: var(--background-color);
    }

    .loader-txt-container {
        overflow: hidden;
        height: 2.2em;
        width: fit-content;
    }

    .logo-loader {
        height: 2em;
        transform: translateY(2.2em);
        margin: -0.05em;
    }

    .loader-bar-box {
        margin-top: 1em;
        width: 8em;
        height: 1px;
        background: var(--font-color-b-10);
    }

    .loader-bar {
        width: 0;
        height: 100%;
        background: var(--font-color);
    }

    /***** TEXT *****/

    .txt-1 {
        font-size: 1.2em;
        line-height: 1.5em;
    }

    .txt-2 {
        font-size: 1em;
        line-height: 1.4em;
    }

    /***** TEXT-SIZE *****/

    .fs-1 {
        font-size: 1em;
    }

    .fs-2 {
        font-size: 1.4em;
    }

    h1, h2 {
        font-size: 2em;
        line-height: 1.2em;
    }

    h3 {
        font-size: 1.2em;
        line-height: 1.2em;
    }

    h4 {
        font-size: 2.5em;
        line-height: 1.1em;
    }

    .gap-1-2 {
        gap: .5em;
    }
    
    .gap-1 {
        gap: 1em;
    }
    
    .gap-2 {
        gap: 2em;
    }
    
    .gap-3 {
        gap: 3em;
    }
    
    .gap-4 {
        gap: 3em;
    }
    
    .gap-5 {
        gap: 4em;
    }
    
    .gap-6 {
        gap: 6em;
    }
    
    .gap-8 {
        gap: 8em;
    }

    /***** GRID *****/

    .g-1-2, .g-1-2-start, .g-1-2-end {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 1vw;
    }

    .g-1-2-end {
        align-items: end;
    }

    .g-1-2-start {
        align-items: start;
    }

    .g-3 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1vw;
    }

    .g-1-1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .g-1-4 {
        display: flex;
        flex-direction: column;
    }

    .g-3-2 {
        display: flex;
        flex-direction: column;
    }

    .g-4-2 {
        display: grid;
        grid-template-columns: 4fr 2fr;
        gap: 1vw;
    }

    /***** LINE *****/

    .b-top {
        border-top: none;
    }

    /***** WIDTH *****/

    .w-1 {
        width: 15vw;
    }

    .w-2 {
        width: 31vw;
    }

    .w-3 {
        width: 100%;
    }

    .w-4 {
        width: 36vw;
    }

    .w-5 {
        width: 40vw;
    }

    .w-70 {
        width: 70vw;
    }

    .w-75 {
        width: 75vw;
    }


    /***** CTA-1 - CTA-4 - CTA-6 *****/

    .cta-1, .cta-4, .cta-6 {
        padding: 1.2em 1.7em;
        border-radius: 100em;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cta-box {
        height: 1.2em;
    }

    /***** CTA-3 *****/

    .cta-3 {
        padding-bottom: 1em;
    }

    .cta-3:hover .cta-txt-3 {
        transform: translateX(1.7em);
    }

    .arrow-right, .arrow-right-2, .arrow-right-3 {
        height: .7em;
    }

    .arrow-right-2 {
        left: -1.7em;
    }

    .cta-txt-3, .arrow-right, .arrow-right-2 {
        transition: .8s cubic-bezier(.12,.85,.25,1);
    }

    /***** CTA-5 - CTA-UP *****/

    .arrow-down-box {
        overflow: hidden;
        height: 1em;
        gap: .2em;
        transform: translateY(.1em);
    }

    .arrow-down1, .arrow-down2 {
        height: .8em;
        transform: translateY(-1em);
    }

    .cta-5:hover .arrow-down1 {
        transform: translateY(0);
        opacity: 1;
    }

    .cta-5:hover .arrow-down2 {
        transform: translateY(0);
        opacity: 0;
    }

    /***** NAV *****/

    .navbar {
        display: none;
    }

    .nav-mobile {
        position: absolute;
        z-index: 999;
        top: 0;
        left: 0;
        width: 100%;
        padding: 2em 2.5em;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-nav-mobile {
        width: 7em;
    }

    .nav-burger-btn {
        position: relative;
        z-index: 999;
        cursor: pointer;
        width: 1.5em;
        height: 1.5em;
        transition: .7s cubic-bezier(.58,0,.39,1);
    }

    .btn-bar {
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 1.5em;
        height: 1px;
        background-color: var(--background-color);
        transition: .7s cubic-bezier(.58,0,.39,1);
    }

    .btn-el-1 {
        top: 35%;
    }

    .btn-el-2 {
        top: 65%;
    }

    .btn-el-1-active {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        background-color: var(--font-color);
    }
    .btn-el-2-active {
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        background-color: var(--font-color);
    }

    .nav-burger {
        visibility: hidden;
        overflow: hidden;
        position: absolute;
        z-index: 998;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transition: visibility .8s;
    }
    .nav-burger.burger-active {
        visibility: visible;
        transition: visibility 0s;
    }

    .nav-burger-container {
        display: flex;
        flex-direction: column;
        gap: 2.5em;
        width: 100%;
        padding: 2.5em;
        background: var(--background-color);
        transform: translateY(-100%);
        transition: transform .7s cubic-bezier(.58,0,.39,1);
    }
    .nav-burger.burger-active .nav-burger-container {
        transform: translateY(0);
    }

    .nav-burger-overlay {
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        opacity: 0;
        background-color: var(--font-color-b-60);
        transition: opacity .7s cubic-bezier(.58,0,.39,1);
    }
    .nav-burger.burger-active .nav-burger-overlay {
        opacity: 1;
        transition: opacity .7s cubic-bezier(.58,0,.39,1);
    }

    .nav-links-mobile {
        gap: .5em;
        padding: 4em 0 3em 0;
        border-bottom: 1px solid var(--font-color-b-10);
    }

    .nav-link-mobile {
        overflow: hidden;
        height: 2.3em;
        width: 100%;
    }

    .mobile-chevron {
        height: .8em;
    }

    .nav-link-mobile-el {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 500;
    }

    .nav-link-mobile-el li {
        font-size: 2em;
    }

    .nav-link-mobile-active {
        cursor: pointer;
        opacity: 40%;
    }

    .cta-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1em;
        padding: 1.2em 1.7em;
        background: var(--font-color);
        border-radius: 10em;
        cursor: pointer;
    }

    /***** HEADER *****/

    .header-home-container {
        padding: 2.5em;
        justify-content: end;
        align-items: normal;
    }

    .background-hero-home {
        display: none;
    }
    .background-hero-fond {
        display: none;
    }

    .background-hero-home-mobile {
        display: block;
    }

    .header-title {
        display: none;
    }

    .header-txt {
        width: 100%;
        gap: 2em;
    }

    /***** SECTION *****/


    .section-home-1, .section-home-2, .section-home-3 {
        padding: 2.5em;
        gap: 4em;
    }

    .section-home-2 {
        margin-top: 2em;
    }

    .section-home-3 {
        position: relative;
    }

    .section-home-1-txt, .section-home-2-txt {
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .anexe-title {
        display: none;
    }

    .section-home-1-img {
        display: flex;
        flex-direction: column;
        gap: 4em;
    }

    .home-card {
        gap: 1em;
    }    

    .home-card-img {
        height: 100vw;
    }

    .numb-card {
        font-size: .6em;
    }

    .img-box {
        border-radius: .3em;
    }

    .img-size2 {
        height: 50vw;
    }
    .img-size2-2 {
        height: 100%;
    }

    .img-size3 {
        height: 50vw;
    }
    
    .img-size4 {
        height: 60vw;
    }
    
    .img-size5 {
        height: 80vw;
    }
    
    .img-size6 {
        height: 60vw;
    }
    
    .img-size7 {
        height: 60vw;
    }

    .sp-title {
        padding: 0 0 1em 0;
    }

    .sp-el-container {
        width: 100%;
    }
    
    .sp-el {
        padding: 1.5em 0;
        width: 100%;
    }

    .box-txt-1-1 {
        display: flex;
        flex-direction: column;
        gap: 4em;
    }

    /***** FOOTER *****/


    footer {
        margin-top: 3em;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 8em;
        padding: 3em;
    }

    .f-parallax {
        gap: 5em;
    }

    .footer-title {
        width: 100%;
    }

    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4em 2em;
        width: 100%;
    }    

    .footer-top {
        display: flex;
        flex-direction: column;
        gap: 5em;
    }

    .footer-bottom {
        justify-content: inherit;
        gap: 1em;
        flex-direction: column;
        padding-top: 1.5em;
    }

    .footer-bottom-link {
        display: none;
    }

    .logo-footer {
        display: none;
        width: 100%;
    }

    /***** MODAL *****/

    .modal-footer {
        width: 16em;
        top: 50%;
        transform: translate(-50%, calc(-50% + 2em));
        padding: 3em 3.5em;
        border-radius: .3em;
    }

    .close-modal-footer {
        top: 1em;
        right: 1em;
        width: 2em;
        height: 2em;
        background: transparent;
    }

    .close-modal-footer:hover {
        background: transparent;
    }

    .close-icon-footer {
        width: .5em;
    }

    .modal-footer-title {
        flex-direction: column;
        text-align: center;
        gap: 1em;
        font-size: 1em;
    }

    .emoji-modal {
        height: 2em;
    }

}