/* #region font declation */

/* Nunito Regular */
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Nunito Bold */
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Nunito Light */
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Nunito Italic */
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Nunito Bold Italic */
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* #endregion font declation */

/* #region global configuration */

:root {
    --white: #fcfdff;
    --black: #1C274C;
    --grey: #e5e6e7;
    --accent: #22223b;
    /* --accent: #F4AC45; */


    --automatic-container: min(1200px, 100% - 8rem);
}

@media (max-width: 1024px) {
    :root {
        --automatic-container: calc(100% - 4rem);
    }
}

@media (max-width: 596px) {
    :root {
        --automatic-container: calc(100% - 2rem);
    }
}

html {
    background-color: var(--white);
    color: var(--black);
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.c-white {
    color: var(--white);
}

main {
    margin-top: 5rem;
    margin-bottom: 5rem;

    @media (width >=48rem) {
        margin-top: 6.5%;
    }
}

main>* {
    max-width: var(--automatic-container);
    margin-inline: auto;
    display: block;
    padding-block: 4.5rem;
}

main.accueil .hero {
    padding-block: 3rem;
}

.line,
.line-white {
    max-width: 100%;
    padding-block: initial;
}

.stats {
    padding-block: initial;
    padding-bottom: 5%;
}

.init-padding {
    padding-block: inherit;

    @media (width >=48rem) {
        padding-block: 5rem;
    }
}

.line {
    max-width: var(--automatic-container);
    background-color: var(--grey);
    height: 0.25px;
}

.line-white {
    background-color: white;
    width: 100%;
    height: 0.25px;
}

h1 {
    font-size: 3rem;
    line-height: 105%;
    font-weight: 400;
}

h2 {
    /* font-size: 3rem; */
    line-height: 110%;
}

/* 

h3 {
    font-size: 2rem;
} */

.top-h-1 {
    font-size: 3rem;

    @media (width >=48rem) {
        font-size: 4rem;
    }
}

h4 {
    font-size: 20px;
    font-weight: bold;
    line-height: 105%;
}

p {
    font-size: 18px;
}

img {
    pointer-events: none;
}

.nav-link,
button,
.cta-nav {
    font-size: 20px;
}

.rounded {
    border-radius: 20px;
}


.rounded-0 {
    border-radius: 15px;
}

.rounded-top {
    border-radius: 0 0 20px 20px;
}

.rounded-2 {
    border-radius: 30px;
}

.header .cta {
    font-weight: normal;
    padding: 10px 32px;
}

.cta {
    background-color: var(--accent);
    padding: 12px 32px;
    color: var(--white);
    border-radius: 99999px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

.cta2 {
    padding: 12px 32px;
    color: var(--black);
    border-radius: 99999px;
    border: 1px solid var(--black);
    font-weight: 600;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.cta:hover {
    background-color: #e69a3e;
    animation: pulse 1.5s infinite;
}

.cta2:hover {
    background-color: var(--black);
    color: var(--white);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.more-cta {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    transition: all 0.3s ease;
}

.more-cta:hover {
    transform: translateX(4px);
    gap: 6px;
}

.cta:hover {
    background-color: var(--accent);
}

.icon-container {
    padding: 0.5rem;
    display: flex;
    border: 1px solid var(--grey);
    justify-content: center;
    align-items: center;
    width: min-content;

}

.icon-container svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--accent);
}

.header2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    @media (width >=48rem) {
        flex-direction: row;
    }

}

.flex-1 {
    flex: 1;
}

.flex {
    display: flex;
    flex-direction: row;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.gap-4 {
    gap: 2rem;
}

.items-center {
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;

    @media (width >=48rem) {
        font-size: 4rem;
    }
}

.h-limit {
    height: 500px;
}

.text-center {
    text-align: center;
}

.text-end-start {
    text-align: start;
    font-weight: 400;

    @media (width >=48rem) {
        text-align: end;
    }
}

.text-base {
    font-size: 16px;
}

.history .vision-slide {
    display: flex;
    flex-direction: column;
    gap: 4rem;

    @media (width >=48rem) {
        flex-direction: row;
        padding-inline: 2rem;
    }
}

.gap-3 {
    gap: 3rem;
}

.scroll-buttons {
    display: none;
    /* caché par défaut */
    margin-top: 15px;
    justify-content: center;
    gap: 3rem;
}

/* À partir de 48rem (48 * 16 = 768px) on affiche */
@media (min-width: 48rem) {
    .scroll-buttons {
        display: flex;
    }
}


.scroll-buttons button {
    color: var(--black);
    border: none;
    border: 1px solid var(--grey);
    padding: 10px 14px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 999999px;
    transition: 0.2s;
    background-color: var(--white);
}

.scroll-buttons button:hover {
    background: var(--accent);
    color: var(--white);
}

/* #endregion global configuration */

/* #region header */

header.header svg {
    height: 5rem;
    width: 5rem;
}

header.header {
    padding-inline: calc(calc(100% - var(--automatic-container)) / 2);
    padding-block: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
    background-color: var(--white);
    box-shadow: 0 1px 5px 2.5px rgba(25, 25, 25, 0.05);
    z-index: 50;
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Le reste de votre CSS reste inchangé */
header.header .cta {
    display: none;
}

header.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header .logo-navigation-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
}

.header .logo-navigation-container .navigation,
.nav-links {
    display: flex;
    align-items: center;
    gap: 2vw;
}

.header .logo-navigation-container .navigation {
    display: none;
}

.menu-icon button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

button {
    border: none;
    cursor: pointer;
    font-weight: 400;
    font-family: 'Nunito', sans-serif;
}

.menu-icon button svg {
    width: 2.5rem;
    height: 2.5rem;
    fill: currentColor;
    color: var(--accent);
}

.menu-icon {
    display: flex;
}

.card-title {
    font-size: 24px;
    font-weight: bold;
}

.card-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent);
}

