html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #F5F5F5;
    /* Light background color */
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 400;
    min-height: 100vh;
}

.container {
    max-width: 1240px;
    width: 100%;
    padding: 0px 20px;
}

/* Header */
header {
    text-align: center;
    padding: 24px 0px;
    background: #202541;
    width: 100%;
    display: flex;
    justify-content: center;
}

header .container {
    display: flex;
    justify-content: center;
}

.logo {
    height: 50px;
    width: auto;
}

/* Hero Section */

.section1 {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 24px 0px 0px 0px;
    background-color: #202541;
}

.section1 .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.section1-left-container {
    width: 48%;
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

.section1-right-container {
    width: 44%;
    display: flex;
    align-items: flex-end;
}

.section1-right-container img {
    width: 100%;
    margin-bottom: -5px;
}

.section1-left-container h1 {
    font-family: "Francois One", sans-serif;
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    color: #F4F4F4;
    text-transform: uppercase;
}

.section1-left-container h1 span {
    color: #E30D22;
}

.section2 {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 0px;
    background-color: #FFF;
}

.section2 .container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1020px;
    justify-content: center;
}

.section2-sub-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.section2-offre-container {
    width: calc(50% - 8px);
    padding: 32px 24px;
    border-radius: 8px;
    background-color: #F5F5F5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section2-offre-container h3 {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    line-height: 24px;
    color: #E30D22;
    text-align: center;
    max-width: 380px;
    width: 100%;
}

.section2 p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #202541;
    margin-top: 16px;
    width: 100%;
}

.section2 h4 {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: #202541;
    margin-top: 24px;
    margin-bottom: 16px;
    width: 100%;
    text-align: center;
}

.section2 h2 {
    font-family: "Francois One", sans-serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    color: #202541;
    text-transform: uppercase;
    max-width: 550px;
    width: 100%;
    text-align: center;
    margin-bottom: 32px;
}

.section2 ul {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #202541;
    list-style: none;
    position: relative;
    width: 100%;
}

.section2 ul a {
    color: #202541;

}

.section2 ul li {
    position: relative;
    padding-left: 33px;

}

.section2 ul li:not(:last-child) {
    border-bottom: 1px solid #C4C4C4;
    margin-bottom: 16px;
    padding-bottom: 16px;
}

.section2 ul li:before {
    content: "";
    height: 19px;
    width: 19px;
    background-image: url(img/check-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0px;
    top: 2px;
}

.section2 ul li:last-child {
    margin-bottom: 24px;
}

.subscribe-button {
    font-size: 16px;
    line-height: 16px;
    padding: 14px;
    background-color: #F2C94C;
    color: #695106;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    width: 100%;
    text-decoration: none;
    display: block;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: auto;
}

.subscribe-button:hover {
    background-color: #ffd450;
}




.section3 {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 0px;
    background-color: #F5F5F5;
}

.section3 .container {
    display: flex;
    flex-wrap: wrap;
    max-width: 840px;
    justify-content: center;
}

.section3 h2 {
    font-family: "Francois One", sans-serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    color: #202541;
    text-transform: uppercase;
    max-width: 720px;
    width: 100%;
    text-align: center;
}

.section3 p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #616375;
    margin-top: 12px;
    margin-bottom: 32px;
    max-width: 610px;
    width: 100%;
    text-align: center;
}

