@font-face {
    font-family: 'Archivo Black';
    src: url('../assets/fonts/Archivo_Black/ArchivoBlack-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('../assets/fonts/Raleway/static/Raleway-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('../assets/fonts/Raleway/static/Raleway-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('../assets/fonts/Raleway/static/Raleway-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Raleway';
    src: url('../assets/fonts/Raleway/static/Raleway-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('../assets/fonts/Raleway/static/Raleway-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('../assets/fonts/Raleway/static/Raleway-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

:root {
    --primary-blue: #12056B;
    --accent-green: #1AB970;
    --accent-red: #EE5245;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --blue: #10365D;
}

body {
    font-family: 'Raleway';
    color: var(--blue);
}

.container {
    max-width: 160rem;
    width: 100%;
    margin: 0 auto;
    padding: 8rem 2rem;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Archivo Black';
    line-height: 120%;
}

a {
    color: var(--primary-blue);
}

h2 {
    font-size: 4rem;
    line-height: 120%;
    text-align: center;
    margin-bottom: 6rem;
    color: var(--primary-blue);
}

/* Section 1 */
.section1 h2 {
    color: var(--white);
    margin-bottom: 11rem;
}

.section1 .container {
    padding: 21.4rem 0 6rem 0;
    max-width: 144.6rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.6rem;
}

.feature-card {
    position: relative;
    height: 55.4rem;
    border-radius: 2rem;
    overflow: hidden;
    color: var(--white);
    cursor: pointer;
}

.card-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    transition: transform 0.6s;
}

.feature-card.is-flipped .card-front {
    transform: translateY(-100%);
}

.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-green);
    padding: 6.4rem 2.4rem 4rem 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.6s;
    transform: translateY(100%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    opacity: 0;
}

.feature-card.is-flipped .card-back {
    transform: translateY(0);
    opacity: 1;
}

.feature-card .card-back p {
    font-size: 2.2rem;
    line-height: 140%;
    margin: 0;
    font-weight: 600;
}

.close-icon {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    width: 2.5rem;
    cursor: pointer;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.close-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    filter: brightness(0.7);
    transition: transform 0.3s ease;
}



.card-content {
    position: relative;
    padding: 0rem 3.5rem 3.5rem 3.5rem;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(16, 55, 93, 1) 100%);
    text-align: left;
    min-height: calc(55.4rem / 2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feature-card h3 {
    font-size: 5rem;
    margin-bottom: 3.4rem;
    line-height: 5rem;
}

.feature-card p {
    font-size: 2.2rem;
    line-height: 120%;
    margin-bottom: 6.6rem;
    font-weight: 700;
}

.plus-icon {
    position: absolute;
    bottom: 3.5rem;
    left: 3.5rem;
    width: 3.2rem;
}

.plus-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Section 2 */
.blue-bg {
    background-image: url('../img/desktop/fondbleu.jpg');
    background-size: cover;
    background-position: top center;
    color: var(--white);
}

.section2 h2 {
    color: var(--white);
    margin-bottom: 7rem;
}

.section2 .container {
    max-width: 144.6rem;
    padding: 6rem 0 0 0;
    margin-bottom: 7.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item:nth-child(1) .icon img {
    width: 11.2rem;
    margin-bottom: 1.6rem;
}

.stat-item:nth-child(2) .icon img {
    width: 8.9rem;
    margin-bottom: 4rem;
}

.stat-item:nth-child(3) .icon img {
    width: 12.3rem;
    margin-bottom: 5.1rem;
}

.stat-item:nth-child(4) .icon img {
    width: 7.9rem;
    margin-bottom: 5rem;
}

.stat-item:nth-child(5) .icon img {
    width: 10rem;
    margin-bottom: 2.8rem;
}

.stat-item .number {
    font-size: 4rem;
    line-height: 4rem;
    font-weight: 400;
    margin-bottom: 0.15rem;
    font-family: 'Archivo Black';
}

.stat-item .label {
    font-size: 2.1rem;
    line-height: 120%;
}

/* Section 3 */
.video-container {
    width: 100%;
    height: 65.8rem;
    max-width: 127rem;
    margin: 0 auto -34.1rem auto;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: opacity 0.5s ease;
}

.video-container.is-playing .video-placeholder {
    opacity: 0;
    pointer-events: none;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 15rem 0 0 0;
}

.play-btn {
    width: 12rem;
    transition: transform 0.3s ease;
}

.play-btn img {
    width: 100%;
    display: block;
}


.video-overlay h2 {
    color: var(--white);
    font-size: 4rem;
    line-height: 120%;
    text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Section 4 */
.section4 {
    background: var(--white);
    padding-top: 25rem;
}

.section4 h2 {
    max-width: 99.2rem;
    margin: 0 auto 9.3rem auto;
}

.section4 .container {
    padding: 15rem 0 10.5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5rem;
}

.testimonial-card {
    position: relative;
    height: 55.4rem;
    color: var(--white);
    cursor: pointer;
    width: 33.4rem;
}

.testimonial-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    overflow: hidden;
}


.section3 .trigger {
    position: absolute;
    top: -20rem;
    left: 0;
    opacity: 0;
}

.testimonial-card .card-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.6s ease;
}

.testimonial-card.is-expanded .card-front {
    transform: translateY(-100%);
}

.testimonial-card .quote-icon {
    position: absolute;
    top: -2rem;
    left: -1.5rem;
    z-index: 3;
}

.testimonial-card .quote-icon img {
    width: 7.5rem;
    display: block;
}

.card-front-content {
    padding: 12rem 2.5rem 2.9rem 2.5rem;
    background: linear-gradient(0deg, rgba(16, 54, 93, 1) 30%, rgba(16, 54, 93, 0) 100%);
    text-align: left;
}

.testimonial-card p {
    font-size: 1.6rem;
    line-height: 140%;
    margin-bottom: 1.5rem;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.btn-more {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem 2.75rem;
    border-radius: 3rem;
    font-size: 1.6rem;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}



.testimonial-card .card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 55, 93, 0.8);
    background-color: rgba(16, 55, 93, 0.8);
    padding: 6.5rem 2.8rem 4rem 2.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.6s ease;
    transform: translateY(100%);
    z-index: 2;
    text-align: left;
}

.testimonial-card.is-expanded .card-back {
    transform: translateY(0);
    opacity: 1;
}

.testimonial-card .card-back .close-icon {
    position: absolute;
    top: 2.2rem;
    right: 2.2rem;
    width: 2.2rem;
    height: 2.2rem;
    cursor: pointer;
    z-index: 5;
    transform: initial;
}

.testimonial-card .card-back .close-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.testimonial-card .card-back p {
    font-size: 1.6rem;
    line-height: 140%;
    margin-bottom: 1.9rem;
    color: var(--white);
    font-weight: 600;
}

.testimonial-card .card-back .author {
    color: var(--accent-green);
    font-size: 1.6rem;
    font-weight: 600;
    width: 100%;
}

/* Section 5 */
.section5 {
    background: #EDEAEA;
}

.section5 .container {
    padding: 11.8rem 0 5.6rem 0;
    max-width: 130rem;
}

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


.profile-wrap {
    position: relative;
    border-radius: 3rem;
    overflow: hidden;
    width: 61.7rem;
}

.profile-wrap img {
    width: 100%;
    display: block;
}

.ici-tag {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--accent-green);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.profile-content {
    width: calc(100% - 75.4rem);
    width: 57.4rem;
}

.profile-content h2 {
    text-align: left;
    font-size: 4rem;
    line-height: 120%;
    margin-bottom: 4.5rem;
    color: var(--accent-green);
}

.quote p {
    font-size: 1.8rem;
    line-height: 140%;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--blue);
}

.author-name {
    font-weight: 700;
    color: var(--blue);
    font-size: 1.8rem;
    margin-bottom: 4.5rem;
}

.contact-box {
    margin-bottom: 4.7rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2.2rem;
}

.contact-item img {
    width: 6.8rem;
    display: block;
}

.contact-item p {
    font-size: 1.8rem;
    line-height: 140%;
    color: var(--blue);
}

.contact-item p * {
    font-size: 2rem;
    color: var(--blue);
}



.contact-item p b,
.contact-item p strong,
.contact-item p a {
    font-style: italic;
    font-weight: 700;
}

.small-icon {
    width: 3rem;
    height: 3rem;
}

.btn-red {
    background: var(--accent-red);
    color: white;
    padding: 1.9rem 8.45rem;
    border-radius: 1rem;
    display: inline-block;
    font-weight: 700;
    font-size: 2.2rem;
    transition: background-color 0.3s ease;
}



/* Section 6 */
.section6 {
    background: #EDEAEA;
}

.section6 .container {
    padding: 5.6rem 0 11.2rem 0;
}

.section6 h2 {
    color: var(--accent-green);
    font-size: 3.4rem;
    margin-bottom: 4.3rem;
}

.accordion {
    max-width: 106.1rem;
    margin: 0 auto;
    text-align: left;
}

.accordion-item {
    border: 1px solid var(--blue);
    border-radius: 2rem;
    padding: 2.5rem 4rem 2.5rem 3rem;
    position: relative;
    margin-bottom: 2.3rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}




.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 2rem;
    line-height: 120%;
    color: var(--blue);
    transition: color 0.3s ease;
}



.accordion-header .plus-icon {
    position: relative;
    right: initial;
    bottom: initial;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: initial;
}

.accordion-header span:first-child {
    max-width: 90.6rem;
}

.accordion-header .plus-icon img {
    width: 100%;
    height: auto;
    display: block;
}



.accordion-content {
    display: none;
    padding-top: 1.7rem;
    width: 100%;
    max-width: 90.6rem;
    margin: 0 auto 0 0;
    color: var(--blue);
    transition: color 0.3s ease;
}



.accordion-content p {
    font-size: 1.8rem;
    line-height: 120%;
    margin-bottom: 1.5rem;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.footer-contact {
    margin-top: 4.3rem;
    color: var(--accent-green);
    font-weight: 700;
    text-align: center;
    font-size: 2.4rem;
    line-height: 120%;
}

.footer-contact a {
    color: var(--accent-green);
}

/* Section 7 */
.section7 {
    background-image: url('../img/desktop/section7.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    min-height: 99.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section7 .container {
    padding: 0;
}

.commitment-card {
    background: var(--white);
    padding: 5rem;
    border-radius: 3rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9.6rem;
    margin-bottom: 6rem;
}

.commitment-item h3 {
    color: var(--accent-green);
    font-size: 2.6rem;
    margin-bottom: 3.5rem;
    font-weight: 400;
}

.commitment-item p,
.commitment-item p * {
    font-size: 1.8rem;
    line-height: 140%;
    font-weight: 500;
}

.commitment-item p a,
.commitment-item p u {
    color: var(--blue);
}



.disclaimer {
    font-size: 1.8rem;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 991px) {

    .features,
    .stats-grid,
    .testimonials-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .flex-row {
        flex-direction: column;
        text-align: center;
    }

    .profile-content h2 {
        text-align: center;
    }
}


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

a,
a:hover,
a:active,
a:focus,
a:visited,
a:link {
    text-decoration: none;
}

main {
    position: relative;
    background-color: #EDEAEA;
}

section {
    position: relative;
}

/* Hero Section */
.hero {
    background-image: url('../img/desktop/header.jpg');
    background-size: cover;
    background-position: top center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 0;
}

.hero .container {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    max-width: 175.4rem;
}

.hero-content {
    width: calc(100% - 52.7rem);
    padding-left: 11rem;
    padding-top: 25rem;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 120%;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--white);
    font-weight: 400;
    padding: 0 9rem;
    text-shadow: 0 0 1.5rem rgba(0, 0, 0, 1);
}

.hero-sub {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-body {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 4rem;
}

.hero-body p {
    text-align: center;
    font-family: 'Archivo Black';
    font-size: 2.8rem;
    font-weight: 400;
    margin-top: 6.3rem;
}

.hero-body p span {
    background-color: var(--accent-green);
    padding: 0 0.4rem;
}

.text-green {
    color: var(--accent-green);
}

.btn-hero {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    width: 21rem;
    margin: 0 auto;
}

.btn-hero img {
    width: 11.17rem;
    display: block;
    margin: 0 auto 1.7rem auto;
    cursor: pointer;
    transition-duration: 0.3s;
}



.play-icon {}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 6rem 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

}

.sections {
    position: relative;
}

.fixed-container {
    position: sticky;
    top: 0;
    right: 17.7rem;
    float: right;
    margin-right: 0;
    z-index: 1000;
    width: 33.9rem;
    padding: 2.2rem 0.7rem;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 0 0 2rem 2rem;
    box-shadow: 0 0 2.5rem rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    clear: both;
    border: 2px solid var(--white);
    border-top: initial;
}

.section8 {
    padding-top: 0;
}

.fixed-container p {
    font-size: 2rem;
    line-height: 120%;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.fixed-container .btn {
    background: var(--accent-red);
    color: var(--white);
    padding: 1.55rem 2rem;
    border-radius: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}

@media (max-width: 991px) {
    .fixed-container {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        float: none;
        margin: 0;
        transform: none;
        border-radius: 0;
        padding: 1.5rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        z-index: 1000;
        box-shadow: 0 -0.5rem 2rem rgba(0, 0, 0, 0.1);
    }

    .fixed-container p {
        margin-bottom: 0;
        font-size: 1.4rem;
        text-align: left;
    }

    .fixed-container br {
        display: none;
    }

    .fixed-container .btn {
        flex-shrink: 0;
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
    }
}

/* Form Section Styling */
.blc_form {
    background-color: var(--primary-blue);
    border-radius: 2rem;
    padding: 2.3rem 4.3rem;
    padding: 2.3rem 3rem;
    color: var(--white);
    max-width: 52.7rem;
    text-align: center;
    position: relative;
}

.merci-popup-inner {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-blue);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.9s ease;
    border-radius: 2rem;
}

.merci-popup-inner.active {
    opacity: 1;
    pointer-events: auto;
    top: 0;
}

.close-merci {
    position: absolute;
    top: 3.5rem;
    right: 3rem;
    width: 3.3rem;
    cursor: pointer;
}

.merci-content h3 {
    font-size: 2.6rem;
    color: var(--white);
    width: 43.8rem;
    margin: 0 auto 1.3rem auto;
    font-weight: 400;
}

.merci-content p {
    font-size: 1.8rem;
    line-height: 120%;
    color: var(--white);
    font-family: 'Raleway';
    font-weight: 500;
    width: 32.2rem;
    margin: 0 auto;
}

.body_form h3 {
    font-size: 2.6rem;
    line-height: 120%;
    margin-bottom: 1.3rem;
    font-weight: 400;
}

.body_form p {
    font-size: 1.5rem;
    line-height: 120%;
    font-weight: 500;
    margin-bottom: 3.1rem;
    margin-bottom: 1.5rem;
}

.form .input-holder {
    display: inline-block;
    width: 100%;
    margin-bottom: 1rem;
}

.form .type_contact,
.form .civilite {
    display: flex;
    gap: 1rem;
}

.form .input-holder input[type="radio"] {
    display: none;
}

.form .input-holder label {
    display: block;
    padding: 1rem 0rem;
    padding: 0.8rem 0rem;
    border: 0.1rem solid var(--white);
    border-radius: 4rem;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: 400;
    transition: all 0.3s ease;
    text-align: center;
}

.form .input-holder input[type="radio"]:checked+label {
    background-color: var(--white);
    color: var(--primary-blue);
    font-weight: 600;
}

.form .groupe_champs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.3rem;
}

.form .groupe_champs input {
    width: 100%;
    padding: 1.4rem 2.3rem;
    padding: 0.8rem 2.3rem;
    border-radius: 0;
    border: none;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-blue);
}