@media (width >=48rem) {
    .header .logo-navigation-container .navigation {
        display: block;
    }

    .menu-icon {
        display: none;
    }

    header.header .cta {
        display: flex;
    }
}

.navigation .nav-link {
    color: var(--black);
}

.navigation .nav-link:hover {
    color: var(--accent);
}

body.menu-open {
    overflow: hidden;
    /* bloque le scroll */
}

.mobile-menu {
    position: fixed;
    inset: 0;
    /* background-color: var(--black); */
    /* fond noir transparent */
    transform: translateX(-100%);


    /* top: 0; */
    /* left: 0; */
    width: 100vw;
    height: 100vh;
    background-color: var(--accent);
    transform: translateX(-100%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;

}

.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.875rem;
    z-index: 9999;
    cursor: pointer;
    color: #fcfdff;
}

.mobile-menu .nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    gap: 20px;
    color: var(--white);
    justify-content: center;
    margin-block-start: 1.5rem;
    margin-block-end: 1.5rem;
    padding-inline: 2rem;
    z-index: 50;
}

.mob-link {
    font-size: 2rem;
    color: var(--white);
}

.w-logo{
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

/* #endregion header */

/* #region accueil */

/* #region Hero */
.accueil .hero {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.accueil .hero .head {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    @media (width >=48rem) {
        flex-direction: row;
    }
}

.hero-social {
    display: flex;
}

.hero-social img {
    width: 60px;
    height: 60px;
    border: 2px solid var(--white);
    border-radius: 50%;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

/* Délais différents pour un effet cascade */
.hero-social img:nth-child(1) {
    transition-delay: 0s;
}

.hero-social img:nth-child(2) {
    margin-left: -1.5rem;
    transition-delay: 0.05s;
}

.hero-social img:nth-child(3) {
    margin-left: -1.5rem;
    transition-delay: 0.1s;
}

.hero-social img:nth-child(4) {
    margin-left: -1.5rem;
    transition-delay: 0.15s;
}

.hero-social img:hover {
    transform: scale(1.12);
    z-index: 10;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.ctas .cta,
.ctas .cta2,
.list-paragraph .cta {
    width: min-content;
    white-space: nowrap;
}

.list-paragraph {
    flex: 2;
    text-align: start;
    display: flex;
    flex-direction: column;
    gap: 2rem;

    @media (width >=48rem) {
        text-align: end;
    }
}

.list-paragraph .cta-end,
.header2 .cta-end {
    display: flex;
    justify-content: end;
}

.head .ctas {
    /* flex-1 flex flex-col md:flex-row w-full md:items-end justify-end gap-6 py-4 */
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
    padding-block: 1rem;
    justify-content: center;
    align-items: center;

    @media (width >=48rem) {
        flex-direction: row;
        justify-content: end;
        align-items: end;
    }
}

.head .ctas a {
    width: 100%;

    @media (width >=48rem) {
        width: min-content;
    }
}

/* #endregion Hero */

/* #region About */

.about {
    display: flex;
    flex-direction: column;
    /* gap: 3rem; */
}

.accueil .about .head {
    display: flex;
    flex-direction: column;
    gap: 3rem;

    @media (width >=48rem) {
        flex-direction: row;
        gap: 10rem;
    }
}

/* #endregion About */

/* #region video */

.accueil .video {
    /* relative flex flex-col items-center justify-center bg-white pb-20 */
    position: relative;
    padding-bottom: 80px;
    background-color: #f7f7f8;
    max-width: 100%;
    color: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid var(--white);
}

main.accueil .video .video-container {
    max-width: var(--automatic-container);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;

    @media (width >=48rem) {
        padding-inline: 5rem;
    }
}

.video-container video {
    aspect-ratio: 16/9;
    z-index: 9999;
}

.video .bottom-banner {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 30%;
    background-color: var(--accent);
    width: 100%;

    @media (width >=48rem) {
        height: 50%;
    }
}

/* main .video-section {
    background-color: #1C274C;
    color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    max-width: 100%;
    padding-top: 5rem;
    padding-bottom: 5rem;
} */

/* #endregion video */

/* #region why choose */

.why-choose {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-block: 5rem;
}

.accueil .why-choose .head {
    display: flex;
    flex-direction: column;
    gap: 3rem;

    @media (width >=48rem) {
        flex-direction: row;
        justify-content: space-around;
        gap: 10rem;
    }
}

.accueil .why-choose .vedette-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    justify-content: center;

    @media (width >=48rem) {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.accueil .why-choose .vedette-container .card {
    display: flex;
    flex-direction: column;
    flex: none;
    /* min-width: 18rem; */
    gap: 1rem;
    border-radius: 12px;
    background-color: #fff;
    padding-bottom: 21px;
}

.aspect-square {
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* #endregion why choose */

/* #region Contact */

.contact-us {
    display: flex;
    flex-direction: column;
    gap: 4rem;

    @media (width >=48rem) {
        flex-direction: row;
    }
}

.size-full {
    width: 100%;
    height: 100%;
}

.mid {
    width: 100%; /* Équivalent à la largeur par défaut sans le préfixe md */
    padding-left: 0;
    padding-right: 0;
}

/* Style pour tablette et desktop (md: 768px et plus) */
@media (min-width: 768px) {
    .mid {
        width: 50%;         /* Correspond à md:w-1/2 */
    }
}

.aspect-video {
    aspect-ratio: 16/8;
    width: 100%;
    height: auto;
}


.form-container {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* border-radius: 1rem;
    padding: 1.5rem; */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--grey);
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.form-textarea {
    resize: none;
    height: 8rem;
}

/* #endregion Contact */

/* #region faq */
.faq {
    display: flex;
    flex-direction: column;
    gap: 3rem;

    @media (width >=48rem) {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.faq .flex-col {
    gap: 3rem;
}

.text-2-3 {
    width: 100%;

    @media (width >=48rem) {
        width: 66%;
    }
}

.faq-items {
    border-block: 2px solid var(--grey);
    overflow: hidden;
    flex: 1;
}

.faq-item {
    border-bottom: 2px solid var(--grey);
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item[open] {
    background-color: #f8fafc;
    border-bottom-color: #d1d5db;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    list-style: none;
    padding: 1.5rem 2rem;
    transition: background-color 0.3s ease;
    gap: 1rem;
}

.faq-item[open] summary {
    background-color: #f8fafc;
    /* border-bottom: 1px solid #e5e7eb; */
}

.question-text {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.5;
}

.faq-item p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-item[open] summary::after {
    transform: rotate(90deg);
}

.faq-item[open] .accordion-icon {
    transform: rotate(180deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* #endregion faq */

/* #region Footer */

.footer-section {
    background-color: var(--accent);
    width: 100%;
    height: auto;
    color: var(--white);
}

.footer-svg svg {
    height: 5rem;
    width: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-container .footer-container-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;

    @media (width >=48rem) {
        flex-direction: row;
    }
}

.footer-container .footer-container-2 {
    /* flex flex-col md:flex-row justify-center items-center md:justify-between w-full py-4 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-block: 1rem;

    @media (width >=48rem) {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-container .logo {
    order: 1;
    display: flex;
    justify-content: start;
}

.footer-container .copyright {
    order: 2;
}

.footer-container .social-links {
    order: 3;
}

.footer-container .logo svg {
    height: 112px;
    width: 112px;
}

/* Copyright */
.copyright {
    color: var(--black);
    display: flex;
    justify-content: center;
    text-align: center;
    order: 1;
}

.copyright a {
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.copyright a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Réseaux sociaux */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    order: 1;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-icon {
    width: 2rem;
    height: 2rem;
    color: var(--white);
    fill: currentColor;
}

.social-icon:hover {
    color: var(--white);
}

/* #endregion Footer */

/* #endregion accueil */

/* #region a-propos */
.about .hero {
    display: flex;
    flex-direction: column;
    gap: 4rem;

    @media (width >=48rem) {
        flex-direction: row;
    }
}

.about .hero .text-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 3rem;

    @media (width >=48rem) {
        padding-inline: 2rem;
    }
}

.about .hero .hero-image {
    width: 100%;
    position: relative;
}

.about .hero .hero-image img {
    height: 100%;
    width: 100%;
}


.cta-container {
    display: flex;
    justify-content: end;

    @media (width >=48rem) {
        justify-content: start;
    }
}

.hero-social {
    display: flex;
}

.hero-social img {
    width: 60px;
    height: 60px;
    border: 2px solid var(--white);
    border-radius: 50%;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.team {
    /* background-color: var(--grey); */
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about .team .cards-container {
    display: flex;
    gap: 2rem;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* padding-left: 1rem; */
    padding-right: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;

    /* background-color: var(--accent); */
    @media (min-width: 640px) {
        gap: 2rem;
        justify-content: center;
    }
}

.about .team .cards-container .card {
    display: flex;
    flex-direction: column;
    flex: none;
    width: calc(100% - 50px);
    /* min-width: 18rem; */
    gap: 1rem;
    border-radius: 12px;
    /* border-top: 1px solid #E4E7E9;
    border-right: 1px solid #E4E7E9; */
    background-color: white;
    /* padding: 21px; */
    padding-bottom: 21px;
    box-sizing: border-box;
    /* overflow: hidden; */

    @media (min-width: 640px) {
        width: calc(1/4 * 100% - 10px);
    }
}

.about .team .cards-container .card img {
    /* border-radius: 12px 12px 0 0; */
    user-select: none;
    pointer-events: none;
}

/* .about .team .cards-container .card .title h2 {
    white-space: normal;
    word-spacing: 9999px;
    text-align: center;
    line-height: 120%;
} */



/* .about .team .cards-container .card .title {
    padding-inline: 21px;
} */

.about .history .head {
    display: flex;
    flex-direction: column;
    gap: 3rem;

    @media (width >=48rem) {
        flex-direction: row;
        justify-content: space-around;
        gap: 10rem;
    }
}

.partner {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 4rem;
}


.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;

    @media (width >=48rem) {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.partner-card.bg-gray {
    background-color: #efeff5;
    /* équivalent bg-zinc-300 */
}

.partner-card {
    height: 7rem;
    /* équivalent h-32 */
    border-radius: 0.375rem;
    /* équivalent rounded-md */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    /* équivalent p-4 */
    box-sizing: border-box;
}

.stats {
    width: 100%;
}

.about .stats .cards-container,
.accueil .stats .cards-container {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;

    @media (width >=48rem) {
        grid-template-columns: repeat(4, 1fr);
        gap: 4rem;
    }

}

.about .stats .cards-container .card,
.accueil .stats .cards-container .card {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    border-top: 1px solid #E4E7E9;
    border-right: 1px solid #E4E7E9;
    padding: 21px;
}

/* #endregion a-propos */


/* #region futures */

.list-card {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-block: 5rem;
}

.list-card .head {
    display: flex;
    flex-direction: column;
    gap: 3rem;

    @media (width >=48rem) {
        flex-direction: row;
        justify-content: space-around;
        gap: 10rem;
    }
}

.accueil .list-card .cards-container {
    display: flex;
    gap: 1.5rem;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* padding-left: 1rem; */
    padding-right: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.accueil .list-card .cards-container .card {
    display: flex;
    flex-direction: column;
    flex: none;
    width: calc(100% - 50px);
    /* min-width: 18rem; */
    gap: 1rem;
    border-radius: 12px;
    background-color: #fff;
    padding-bottom: 21px;
    box-sizing: border-box;

    @media (min-width: 640px) {
        width: calc(1/5 * 100% + 50px);
    }
}

.accueil .list-card .cards-container .card img {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-items: center;
    align-items: start;
    gap: 1.5rem;
}

.testimonials>div {
    background: white;
    border: 1px solid #e5e6e7;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 350px;
    /* Largeur max pour chaque carte */
    width: 100%;
    /* Prend toute la largeur disponible dans la cellule */
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials>div:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
}

.testimonials .card svg {
    color: var(--accent);
    /* Couleur violette de votre SVG */
    fill: currentColor;
    /* Utilise la couleur définie */
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;

    @media (width >=48rem) {
        grid-template-columns: repeat(2, 1fr);
    }
}

.aspect-A4 {
    aspect-ratio: 1 / 1.414;
    /* Ratio A4 portrait */
    width: 100%;
    height: auto;
    object-fit: cover;
}

.info-person {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
}

.info-person h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 100%;
}

.info-person p {
    font-size: 14px;
}

/* #endregion futures */


/* #region contact page */


/* contact-header flex px-8 flex-col items-center gap-[2rem] */
.contact-header {
    display: flex;
    padding-inline: 2rem;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.middle-text {
    text-align: center;

    @media (width >=48rem) {
        width: 50%;
        padding-inline: 80px;
    }
}

.contact-header .ctas {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-block: 1rem;

    @media (width >=48rem) {
        flex-direction: row;
    }
}

.contact-header .ctas .cta,
.contact-header .ctas .cta2 {
    width: 100%;

    @media (width >=48rem) {
        width: auto;
    }
}

iframe {
    background-color: var(--grey);
    min-height: 400px;

    @media (width >=48rem) {
        min-height: auto;
        height: 100%;
    }
}

.iframe-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

.coord {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    /* padding-bottom: 80px; */
}

.coord .step {
    border-bottom: 1px solid var(--grey);
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}


/* Effet de pulsation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.circle1 {
    position: absolute;
    top: 8rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to bottom right, rgba(249, 115, 22, 0.2), rgba(239, 68, 68, 0.2));
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 2s infinite;
}

.circle2 {
    position: absolute;
    bottom: 8rem;
    right: 4rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(to bottom right, rgba(239, 68, 68, 0.15), rgba(249, 115, 22, 0.15));
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 2s infinite;
    animation-delay: 1s;
}

.circle3 {
    position: absolute;
    top: 33%;
    right: 5rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, rgba(251, 146, 60, 0.25), rgba(248, 113, 113, 0.25));
    border-radius: 50%;
    filter: blur(12px);
    animation: pulse 2s infinite;
    animation-delay: 0.5s;
}


/* #endregion contact page */

/* #region animation */

.scroll-anim {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, opacity;
}

.anim-1.active {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
}

.anim-2.active {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.anim-3.active {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}


.scroll-anim-opa {
    opacity: 0;
    filter: brightness(0.8);
    transition: all 0.8s ease;
}

.opa-anim-1.active {
    opacity: 1;
    filter: brightness(1);
    transition-delay: 0.1s;
}

.opa-anim-2.active {
    opacity: 1;
    filter: brightness(1);
    transition-delay: 0.2s;
}

.opa-anim-3.active {
    opacity: 1;
    filter: brightness(1);
    transition-delay: 0.3s;
}

/* #endregion animation */