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

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}

*:focus,
*.form-control:focus,
*.btn:focus,
*.form-select:focus {
    outline: none;
    box-shadow: none;
}


/* Header */

.header {
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 5px solid rgba(136, 136, 136, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 27px 0;
    height: 100px;
    max-width: 1280px;
    margin: 0 auto;
}

.header .logo {
    height: 67px;
    width: 231px;
}

.header .nav-menu {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: end;
}

.header .nav-menu .nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    cursor: pointer;
}

.header .nav-menu .nav-item:hover {
    color: #0f4290;
}

.header .nav-menu .nav-item.active {
    color: #0f4290;
    font-weight: 800;
}

.header .nav-menu .dropdown-container {
    position: relative;
    display: inline-block;
}

/* Affichage du dropdown au survol */
.header .nav-menu .dropdown-container:hover .dropdown-menu {
    display: block;
}

.header .nav-menu .dropdown-arrow {
    width: 10px;
    height: 5px;
}

.header .nav-menu .dropdown-toggle::after {
    content: url(../images/dropdown-arrow.svg);
    border: none !important;
    margin-left: 0;
    margin-top: -3px;
}

.header .nav-menu .dropdown-item {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.4px;
    color: #696984;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15) !important;
    padding: 8px 26px;
}

.header .nav-menu li:last-child .dropdown-item {
    border-bottom: none !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #0F4290;
    color: white !important;
}

@media (max-width: 768px) {
    .dropdown-item:focus,
    .dropdown-item:hover {
        background-color: #FFF;
        color: #0F4290 !important;
    }
}

.header .nav-menu .dropdown-item.active,
.header .nav-menu .dropdown-item:active {
    background-color: #0F4290;
}