.section3-sub-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.icon-box {
    width: calc(33.33% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-box img {
    width: 60px;
    height: auto;
}

.icon-box h4 {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    color: #202541;
    text-align: center;
    margin-top: 12px;
}


.section4 {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 0px;
    background-color: #202541;
    overflow: hidden;
}

.section4 .container {
    max-width: 1240px;
}

.section4 h2 {
    font-family: "Francois One", sans-serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    color: #FFF;
    text-transform: uppercase;
    width: 100%;
    text-align: left;
    margin-bottom: 40px;
}

/* --- SLIDER CSS --- */
.swiper {
    width: 100%;
    height: 350px;
    color: #FFF;
    overflow: visible;
    user-select: none;
    -webkit-user-select: none;
}

.swiper-wrapper {
    display: flex;
    gap: 24px;
    width: calc(100% * 5);
    will-change: transform;
}


.swiper-wrapper.dragging,
.swiper-wrapper:hover {
    cursor: grab;
}

.swiper-slide {
    width: 250px !important;
    min-width: 250px;
    height: 350px;
    transition: .3s;
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    padding: 20px;
    box-sizing: border-box;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;

}

.slider-image {
    width: 100%;
}

/* .swiper-slide::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    border-width: 1px;
    border-style: solid;
    border-image: linear-gradient(to bottom, #E30D22, rgba(0, 0, 0, 0)) 1;
    top: 0px;
    left: 0px;
    background: transparent;
    transition: .3s;
} */

/* .swiper-slide:hover:before {
    border-image: linear-gradient(to bottom, #E30D22, #E30D22) 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3996192226890757) 0%, rgba(0, 0, 0, 1) 100%);
} */

.swiper-slide.none:hover:before {
    background: transparent;
}

.card-quote {
    display: flex;
    flex-direction: column;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    line-height: 21.6px;
    font-style: italic;
    font-weight: 700;
    opacity: 0;
    transition: .3s;
    z-index: 99;
    margin-bottom: 30px;

}

.quote-icon {
    width: 28px;
}

.card-author-container {
    z-index: 99;
}


.author-name {
    font-family: "Inter", serif;
    font-size: 14px;
    line-height: 16.8px;
    font-weight: 700;
    color: #FFF;
}

.author-position {
    font-family: "Inter", serif;
    font-size: 10px;
    line-height: 12px;
    font-weight: 700;
    color: #8B8B8B;
    text-transform: uppercase;
    width: 100%;
    margin-top: 4px;
}

.swiper-slide:hover .card-quote {
    opacity: 1;
}

/* --- SLIDER CSS END */


.section5 {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 0px;
    background-color: #F5F5F5;
}

.section5 .container {
    display: flex;
    flex-wrap: wrap;
    max-width: 500px;
    justify-content: center;
}

.section5 h2 {
    font-family: "Francois One", sans-serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    color: #202541;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    margin-bottom: 32px;
}

.section5 form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
}

.section5 form input,
.section5 form select {
    padding: 14px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #000;
}

.section5 form input::placeholder,
.section5 form select::placeholder {
    color: #666666;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.section5 form input:focus {
    outline: none;
}

.width-50 {
    width: calc(50% - 4px);
}

.width-100 {
    width: 100%;
}

.section5 form button {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 24px;
    padding: 14px;
    background-color: #F2C94C;
    color: #695106;
    font-weight: 600;
    width: 100%;
    text-align: center;
    border: none;
    transition: .3s;
    border-radius: 8px;
    margin-top: 8px;
    cursor: pointer;
}

.section5 form button:hover {
    background-color: #ffd450;
}


/*---Form---*/
.hbspt-form {
    width: 100%;
}

/* Footer */
.footer {
    background-color: #202541;
    padding: 16px 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.footer .container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1240px;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    width: 97px;
    height: auto;
}



.footer a {
    color: #b8b8b8;
    text-decoration: underline;
}

.footer a:hover {
    color: white;
}

.aide-contact {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFF !important;
    line-height: 24px; transition: .3s;
    text-decoration: none !important;
}

.aide-contact:hover {
    text-decoration: underline !important;
    transform: scale(1) !important;

}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.social-icons img {
    height: 14px;
    width: auto;
}

.social-icons a {
    transition: .3s;
}

.social-icons a:hover {
    transform: scale(1.2);
}



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

    .footer .container {
            flex-direction: column;
            gap: 14px;
    }

    .social-icons {
        flex-wrap: wrap;
        gap: 10px 20px
    }

    .aide-contact {
        width: 100%;
        text-align: center;

    }
    h1 {
        font-size: 32px !important;
        line-height: 32px !important;
    }

    h2 {
        font-size: 24px !important;
        line-height: 24px !important;
        text-align: left !important;
    }

    h3 {
        font-size: 20px !important;
        line-height: 20px !important;
    }

    .section1 {
        padding: 40px 0px 0px 0px;
    }

    .section2,
    .section3,
    .section4,
    .section5 {
        padding: 40px 0px;
    }

    .section1-left-container,
    .section1-right-container,
    .section2-offre-container {
        width: 100%;
    }


    .section1-left-container {
        padding-bottom: 0px;
    }

    .section1-right-container {
        justify-content: center;
        display: flex;
    }

    .section3-sub-container {
        gap: 24px;
    }

    .section3 p {
        text-align: left;
    }

    .icon-box {
        width: 100%;
    }

    .icon-box h4 {
        max-width: 235px;
        font-size: 16px;
        line-height: 16px;
    }

    .icon-box:not(:last-child) {
        padding-bottom: 24px;
        border-bottom: 1px solid #C4C4C4;
    }

    .section1-right-container img {
        max-width: 450px;
    }

    .section1-right-container,
    .section2-right-container {
        margin-top: 26px;
    }

    .engagement-offre,
    .sans-engagement {
        font-size: 18px;
        line-height: 24px;
    }

    .offer-price {
        flex-wrap: wrap;
        gap: 10px;
    }

    .offer-price span {
        font-size: 28px;
        line-height: 36px;
        white-space: nowrap;
    }

    .section1-bottom-container h2 {
        font-size: 18px;
        line-height: 24px;
    }


    .section1 .container {
        max-width: 600px;
    }


}