.form .groupe_champs input::placeholder {
    color: var(--primary-blue);
}

.form .send {
    display: block;
    background-color: var(--accent-red);
    color: var(--white);
    padding: 1.9rem;
    border-radius: 1rem;
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 1.5rem;
    transition: transform 0.2s ease;
    text-align: center;
    cursor: pointer;
    padding: 1.5rem;
}



.form h5 {
    font-size: 1.3rem;
    margin-top: 1.3rem;
    font-family: 'Raleway';
    font-weight: 500;
}

.form h5 span {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-green);
}

.form h6 {
    font-size: 1.3rem;
    line-height: 114%;
    margin-top: 1.5rem;
    text-align: left;
    font-family: 'Raleway';
    font-weight: 400;
}

.form a {
    font-family: 'Raleway';
    font-size: 1.3rem;
    font-weight: 700;
    text-align: right;
    text-decoration: underline;
    color: var(--white);
    display: block;
    margin-top: 1.5rem;
}

.hidden-field {
    display: none !important;
}

.field-address {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

footer {
    background-color: var(--white);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 161.4rem;
    margin: 0 auto;
    padding: 8.5rem 0 9rem 0;
}

footer p {
    text-align: left;
    font-size: 1.4rem;
    line-height: 120%;
    margin: 0;
}

.footer_left,
.footer_center,
.footer_right {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_left {
    width: 57.3rem;
}

.footer_center {
    width: 56.2rem;
}

.footer_right {
    width: 32.2rem;
}

.footer_left .logo,
.footer_center .logo,
.footer_right .logo {
    display: block;
}

.footer_left .logo {
    width: 23.4rem;
}

.footer_center .logo {
    width: 12.5rem;
}

.footer_right .logo {
    width: 6.7rem;
}

.footer_left .logo img,
.footer_center .logo img,
.footer_right .logo img {
    display: block;
    width: 100%;
}

.footer_left p {
    width: 31.4rem;
}

.footer_center p {
    width: 41.2rem;
}

.footer_right p {
    width: 23rem;
}

.green {
    color: var(--accent-green);
}

.commitment-item:nth-child(1) p {
    max-width: 41.1rem;
    margin-right: auto;
}

.commitment-item:nth-child(2) p {
    max-width: 40.7rem;
    margin-right: auto;
}

.section3 .container {
    padding: 0;
}

.feature-card:nth-child(1) .card-back {
    padding: 0 3.718rem 0 4.182rem;
}

.feature-card:nth-child(2) .card-back {
    padding: 0 4.3rem;
}

.feature-card:nth-child(3) .card-back {
    padding: 0 2.682rem 0 3.618rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    position: absolute;
}

header .container {
    width: 100%;
    max-width: initial;
    padding: 3.1rem 10.75rem 0 4.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .container .logo {
    width: 29.7rem;
    display: block;
}

header .container .logo img {
    display: block;
    width: 100%;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul li {
    font-size: 2rem;
    font-weight: 500;
    position: relative;
    text-align: center;
    padding: 0 2.9rem;
    color: var(--white);
}

nav ul li a {
    color: var(--white);
    display: block;
}

nav ul li::after {
    content: '';
    width: 1px;
    height: 2.3rem;
    background-image: url(../img/svg/line.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

nav ul li:last-child:after {
    display: none;
}

.scroll_to {
    display: block;
    color: var(--white);
    text-align: center;
    margin: 1.5rem auto 2rem auto;
    font-size: 1.6rem;
    font-weight: 700;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(1rem);
    }
}

.scroll_to img {
    width: 1.884rem;
    display: block;
    margin: 1.5rem auto 0 auto;
    animation: bounce 2s infinite ease-in-out;
}

/* Highlight Animation */
@keyframes highlightPopin {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(26, 185, 112, 0);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 3rem rgba(26, 185, 112, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(26, 185, 112, 0);
    }
}

.highlight-popin {
    animation: highlightPopin 0.7s ease-out 2;
    z-index: 1001;
}

.hero {
    padding-top: 10rem;
}

.pop_up_video {
    position: fixed;
    padding: 0 15px;
    top: 0;
    left: -130%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    transition-duration: 0.9s;
}

.pop_up_video.active {
    left: 0;
}

.pop_up_container {
    width: 100%;
    height: 100%;
    position: relative;
}

.close_pop_up_video {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    transition-duration: 0.3s;
}

.pop_up_video-holder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 880px;
}

.pop_up_video-holder iframe {
    width: 100%;
    height: 500px;
}

.close-merci2 {
    position: absolute;
    top: 3rem;
    right: 3rem;
    width: 2.1rem;
    cursor: pointer;
}

.hero nav {
    position: absolute;
    top: 5.5rem;
    right: 10.8rem;
}