.header .cta-button {
    background: linear-gradient(118.94deg, #1C62CC -12.82%, #0F4290 76.79%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0px 15px 40px 0px #0F429040;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 50px;
}

.header .mobile-logo {
   display: none;
}

 @media (max-width: 768px) {
     .header .cta-button {
         background: #0F4290;
         color: #FFF;
         border: 2px solid #0F4290;
     }

     .header .mobile-logo {
         display: block;
         margin-bottom: 130px;
     }

 }


.header .cta-button:hover {
    transform: translateY(-2px);
}


/* Hero Section */

.hero-section {
    position: relative;
    height: 50vw;
    min-height: 500px;
    max-height: 600px;
    margin-top: 105px;
}

.hero-bg {
    position: absolute;
    top: -100px;
    left: 0px;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    width: 100%;
    height: auto;
}

.hero-section.static {
    max-height: 500px;
}

.hero-section.static.services {
    max-height: 535px;
}

.hero-section .hero-slider {
    height: 100%;
}

.hero-section .hero-slider .slide {
    position: relative;
    height: 50vw;
    min-height: 500px;
    max-height: 700px;
    outline: none;
}

.hero-section .hero-slider .hero-image-wrapper {
    width: 50%;
    padding-top: 50%;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -106px;
    right: -10%;
}

.hero-section .hero-slider .hero-image {
    width: 150%;
    height: 150%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(0.65) translate(-85%, -75%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
}

.hero-section .hero-background {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    height: 100%;
    width: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero-section .hero-content {
    max-width: 706px;
}

.hero-section.static .hero-content {
    max-width: 850px;
}

.hero-section .hero-content-container {
    position: absolute;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    left: 50%;
    transform: translateX(-50%);
    top: 10%;
}

.hero-section.static .hero-content-container {
    transform: translate(-50%, -50%);
    top: 50%
}

.hero-section .hero-content .highlight {
    color: #12a19a;
}

.hero-section .hero-content .hero-title {
    font-family: "Poppins", sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 52px;
    text-transform: uppercase;
    color: #12a19a;
}

.hero-section .hero-content .hero-static-title {
    font-size: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    line-height: 70px;
    text-transform: uppercase;
    margin-bottom: 100px;
}

.hero-section.aboutus .hero-content .hero-static-title {
    font-size: 35px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .hero-section.aboutus .hero-content .hero-static-title {
        font-size: 28px;
        line-height: 40px;
    }
}

.hero-section .hero-content .hero-static-title .blue {
    color: #0f4290;
}

.hero-section .hero-content .hero-static-title .teal {
    color: #12a19a;
}

.hero-section .hero-content .hero-services-title {
    font-family: "Inter", sans-serif;
    font-weight: 900;
    font-size: 35px;
    line-height: 120%;
    text-transform: uppercase;
    color: #0F4290;
    max-width: 730px;
    margin-bottom: 90px;
}

.hero-section .hero-main-image {
    width: 527px;
    height: 527px;
    right: 0;
    top: -25px;
    position: absolute;
}

.hero-section.services .hero-main-image {
    width: 600px;
    height: 562px;
}

.hero-section.aboutus .hero-main-image {
    width: 620px;
    height: 620px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    right: 0%;
}

.hero-section.aboutus .hero-main-image img {
    height: 150%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(0.65) translate(-85%, -75%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
}

@media (max-width: 768px) {
    .hero-section.aboutus .hero-main-image {
        position: relative;
        width: 100%;
        height: 620px;
        border-radius: 0;
        right: 0;

    }

    .hero-section.aboutus .hero-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 20%;
        position: relative;
        transform-origin: center;
        transform: unset;
        top: 0;
        left: 0;

    }
}

.hero-section .hero-content .hero-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 52px;
    text-transform: uppercase;
    color: #0f4290;
    margin-bottom: 80px;
}

.hero-section .hero-content .hero-cta {
    background: linear-gradient(171deg, #1c61cb 0%, #0f4290 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0px 15px 40px rgba(15, 66, 144, 0.25);
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-section .hero-content .hero-cta:hover {
    transform: translateY(-2px);
}

.hero-section .hero-slider .slick-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    display: flex !important;
    gap: 15px;
    z-index: 10;
    width: -moz-fit-content;
    width: fit-content;
    transform: translateX(-50%);
}

.hero-section .hero-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.hero-section .hero-slider .slick-dots li button {
    width: 35px;
    height: 12px;
    border-radius: 6px;
    background-color: rgba(15, 66, 144, 0.2);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-section .hero-slider .slick-dots li button:before {
    display: none;
}

.hero-section .hero-slider .slick-dots li.slick-active button {
    width: 63px;
    background-color: #0f4290;
}

.hero-section.static .cta-button {
    padding: 15px 20px;
    background: linear-gradient(118.94deg, #1C62CC -12.82%, #0F4290 76.79%);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0px 15px 40px 0px #0F429040;
    transition: transform 0.3s ease;
    display: inline-block;
}

.hero-section.static .cta-button:hover {
    transform: translateY(-2px);
}

.hero-section.noImg {
    background: #F3F5F7;
    height: 383px;
    min-height: unset;
    max-height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lazyblock-hero-no-image-18yuHb .hero-section.noImg  {
    height: 200px;
}

/* Services Section */

.services-section {
    padding: 40px 80px 80px;
    text-align: center;
}

.services-section .services-title {
    font-family: "Poppins", sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 58px;
    text-transform: uppercase;
    color: #0f4290;
    margin-bottom: 30px;
}

.services-section .services-title .highlight {
    color: #12a19a;
}

.services-section .services-description {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    color: #696983;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services-section .services-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;
}

.services-section a {
    text-decoration: none;
}

.services-section .service-card {
    height: 100%;
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    width: 392px;
    box-shadow: 0px 10px 60px rgba(38, 44, 117, 0.08);
    transition: transform 0.3s ease;
}

.services-section .service-card:hover {
    transform: translateY(-10px);
}

.services-section .circle {
    position: absolute;
    top: -43px;
    left: 50%;
    transform: translateX(-50%);
    width: 87px;
    height: 87px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 15px 30px 0px #252C7126;
}

.services-section .circle.pink {
    background-color: #EA4D96;
}

.services-section .circle.yellow {
    background-color: #F9B233;
}

.services-section .circle.green {
    background-color: #12A19A;
}

.services-section .service-title {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 35px;
    text-transform: uppercase;
    color: #2f327d;
    margin: 40px 0 30px;
}

.services-section .service-description {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
    color: #696983;
    margin-bottom: 30px
}

.services-section .service-note {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    text-align: center;
    color: #696984;
}

.services-section .services-cta {
    background: linear-gradient(118.94deg, #1C62CC -12.82%, #0F4290 76.79%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0px 15px 40px 0px #0F429040;
    display: inline-block;
    transition: transform 0.3s ease;
}

.services-section .services-cta:hover {
    transform: translateY(-2px);
}


/* Founders Section */

.founders-section {
    background-image: url("../images/founders_bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 120px 80px;
    text-align: center;
}

.founders-section .founders-logo {
    margin-top: -10px;
    width: 189px;
    height: 39px;
}

.founders-section .founders-title {
    font-family: "Inter", sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 54px;
    text-transform: uppercase;
    color: #0f4290;
    margin-bottom: 30px;
    margin-top: -30px;
}

.founders-section .founders-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    color: #696983;
    margin-bottom: 20px;
    margin-top: -15px;
}

.founders-section .founders-grid {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 10%;
    margin-bottom: 50px;
    margin-top: 45px;
}

.founders-section .founder-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.founders-section .founder-card-link:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.founders-grid a {
    text-decoration: none;
    color: inherit;
}

.founders-section .founder-card {
    width: 453px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founders-section .founder-image {
    height: 344px;
    width: 284px;
    border-radius: 5px 5px 0 0;
    margin-bottom: 0;
}

.founders-section .founder-name-card {
    background: #fff;
    border-radius: 5px;
    width: 365px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 18px 52px rgba(39, 42, 110, 0.08);
    margin: -15% 8% 30px;
    z-index: 99;
    position: relative;
}

.founders-section .founder-card:first-child .founder-name-card {
    margin: -16% 8% 30px;
}


.founders-section .founder-name {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 120%;
    color: #0F4290;
}

.founders-section .founder-name .highlight {
    color: #12A19A;
    font-weight: 700;
    display: block;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
}

.founders-section .founder-bio {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #696983;
    max-width: 100%;
    margin: 0 auto;
}

.founders-section .founders-link {
    color: #12a19a;
    font-weight: 700;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.founders-section .founders-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 2px;
    width: 100%;
    background-color: #12a19a;
    pointer-events: none;
}

.founders-link:hover {
    transform: translateY(-3px);
}


/* Testimonials Section */

.testimonials-section {
    padding: 90px 50px 55px 80px;
    position: relative;
    background: #fff;
}

.testimonials-section .slick-list {
    padding: 20px 30px;
}

.testimonials-section .testimonials-title {
    font-family: "Inter", sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 58px;
    text-transform: uppercase;
    color: #0f4290;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-section .testimonials-container {
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    overflow-x: hidden;
}

.testimonials-section .testimonials-logo {
    width: 170px;
    height: 172px;
    margin-top: -100px;
    flex-shrink: 0;
}

.testimonials-section .testimonials-slider {
    flex: 1;
    overflow: hidden;
    margin-left: 40px;
    padding-bottom: 50px;
    position: relative;
    margin-right: -150px;
}

.testimonials-section .testimonials-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.testimonials-section .testimonials-slider .slick-slide {
    padding: 0 8px;
}

/* .testimonials-section .testimonials-slider .slick-slide>div {
    height: 100%;
} */

.testimonials-section .testimonial-card {
    background: linear-gradient(148deg, #ffd8f6 0%, #ffffff 10%, #ffffff 89%, #d6e7ff 100%);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 10px 10px 0px #0000001A;
    display: flex;
    flex-direction: column;
    margin: 30px 0;
    height: 360px;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-section .testimonial-card.expanded {
    height: auto;
    min-height: 360px;
}

.testimonials-section .testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonials-section .testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 20px;
}

.testimonials-section .testimonial-info h4 {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #1a1a1a;
    margin-bottom: 0;
}

.testimonials-section .testimonial-info p {
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 5px;
    margin-bottom: 0;
}

.testimonials-section .testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonials-section .star {
    width: 24px;
    height: 24px;
    background-color: #FFC107;
    -webkit-clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonials-section .star.empty {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #ffc107;
    background-color: rgba(185, 185, 185, 0.2);
}

.testimonials-section p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #1a1a1a;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex: 1;
    margin-bottom: 0;
}

.testimonials-section .testimonial-text {
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
    /* Use max-height to control truncation */
    max-height: 200px; /* 8 lines * 20px line-height */
    transition: max-height 0.3s ease;
}

.testimonials-section .testimonial-card.expanded .testimonial-text {
    max-height: none;
}

/* Custom ellipsis for better cross-browser support */
.testimonials-section .testimonial-text:not(.expanded):after {
    content: "...";
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(to right, transparent, #fff 70%);
    padding-left: 20px;
    color: #12a19a;
    font-weight: 600;
}

.testimonials-section .testimonial-card.expanded .testimonial-text:after {
    display: none;
}

/* Hide the ellipsis if content doesn't overflow */
.testimonials-section .testimonial-card:not(.has-overflow) .testimonial-text:after {
    display: none;
}

.testimonials-section .testimonial-nav {
    position: absolute;
    right: 80px;
    top: 400px;
    background: #fff;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
}

.testimonials-section .testimonial-nav:hover {
    transform: scale(1.05);
    box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.2);
}

.testimonials-section .slick-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: flex !important;
    gap: 15px;
    z-index: 10;
    width: -moz-fit-content;
    width: fit-content;
    transform: translateX(-50%);
}

.testimonials-section .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.testimonials-section .slick-dots li button {
    width: 15px;
    height: 12px;
    border-radius: 6px;
    background-color: rgba(15, 66, 144, 0.2);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials-section .slick-dots li button:before {
    display: none;
}

.testimonials-section .slick-dots li.slick-active button {
    width: 43px;
    background-color: #0f4290;
}

.testimonials-section .slick-slide:not(.slick-center) .testimonial-card {
    transform: scale(0.95);
    box-shadow: none;
}

.testimonials-section .slick-center .testimonial-card {
    transform: scale(1);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonials-section .slick-slide.faded-right {
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.testimonials-section .slick-center {
    opacity: 1;
}


/* Blog section */

.blog-section {
    padding: 100px 0px;
    background-color: #f3f4f6;
}

.blog-section .content-wrapper {
    text-align: center;
    max-width: 1280px;
    margin: 0 auto;
}

.blog-section .blog-title {
    font-family: "Inter", sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 54px;
    text-transform: uppercase;
    color: #0f4290;
    margin-bottom: 60px;
}

.blog-section .blog-grid {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.blog-section .blog-main {
    flex: 1;
    text-align: left;
}

.blog-section .blog-main-image {
    width: 100%;
    height: 321px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.blog-section .blog-date {
    color: #f9b233;
    font-size: 16px;
    margin-bottom: 10px;
}

.blog-section .blog-main-title {
    font-size: 26px;
    font-weight: 600;
    color: #252641;
    line-height: 31px;
    margin-bottom: 15px;
}

.blog-section .blog-excerpt {
    font-size: 20px;
    line-height: 30px;
    color: #696984;
    margin-bottom: 15px;
}

.blog-section .blog-link {
    color: #12a19a;
    text-decoration: underline;
    font-weight: 500;
    font-family: Inter;
    font-style: italic;
    font-size: 16px;
    text-decoration: underline;
}

.blog-section .blog-sidebar {
    width: 653px;
}

.blog-section .blog-sidebar .blog-link {
    float: right;
    margin-top: -40px;
}

.blog-section .blog-item {
    display: flex;
    gap: 35px;
    margin-bottom: 25px;
    text-align: left;
}

.blog-section .blog-item-image {
    width: 229px;
    height: 163px;
    border-radius: 5px;
    flex-shrink: 0;
}

.blog-section .blog-item-content {
    flex: 1;
}

.blog-section .blog-item-title {
    font-size: 22px;
    font-weight: 600;
    color: #252641;
    line-height: 26px;
    margin-bottom: 15px;
}

.blog-section .blog-cta {
    background: linear-gradient(171deg, #1c61cb 0%, #0f4290 100%);
    color: #fff;
    padding: 12px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0px 15px 40px 0px #0F429040;
    display: inline-block;
    transition: transform 0.3s ease;
}

.blog-section .blog-cta:hover {
    transform: translateY(-2px);
}


/* Reason Section */

.reason-section {
    background-color: #0f4290;
    position: relative;
    height: 532px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-margin-top: 120px;
    /* Adds space when navigating to #raison anchor */
}

.reason-section .reason-bg-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 664px;
    height: 531px;
}

.reason-section .reason-bg-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 667px;
    height: 531px;
}

.reason-section .reason-content {
    text-align: center;
    max-width: 844px;
    z-index: 10;
}

.reason-section .reason-title {
    text-transform: uppercase;
    color: #DCE2EE;
    margin-bottom: 40px;
    font-family: Inter;
    font-weight: 700;
    font-size: 44px;
    line-height: 100%;
}

.reason-section .reason-text {
    color: #DCE2EE;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}

.reason-section .reason-text .bold {
    font-weight: 700;
}


/* Story Section */

.story-entrepreneurship-section {
    position: relative;
}

.story-entrepreneurship-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    width: 100%;
    height: 300%;
}

.story-section {
    position: relative;
    width: 100%;
    padding: 80px 0 20px;
}

.story-section .content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.story-section .story-content {
    display: flex;
    gap: 27px;
    margin-bottom: 100px;
}

.story-section .story-image-wrapper {
    width: 625px;
    height: 530px;
    border-radius: 5px;
    overflow: hidden;
}

.story-section .story-image {
    width: 100%;
    height: 100%;
    object-position: 90% -30px;
    object-fit: cover;
    transform: scale(1.3);
}

.story-section .story-text-content {
    flex: 1;
    max-width: 575px;
}

.story-section .story-logo {
    width: 214px;
    height: 45px;
    margin-bottom: 15px;
}

.story-section .story-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 58px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.story-section .story-title .blue {
    color: #0f4290;
}

.story-section .story-title .teal {
    color: #12a19a;
}

.story-section .story-description {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #696983;
}


/* Entrepreneurship Section */

.entrepreneurship-section {
    width: 100%;
    position: relative;
}

.entrepreneurship-section .ellipse {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(0%, -10%);
}

.entrepreneurship-section .bulles {
    position: absolute;
    bottom: 0;
    left: 0;
}

.entrepreneurship-section .content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 0 10px
}

.entrepreneurship-section .story-content {
    margin-top: -100px;
    display: flex;
    gap: 27px;
    align-items: start;
}

.entrepreneurship-section .entrepreneurship-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 58px;
    text-transform: uppercase;
    margin-bottom: 30px;
    margin-top: 10px;
    width: 645px;
}

.entrepreneurship-section .entrepreneurship-title .blue {
    color: #0f4290;
}

.entrepreneurship-section .entrepreneurship-title .teal {
    color: #12a19a;
}

.entrepreneurship-section .entrepreneurship-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #696983;
    max-width: 637px;
    margin-bottom: 50px;
}

.entrepreneurship-section .entrepreneurship-text .bold {
    font-weight: 700;
}

.entrepreneurship-section .project-cards {
    display: flex;
    gap: 25px;
    align-items: flex-end;
}

.entrepreneurship-section .project-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 39px 24px 20px;
    box-shadow: 0px 24px 94px rgba(108, 13, 94, 0.1);
    width: 308px;
}

.entrepreneurship-section .project-card.teal {
    background-color: #12a19a;
    color: #ffffff;
    width: 294px;
    margin-bottom: 35px;
}

.entrepreneurship-section .project-card h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    color: #696983;
    margin-bottom: 30px;
}

.entrepreneurship-section .project-card.teal h3 {
    color: #ffffff;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
}

.entrepreneurship-section .project-feature {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
    white-space: nowrap;
}

.entrepreneurship-section .project-feature img {
    width: 30px;
    height: 29px;
}

.entrepreneurship-section .project-feature span {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-transform: uppercase;
    color: #696983;
}


/* Team Section */

.team-section {
    padding: 74px 0 5px;
    width: 100%;
    position: relative;
}

.team-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    user-select: none;
    width: 100%;
    height: 100%;
}

.team-section .content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.team-section .team-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 54px;
    text-transform: uppercase;
    color: #0f4290;
    text-align: center;
    margin-bottom: 55px;
}

.team-section .team-member {
    display: flex;
    gap: 5px;
    margin-bottom: 100px;
    align-items: flex-start;
}

.team-section .team-member.reverse {
    flex-direction: row-reverse;
    gap: 65px;
    margin-bottom: 40px;
}

.team-section .reverse .member-name-card {
    align-items: start;
    padding: 12px;
    /* height: 137px; */
    bottom: -50px
}

.team-section .reverse .member-social {
    bottom: -85px;
}

.team-section .member-content {
    flex: 1;
    max-width: 807px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px
}

.team-section .reverse .member-content {
    max-width: 734px;
}

.team-section .member-bio {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #696983;
    width: 722px;
}

.team-section .member-quote-container {
    background: url('../images/bubble-pink.svg');
    padding: 40px 30px;
    border-radius: 10px;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    min-width: 735px;
    margin-left: 75px;
    filter: drop-shadow(0px 14px 32px rgba(0, 0, 0, 0.35));
}

.team-section .member-quote-container.rotated {
    background: url('../images/bubble-yellow.svg');
    background-repeat: no-repeat;
    width: 735px;
    flex-shrink: 0;
    background-position: center;
    background-size: auto auto;
    flex-shrink: 0;
    margin-left: -55px;
    padding: 50px 30px
}

.team-section .rotated .quote-content {
    margin-left: 100px
}

.team-section .quote-content {
    max-width: 520px;
    padding-left: 30px;
    position: relative;
}

.team-section .quote-marks {
    display: flex;
    gap: 7px;
    margin-bottom: 20px;
    position: absolute;
    top: -40px;
}

.team-section .quote-mark {
    width: 50px;
    height: 100px;
}

.team-section .member-quote {
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
    text-align: justify;
    color: #696983;
    margin-bottom: 20px;
    font-style: italic;
    letter-spacing: 0.2px;
}

.team-section .member-quote .highlight {
    color: #ea4d96;
    font-weight: 700;
}

.team-section .member-quote .highlight-yellow {
    color: #f9b233;
    font-weight: 700;
}

.team-section .quote-marks-end {
    display: flex;
    gap: 7px;
    justify-content: flex-end;
    position: absolute;
    transform: rotate(180deg);
    right: -35px;
    bottom: -30px;
}

.team-section .member-image-container {
    position: relative;
}

.team-section .member-image {
    width: 466px;
    height: 562px;
    border-radius: 5px;
    object-fit: cover;
    object-position: center top;
}

.team-section .member-name-card {
    position: absolute;
    bottom: -50px;
    left: 27px;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 18px 27px;
    box-shadow: 0px 18px 52px rgba(39, 42, 110, 0.08);
    display: flex;
    align-items: center;
    gap: 21px;
    width: 411px;
    /* height: 120px; */
}

.team-section .member-icon {
    width: 48px;
    height: 47px;
}

.team-section .member-name {
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    color: #0f4290;
}

.team-section .member-name .highlight-pink {
    font-weight: 800;
    color: #ea4d96;
}

.team-section .member-name .highlight-yellow {
    font-weight: 800;
    color: #f9b233;
}

.team-section .member-social {
    position: absolute;
    bottom: -75px;
    right: 205px;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    box-shadow: 0px 15px 40px rgba(15, 66, 144, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-section .member-social.pink {
    background: linear-gradient(171deg, #f177b0 0%, #ea4d96 100%);
}

.team-section .member-social.yellow {
    background: linear-gradient(171deg, #fec45d 0%, #e5a32d 100%);
}


/* Why Section */

.why-section {
    background: url('../images/why-bg.png') center top/cover;
    padding: 40px 0 80px;
    width: 100%;
}

.why-section .why-slider {
    position: relative;
    display: flex;
    align-items: center;
}

.why-section .why-slider .slick-track {
    display: flex !important;
}

.why-section .why-slider .slick-slide {
    float: none;
    height: auto;
}

.why-section .why-content {
    display: flex !important;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.why-section .why-image {
    width: 595px;
    height: 580px;
    object-fit: cover;
}

.why-section .why-text-content {
    flex: 1 1 734px;
}

.why-section .why-title-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.why-section .why-logo {
    position: absolute;
    width: 462px;
    height: 462px;
    top: -110%;
    left: -35%;
}

.why-section .why-title-text {
    display: flex;
    align-items: start;
    position: relative;
    gap: 10px
}

.why-section .why-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 54px;
    text-transform: uppercase;
    color: #0f4290;
    text-align: center;
    margin-bottom: 0;
}

.why-section .why-question {
    font-size: 130px;
    font-weight: 700;
    line-height: 90%;
    text-transform: uppercase;
    color: #0f4290;
}

.why-section .why-subtitle {
    color: #2F327D;
    margin-bottom: 20px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    max-width: 517px;
}

.why-section .why-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #696984;
    font-family: Poppins;
    max-width: 656px;
}

.why-section .why-description .bold {
    font-weight: 700;
}

.why-section .cta-button {
    background: linear-gradient(118.94deg, #1C62CC -12.82%, #0F4290 76.79%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0px 15px 40px 0px #0F429040;
    transition: transform 0.3s ease;
    display: inline-block;
}

.why-section .cta-button:hover {
    transform: translateY(-2px);
}

.why-section .cta {
    text-align: center;
}

.why-section .cta-logo {
    width: 214px;
    height: 45px;
}

.why-section .cta-title {
    font-family: Inter;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    text-align: center;
    letter-spacing: -1.1px;
    color: #0f4290;
    margin-bottom: 25px;
}

.why-section .cta-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 29px;
    color: #696984;
    margin-bottom: 50px;
}

.why-section .slick-arrow {
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 46px;
    height: 46px;
    box-shadow: 0px 8px 24px 0px #00000026;
    cursor: pointer;
}

.why-section .slick-prev::before,
.why-section .slick-next::before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-top: 3px solid #0F4290;
    border-left: 3px solid #0F4290;
    opacity: 1;
}

.why-section .slick-prev::before {
    transform: rotate(-45deg);
    margin-left: 16px;
}

.why-section .slick-next::before {
    transform: rotate(135deg);
    margin-left: 12px;
}

.why-section .slick-prev,
.why-section .slick-next {
    top: 26%;
    z-index: 10;
}

.why-section .slick-prev {
    right: calc((100% - 1130px) + 40px);
    left: unset;
}

.why-section .slick-next {
    right: calc((100% - 1130px) - 20px);
}

.why-section .slick-arrow.slick-disabled {
    opacity: 0.5;
    cursor: default;
    box-shadow: none;
    pointer-events: none;
}

.why-section .slick-arrow.slick-disabled::before {
    border-color: rgba(15, 66, 144, 0.4);
}

.why-section .text-pink {
    color: #e71d73;
}


/* Services Accordion section */

.services-section.accordion {
    background: url("../images/services-bg.svg") no-repeat center 30%/cover;
    padding: 100px 0 100px !important;
}

.services-section.accordion .content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.services-section .accordion-item {
    border-radius: 16px !important;
    border: 0 !important;
    background-color: transparent !important;
    margin-bottom: 30px;
}

.services-section .accordion-button {
    width: 100%;
    height: 135px;
    border-radius: 16px !important;
    background: white;
    box-shadow: 0px 24px 94px 0px #6C0D5E26 !important;
    padding: 0 40px !important;
    display: flex;
    align-items: center;
    gap: 25px
}

.services-section .accordion-button .circle {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
}

.services-section .accordion-button.pink {
    color: #EA4D96;
}

.services-section .accordion-button.yellow {
    color: #f6a300;
}

.services-section .accordion-button.green {
    color: #009b91;
}

.services-section .accordion-button span {
    font-family: Poppins;
    font-weight: 800;
    font-size: 44px;
    line-height: 56px;
    text-transform: uppercase;
}

.services-section .accordion-button:not(.collapsed) {
    background-color: white !important;
}

.services-section .accordion-button::after {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    content: "";
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.services-section .accordion-button.pink::after {
    background-image: url(../images/arrow-pink.svg);
}

.services-section .accordion-button.yellow::after {
    background-image: url(../images/arrow-yellow.svg);
}

.services-section .accordion-button.green::after {
    background-image: url(../images/arrow-green.svg);
}

.services-section .accordion-button[aria-expanded="true"] {
    border-radius: 16px 16px 0 0 !important;
    box-shadow: none !important;
}

.services-section .accordion-body {
    background-color: white;
    padding: 0;
    margin-top: -20px;
}

.services-section .accordion-body.green {
    padding-bottom: 85px;
}

.services-section .accordion-body .intro {
    padding: 130px 30px 30px 35px;
    gap: 25px;
    flex-wrap: nowrap;
    margin: 0;
}

.services-section .accordion-body .intro .main-title {
    font-family: Poppins;
    font-weight: 700;
    font-size: 35px;
    line-height: 150%;
    color: #696984;
    text-align: left;
}

.services-section .accordion-body .intro .waves {
    position: absolute;
    bottom: -120px;
    left: -75px;
}

.services-section .accordion-body .intro .card {
    box-shadow: 0px 24px 94px 0px #6C0D5E1A;
    padding: 40px 30px;
    border-radius: 16px;
    width: 340px;
    text-align: left !important;
    margin: 0 !important;
    height: unset !important;
    border: 0 !important
}

.services-section .accordion-body .intro .card.yellow,
.services-section .accordion-body .intro .card.green {
    padding: 40px 20px;
    box-shadow: 0px 24px 94px 0px #75500E1A;
}

.services-section .accordion-body .intro .card img {
    margin-bottom: 30px;
}

.services-section .accordion-body .intro .card h6 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 30px;
    letter-spacing: -0.1px;
    margin-bottom: 30px;
}

.services-section .accordion-body .intro .card .pink {
    color: #EA4D96;
}

.services-section .accordion-body .intro .card .yellow {
    color: #f6a300
}

.services-section .accordion-body .intro .card .green {
    color: #12A19A
}

.services-section .accordion-body .intro .card p {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.1px;
    color: #696984;
    margin-bottom: 0;
}

.services-section .accordion-body .intro .card p .italic {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    /* font-style: italic; */
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.1px;
    max-width: 250px;
    display: inline-block;
}

.services-section .accordion-body .intro .column .card {
    width: 330px
}

.services-section .accordion-body .intro .column .card:last-child {
    padding: 22px 25px;
    margin-top: 25px !important;
}

.services-section .accordion-body .intro .column .card:first-child {
    margin-top: 0 !important;
}

.services-section .accordion-body .why {
    padding: 115px 30px 130px 35px;
    gap: 25px;
    flex-wrap: nowrap;
    margin: 0;
}

.services-section .accordion-body .why .main-title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    color: #2F327D;
    text-align: left;
    margin-bottom: 20px;
}

.services-section .accordion-body .why .main-title strong {
    font-weight: 900
}

.services-section .accordion-body .why .text {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #696984;
    text-align: left;
    /* max-width: 625px */
}

.services-section .accordion-body .why .country-card {
    width: 82px;
    height: 88px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 1.2s ease, transform 1.2s ease, box-shadow 0.6s ease;
}

.services-section .accordion-body .why .country-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-section .accordion-body .why .country-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.services-section .accordion-body .why .country-card img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.services-section .accordion-body .why .country-card p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #696984;
    margin: 0;
    white-space: nowrap;
}

.services-section .accordion-body .why.yellow .col-md-5 {
    align-items: start !important;
}

.services-section .accordion-body .why .bilan-img,
.services-section .accordion-body .why .parcoursup-img {
    width: 100%;
    max-width: 238px;
    border-radius: 24px;
    object-fit: cover;
}

.services-section .accordion-body .why .bilan-img.left,
.services-section .accordion-body .why .parcoursup-img.left {
    height: 315px;
}

.services-section .accordion-body .why .bilan-img.left.horizontal {
    object-position: 90% 50%;
    margin-bottom: 30px;
}

.services-section .accordion-body .why .bilan-img.left.rotate {
    transform: scaleX(-1);
    object-position: 90% center;
}

.services-section .accordion-body .why .bilan-img.right {
    height: 448px;
}

.services-section .accordion-body .why .parcoursup-img.right {
    height: 333px;
    margin-top: 70px;
}

.services-section .accordion-body .orientation {
    overflow: visible;
    padding: 50px 80px 75px 80px;
    margin-top: 130px;
    position: relative;
}

.services-section .accordion-body .orientation.yellow {
    padding: 50px 75px 25px 40px;
}

.services-section .accordion-body .orientation.pink {
    background-color: #EA4D96;
}

.services-section .accordion-body .orientation.yellow {
    background-color: #F9B233;
}

.services-section .accordion-body .orientation .orientation-text {
    flex: 1 1 625px;
    max-width: 625px;
    text-align: left;
    color: white;
}

.services-section .accordion-body .orientation.yellow .orientation-text {
    flex: 1 1 600px;
    max-width: 600px;
}

.services-section .accordion-body .orientation .orientation-text h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 24px;
}

.services-section .accordion-body .orientation .orientation-text p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 16px;
}

.services-section .accordion-body .orientation .orientation-image {
    position: absolute;
    right: 50px;
    top: 20%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 5px
}

.services-section .accordion-body .orientation.yellow .orientation-image {
    width: 567px;
    height: 695px;
    top: 30%
}

.services-section .accordion-body .seances {
    padding: 100px 48px;
    background-color: #FFF;
    font-family: 'Poppins', sans-serif;
}

.services-section .accordion-body .seance-header h2 {
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 50px;
    text-align: center;
    color: #2F327D;
}

.services-section .accordion-body .seance-intro {
    color: #696984;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 22px;
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0px 24px 74px 0px #6C0D5E17;
}

.services-section .accordion-body .seance-intro span {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
}

.services-section .accordion-body .seance-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.services-section .accordion-body .seance-cards .seance-card {
    flex: 1 1 388px;
    background-color: #fff;
    border-radius: 16px;
    padding: 35px 30px 40px 22px;
    box-shadow: 0px 24px 74px 0px #6C0D5E17;
    text-align: left;
}

.services-section .accordion-body .seance-cards.yellow .seance-card {
    box-shadow: 0px 24px 74px 0px #75500E17;
    padding-bottom: 30px;
}

.services-section .accordion-body .seance-card h4 {
    font-weight: 700;
    font-size: 26px;
    line-height: 38px;
    color: #696984;
}

.services-section .accordion-body .seance-card .title {
    min-height: 70px;
}

.services-section .accordion-body .seance-label {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: -25px;
}

.services-section .accordion-body .seance-label.pink {
    color: #EA4D96;
}

.services-section .accordion-body .seance-card p {
    color: #696984;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
}

.services-section .accordion-body .yellow .seance-card p,
.services-section .accordion-body .yellow .seance-card ul {
    font-size: 19px;
    color: #696984;
}

.services-section .accordion-body .seance-card ul {
    margin-top: -13px;
    margin-bottom: -30px !important;
}

.services-section .accordion-body .end {
    background: url("../images/end-bg-pink.png") no-repeat center/cover;
    padding: 35px 27px 50px 50px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.services-section .accordion-body .end.yellow {
    background: url("../images/end-bg-yellow.png") no-repeat center/cover;
    padding: 60px 30px 45px;
}

.services-section .accordion-body .end .end-left {
    flex: 1 1 300px;
    text-align: left;
    margin-top: 50px;
}

.services-section .accordion-body .end .end-left h2 {
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    color: #0F4290;
}

.services-section .accordion-body .end h2 .highlight {
    color: #12A19A
}

.services-section .accordion-body .end .end-right {
    flex: 1 1 800px;
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.services-section .accordion-body .end.yellow .end-right {
    gap: 50px;
}

.services-section .accordion-body .end .card-group {
    display: flex;
    gap: 25px;
    text-align: left;
    width: 100%;
}

.services-section .accordion-body .end.yellow .card-group .gap-4 {
    gap: 15px !important
}

.services-section .accordion-body .end .info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 15px;
    font-size: 20px;
    color: #696984;
    letter-spacing: -0.8px;
    box-shadow: 0px 24px 94px 0px #6C0D5E26;
    width: 100%;
}

.services-section .accordion-body .end.yellow .info-card {
    box-shadow: 0px 24px 94px 0px #75500E26;
}

.services-section .accordion-body .end.yellow .info-card.large {
    padding: 15px 30px;
}

.services-section .accordion-body .cta-button {
    background: linear-gradient(118.94deg, #1C62CC -12.82%, #0F4290 76.79%);
    box-shadow: 0px 15px 40px 0px #0F429040;
    width: 350px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    transition: transform 0.2s ease;
    margin-top: 20px;
}

.services-section .accordion-body .cta-button.green {
    margin: -50px auto 0;
}

.services-section .accordion-body .cta-button:hover {
    transform: translateY(-2px);
}

.services-section .accordion-body .end.yellow .parcoursup-text {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.2px;
    color: #696984
}

.services-section .accordion-body .end.yellow .parcoursup-text strong {
    font-weight: 700;
}

.services-section .accordion-body .end.yellow .cta-button {
    width: 230px;
}


/* Footer */

.footer {
    background-color: #0f4290;
    padding: 30px 0 0;
    width: 100%;
}

.footer .content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.footer .footer-logo {
    width: 177px;
    height: 51px;
    margin-bottom: 21px;
}

.footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer .footer-nav {
    display: flex;
    gap: 20px;
}

.footer .footer-nav a {
    color: #B2B3CF;
    text-decoration: none;
    padding-bottom: 15px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    position: relative;
    letter-spacing: 1.1px;
}

.footer .footer-newsletter {
    max-width: 609px;
}

.footer .newsletter-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    color: white;
    margin-bottom: 15px;
    opacity: 0;
}

.footer .newsletter-form {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    opacity: 0;
}

.footer .newsletter-input {
    width: 400px;
    padding: 12px 22px;
    border: 1px solid #83839a;
    border-radius: 5px;
    background: transparent;
    color: #ffffff;
    font-size: 20px;
}

.footer .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.7px;
}

.footer .newsletter-button {
    background-color: #12a19a;
    border: none;
    border-radius: 5px;
    padding: 12px 40px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
}

.footer .social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .social-text {
    font-size: 14px;
    color: #B2B3CF;
}

.footer .social-icon {
    width: 25px;
    height: 25px;
}

.footer .footer-bottom {
    background-color: #DCE2EE;
    padding: 15px 0;
}

.footer .footer-bottom .handler {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.footer .footer-bottom-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #0F4290;
    letter-spacing: 0.7px;
    text-decoration: none;
}

.footer .footer-divider {
    width: 1px;
    height: 17px;
    background-color: #0F4290;
}

.contact-section {
    text-align: center;
    padding: 80px 0px 90px;
    position: relative;
}

.contact-section .bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    user-select: none;
    width: 100%;
    height: 100%;
}

.contact-section .container {
    width: 1225px;
}

.contact-section h2 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 58px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #0F4290;
}

.contact-section .contact-form {
    width: 100%;
    background: #fff;
    padding: 40px 75px;
    border-radius: 20px;
    box-shadow: 0px 10px 60px 0px #262D7614;
    text-align: left;
    z-index: 1;
}

.contact-section .contact-form .form-row {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.contact-section .contact-form .group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-section .contact-form .asterisk{
    color: red;
}

.contact-section .contact-form .group label {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.2px;
    color: #696984;
    /* Hide labels when using placeholders */
    display: none;
}

.contact-section .contact-form input,
.contact-section .contact-form select,
.contact-section .contact-form textarea,
.contact-section .contact-form .dropdown-toggle {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 18px;
    background: white !important;
    color: #696984;
}

.contact-section .contact-form .btn.active,
.contact-section .contact-form .btn.show {
    color: #696984;
    background-color: white !important;
}

.contact-section .contact-form .dropdown-toggle::after {
    content: url(../images/chevron-down.svg) !important;
    border: 0 !important;
}

.contact-section .contact-form .dropdown-toggle:focus {
    outline: none !important;
}

.contact-section .contact-form textarea {
    min-height: 164px;
    resize: vertical;
}

.contact-section .contact-form ::placeholder,
.bs-placeholder .filter-option-inner-inner {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.4px;
    color: rgba(105, 105, 132, 0.5);
}

.contact-section .contact-form .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.2px;
    color: #696984
}

.contact-section .contact-form .checkbox-group a {
    font-weight: 700;
    color: #696984;
    text-underline-offset: 3px;
}

.contact-section .contact-form input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #0f4290;
    cursor: pointer;
}

.contact-section button[type="submit"] {
    background: linear-gradient(118.94deg, #1C62CC -12.82%, #0F4290 76.79%);
    color: #fff;
    border: none;
    width: 160px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.2px;
    cursor: pointer;
    margin: 30px auto 0;
    box-shadow: 0px 15px 40px 0px #0F429040;
}

.whatsapp-section {
    background-color: #F3F5F7;
    text-align: center;
    padding: 40px 0 0;
    background-size: cover;
}

.whatsapp-section h2 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 32px;

    text-align: center;
    text-transform: uppercase;
    color: #12A19A;
}

.whatsapp-section .whatsapp-box {
    background-image: url('../images/whatsapp-box.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 493px;
    height: 190px;
    position: relative;
    margin: 0 auto;
}

.whatsapp-section .whatsapp-box span {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    color: #696984;
    position: absolute;
    top: 45%;
    left: 59%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    line-height: 150%;
}

.whatsapp-section .whatsapp-box strong {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 35px;
    line-height: 100%;
    text-align: center;
    color: #696984
}

.close{
    position: absolute;
    background: no-repeat;
    border: none;
    color: #fff;
    font-size: 50px;
    right: 20px;
    top: -10px;
    display: none;
}

#mobileMenu .social-links {
    display: none;
}

@media (max-width: 1280px) {

    .footer .footer-bottom .handler {
        max-width: 1000px;
    }

    .header .header-content {
        max-width: 1000px;
    }

    .header .logo {
        height: auto;
        width: 180px;
    }

    .header .nav-menu {
        gap: 30px;
    }

    .header .nav-menu .nav-item {
        font-size: 14px;
    }

    .header .cta-button {
        padding: 10px 16px;
        font-size: 14px;
        margin-left: 0;
    }

    .hero-section .hero-slider .hero-image-wrapper {
        width: 500px;
        height: 500px;
    }

    .hero-section .hero-content {
        max-width: 610px !important;
    }

    .hero-section .hero-content .hero-title,
    .hero-section .hero-content .hero-subtitle {
        font-size: 34px;
        line-height: 46px;
    }

    .hero-section .hero-content-container {
        max-width: 1000px;
    }

    .hero-section .hero-content .hero-cta {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-section {
        min-height: unset;
        max-height: unset;
    }

    .hero-slider .slide {
        min-height: unset;
    }

    .hero-section .slick-dotted.slick-slider {
        margin-bottom: 10px !important;
    }

    .hero-section .hero-slider .slick-dots {
        bottom: 20px;
    }

    .services-section {
        padding: 80px;
    }

    .services-section .services-title {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 20px;
    }

    .services-section .services-description {
        font-size: 20px;
    }

    .services-section .services-grid {
        gap: 20px;
    }

    .services-section .service-card {
        padding: 20px;
        width: 320px;
    }

    .services-section .service-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .services-section .service-description {
        font-size: 16px;
        margin-bottom: 20px;
        min-height: 107px
    }

    .services-section .service-note {
        font-size: 14px;
    }

    .services-section .circle {
        width: 75px;
        height: 75px;
    }

    .services-section .circle img {
        transform: scale(.8);
    }

    .services-section .services-cta {
        font-size: 14px;
    }

    .founders-section {
        padding: 80px;
    }

    .founders-section .founder-name-card {
        margin: -15% 12% 30px;
    }

    .founders-section .founders-title {
        font-size: 32px;
        line-height: 47px;
    }

    .founders-section .founders-logo {
        transform: scale(0.8);
        margin-left: -15px;
    }

    .founders-section .founders-subtitle {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .founders-section .founder-name {
        font-size: 34px;
    }

    .founders-section .founder-name .highlight {
        font-size: 34px;
    }

    .founders-section .founder-bio {
        font-size: 16px;
        line-height: 27px;
    }

    .testimonials-section {
        padding: 80px 50px 55px 80px;
    }

    .testimonials-section .testimonials-title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .testimonials-section .testimonials-logo {
        width: 120px;
        height: 120px;
    }

    .testimonials-section .testimonials-container {
        max-width: 1000px;
    }

    .testimonials-section .testimonials-slider {
        margin-left: 20px;
        margin-right: unset;
    }

    .testimonials-section .testimonial-text {
        font-size: 14px;
        line-height: 18px;
    }

    .blog-section {
        padding: 80px 0px;
    }

    .blog-section .blog-title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .blog-section .content-wrapper {
        max-width: 1000px;
    }

    .blog-section .blog-grid {
        gap: 25px;
    }

    .blog-section .blog-item {
        gap: 15px;
        margin-bottom: 15px;
    }

    .blog-section .blog-main-image {
        height: 220px;
    }

    .blog-section .blog-date {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .blog-section .blog-item-title {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .blog-section .blog-excerpt {
        font-size: 15px;
        line-height: 25px;
        margin-bottom: 10px;
    }

    .blog-section .blog-link {
        font-size: 14px;
        padding-right: 15px;
    }

    .blog-section .blog-sidebar .blog-link {
        margin-top: 0;
    }

    .blog-section .blog-item-image {
        width: 200px;
        height: auto;
    }

    .blog-section .blog-main-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 10px
    }

    .blog-section .blog-cta {
        padding: 12px 20px;
        font-size: 14px;
    }

    .footer .content-wrapper {
        max-width: 1000px;
    }

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

    .footer .footer-nav {
        gap: 15px;
    }

    .footer .footer-nav a {
        padding-bottom: 20px;
        font-size: 14px;
    }

    .footer .newsletter-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .footer .newsletter-form {
        gap: 20px;
        margin-bottom: 50px;
    }

    .footer .newsletter-button {
        padding: 5px 30px;
        font-size: 18px;
    }

    .footer .newsletter-input {
        font-size: 18px;
    }

    .footer .social-text {
        font-size: 14px;
    }

    .footer .footer-bottom {
        padding: 20px 0;
    }

    .footer .footer-bottom-text {
        font-size: 14px;
    }

    .hero-section .hero-content .hero-static-title {
        font-size: 40px;
        line-height: 50px;
    }

    .hero-section.static .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-section .hero-main-image {
        width: 400px;
        height: auto;
        top: 0;
        overflow: hidden;
    }

    .reason-section {
        height: 480px;
    }

    .reason-section .reason-bg-left,
    .reason-section .reason-bg-right {
        width: 50%;
        height: auto;
    }

    .reason-section .reason-title {
        margin-bottom: 35px;
        font-size: 40px;
    }

    .reason-section .reason-text {
        font-size: 20px;
        line-height: 28px;
    }

    .story-section .content-wrapper {
        max-width: 1000px;
    }

    .story-section .story-image-wrapper {
        width: 50%;
        height: auto;
    }

    .story-section .story-image {
        object-position: center;
        transform: scale(1);
    }

    .story-section .story-logo {
        width: 180px;
        height: auto;
        margin-bottom: 10px;
    }

    .story-section .story-title {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 20px;
    }

    .story-section .story-description {
        font-size: 18px;
        line-height: 28px;
    }

    .entrepreneurship-section .content-wrapper {
        max-width: 1000px;
    }

    .entrepreneurship-section .story-content {
        gap: 10px;
    }

    .entrepreneurship-section .entrepreneurship-title {
        font-size: 40px;
        line-height: 50px;
        width: 500px;
    }

    .entrepreneurship-section .entrepreneurship-text {
        font-size: 20px;
        line-height: 30px;
        max-width: 480px;
    }

    .entrepreneurship-section .project-cards {
        gap: 15px;
    }

    .entrepreneurship-section .project-card {
        padding: 25px 20px;
        width: 220px;
    }

    .entrepreneurship-section .project-feature {
        white-space: pre-wrap;
        margin-bottom: 10px;
    }

    .entrepreneurship-section .project-card.teal {
        width: 250px;
    }

    .team-section .content-wrapper {
        max-width: 1000px;
    }

    .team-section .team-title {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 55px;
    }

    .team-section .member-content {
        max-width: 650px;
    }

    .team-section .member-bio {
        font-size: 20px;
        width: 550px;
        margin-bottom: 0;
    }

    .team-section .member-image {
        width: auto;
        height: 400px;
    }

    .team-section .member-name-card {
        left: 5%;
        width: 300px;
        height: 100px
    }

    .team-section .team-member.reverse .member-name-card  {
        width: 270px;
    }

    .team-section .member-image-container {
        align-self: center;
    }


    .team-section .member-name {
        font-size: 28px;
        line-height: 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .team-section .member-social {
        right: 142px;
        width: 40px;
        height: 40px;
    }

    .team-section .member-quote-container {
        min-width: 635px;
        margin-left: 5px;
        padding: 20px 30px;
    }

    .team-section .quote-marks-end {
        right: 0px;
    }

    .team-section .quote-content {
        max-width: 460px;
    }

    .team-section .rotated .quote-content {
        max-width: 600px;
    }

    .team-section .member-quote {
        font-size: 16px;
        line-height: 20px;
    }
    
    .team-section .reverse .member-quote {
        margin-left: 40px;
    }

    .team-section .quote-mark {
        width: 30px;
    }

    .team-section .member-icon {
        width: 30px;
        height: 30px;
    }

    .team-section .team-member.reverse {
        gap: 30px;
    }

    .team-section .team-member.reverse .member-name-card {
        left: 7%;
    }

    .team-section .reverse .member-name-card {
        height: 70px;
        bottom: -40px;
    }

    .team-section .reverse .member-name {
        /* margin-left: -46px; */
    }

    .team-section .reverse .member-social {
        bottom: -60px;
        right: 126px;
    }

    .team-section .reverse .member-bio {
        width: 600px;
    }

    .team-section .member-quote-container.rotated {
        width: 600px;
        min-width: none;
        margin-left: 0;
        padding: 10px 0px;
    }

    .team-section .rotated .quote-content {
        margin-left: 0;
    }

    .why-section .why-image {
        width: 400px;
        height: auto;
    }

    .why-section .why-logo {
        width: 280px;
        height: auto;
        top: 0;
        left: -60px;
    }

    .why-section .why-description {
        font-size: 18px;
        line-height: 25px;
        max-width: 550px;
    }

    .why-section .why-subtitle {
        font-size: 25px;
        max-width: 440px;
    }

    .why-section .cta-logo {
        width: 180px;
        height: auto;
    }

    .why-section .cta-title {
        font-size: 28px;
        margin-top: 10px;
    }

    .why-section .cta-subtitle {
        font-size: 20px;
        line-height: 29px;
        margin-bottom: 35px;
    }

    .why-section .slick-prev {
        right: calc((100% - 1000px) + 40px);
    }

    .why-section .slick-next {
        right: calc((100% - 1000px) - 20px);
    }

    .services-section.accordion .content-wrapper {
        max-width: 1000px;
    }

    .hero-section .hero-content .hero-services-title {
        max-width: 690px;
    }

    .hero-section.services .hero-main-image {
        top: -55px;
    }

    .services-section .accordion-button {
        height: 100px;
    }

    .services-section .accordion-button span {
        font-size: 40px;
    }

    .services-section .accordion-body .intro .main-title {
        font-size: 27px;
        line-height: 130%;
    }

    .services-section .accordion-body .intro .card {
        padding: 20px 15px;
    }

    .services-section .accordion-body .intro .card h6 {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .services-section .accordion-body .intro .card p {
        font-size: 18px;
        line-height: 25px;
    }

    .services-section .accordion-body .intro .column .card {
        width: 300px;
    }

    .services-section .accordion-body .why {
        padding: 60px 30px 100px 35px;
    }

    .services-section .accordion-body .why .main-title {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .services-section .accordion-body .why .text {
        font-size: 16px;
        line-height: 145%;
    }

    .services-section .accordion-body .why .country-card {
        width: 71px;
        height: 75px;
    }

    .services-section .accordion-body .why .country-card img {
        width: 30px;
        height: 30px;
    }

    .services-section .accordion-body .why .country-card p {
        font-size: 13px;
    }

    .services-section .accordion-body .orientation {
        margin-top: 0;
    }

    .services-section .accordion-body .orientation .orientation-image {
        width: 400px;
        height: 400px;
        top: 0;
        transform: none;
        border-radius: 0
    }

    .services-section .accordion-body .orientation.yellow .orientation-image {
        top: 0;
        width: unset;
        height: unset;
        max-width: 400px;
    }

    .services-section .accordion-body .orientation .orientation-text p {
        font-size: 18px;
    }

    .services-section .accordion-body .orientation .orientation-text {
        flex: 1 1 450px !important;
        max-width: 450px !important;
    }

    .services-section .accordion-body .seances {
        padding: 80px 48px;
    }

    .services-section .accordion-body .seance-intro {
        font-size: 26px;
    }

    .services-section .accordion-body .seance-intro span {
        font-size: 18px;
    }

    .services-section .accordion-body .seance-label {
        margin-bottom: -15px;
    }

    .services-section .accordion-body .seance-cards .seance-card {
        padding: 30px 20px 10px;
    }

    .services-section .accordion-body .seance-card h4 {
        margin-bottom: 20px;
        font-size: 22px;
        line-height: 30px;
        min-height: 155px;
    }

    .services-section .accordion-body .seance-cards.yellow .seance-card h4 {
        margin-bottom: 0;
        /* min-height: 120px; */
    }

    .services-section .accordion-body .seance-card p {
        font-size: 16px;
        line-height: 140%;
    }

    .services-section .accordion-body .end .end-left {
        flex: 1 1 250px;
    }

    .services-section .accordion-body .end {
        gap: 20px;
    }

    .services-section .accordion-body .end .end-left h2 {
        font-size: 25px;
        line-height: 30px;
    }

    .services-section .accordion-body .end .end-right {
        flex: 1 1 600px;
    }

    .services-section .accordion-body .end .card-group {
        gap: 15px;
    }

    .services-section .accordion-body .end .info-card {
        font-size: 17px;
    }

    .services-section .accordion-body .end .end-right .card-group .gap-4 {
        gap: 15px !important
    }

    .services-section .accordion-body .end .cta-button {
        width: 290px;
        font-size: 14px;
        margin-top: 0;
    }

    .hero-section.noImg {
        height: 250px;
    }

    .contact-section .container {
        width: 1000px;
    }
}

@media (max-width: 768px) {

    .services-section .accordion-body .seance-intro {
        font-size: 22px;
    }

    .services-section .accordion-body .seance-intro span {
        font-size: 16px;
    }


    .header .header-content {
        padding: 15px 20px;
        height: auto;
    }

    .header .header .logo {
        height: 35px;
        width: auto;
    }

    .header .navbar-toggler {
        border: none;
        padding: 0;
    }

    .header .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        vertical-align: middle;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
    }

    .header .nav-menu {
        display: none;
        transition: all 0.3s ease;
    }   

    .header .nav-menu.show {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        height: 100vh;
        background: linear-gradient(180deg, #e8f4f8 0%, #f5e8f0 100%);
        padding: 160px 20px 20px 20px;
        border-bottom: 5px solid rgba(136, 136, 136, 0.2);
        z-index: 999;
        animation: slideIn 0.3s ease;
    }

    .header .nav-menu.hide {
        animation: slideOut 0.3s ease;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideOut {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(-100%);
        }
    }

    .header .nav-menu .close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #fff;
        font-size: 30px;
        cursor: pointer;
        z-index: 1000;
        display: none;
    }

    .header .nav-menu.show .close{
        display: block;
        color: #0f4290;
    }

    .header .nav-menu .nav-item {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 600;
        color: #0f4290;
        text-decoration: none;
    }

    .header .nav-menu .nav-item:after{
        display: none;
    }

    .header .nav-menu .nav-item:hover {
        text-decoration: underline;
        color: #0F4290;
    }

    .header .nav-menu .nav-item .dropdown-arrow {
        width: 10px;
        height: 5px;
    }

    .header .nav-menu .dropdown-container:hover .dropdown-menu, .header .nav-menu .dropdown-container .dropdown-menu{
        position: inherit;
        background-color: #FFF;
        padding: 0;
        border: none;
        display: none;
    }

    .header .nav-menu .dropdown-container .dropdown-menu .dropdown-item, .header .nav-menu .dropdown-container:hover .dropdown-menu .dropdown-item{
        color: #0F4290;
        background-color: #FFF;
        text-align: center;
    }

    .header .header .cta-button {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .hero-section {
        height: unset;
        margin-top: 70px;
    }

    .hero-bg {
        top: 70px;
    }

    .hero-section .hero-slider .hero-image-wrapper {
        border-radius: 0;
        overflow: visible;
        position: relative;
        top: unset;
        right: unset;
        width: 100%;
        height: 300px;
        padding-top: 0;
    }

    .hero-section .hero-slider .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
        transform: unset;
        position: relative;
        top: 0;
        left: 0;
        transform-origin: unset;
    }

    .hero-section .hero-slider .slide {
        position: relative;
        height: unset;
        min-height: unset;
        max-height: unset;
        outline: none;
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center
    }

    .hero-section .hero-content-container {
        position: relative;
        max-width: 90%;
        left: unset;
        transform: unset;
        top: unset;
    }

    .hero-section .hero-content {
        max-width: 100%;
    }

    .hero-section .hero-content .hero-title,
    .hero-section .hero-content .hero-subtitle {
        font-size: 28px;
        line-height: 40px;
    }

    .hero-section .hero-content .hero-subtitle {
        margin-bottom: 30px;
    }

    .hero-section .hero-slider .slick-dots {
        bottom: -40px;
    }

    .services-section {
        padding: 80px 0px 50px;
        width: 90%;
        margin: 0 auto;
    }

    .services-section .services-title {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .services-section .services-description {
        font-size: 19px;
        line-height: 24px;
        margin: 0 auto 60px;
    }

    .services-section .services-grid {
        flex-direction: column;
        gap: 50px;
        margin-bottom: 40px;
    }

    .services-section .service-card {
        width: 100%;
        margin: 0 auto;
    }

    .services-section .circle {
        width: 65px;
        height: 65px;
        top: -34px;
    }

    .services-section .circle img {
        transform: scale(.7);
    }

    .services-section .service-title {
        font-size: 24px;
        margin: 25px 0 10px;
    }

    .services-section .service-description {
        font-size: 16px;
        margin-bottom: 20px;
        min-height: unset;
    }

    .services-section .services-cta {
        font-size: 16px;
    }

    .founders-section {
        padding: 80px 20px 50px;
    }

    .founders-section .founders-title {
        font-size: 30px;
        line-height: 40px;
    }

    .founders-section .founders-title {
        font-size: 30px;
        line-height: 40px;
    }

    .founders-section .founders-subtitle {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .founders-section .founders-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-bottom: 30px;
    }

    .founders-section .founder-card {
        width: 100%;
    }

    .founders-section .founder-image {
        width: 80%;
    }

    .founders-section .founder-name-card {
        margin: -15% 0% 20px;
        width: 100%;
    }

    .founders-section .founders-link {
        font-size: 16px;
    }

    .testimonials-section {
        padding: 50px 0;
        max-width: 90%;
        margin: 0 auto;
    }

    .testimonials-section .testimonials-title {
        font-size: 35px;
        line-height: 45px;
        max-width: 270px;
        margin: auto;
    }

    .testimonials-section .testimonials-container {
        max-width: 100%;
    }

    .testimonials-section .testimonials-logo {
        display: none;
    }

    .testimonials-section .testimonials-slider {
        margin-left: unset;
        margin-bottom: 0;
    }

    .testimonials-section .testimonial-card {
        height: 360px;
        margin: 20px 0;
        width: 100%;
        overflow: hidden;
        transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .testimonials-section .testimonial-card.expanded {
        height: auto;
        min-height: 360px;
    }

    .testimonials-section .testimonial-nav {
        display: none;
    }

    .testimonials-section .testimonial-text {
        flex: 1;
        position: relative;
    }

    .testimonials-section .testimonial-card:not(.expanded).has-overflow .testimonial-text::after {
        content: "...";
        color: #12a19a;
        font-weight: 600;
        position: absolute;
        bottom: 0;
        right: 0;
        background: linear-gradient(to right, transparent, #fff 30%);
        padding-left: 20px;
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .testimonials-section .testimonial-card.expanded .testimonial-text::after {
        opacity: 0;
        visibility: hidden;
    }

    .testimonials-section .slick-dots li {
        padding: 1px;
    }

    .blog-section {
        padding: 50px 0px;
    }

    .blog-section .content-wrapper {
        max-width: 90%;
        text-align: center;
    }

    .footer .footer-nav{
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .footer .footer-nav a {
        position: relative;
    }

    .footer .footer-nav a:not(:last-child)::after {
        content: "|";
        color: #B2B3CF;
        margin-left: 10px;
        margin-right: 10px;
        font-weight: 300;
    }

    .footer .footer-bottom .handler{
        flex-direction: column;
    }

    .blog-section .blog-title {
        font-size: 35px;
        margin-bottom: 40px;
    }

    .blog-section .blog-grid {
        gap: 25px;
        flex-direction: column;
    }

    .blog-section .blog-sidebar {
        width: 100%;
    }

    .blog-section .blog-item {
        gap: 15px;
        margin-bottom: 15px;
        align-items: start;
    }

    .blog-section .blog-item-image {
        width: 165px;
        height: auto;
    }

    .blog-section .blog-item-title {
        font-size: 16px;
        margin-bottom: 5px;
        line-height: 22px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .blog-section .blog-sidebar .blog-excerpt {
        display: none;
    }

    .footer .content-wrapper {
        max-width: 90%;
        text-align: center;
    }

    .footer .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer .newsletter-title {
        display: none;
    }

    .footer .newsletter-form {
        gap: 15px;
        margin-bottom: 50px;
        flex-direction: column;
        margin-top: 20px;

        display: none;
    }

    .footer .newsletter-input {
        width: 100%;
    }

    .footer .newsletter-button {
        width: 100%;
        padding: 10px;
    }

    .footer .footer-bottom {
        flex-direction: column;
        gap: 10px
    }

    .footer .footer-divider {
        display: none;
    }

    .hero-section.static {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
        margin-top: 60px;
        max-height: unset;
        padding-bottom: 40px;
    }

    .hero-section.static .hero-content-container {
        transform: unset;
        top: unset;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .hero-section.static .hero-content .hero-static-title {
        margin-bottom: 20px
    }

    .hero-section.static .hero-content-container {
        transform: unset;
        top: unset;
    }

    .hero-section.static .hero-content {
        max-width: 100%;
    }

    .hero-section .hero-content .hero-static-title {
        font-size: 34px;
        line-height: 40px;
    }

    .hero-section .hero-main-image {
        width: 100%;
        max-height: 300px;
        top: 0;
        overflow: hidden;
        position: relative;
    }

    .hero-section .hero-main-image img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .reason-section {
        height: unset;
    }

    .reason-section .reason-bg-left,
    .reason-section .reason-bg-right {
        width: 100%;
    }

    .reason-section .reason-content {
        max-width: 100%;
        padding: 40px 20px;
    }

    .reason-section .reason-title {
        margin-bottom: 25px;
        font-size: 34px;
        line-height: 121%;
    }

    .story-section {
        padding: 50px 0 30px;
    }

    .story-section .content-wrapper {
        max-width: 90%;
    }

    .story-section .story-content {
        gap: 20px;
        flex-direction: column;
        margin-bottom: 0;
    }

    .story-section .story-image-wrapper {
        width: 100%;
    }

    .story-section .story-text-content {
        max-width: 100%;
    }

    .story-section .story-title {
        font-size: 34px;
        line-height: 40px;
        margin-bottom: 10px;
    }

    .entrepreneurship-section .content-wrapper {
        max-width: 90%;
    }

    .entrepreneurship-section .story-content {
        gap: 20px;
        flex-direction: column;
    }

    .entrepreneurship-section .entrepreneurship-title {
        font-size: 30px;
        line-height: 40px;
        width: 100%;
    }

    .entrepreneurship-section .entrepreneurship-text {
        font-size: 18px;
        line-height: 28px;
        max-width: 100%;
        margin-bottom: 0;
    }

    .entrepreneurship-section .project-cards {
        gap: 20px;
        flex-direction: column;
        width: 100%;
    }

    .entrepreneurship-section .project-card,
    .entrepreneurship-section .project-card.teal {
        width: 100%;
    }

    .entrepreneurship-section .project-card.teal h3 {
        margin-bottom: 0;
    }

    .team-section {
        padding: 50px 0;
    }

    .team-section .content-wrapper {
        max-width: 90%;
    }

    .team-section .team-title {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .team-section .team-member {
        display: flex;
        gap: 85px;
        margin-bottom: 0;
        align-items: flex-start;
        flex-direction: column-reverse;
    }

    .team-section .member-content {
        max-width: 100%;
    }

    .team-section .member-bio {
        font-size: 18px;
        width: 100%;
        margin-bottom: 0;
        line-height: 27px;
    }

    .team-section .member-quote-container {
        min-width: 100%;
        margin-left: 0;
        padding: 0 10px;
    }

    .team-section .quote-content {
        max-width: 100%;
        padding-left: 0px;
    }

    .team-section .team-member.reverse {
        gap: 85px;
        flex-direction: column-reverse;
        margin-top: 30px;
    }

    .team-section .team-member.reverse .member-content {
        max-width: 100%;
    }

    .team-section .team-member.reverse .member-image-container {
        height: 400px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .team-section .team-member.reverse .member-image {
        width: 330px;
        height: 100%;
        object-fit: cover;
    }

    .team-section .rotated .quote-content {
        padding-left: 0;
    }

    .team-section .reverse .member-quote {
        margin-left: 0;
    }

    .team-section .team-member.reverse .member-name-card {
        left: 14%;
    }

    .team-section .team-member.reverse .member-social {
        right: 156px;
    }

    .team-section .reverse .member-bio {
        width: 100%;
    }

    .team-section .member-quote-container {
        background: none;
    }
    .team-section .member-quote-container.rotated {
        background: none;
        width: 100%;
        margin-left: 0;
        padding: 0;
    }

    .team-section .rotated .quote-content {
        margin-left: 0;
    }

    .why-section {
        padding: 0;
    }

    .why-section .why-slider {
        margin-bottom: 50px;
    }

    .why-section .why-image {
        width: 100%;
        height: auto;
    }

    .why-section .why-content {
        margin-bottom: 0;
        flex-direction: column;
    }

    .why-section .why-title-container {
        margin-bottom: 20px;
    }

    .why-section .why-text-content {
        flex: 100%;
        padding: 0 20px;
    }

    .why-section .why-logo {
        top: -50px;
    }

    .why-section .cta {
        width: 90%;
        margin: 0 auto 50px;
    }

    .why-section .slick-prev,
    .why-section .slick-next {
        display: none !important;
    }

    .why-section .slick-dots {
        position: absolute;
        bottom: 0px;
        left: 50%;
        display: flex !important;
        gap: 15px;
        z-index: 10;
        width: -moz-fit-content;
        width: fit-content;
        transform: translateX(-50%);
    }

    .why-section .slick-dots li {
        width: auto;
        height: auto;
        margin: 0;
    }

    .why-section .slick-dots li button {
        width: 35px;
        height: 12px;
        border-radius: 6px;
        background-color: rgba(15, 66, 144, 0.2);
        opacity: 1;
        transition: all 0.3s ease;
    }

    .why-section .slick-dots li button:before {
        display: none;
    }

    .why-section .slick-dots li.slick-active button {
        width: 63px;
        background-color: #0f4290;
    }

    .hero-section.static.services {
        max-height: unset;
    }

    .hero-section.services .hero-main-image {
        top: 0;
        height: unset;
        width: 100%;
    }

    .hero-section .hero-content .hero-services-title {
        max-width: 95%;
        font-size: 28px;
        margin-bottom: 40px;
    }

    .services-section.accordion {
        padding: 50px 0 !important;
        width: 100%
    }

    .services-section.accordion .content-wrapper {
        max-width: 90%;
    }

    .services-section .accordion-button {
        height: 70px;
        padding: 0 15px !important;
        gap: 15px
    }

    .services-section .circle {
        width: 50px;
        height: 50px;
    }

    .services-section .circle img {
        transform: scale(.5);
    }

    .services-section .accordion-button::after {
        width: 30px;
        height: 30px;
    }

    .services-section .accordion-button span {
        font-size: 19px;
        line-height: 23px;
    }

    .services-section .accordion-body .intro {
        padding: 35px 10px;
        gap: 20px;
        flex-wrap: wrap;
        margin: 0;
    }

    .services-section .accordion-body .intro .main-title {
        font-size: 20px;
        line-height: 130%;
    }

    .services-section .accordion-body .intro .card {
        padding: 15px;
        width: 100%;
    }

    .services-section .accordion-body .intro .column {
        width: 100%;
    }

    .services-section .accordion-body .intro .column .card {
        width: 100%;
    }

    .services-section .accordion-body .intro .column .card:first-child {
        margin-top: 0 !important;
    }

    .services-section .accordion-body .intro .column .card:last-child {
        margin-top: 15px !important;
    }

    .services-section .accordion-body .why {
        padding: 0 15px;
        gap: 25px;
        flex-wrap: wrap;
        margin: 0;
        flex-direction: column-reverse;
    }

    .services-section .accordion-body .why .col-md-5 img {
        display: none;
    }

    .services-section .accordion-body .orientation {
        padding: 0;
        margin-top: 0;
        flex-wrap: nowrap;
        flex-direction: column-reverse;
    }

    .services-section .accordion-body .orientation.yellow {
        padding: 0;
    }

    .services-section .accordion-body .orientation .orientation-image,
    .services-section .accordion-body .orientation.yellow .orientation-image {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
        transform: none;
        right: 0;
        border-radius: 0;
    }

    .services-section .accordion-body .orientation-text {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 20px 15px;
    }

    .services-section .accordion-body .seances {
        padding: 50px 0;
    }

    .services-section .accordion-body .seance-cards {
        flex-direction: column;
    }

    .services-section .accordion-body .seance-card h4 {
        min-height: unset;
    }

    .services-section .accordion-body .seance-cards .seance-card {
        flex: 1 1 100%;
        box-shadow: none !important;
    }

    .services-section .accordion-body .end,
    .services-section .accordion-body .end.yellow {
        flex-direction: column;
        padding: 0px 20px 50px;
        gap: 30px
    }

    .services-section .accordion-body .end .end-left {
        flex: 1 1 100%;
    }

    .services-section .accordion-body .end .end-right {
        flex: 1 1 100%;
        gap: 30px
    }

    .services-section .accordion-body .end .card-group {
        flex-direction: column;
        width: 100%;
    }

    .services-section .accordion-body .end .info-card {
        width: 100%;
    }

    .services-section .accordion-body .cta-button.green {
        margin: 0 auto;
        width: 90%;
    }

    .services-section .accordion-body.green {
        padding-bottom: unset;
    }

    .col {
        flex: 1 0 100% !important;
    }

    .hero-section.noImg {
        height: 180px;
    }

    .hero-section .hero-content .hero-static-title {
        font-size: 30px;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-section .container {
        width: 90%;
        padding: 0;
    }

    .contact-section h2 {
        font-size: 34px;
        line-height: 40px;
    }

    .contact-section .contact-form {
        padding: 30px 20px;
    }

    .contact-section .contact-form .form-row {
        gap: 20px;
        margin-bottom: 20px;
        flex-direction: column;
    }

    .contact-section .contact-form ::placeholder,
    .bs-placeholder .filter-option-inner-inner {
        font-size: 16px;
    }

    .checkbox-group {
        align-items: start;
    }

    .contact-section .contact-form .checkbox-group label {
        line-height: 140%;
    }

    .contact-section .contact-form input[type="checkbox"] {
        width: 25px;
        height: 25px;
    }

    .whatsapp-section .whatsapp-section h2 {
        font-size: 34px;
        line-height: 50px;
        margin-bottom: 30px;
    }

    .whatsapp-section .whatsapp-box {
        width: auto;
        height: 150px;
    }

    .whatsapp-section .whatsapp-box span {
        top: 32%;
        left: 60%;
    }

    .whatsapp-section .whatsapp-box strong {
        font-size: 25px;
    }


    #mobileMenu .social-links {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    #mobileMenu .social-text {
        /* font-size: 14px; */
        color: #0f4290;
    }

    #mobileMenu .social-icon {
        width: 35px;
        height: 35px;
        background-color: #0f4290;
        border-radius: 7px;
    }
}


/* Legal Notices Section */
.legal-notices {
    background-color: #F3F5F7;
}

.legal-notices .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content {
    background: #fff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0px 15px 40px 0px rgba(15, 66, 144, 0.08);
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #0f4290;
    margin-bottom: 20px;
    border-bottom: 2px solid #12a19a;
    padding-bottom: 10px;
    display: inline-block;
}

.legal-section p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1f2937;
    margin-bottom: 15px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.legal-list li {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1f2937;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.legal-list li::before {
    content: "•";
    color: #12a19a;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.legal-list li strong {
    color: #0f4290;
    font-weight: 600;
}

.legal-link {
    color: #12a19a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #0f4290;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-notices {
        padding: 40px 0;
    }

    .legal-content {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .legal-section h2 {
        font-size: 20px;
    }

    .legal-section p,
    .legal-list li {
        font-size: 15px;
    }

    .legal-section {
        margin-bottom: 35px;
    }

    .testimonials-section .slick-dots li button {
        width: 15px;
    }

    .testimonials-section .slick-dots li.slick-active button {
        width: 43px;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 25px 15px;
    }

    .legal-section h2 {
        font-size: 18px;
    }

    .legal-section p,
    .legal-list li {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
  .whatsapp-section .whatsapp-box span {
    top: 45%;
    left: 58%;
  }
  .header .header-content {
    padding: 15px 20px;
    height: auto;
  }
  .header .logo {
    height: 35px;
    width: auto;
  }
  .header .navbar-toggler {
    border: none;
    padding: 0;
  }
  .header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
  }
  .header .nav-menu {
    display: none;
  }
  .header .nav-menu.show {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 100vh;
    background: linear-gradient(180deg, #e8f4f8 0%, #f5e8f0 100%);
    padding: 100px 20px 20px 20px;
    border-bottom: 5px solid rgba(136, 136, 136, 0.2);
    z-index: 999;
  }
  .header .nav-menu.show .close {
    display: block;
  }
  .header .nav-menu .nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #0f4290;
    text-decoration: none;
  }
  .header .nav-menu .nav-item:after {
    display: none;
  }
  .header .nav-menu .nav-item:hover {
    text-decoration: underline;
    color: #0F4290;
  }
  .header .nav-menu .nav-item .dropdown-arrow {
    width: 10px;
    height: 5px;
  }
  .header .nav-menu .dropdown-container:hover .dropdown-menu,
  .header .nav-menu .dropdown-container .dropdown-menu {
    position: inherit;
    background-color: #0f4290;
    padding: 0;
    border: none;
    display: none;
  }
  .header .nav-menu .dropdown-container:hover .dropdown-menu .dropdown-item,
  .header .nav-menu .dropdown-container .dropdown-menu .dropdown-item {
    color: #0F4290;
    text-align: center;
  }
  .header .cta-button {
    width: 100%;
    text-align: center;
    margin-top: 40px;
  }
  .hero-section .hero-slider .hero-image-wrapper {
    padding-top: 0;
  }

  .wpcf7-list-item {
    margin: 0;
  }
}