.div-footer {
    background-color: var(--color-CE);
    height: 670px;
    border: 1px solid black;
    display: grid;
    grid-template-rows: 150px 1fr;
}

.footer-first {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    text-align: center;
    place-self: center;
    width: 100%;
}
.footer-first-right {
    color: white;
    width: 100%;
    height: 90px;
    display: flex;
    align-self: center;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-right: 0.8px solid var(--hint-CE);
}
.footer-head {
    width: 500px;
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
}

.head-icon {
    background-color: var(--primary);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.i-t {
    font-size: 30px;
}
.head-text {
    color: white;
    font-family: var(--font-family-CE);
    font-size: 30px;
}

.footer-first-left {
    text-align: center;
    color: white;
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-second {
    display: grid;
    grid-template-rows: 1fr 100px;
}
.footer-second-first {
    border-top: 0.8px solid var(--hint-CE);
    border-bottom: 0.8px solid var(--hint-CE);
    display: flex;
    justify-content: center;
    align-items: center;
}
.second-first-middle {
    width: 1500px;
    height: 300px;
    display: grid;
    grid-template-columns: 1fr 600px 1fr;
    gap: 3rem;
}
.first-middle {
    display: grid;
    grid-template-rows: 80px 1fr 40px;
    color: white;
}
.logo-footer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}
.img-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.p-logo {
    font-family: var(--font-family-CE);
    font-size: 32px;
    font-weight: bold;
    color: white;
}
.text-footer-logo {
    height: 100%;
    width: 100%;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-content: center;
}

.t-span {
    font-family: var(--font-family-CE);
    font-size: 16px;
}

.text-footer-icon-rs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}
.icon-rs {
    font-size: 30px;
    cursor: pointer;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    &:hover {
        color: var(--primary);
    }
}
.second-middle {
    display: grid;
    grid-template-rows: 80px 1fr;
    color: white;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.titre-h {
    font-family: var(--font-family-CE);
    font-size: 22px;
}
.text-second {
    height: 100%;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
}
.t-s-d {
    display: flex;
    gap: 1rem;
    font-family: var(--font-family-CE);
    font-size: 16px;
    text-align: center;
}
.fa-check {
    color: var(--primary);
    font-size: 20px;
}
.third-middle {
    border: 1px solid white;
}
.last-middle {
    display: grid;
    grid-template-rows: 80px 100px 1fr;
    color: white;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.input-footer {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.footer-second-last {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.second-last-right {
    display: grid;
    align-items: center;
    justify-self: center;
    text-align: center;
    font-family: var(--font-family-CE);
    width: 100%;
    color: white;
}

.second-last-left {
    display: grid;
    grid-template-columns: repeat(3, 150px);
    color: white;
    font-family: var(--font-family-CE);
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.input-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.input {
    padding: 10px;
    font-size: 16px;
    flex: 1;
}

.btn-newsletter {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #333;
}

.btn-newsletter i {
    transition: transform 0.3s ease;
}

.btn-newsletter:hover i {
    transform: translateY(-2px);
    color: #007bff;
}

@media (min-width: 1441px) {
    .div-footer {
        background-color: var(--color-CE);
        height: 500px;
        border: 1px solid black;
        display: grid;
        grid-template-rows: 100px 1fr;
    }
    .footer-first {
        display: grid;
        grid-template-rows: none;
        grid-template-columns: repeat(2, 1fr);
        min-width: 1025px;
        max-width: 1440px;
        gap: 0.2rem;
        padding: 0.5rem;
    }
    .footer-first-right {
        border-right: none;
        height: 50px;
        width: 100%;
        border-right: 1px solid var(--hint-CE);
    }
    .footer-head {
        width: 100%;
        grid-template-columns: 90px 1fr;
        display: grid;
        align-items: center;
        justify-items: center;
        text-align: center;
        justify-content: center;
        gap: 0;
    }
    .head-icon {
        width: 40px;
        height: 40px;
    }
    .i-t {
        font-size: 20px;
    }
    .head-text {
        font-size: 26px;
    }

    .footer-second-first {
        min-width: 1441px;
    }
    .second-first-middle {
        min-width: 1441px;
        place-self: center;
        height: 100%;
        display: grid;
        grid-template-rows: none;
        grid-template-columns: 1fr 200px 1fr;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }

    .first-middle {
        display: grid;
        grid-template-rows: 50px 1fr 50px;
        color: white;
        justify-content: center;
        justify-items: center;
        gap: 0.5rem;
        width: 400px;
    }
    .text-footer-icon-rs {
        gap: 2rem;
        display: flex;
        justify-content: space-between;
    }
    .logo-footer {
        display: flex;
        padding: 1rem;
        justify-content: start;
        gap: 1rem;
        align-items: center;
    }
    .img-logo {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    .p-logo {
        font-family: var(--font-family-CE);
        font-size: 20px;
        font-weight: bold;
        color: white;
    }
    .text-footer-logo {
        padding: 0;
    }
    .t-span {
        font-size: 12px;
        text-align: start;
    }
    .second-middle {
        grid-template-rows: 40px 1fr;
        justify-content: start;
        padding: 0;
        width: 400px;
        place-self: center;
        margin-left: 2rem;
    }
    .s-m-l {
        place-self: center;
        display: grid;
        justify-content: center;
    }
    .text-second {
        justify-content: start;
        align-items: start;
        text-align: start;
        gap: 0.1rem;
    }
    .t-s-d {
        font-size: 14px;
    }
    .last-middle {
        grid-template-rows: 50px 50px 1fr;
        padding-top: 0;
        gap: 0.2rem;
        width: 400px;
        justify-self: end;
    }
    .input {
        max-height: 50px;
        width: 500px;
    }
    .t-news {
        display: flex;
        text-align: center;
        padding: 1rem;
    }
    .input-footer {
        width: 300px;
        place-self: center;
    }
}
@media (min-width: 1025px) and (max-width: 1440px) {
    .div-footer {
        background-color: var(--color-CE);
        height: 500px;
        border: 1px solid black;
        display: grid;
        grid-template-rows: 100px 1fr;
    }
    .footer-first {
        display: grid;
        grid-template-rows: none;
        grid-template-columns: repeat(2, 1fr);
        min-width: 1025px;
        max-width: 1440px;
        gap: 0.2rem;
        padding: 0.5rem;
    }
    .footer-first-right {
        border-right: none;
        height: 50px;
        width: 100%;
        border-right: 1px solid var(--hint-CE);
    }
    .footer-head {
        width: 100%;
        grid-template-columns: 90px 1fr;
        display: grid;
        align-items: center;
        justify-items: center;
        text-align: center;
        justify-content: center;
        gap: 0;
    }
    .head-icon {
        width: 40px;
        height: 40px;
    }
    .i-t {
        font-size: 20px;
    }
    .head-text {
        font-size: 20px;
    }

    .footer-second-first {
        min-width: 1024px;
        max-width: 1440px;
    }
    .second-first-middle {
        min-width: 1024px;
        max-width: 1440px;
        place-self: center;
        height: 100%;
        display: grid;
        grid-template-rows: none;
        grid-template-columns: 1fr 200px 1fr;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
    }
    .s-m-l {
        display: none;
    }
    .first-middle {
        display: grid;
        grid-template-rows: 50px 1fr 50px;
        color: white;
        justify-content: center;
        justify-items: center;
        gap: 0.5rem;
        min-width: 350px;
        max-width: 450px;
    }
    .text-footer-icon-rs {
        gap: 2rem;
        display: flex;
        justify-content: space-between;
    }
    .logo-footer {
        display: flex;
        padding: 1rem;
        justify-content: start;
        gap: 1rem;
        align-items: center;
    }
    .img-logo {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    .p-logo {
        font-family: var(--font-family-CE);
        font-size: 20px;
        font-weight: bold;
        color: white;
    }
    .text-footer-logo {
        padding: 0;
    }
    .t-span {
        font-size: 12px;
        text-align: start;
    }
    .second-middle {
        height: 150px;
        grid-template-rows: 40px 1fr;
        justify-content: center;
        padding: 0;
        place-self: center;
        min-width: 1024px;
        max-width: 1440px;
    }
    .text-second {
        justify-content: start;
        align-items: start;
        text-align: start;
        gap: 0.1rem;
    }
    .t-s-d {
        font-size: 14px;
    }
    .last-middle {
        grid-template-rows: 50px 50px 1fr;
        padding-top: 0;
        gap: 0.2rem;
    }
    .input {
        max-height: 50px;
        width: 500px;
    }
    .t-news {
        display: flex;
        text-align: center;
        padding: 1rem;
    }
    .input-footer {
        width: 300px;
        place-self: center;
    }
    .footer-second-last {
        grid-template-columns: none;
        min-width: 1024px;
        max-width: 1440px;
        grid-template-rows: repeat(2, 1fr);
        justify-content: center;
        font-size: 18px;
        align-items: center;
        text-align: center;
        justify-items: center;
        gap: 1rem;
        place-self: center;
    }
    .second-last-left {
        gap: 0.2rem;
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
        text-align: center;
        display: grid;
        justify-content: space-around;
        font-size: 14px;
        min-width: 1024px;
        max-width: 1440px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .div-footer {
        background-color: var(--color-CE);
        height: 900px;
        border: 1px solid black;
        display: grid;
        grid-template-rows: 100px 1fr;
    }
    .footer-first {
        display: grid;
        grid-template-rows: none;
        grid-template-columns: repeat(2, 1fr);
        min-width: 769px;
        max-width: 1024px;
        gap: 0.2rem;
        padding: 0.5rem;
    }
    .footer-first-right {
        border-right: none;
        height: 50px;
        width: 100%;
        border-right: 1px solid var(--hint-CE);
    }
    .footer-head {
        width: 100%;
        grid-template-columns: 50px 1fr;
        display: grid;
        align-items: center;
        justify-items: center;
        text-align: center;
        justify-content: center;
        gap: 0;
    }
    .head-icon {
        width: 40px;
        height: 40px;
    }
    .i-t {
        font-size: 20px;
    }
    .head-text {
        font-size: 16px;
    }

    .footer-second-first {
        min-width: 769px;
        max-width: 1024px;
    }
    .second-first-middle {
        min-width: 769px;
        max-width: 1024px;
        place-self: center;
        height: 100%;
        display: grid;
        grid-template-columns: none;
        grid-template-rows: 1fr 150px 1fr;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }

    .first-middle {
        display: grid;
        grid-template-rows: 50px 1fr 30px;
        color: white;
        justify-content: center;
        justify-items: center;
    }
    .text-footer-icon-rs {
        gap: 2rem;
        display: flex;
        justify-content: space-between;
    }
    .logo-footer {
        display: flex;
        padding: 1rem;
        justify-content: start;
        gap: 1rem;
        align-items: center;
    }
    .img-logo {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    .p-logo {
        font-family: var(--font-family-CE);
        font-size: 25px;
        font-weight: bold;
        color: white;
    }
    .text-footer-logo {
        padding: 0.5rem;
    }

    .t-span {
        font-size: 16px;
        text-align: center;
    }
    .second-middle {
        height: 150px;
        grid-template-rows: 40px 1fr;
        justify-content: center;
        padding: 0;
        place-self: center;
        min-width: 769px;
        max-width: 1024px;
    }
    .text-second {
        justify-content: start;
        align-items: start;
        text-align: start;
        gap: 0.1rem;
    }
    .t-s-d {
        font-size: 14px;
    }
    .last-middle {
        grid-template-rows: 50px 50px 1fr;
        padding-top: 0;
        gap: 0.2rem;
    }
    .input {
        max-height: 50px;
        width: 500px;
    }
    .t-news {
        display: flex;
        text-align: justify;
        padding: 1rem;
    }
    .input-footer {
        width: 300px;
        place-self: center;
    }
    .footer-second-last {
        grid-template-columns: none;
        min-width: 769px;
        max-width: 1024px;
        grid-template-rows: repeat(2, 1fr);
        justify-content: center;
        font-size: 18px;
        align-items: center;
        text-align: center;
        justify-items: center;
        gap: 1rem;
        place-self: center;
    }
    .second-last-left {
        gap: 0.2rem;
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
        text-align: center;
        display: grid;
        justify-content: space-around;
        font-size: 14px;
        min-width: 769px;
        max-width: 1024px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .div-footer {
        background-color: var(--color-CE);
        height: 800px;
        border: 1px solid black;
        display: grid;
        grid-template-rows: 100px 1fr;
    }
    .footer-first {
        display: grid;
        grid-template-columns: none;
        grid-template-rows: repeat(2, 1fr);
        min-width: 481px;
        max-width: 768px;
        gap: 0.2rem;
        padding-bottom: 0.5rem;
    }
    .footer-first-right {
        border-right: none;
        height: 50px;
        width: 100%;
    }
    .footer-head {
        width: 100%;
        grid-template-columns: 50px 1fr;
        display: flex;
        align-items: center;
        justify-items: center;
        text-align: center;
        justify-content: center;
        gap: 1rem;
        align-items: center;
    }
    .head-icon {
        width: 40px;
        height: 40px;
    }
    .i-t {
        font-size: 18px;
    }
    .head-text {
        font-size: 18px;
    }

    .footer-second-first {
        min-width: 481px;
        max-width: 768px;
    }
    .second-first-middle {
        min-width: 481px;
        max-width: 768px;
        height: 100%;
        display: grid;
        grid-template-columns: none;
        grid-template-rows: 1fr 100px 1fr;
        gap: 1rem;
    }

    .first-middle {
        display: grid;
        grid-template-rows: 50px 1fr 30px;
        color: white;
        justify-content: center;
        justify-items: center;
    }
    .text-footer-icon-rs {
        gap: 2rem;
        display: flex;
        justify-content: space-between;
    }
    .logo-footer {
        display: flex;
        padding: 1rem;
        justify-content: start;
        gap: 1rem;
        align-items: center;
    }
    .img-logo {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    .p-logo {
        font-family: var(--font-family-CE);
        font-size: 25px;
        font-weight: bold;
        color: white;
    }
    .text-footer-logo {
        padding: 0.5rem;
    }

    .t-span {
        font-size: 16px;
        text-align: center;
    }
    .second-middle {
        height: 120px;
        grid-template-rows: 40px 1fr;
        justify-content: center;
        padding: 1rem;
        place-self: center;
        width: 481px;
    }
    .text-second {
        justify-content: start;
        align-items: start;
        text-align: start;
        gap: 0.1rem;
    }
    .t-s-d {
        font-size: 14px;
    }
    .last-middle {
        grid-template-rows: 50px 1fr;
        padding-top: 2rem;
    }
    .t-news {
        display: none;
    }
    .input-footer {
        width: 300px;
        place-self: center;
    }
    .footer-second-last {
        grid-template-columns: none;
        min-width: 481px;
        max-width: 768px;
        grid-template-rows: repeat(2, 1fr);
        justify-content: center;
        font-size: 18px;
        align-items: center;
        text-align: center;
        justify-items: center;
        place-self: center;
    }
    .second-last-left {
        gap: 0.2rem;
        min-width: 481px;
        max-width: 768px;
        grid-template-columns: repeat(3, 100px);
        justify-content: space-between;
        font-size: 14px;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    /* Styles*/

    .div-footer {
        background-color: var(--color-CE);
        height: 800px;
        border: 1px solid black;
        display: grid;
        grid-template-rows: 100px 1fr;
    }
    .footer-first {
        display: grid;
        grid-template-columns: none;
        grid-template-rows: repeat(2, 1fr);
        min-width: 320px;
        max-width: 480px;
        gap: 0.2rem;
        padding-bottom: 0.5rem;
    }
    .footer-first-right {
        border-right: none;
        height: 50px;
    }
    .footer-head {
        width: 320px;
        grid-template-columns: 50px 1fr;
        display: flex;
        align-items: center;
        justify-items: center;
        text-align: center;
        justify-content: center;
        gap: 0.3rem;
        align-items: center;
    }
    .head-icon {
        width: 40px;
        height: 40px;
    }
    .i-t {
        font-size: 14px;
    }
    .head-text {
        font-size: 14px;
    }

    .footer-second-first {
        min-width: 320px;
        max-width: 480px;
    }
    .second-first-middle {
        width: 320px;
        height: 100%;
        display: grid;
        grid-template-columns: none;
        grid-template-rows: 1fr 100px 1fr;
        gap: 1rem;
    }

    .first-middle {
        display: grid;
        grid-template-rows: 50px 1fr 30px;
        color: white;
    }
    .logo-footer {
        display: flex;
        padding: 1rem;
        justify-content: start;
        gap: 1rem;
        align-items: center;
    }
    .img-logo {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    .p-logo {
        font-family: var(--font-family-CE);
        font-size: 18px;
        font-weight: bold;
        color: white;
    }
    .text-footer-logo {
        padding: 0.5rem;
    }
    .titre-h {
        font-size: 18px;
        font-weight: 300;
    }
    .t-span {
        font-size: 14px;
        text-align: justify;
    }
    .second-middle {
        height: 120px;
        grid-template-rows: 40px 1fr;
        justify-content: start;
        padding: 1rem;
    }
    .text-second {
        justify-content: start;
        align-items: start;
        text-align: start;
    }
    .t-s-d {
        font-size: 14px;
    }
    .last-middle {
        grid-template-rows: 50px 1fr;
        padding-top: 2rem;
    }
    .t-news {
        display: none;
    }
    .input-footer {
        width: 300px;
        place-self: center;
    }
    .footer-second-last {
        grid-template-columns: none;
        width: 320px;
        grid-template-rows: repeat(2, 1fr);
        justify-content: center;
        font-size: 14px;
        align-items: center;
        text-align: center;
        justify-items: center;
        place-self: center;
    }
    .second-last-left {
        gap: 0.2rem;
        width: 320px;
        grid-template-columns: repeat(3, 100px);
    }
}

.nav-main {
    width: 100vw;
    height: 80px;
}
.navbar {
    display: grid;
    grid-template-columns: 400px 1fr;
    transition: top 0.3s ease-in-out; /* Animation fluide */
    justify-content: center;
    align-items: center;
    justify-items: center;
    height: 100%;
    background-color: white;
}
.navbar.show {
    top: 0; /* Fait apparaître la navbar */
}

.logo-side {
    color: var(--color-CE);
    width: 100%;
    font-family: var(--font-family-CE);
    display: grid;
    grid-template-columns: 80px 1fr;
    justify-content: start;
    align-items: center;
    text-align: center;
}
.h-logo {
    border: 1px solid var(--primary);
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    align-self: center;
    justify-self: end;
}
.p-logo-t {
    font-size: 30px;
    font-weight: bold;
}

.header-side {
    color: var(--color-CE);
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    justify-content: center;
    align-items: center;
    font-family: var(--font-family-CE);
    place-self: center;
    width: 100%;
}

.header-item {
    display: grid;
    grid-template-columns: 1fr 20px;
    height: 100%;
    align-content: center;
    gap: 0.3rem;
    width: auto;
    cursor: pointer;
    position: relative; /* Permet de positionner les sous-catégories */
}
.sub-categories {
    display: none; /* Caché par défaut */
    position: absolute; /* Positionné par rapport à .header-item */
    top: 100%; /* Juste en dessous du conteneur parent */
    left: 0;
    background-color: white; /* Couleur de fond pour le menu */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Ombre pour l'esthétique */
    border-radius: 5px;
    padding: 0.5rem;
    z-index: 10;
    width: -moz-max-content;
    width: max-content;
    font-family: var(--font-family-CE);
}

.sub-item {
    margin: 0;
    padding: 0.5rem 1rem;
    cursor: pointer;
    white-space: nowrap; /* Empêche le texte de déborder */
}

.sub-item:hover {
    background-color: #f0f0f0; /* Change la couleur au survol */
}
.header-item:hover .sub-categories {
    display: block; /* Affiche les sous-catégories */
}
.p-nav {
    height: 100%;
    justify-content: end;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: bold;
    text-align: end;
    place-self: center;
    text-align: center;
    &:hover {
        color: var(--hint-CE);
    }
}
.icon-t {
    font-size: 10px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-self: center;
    justify-items: center;
    &:hover {
        color: var(--hint-CE);
    }
}
.a-link-navbar {
    all: unset;
    height: 30px;
}

@media (max-width: 1441px) {
    .nav-main {
        width: 1441px;
    }
    .navbar {
        width: 100%;
        place-self: center;
        grid-template-columns: 300px 1fr;
    }
    .h-logo {
        font-size: 30px;
    }
    .p-logo-t {
        font-size: 20px;
    }
}
@media (min-width: 1025px) and (max-width: 1440px) {
    .nav-main {
        width: 100%;
        min-width: 1025px;
        max-width: 1440px;
        display: grid;
        justify-content: center;
    }
    .navbar {
        width: 100%;
        place-self: center;
        grid-template-columns: 150px 1fr;
    }
    .logo-side {
        margin-left: 0;
        grid-template-columns: 60px 1fr;
    }
    .h-logo {
        font-size: 20px;
        width: 50px;
        height: 50px;
    }
    .p-logo-t {
        font-size: 15px;
    }
    .header-side {
        padding-left: 1rem;
        width: 100%;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-main {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
    }
    .p-logo-t {
        font-size: 25px;
    }
    .navbar {
        grid-template-columns: 300px 100px; /* Logo et bouton */
        height: 70px;
        width: 100%;
        justify-content: space-between;
    }
    .header-side {
        display: none; /* Cache les catégories par défaut */
    }
    .btn-hide {
        display: none;
    }
    .menu-button {
        width: 100%;
        display: grid;
        align-items: center;
        justify-content: center;
        grid-template-rows: repeat(3, 1fr);
        cursor: pointer;
        font-size: 24px;
        margin-right: 1rem;
        height: 50px;
        place-self: center;
    }
    .menu-button span {
        display: block;
        width: 30px;
        height: 3px;
        margin: 5px 0;
        background-color: var(--color-CE);
    }
    .header-side.show {
        position: fixed; /* Positionnement fixe pour toute la hauteur */
        top: 0; /* Aligner en haut */
        right: 0; /* Aligner sur le côté droit */
        width: 250px; /* Largeur du panneau (modifiable) */
        height: 100vh; /* Prendre toute la hauteur de la page */
        background-color: var(--color-CE); /* Couleur de fond */
        padding: 1rem;
        box-shadow: -4px 0 6px rgba(0, 0, 0, 0.1); /* Ombre côté gauche */
        z-index: 100;
        transition: transform 0.3s ease-in-out; /* Animation d'apparition */
        transform: translateX(0); /* Visible par défaut */
        display: grid; /* Change de grid à block */
        grid-template-rows: repeat(8, 1fr);
        grid-template-columns: none;
        justify-content: center;
        text-align: start;
        padding-right: 1rem;
        color: white;
    }

    .header-side {
        transform: translateX(100%); /* Caché par défaut */
    }

    .header-side.hide {
        transform: translateX(100%); /* Animation pour le cacher */
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .nav-main {
        width: 100%;
        min-width: 481px;
        max-width: 768px;
    }
    .navbar {
        grid-template-columns: 1fr 100px; /* Logo et bouton */
        height: 70px;
        width: 100%;
    }
    .p-logo-t {
        font-size: 20px;
    }
    .header-side {
        display: none; /* Cache les catégories par défaut */
    }
    .btn-hide {
        display: none;
    }
    .menu-button {
        display: grid;
        align-items: center;
        justify-content: center;
        grid-template-rows: repeat(3, 1fr);
        cursor: pointer;
        font-size: 24px;
        margin-right: 1rem;
        height: 40px;
        place-self: center;
    }
    .menu-button span {
        display: block;
        width: 30px;
        height: 3px;
        margin: 5px 0;
        background-color: var(--color-CE);
    }
    .header-side.show {
        position: fixed; /* Positionnement fixe pour toute la hauteur */
        top: 0; /* Aligner en haut */
        right: 0; /* Aligner sur le côté droit */
        width: 250px; /* Largeur du panneau (modifiable) */
        height: 100vh; /* Prendre toute la hauteur de la page */
        background-color: var(--color-CE); /* Couleur de fond */
        padding: 1rem;
        box-shadow: -4px 0 6px rgba(0, 0, 0, 0.1); /* Ombre côté gauche */
        z-index: 100;
        transition: transform 0.3s ease-in-out; /* Animation d'apparition */
        transform: translateX(0); /* Visible par défaut */
        display: grid; /* Change de grid à block */
        grid-template-rows: repeat(8, 1fr);
        grid-template-columns: none;
        justify-content: center;
        text-align: start;
        padding-right: 1rem;
        color: white;
    }
    .p-nav {
        font-size: 14px;
    }
    .header-side {
        transform: translateX(100%); /* Caché par défaut */
    }

    .header-side.hide {
        transform: translateX(100%); /* Animation pour le cacher */
    }
}
@media (min-width: 320px) and (max-width: 480px) {
    .nav-main {
        width: 100%;
        min-width: 320px;
        max-width: 480px;
        height: 60px;
    }
    .navbar {
        grid-template-columns: 200px 90px; /* Logo et bouton */
        height: 70px;
        width: 100%;
        justify-content: space-between;
    }
    .logo-side {
        font-size: 12px;
        margin: 0;
        display: grid;
        justify-content: space-between;
        align-items: center;
        grid-template-columns: 40px 1fr;
        padding-left: 0.5rem;
    }
    .p-logo-t {
        font-size: 16px;
    }
    .h-logo {
        width: 40px;
        height: 40px;
    }
    .header-side {
        display: none; /* Cache les catégories par défaut */
    }
    .btn-hide {
        display: none;
    }
    .menu-button {
        display: grid;
        align-items: center;
        justify-content: center;
        grid-template-rows: repeat(3, 1fr);
        cursor: pointer;
        font-size: 24px;
        margin-right: 0;
        height: 30px;
        place-self: center;
    }
    .menu-button span {
        display: block;
        width: 20px;
        height: 3px;
        background-color: var(--color-CE);
    }
    .header-side.show {
        position: fixed; /* Positionnement fixe pour toute la hauteur */
        top: 0; /* Aligner en haut */
        right: 0; /* Aligner sur le côté droit */
        width: 190px; /* Largeur du panneau (modifiable) */
        height: 100vh; /* Prendre toute la hauteur de la page */
        background-color: var(--color-CE); /* Couleur de fond */
        padding: 1rem;
        box-shadow: -4px 0 6px rgba(0, 0, 0, 0.1); /* Ombre côté gauche */
        z-index: 100;
        transition: transform 0.3s ease-in-out; /* Animation d'apparition */
        transform: translateX(0); /* Visible par défaut */
        display: grid; /* Change de grid à block */
        grid-template-rows: repeat(8, 1fr);
        grid-template-columns: none;
        justify-content: center;
        text-align: start;
        padding-right: 1rem;
        color: white;
    }
    .p-nav {
        font-size: 12px;
    }
    .header-side {
        transform: translateX(100%); /* Caché par défaut */
    }

    .header-side.hide {
        transform: translateX(100%); /* Animation pour le cacher */
    }
}

:root {
    --font-family: "Mulish", sans-serif;
    --light: #00c3ff;
    --primary: #2071e7;
    --dark: #2980b9;
    --text: #333;
    --background: #fafafa;
    --hint: #999;
    --border: #ddd;
    --text-color: #303972;
    --button-blue: #0197e3;
    --icon-color: #0197e3;
    --img-back: #ccc8bd;
    --nom: "Great Vibes", cursive;
    --color-CE: #10223f;
    --font-family-CE: "Plus Jakarta Sans", sans-serif;
    --hint-CE: #8e8d91;
    --hint-leger-CE: #d9d9d9;
}
html {
    scroll-behavior: smooth;
}

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

  body {
    margin: 0;
    padding: 0;
  }

.button {
    background-color: var(--primary);
    color: white;
    font-family: var(--font-family-CE);
    font-weight: bold;
    border-radius: 30px;
    font-size: 15px;
    display: grid;
    grid-template-columns: 1fr 45px;
    justify-content: center;
    align-items: center;
    align-content: center;
    height: 60px;
    align-self: center;
    text-align: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    &:hover {
        background-color: var(--color-CE);
    }
}
.p-button {
    justify-self: end;
}

.fa-button {
    justify-self: start;
}

.btn-reservation {
    margin-top: 2rem;
    border-radius: 50px;
    cursor: pointer;
    width: 250px;
    font-weight: bold;
    height: 60px;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    background-color: var(--primary);
    transition: all 0.3s;
}

.btn-more {
    border: 1px solid var(--primary);
    height: 50px;
    font-family: var(--font-family-CE);
    display: flex;
    border-radius: 30px;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
}
.btn-more:active .btn-read-more:hover {
    background-color: var(--color-CE);
    color: white;
}
.btn-read-more {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
}

.btn-flag {
    color: white;
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 150px;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 1rem;
}
.btn-apply-flag {
    background: none; /* Supprime l'arrière-plan */
    border: none; /* Supprime les bordures */
    outline: none; /* Supprime le contour lors du focus */
    box-shadow: none; /* Supprime les ombres éventuelles */
    padding: 0; /* Optionnel : ajuste l'espacement interne */
    margin: 0; /* Optionnel : ajuste les marges */
    cursor: pointer; /* Ajoute une apparence cliquable */
    font-size: 15px;
    color: white;
}
.btn-more-av {
    background-color: var(--primary);
    color: white;
}
.btn-m-a {
    color: white;
    font-weight: bold;
}
.btn-c-us {
    width: 180px;
    font-weight: bold;
    background-color: var(--primary);
    display: grid;
    grid-template-columns: 1fr 30px;
    height: 50px;
    border-radius: 30px;
    color: white;
    justify-content: center;
    align-items: center;
    gap: 0;
    &:hover {
        color: var(--color-CE);
    }
}
.btn-cus,
.btn-white {
    color: white;
}
@media (min-width: 1441px) {
    .button {
        width: 100%;
    }
}
@media (min-width: 1025px) and (max-width: 1440px) {
    .button {
        width: 190px;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        height: 50px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .btn-reservation {
        width: 180px;
        height: 50px;
        font-size: 12px;
        place-self: center;
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .btn-reservation {
        width: 150px;
        height: 35px;
        font-size: 10px;
        place-self: center;
        margin: 0;
        background-color: var(--primary);
        border: none;
    }
    .btn-more {
        width: 150px;
        height: 40px;
        background-color: var(--primary);
        color: white;
    }
    .btn-read-more {
        color: white;
        font-size: 12px;
    }
    .btn-c-us {
        justify-content: center;
        align-items: center;
        height: 40px;
        width: 100px;
    }
}
@media (min-width: 320px) and (max-width: 481px) {
    .btn-reservation {
        width: 120px;
        height: 25px;
        font-size: 10px;
        place-self: center;
        margin: 0;
        background-color: var(--primary);
        border: none;
        gap: 0.2rem;
    }
    .btn-more {
        width: 120px;
        height: 25px;
        background-color: var(--primary);
        color: white;
    }
    .btn-read-more {
        color: white;
        font-size: 12px;
    }
}

.input {
    width: 300px;
    height: 54px;
    border-radius: 30px;
    background-color: black;
    color: white;
    border: 1px solid var(--hint);
    cursor: text;
    padding: 1rem;
    font-size: 15px;
    outline: none; /* Supprime le contour par défaut */
    transition: all 0.3s ease; /* Transition fluide */
    font-family: var(--font-family-CE);
}

.fa-paper-plane {
    background-color: var(--primary);
    height: 55px;
    width: 55px;
    display: grid;
    text-align: center;
    align-content: center;
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
    border-radius: 50px;
    margin-left: -3.4rem;
    font-size: 20px;
    cursor: pointer;
    &:hover {
        background-color: var(--color-CE);
border: 1px solid var(--primary);
    }
}

.container-img {
    display: grid;
    justify-content: center;
    margin-bottom: 2rem;
}
.main-img {
    height: 600px;
    width: 1750px;
    border: 1px solid black;
    background: linear-gradient(rgba(16, 34, 63, 0.7), rgba(16, 34, 63, 0.7)),
        /* Couleur #10223F avec transparence */ url("/images/graduate.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    place-self: center;
    margin-top: 0;
}
.main-img-text {
    width: 1200px;
    height: 400px;
    display: grid;
    grid-template-rows: 1fr repeat(2, 100px) 1fr;
    color: white;
    font-family: var(--font-family-CE);
}

.p-img {
    font-size: 32px;
    display: flex;
    font-weight: 550;
    text-align: center;
    margin-top: 2rem;
}

.main-second {
    height: 400px;
    width: 100vw;
    display: grid;
    grid-template-rows: 400px 1fr;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    justify-items: center;
}

.main-card {
    height: auto;
    width: 1700px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.card {
    background-color: var(--hint-leger-CE);
    border-radius: 20px;
    display: grid;
    grid-template-rows: 90px 40px 90px;
    font-family: var(--font-family-CE);
    padding: 2rem;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.card-light {
    background-color: white;
    border: 2px solid var(--hint-leger-CE);
}
.card-p {
    color: var(--hint-CE);
}

.main-choice {
    height: 100%;
    width: 1400px;
    align-self: center;
    display: grid;
    grid-template-columns: 550px 800px;
    gap: 32px;
}

.choice-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.img-div {
    display: grid;
    grid-template-rows: 300px 1fr;
    gap: 2rem;
    justify-content: center;
    justify-items: center;
    align-content: center;
}

.choice-img-div {
    display: grid;
    width: 220px;
    grid-template-rows: 300px 1fr;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("/images/TM/3.jpg");
    border-radius: 20px;
}
.fa-pa {
    background-color: var(--primary);
    height: 60px;
    width: 60px;
    color: white;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
}
.pp-text {
    font-size: 20px;
    font-family: var(--font-family-CE);
    font-weight: 600;
}
.us-div-text {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    font-family: var(--font-family-CE);
    padding-top: 1rem;
}
.us-div-text-p {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.p-div-text {
    font-size: 15px;
    outline: none;
}

.phone {
    font-weight: bold;
}
.country-sponsor {
    height: auto;
    display: grid;
    grid-template-rows: 1fr;
    margin-top: 2rem;
    justify-content: center;
    align-content: center;
    justify-items: center;
    gap: 2rem;
}

.country {
    background-color: var(--primary);
    width: 1700px;
    border-radius: 30px;
    border: 1px solid black;
    background: linear-gradient(rgba(16, 34, 63, 0.7), rgba(16, 34, 63, 0.7)),
        /* Couleur #10223F avec transparence */ url("/images/visa.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
    display: grid;
    justify-items: center;
    align-items: center;
    align-content: center;
    grid-template-rows: 150px 350px;
    gap: 3rem;
    height: 650px;
}
.country-text {
    height: 100%;
    width: 1300px;
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 2rem;
    color: white;
}
.country-text-side {
    display: grid;
    grid-template-rows: 50px 1fr;
    justify-content: start;
    font-family: var(--font-family-CE);
}
.our-country {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.h2-country {
    font-size: 30px;
}
.country-paginate {
    width: 200px;
    display: grid;
    justify-self: end;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
    gap: 1rem;
}
.country-flag {
    height: 100%;
    width: 1300px;
    display: grid;
    grid-template-columns: repeat(5, 180px);
    justify-content: space-around;
    gap: 1rem;
}

.visa-category {
    height: auto;
    display: grid;
    width: 100vw;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.visa-category-main {
    width: auto;
    height: 700px;
    display: grid;
    grid-template-rows: 80px 1fr;
    align-content: center;
    justify-items: center;
    gap: 1rem;
}
.visa-category-main-text {
    display: grid;
    color: var(--color-CE);
    grid-template-rows: 30px 1fr;
    width: 100%;
    height: auto;
}
.v-c-m-div {
    font-family: var(--font-family-CE);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.visa-category-main-content {
    width: 1200px;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 600px;
}
.visa-type {
    border: 2px solid var(--hint-leger-CE);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
    gap: 1rem;
    cursor: pointer;
}
.img-visa-category {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    -o-object-fit: cover;
       object-fit: cover;
}
.visa-type-des {
    display: grid;
    font-family: var(--font-family-CE);
    justify-content: end;
    align-items: center;
    color: var(--color-CE);
    text-align: start;
    grid-template-rows: 70px 70px 90px;
    padding: 1rem;
    padding-bottom: 0;
}
.p-visa {
    color: var(--hint-CE);
}
.type-desc-nav {
    display: flex;
    justify-content: space-between;
}
.available-country {
    display: flex;
    justify-content: center;
}
.available-country-div {
    height: auto;
    width: 1200px;
    display: grid;
    grid-template-rows: 500px;
    justify-items: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
    place-items: center;
    gap: 1rem;
    margin-top: 2rem;
}
.urban {
    width: 100%;
    height: 100%;
    align-self: center;
    display: grid;
    grid-template-rows: 1fr 250px;
    gap: 2rem;
}

.urban-text-div {
    display: grid;
    grid-template-columns: 600px 200px;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-family-CE);
}

.urban-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.urban-card-content {
    border-radius: 20px;
    border: 1px solid var(--hint-CE);
    display: grid;
    grid-template-rows: 1fr 50px 1fr;
    padding: 1rem;
}
.img-urb {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.consul-stat {
    width: 100%;
    height: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.img-sonsul-stat {
    -o-object-fit: cover;
       object-fit: cover;
    width: 300px;
    height: 100%;
    border-radius: 20px;
}
.main-stat {
    border-radius: 20px;
    width: 850px;
    display: grid;
    grid-template-rows: 300px 1fr;
    gap: 1rem;
}
.main-text-div {
    display: grid;
    color: var(--color-CE);
    grid-template-rows: 80px 50px 60px 1fr;
    gap: 1rem;
    font-family: var(--font-family-CE);
}

.main-data-div {
    background-color: var(--primary);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-around;
    border-radius: 20px;
    color: white;
    font-family: var(--font-family-CE);
}
.data-num {
    display: grid;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.supporting-coaching {
    height: 500px;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}
.supporting {
    display: grid;
    justify-content: center;
    grid-template-rows: 1fr 400px;
}
.supporting-part {
    color: var(--color-CE);
}
.supporting-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.card-img-support {
    display: grid;
    grid-template-rows: 1fr 100px;
    justify-content: center;
    justify-items: end;
    position: relative; /* Nécessaire pour positionner les éléments enfants */
    cursor: pointer;
}
.s-c-img {
    width: 422px;
    border-radius: 20px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.c-s-d {
    background-color: white;
    border: 1px solid var(--hint-leger-CE);
    width: 350px;
    border-radius: 20px;
    height: 150px;
    position: absolute; /* Permet de positionner l'élément par rapport à .card-img-support */
    bottom: 30px; /* Ajustez cette valeur pour déplacer le div vers le haut */
    left: 50%; /* Centrer horizontalement */
    transform: translateX(-50%); /* Compense pour l'alignement au centre */
    display: grid;
    grid-template-rows: 1fr 1fr;
    justify-content: center;
    font-family: var(--font-family-CE);
    color: var(--color-CE);
    padding: 1rem;
}
.card-d-link {
    display: flex;
    justify-items: center;
    align-items: center;
}
.r-v {
    height: 700px;
    display: grid;
    justify-content: center;
    margin-top: 2rem;
    background: linear-gradient(
            to right,
            rgba(16, 34, 63, 0.7) 0%,
            /* #10223F avec opacité à 70% */ rgba(16, 34, 63, 0.7) 39%,
            rgba(0, 122, 255, 0.7) 100% /* #007AFF avec opacité à 70% */
        ),
        url("/images/american-visa-document.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 1700px;
    place-self: center;
    margin-left: 5rem;
    border-radius: 50px;
}
.r-v-container {
    width: 1700px;
    height: 100%;
    border-radius: 30px;
    display: grid;
    grid-template-rows: 100px 1fr;
    padding: 4rem;
    gap: 4rem;
}
.r-v-head {
    display: grid;
    grid-template-rows: 40px 1fr;
}
.r-v-session {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: white;
    font-family: var(--font-family-CE);
    font-size: 14px;
}
.titre-rv {
    display: flex;
    gap: 0.5rem;
    align-items: end;
    justify-content: space-between;
    color: white;
    font-family: var(--font-family-CE);
    font-size: 20px;
}
.h-rv-titre {
    font-size: 30px;
}
.r-v-category {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
}
.rv-category-card {
    cursor: pointer;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-CE);
    color: white;
    font-size: 30px;
    &:hover {
        box-shadow: 0px 0px 15px black;
    }
}

.d-visa {
    background: linear-gradient(rgba(16, 34, 63, 0.3), rgba(16, 34, 63, 0.3)),
        /* Couleur #10223F avec transparence */ url("/images/visa.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.prise-c {
    background: linear-gradient(rgba(16, 34, 63, 0.3), rgba(16, 34, 63, 0.3)),
        /* Couleur #10223F avec transparence */ url("/images/prixencharge.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.d-l {
    background: linear-gradient(rgba(16, 34, 63, 0.3), rgba(16, 34, 63, 0.3)),
        /* Couleur #10223F avec transparence */ url("/images/log.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.justify {
    height: 500px;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.justify-container {
    width: 1200px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
}
.justify-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    -o-object-fit: cover;
       object-fit: cover;
}
.justify-desc {
    background-color: var(--primary);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    font-family: var(--font-family-CE);
    display: grid;
    grid-template-rows: 30px 250px 90px;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 0;
}
.dg-message {
    font-size: 22px;
    line-height: 2rem;
    margin-top: 1rem;
}
.dg-info {
    display: grid;
    grid-template-columns: 100px 150px;
    gap: 1rem;
    justify-content: start;
    align-items: center;
}
.img-dg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
}
.dg-about {
    display: grid;
    gap: 1rem;
    grid-template-rows: repeat(2, 1fr);
}
.dg-name {
    font-weight: bold;
    font-size: 20px;
}
.process-overview {
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: 700px;
    display: flex;
    justify-content: center;
}
.process {
    width: 1700px;
    background-image: url("/images/Vector.png");
    border-radius: 20px;
    display: grid;
    grid-template-rows: 40px 60px 1fr;
    justify-content: center;
    justify-items: center;
    font-family: var(--font-family-CE);
    gap: 1rem;
}
.process-head {
    display: grid;
    grid-template-columns: 20px auto;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.h1-process {
    font-size: 50px;
    color: var(--color-CE);
}
.h1-f {
    font-size: 12px;
}
.process-step {
    height: 100%;
    width: 1200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-content: center;
}
.step {
    display: grid;
    width: 350px;
    grid-template-rows: repeat(2, 200px);
    justify-content: space-between;
    align-content: space-between; /* Espacer verticalement */
    padding-bottom: 1rem;
}
.step-card {
    background-color: white;
    width: 350px;
    height: 200px;
    border-radius: 20px;
    box-shadow: 0px 0px 15px var(--hint-leger-CE);
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    padding: 1rem;
    color: var(--color-CE);
    font-family: var(--font-family-CE);
}
.step-num {
    background-color: none;
    font-size: 50px;
    font-weight: bold;
}
.step-h {
    font-size: 22px;
}
.step-p {
    color: var(--hint-CE);
    font-size: 15px;
}
.step-middle {
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog {
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: auto;
    display: flex;
    justify-content: center;
}
.blog-container {
    width: 1300px;
    display: grid;
    grid-template-rows: 100px 1fr;
    gap: 0;
    height: 700px;
}
.blog-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    height: 600px;
}
.blog-card {
    border-radius: 20px;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    box-shadow: 0px 0px 15px var(--hint-leger-CE);
    height: 600px;
}
.blog-img {
    width: 100%;
    height: 366px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px 20px 0 0;
}
.blog-card-des {
    border-radius: 0 0 20px 20px;
    margin: 1rem 2rem;
    display: grid;
    grid-template-rows: repeat(4, 50px);
    gap: 0.2rem;
    align-items: center;
}
.blog-card-des-author {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font-family: var(--font-family-CE);
    color: var(--color-CE);
    justify-content: space-between;
}
.blog-card-author-details {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}
.p-hint,
.p-hint-des {
    color: var(--hint-CE);
    font-family: var(--font-family-CE);
}
.p-hint-des {
    font-size: 18px;
}
.h2-blog {
    font-size: 24px;
    font-family: var(--font-family-CE);
}
.blog-card-link {
    color: var(--color-CE);
    text-decoration: none;
    display: inline-flex; /* Permet de mieux aligner le texte et l'icône */
    align-items: center;
    gap: 0.5rem;
}
.blog-card-link:hover {
    color: var(--primary); /* Change la couleur au survol, optionnel */
}
.h2 {
    font-size: 22px;
}

.fa-icon {
    background-color: var(--primary);
    width: 90px;
    height: 90px;
    color: white;
    font-size: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    place-self: center;
}
.fa-pag {
    border-radius: 50%;
    border: 1px solid white;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    &:hover {
        background-color: var(--primary);
        border: none;
    }
}
.section-contact-formation {
    display: grid;
    justify-content: center;
    margin-bottom: 2rem;
}
.contact-information {
    height: auto;
    width: 1200px;
    place-self: center;
    display: grid;
    grid-template-rows: 20px 40px 1fr;
    align-items: center;
    text-align: center;
    font-family: var(--font-family-CE);
    color: var(--color-CE);
    gap: 0.5rem;
    place-self: center;
}
.p-ci {
    font-size: 15px;
    color: var(--hint-CE);
}
.h2-ci {
    font-size: 30px;
}
.ce-information {
    background-color: var(--background);
    box-shadow: 0px 0px 15px var(--hint-leger-CE);
    height: 100%;
    width: 100%;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(2, 300px) 1fr;
    padding: 2rem;
    gap: 2rem;
}
.ce-about-info {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
    font-family: var(--font-family-CE);
    border-right: 1px solid var(--hint-leger-CE);
}
.ce-about-info-first {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 4rem;
}

.ce-coordonnee {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    justify-content: start;
    font-size: 15px;
    align-items: start;
    justify-items: start;
}
.p-ce-cordonnee {
    color: var(--hint-CE);
}
.p-ce-cordonnee-bold {
    font-weight: bold;
}
.fa-cordonnee {
    background-color: var(--color-CE);
    color: white;
    width: 50px;
    height: 50px;
    align-items: center;
    display: flex;
    text-align: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 50px;
}
.img-ce-info {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
}
.ce-about-info-time {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
}
.ce-time-open {
    height: 100%;
    width: 100%;
    display: grid;
    justify-content: center;
    gap: 0.5rem;
}
.day-open {
    color: var(--hint-CE);
}
.time-open {
    display: grid;
    grid-template-columns: 20px 150px;
    justify-content: center;
    align-items: center;
}
.ce-time-open-at {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--hint-CE);
}
.visa-a {
    all: unset;
}
@media (max-width: 1441px) {
    .container-img {
        max-width: 1600px;
        place-self: center;
        display: flex;
        justify-content: center;
        align-items: start;
        height: 600px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        margin-bottom: 1rem;
    }
    .main-img {
        width: 100%;
        height: 600px;
        padding: 2rem;
        place-self: center;
    }
    .main-card {
        width: 1440px;
        height: 300px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .card {
        height: 300px;
        padding: 1rem;
        gap: 1rem;
    }
    .country {
        width: 1400px;
        height: 600px;
    }
    .r-v-container {
        width: 1400px;
        height: 600px;
    }
    .justify-container {
        margin-top: 0;
    }
    .process {
        width: 1441px;
    }
}
@media (min-width: 1025px) and (max-width: 1440px) {
    .container-img {
        min-width: 1025px;
        max-width: 1440px;
        place-self: center;
        display: flex;
        justify-content: center;
        align-items: start;
        height: 500px;
        margin-bottom: 1rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .main-img {
        width: 100%;
        height: 500px;
        border-radius: 20px;
    }
    .main-img-text {
        width: 1400px;
        justify-content: center;
    }
    .p-img {
        font-size: 25px;
    }
    .span {
        font-size: 10px;
    }
    .main-second {
        min-width: 1025px;
        max-width: 1440px;
        grid-template-rows: 250px 1fr;
        height: 240px;
    }
    .main-card {
        height: 100%;
        width: 100%;
    }
    .card {
        height: 240px;
        gap: 1rem;
        grid-template-rows: 50px 40px 70px;
        padding: 0.5rem;
    }
    .h2 {
        font-size: 18px;
    }
    .card-p {
        font-size: 14px;
    }
    .fa-icon {
        width: 50px;
        font-size: 30px;
        height: 50px;
    }

    .country-sponsor {
        width: 100%;
        min-width: 1025px;
        max-width: 1440px;
        display: none;
    }
    .country {
        width: 100%;
        min-width: 1000px;
        max-width: 1200px;
        height: 600px;
        border-radius: 0;
    }
    .country-text {
        width: 100%;
        place-self: start;
        padding: 1rem;
    }
    .h2-country {
        font-size: 30px;
    }
    .country-paginate {
        width: 150px;
    }
    .country-flag {
        width: 100%;
        gap: 0;
    }
    .fa-pag {
        width: 40px;
        height: 40px;
    }
    .visa-category {
        min-width: 1025px;
        max-width: 1440px;
    }
    .visa-category-main {
        width: 100%;
        grid-template-rows: 80px 1fr;
        gap: 0;
        height: auto;
    }
    .visa-category-main-text {
        width: 100%;
    }
    .visa-category-main-content {
        width: 100%;
        max-width: 1200px;
        padding: 1rem;
        height: 550px;
    }
    .visa-type {
        height: 250px;
        gap: 1rem;
        grid-template-columns: 200px 1fr;
    }
    .img-visa-category {
        height: 210px;
        width: 200px;
    }
    .visa-type-des {
        padding: 0;
    }
    .available-country {
        width: 100%;
        min-width: 1025px;
        max-width: 1440px;
        height: auto;
    }
    .available-country-div {
        width: 100%;
        height: auto;
        margin-top: 0;
    }

    .consul-stat {
        width: 100%;
        min-width: 1025px;
        max-width: 1200px;
        grid-template-columns: 300px 1fr;
    }
    .main-text-div {
        grid-template-rows: 80px 50px 1fr 50px;
        gap: 0;
    }
    .urban-text {
        width: 1020px;
        padding: 1rem;
    }
    .urban-card {
        min-width: 1020px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .consul-stat {
        min-width: 1020px;
        place-self: center;
        align-self: center;
        padding: 1rem;
    }
    .img-consul-stat {
        width: 300px;
    }
    .main-stat {
        width: 700px;
    }
    .p-res-card {
        font-size: 16px;
    }
    .main-text-div {
        margin-left: 1rem;
    }
    .main-data-div {
        height: 150px;
        place-self: end;
    }
    .supporting-coaching {
        min-width: 1020px;
    }
    .supporting-part {
        place-self: center;
        height: 100px;
    }
    .supporting-card {
        min-width: 1020px;
        max-width: 1440px;
        padding: 1rem;
    }
    .card-img-support {
        height: 300px;
    }
    .s-c-img {
        width: 100%;
    }
    .c-s-d {
        width: 100%;
        height: 150px;
    }
    .r-v {
        width: 100%;
        min-width: 1010px;
        max-width: 1410px;
        height: auto;
        padding-left: 1rem;
        padding-right: 1rem;
        border-radius: 20px;
        margin-left: 0.5rem;
    }
    .r-v-container {
        width: 100%;
        padding-top: 2rem;
        border-radius: 0;
        border-radius: 20px;
    }
    .r-v-head {
        width: 100%;
    }

    .h-rv-titre {
        font-size: 30px;
    }
    .r-v-category {
        gap: 1rem;
    }
    .h-rv-res {
        font-size: 30px;
        text-align: center;
    }
    .p-rv-res {
        font-size: 16px;
    }
    .justify {
        height: 500px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .justify-container {
        margin-top: 0;
        gap: 1rem;
        grid-template-columns: 300px 1fr;
        justify-content: center;
    }
    .section-contact-formation {
        min-width: 1025px;
        max-width: 1440px;
    }
    .contact-information {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .ce-information {
        height: 300px;
        max-width: 1200px;
        padding: 0.5rem;
    }
    .ce-coordonnee {
        grid-template-rows: 30px 1fr;
    }
    .h2-ci {
        font-size: 20px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .container-img {
        min-width: 769px;
        max-width: 1024px;
        place-self: center;
        display: flex;
        justify-content: center;
        align-items: start;
        height: 400px;
        margin-bottom: 1rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .main-img {
        width: 100%;
        height: 400px;
        border-radius: 20px;
        margin-top: 0;
    }
    .main-img-text {
        width: 1400px;
        justify-content: center;
        text-align: center;
    }
    .p-img {
        font-size: 22px;
    }
    .t-res {
        font-size: 22px;
    }
    .main-second {
        min-width: 769px;
        max-width: 1024px;
        height: auto;
        grid-template-rows: 250px 1fr;
    }
    .main-card {
        height: 250px;
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
        /*max-width: 1024px;*/
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .card {
        height: 100%;
        gap: 1rem;
        grid-template-rows: 50px 30px 70px;
        padding: 1rem;
    }
    .h2 {
        font-size: 16px;
    }
    .card-p {
        font-size: 12px;
    }
    .fa-icon {
        width: 50px;
        font-size: 30px;
        height: 50px;
    }
    .r-v {
        width: 100%;
        min-width: 760px;
        max-width: 1010px;
        padding-left: 1rem;
        padding-right: 1rem;
        height: auto;
        margin-top: 0;
        margin: 0;
        border-radius: 20px;
        margin-left: 0.5rem;
    }
    .r-v-container {
        width: 100%;
        height: auto;
        padding: 1rem;
        grid-template-rows: 80px 1fr;
        gap: 1rem;
    }
    .r-v-head {
        height: 60px;
        gap: 0;
        grid-template-rows: repeat(2, 1fr);
    }
    .h-rv-titre {
        font-size: 20px;
    }
    .p-rv-res {
        font-size: 20px;
    }
    .r-v-category {
        height: auto;
        height: 320px;
        gap: 1rem;
    }
    .rv-category-card {
        width: 100%;
        font-size: 20px;
        height: 150px;
        text-align: center;
    }
    .visa-category {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
    }
    .h1-visa-category {
        font-size: 20px;
    }
    .visa-category-main {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
        justify-content: center;
        height: auto;
    }
    .visa-category-main-content {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
        height: 420px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .visa-type {
        grid-template-columns: 200px 1fr;
        height: 200px;
        padding: 0;
    }
    .img-visa-category {
        width: 100%;
        height: 195px;
    }
    .visa-type-des {
        padding: 0;
        font-size: 12px;
        grid-template-rows: repeat(3, 1fr);
        padding-right: 0.4rem;
        height: 195px;
    }
    .visa-a {
        height: 100%;
        all: unset;
    }
    .available-country {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
        height: auto;
    }
    .available-country-div {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 1rem;
        grid-template-columns: 200px 1fr;
        height: auto;
        justify-content: center;
    }
    .img-sonsul-stat {
        width: 200px;
    }
    .main-stat {
        width: 100%;
        width: 500px;
        margin-left: 2rem;
        grid-template-rows: 1fr 150px;
        justify-content: space-between;
    }
    .main-data-div {
        height: 150px;
    }
    .country {
        display: none;
    }
    .justify {
        margin-top: 0;
    }
    .justify-container {
        grid-template-columns: 300px 1fr;
        padding-left: 1rem;
        gap: 1rem;
        padding-right: 1rem;
    }
    .justify-desc {
        padding: 0.5rem;
        grid-template-rows: 30px 250px 90px;
        gap: 1rem;
    }
    .dg-message {
        font-size: 18px;
    }
    .section-contact-formation {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .contact-information {
        width: 100%;
        grid-template-rows: 20px 30px 1fr;
    }
    .ce-information {
        grid-template-columns: 250px 200px 1fr;
        padding: 0.5rem;
    }
    .ce-about-info {
        width: 100%;
    }
    .ce-about-info-first {
        width: 100%;
        gap: 1rem;
        grid-template-columns: 30px 1fr;
        align-items: center;
    }
    .fa-cordonnee {
        width: 40px;
        height: 40px;
    }
    .h2-ci {
        font-size: 20px;
    }
    .ce-coordonnee {
        gap: 0;
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .container-img {
        min-width: 481px;
        max-width: 768px;
        place-self: center;
        display: flex;
        justify-content: center;
        align-items: start;
        height: 300px;
        margin-bottom: 0;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .main-img {
        width: 100%;
        height: 300px;
        border-radius: 20px;
        margin-top: 0;
    }
    .main-img-text {
        width: 400px;
        justify-content: center;
        text-align: center;
        height: 250px;
        gap: 0;
        grid-template-rows: 90px 60px 50px 50px;
    }
    .p-img {
        font-size: 16px;
        height: 100%;
        margin: 0;
    }
    .main-second {
        min-width: 481px;
        max-width: 768px;
        height: auto;
        grid-template-rows: 250px;
        margin-top: 1rem;
    }
    .main-card {
        height: 250px;
        width: 100%;
        min-width: 481px;
        max-width: 768px;
        /*max-width: 1024px;*/
        padding: 0.4rem;
        gap: 0.2rem;
    }
    .card {
        height: 100%;
        gap: 1rem;
        grid-template-rows: 40px 40px 70px;
        padding: 0.5rem;
    }
    .h2 {
        font-size: 12px;
    }
    .card-p {
        font-size: 10px;
    }
    .fa-icon {
        width: 50px;
        font-size: 30px;
        height: 50px;
    }

    .country-sponsor {
        min-width: 481px;
        max-width: 768px;
        height: 600px;
        grid-template-rows: 100px 1fr;
        gap: 1rem;
        display: none;
    }
    .visa-category {
        min-width: 481px;
        max-width: 768px;
        height: auto;
    }
    .visa-category-main {
        width: 100%;
        grid-template-rows: 50px 1fr;
        gap: 1rem;
        height: auto;
    }
    .visa-category-main-text {
        margin-top: 0;
        width: 100%;
    }
    .v-c-m-div {
        font-size: 12px;
    }
    .visa-category-main-content {
        width: 100%;
        height: auto;
        grid-template-columns: none;
        grid-template-rows: repeat(4, 1fr);
    }
    .visa-a {
        all: unset;
    }
    .visa-type {
        height: 200px;
        grid-template-columns: 200px 1fr;
        padding: 0.5rem;
    }
    .img-visa-category {
        height: 180px;
        width: 200px;
    }
    .visa-type-des {
        height: 180px;
        grid-template-rows: repeat(3, 1fr);
        width: 190px;
        gap: 0.5rem;
    }
    .visa-t {
        font-size: 14px;
    }
    .p-visa {
        font-size: 12px;
    }
    .available-country {
        min-width: 481px;
        max-width: 768px;
        height: 650px;
    }
    .available-country-div {
        height: auto;
        width: 100%;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .consul-stat {
        width: 100%;
        place-self: center;
        align-self: center;
        padding: 0;
        grid-template-rows: 200px 1fr;
        grid-template-columns: none;
        gap: 1rem;
    }
    .img-sonsul-stat {
        width: 100%;
    }
    .main-stat {
        width: auto;
        height: 400px;
        gap: 0;
        border-radius: 0;
    }
    .main-data-div {
        width: 100%;
    }
    .main-text-div {
        grid-template-rows: 80px 30px 60px 40px;
        margin-left: 0;
        height: 250px;
        width: 100%;
        gap: 0.5rem;
    }
    .p-res-card {
        font-size: 12px;
    }
    .main-data-div {
        height: 100px;
        font-size: 12px;
        place-self: end;
    }
    .r-v {
        width: 100%;
        min-width: 450px;
        max-width: 750px;
        height: 550px;
        margin: 0;
        margin-top: 1rem;
        margin-bottom: 1rem;
        height: auto;
        border-radius: 20px;
        margin-left: 0.5rem;
        place-items: center;
        justify-content: center;
    }
    .r-v-container {
        padding-top: 2rem;
        border-radius: 0;
        width: 100%;
        padding: 0;
        grid-template-rows: 70px 1fr;
    }

    .r-v-head {
        width: 100%;
        min-width: 400px;
        max-width: 700px;
    }
    .h-rv-titre {
        font-size: 16px;
    }
    .p-rv-res {
        font-size: 12px;
    }
    .r-v-category {
        width: 470px; /* Prend toute la largeur disponible */
        gap: 1rem;
        height: auto;
        padding: 0.4rem;
        grid-template-columns: none;
        grid-template-rows: repeat(4, 1fr);
    }
    .rv-category-card {
        width: 100%;
        height: 100px;
        border-radius: 10px;
    }
    .h-rv-res {
        font-size: 18px;
    }
    .justify {
        height: 300px;
        justify-content: center;
        display: flex;
        place-self: center;
        width: 100%;
        min-width: 481px;
        max-width: 768px;
    }
    .justify-container {
        margin-top: 0;
        grid-template-columns: 200px 1fr;
        justify-content: center;
        height: 300px;
        width: 100%;
        gap: 0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .justify-image {
        width: 200px;
        height: 290px;
    }
    .justify-desc {
        width: 100%;
        height: 290px;
        padding: 0.4rem;
        gap: 0;
        grid-template-rows: 90px 1fr 90px;
    }
    .img-dg {
        width: 50px;
        height: 50px;
    }
    .dg-message {
        font-size: 14px;
        line-height: 1rem;
        padding: 0;
        margin-top: 0;
    }
    .dg-info {
        width: 200px;
        padding: 1rem;
        padding-left: 0;
        gap: 0;
        justify-content: space-between;
    }
    .dg-about {
        gap: 0.5rem;
        margin-left: -2.5rem;
    }
    .dg-name {
        font-size: 14px;
        width: 100%;
    }
    .dg-role {
        font-size: 13px;
    }
    .section-contact-formation {
        width: 100%;
        min-width: 481px;
        max-width: 768px;
    }
    .contact-information {
        width: 100%;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .ce-information {
        grid-template-columns: none;
        grid-template-rows: repeat(2, 200px) 1fr;
        gap: 1rem;
        padding: 0.5rem;
    }
    .ce-about-info {
        padding-left: 1rem;
        height: 200px;
        border-right: none;
    }
    .fa-cordonnee {
        width: 40px;
        height: 40px;
    }
    .ce-about-info-time {
        height: 200px;
    }
    .img-ce-info {
        height: 200px;
    }
    .h2-rf {
        font-size: 16px;
    }
    .fa-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
@media (min-width: 320px) and (max-width: 480px) {
    .container-img {
        min-width: 320px;
        max-width: 480px;
        place-self: center;
        display: flex;
        justify-content: center;
        align-items: start;
        height: 200px;
        margin-bottom: 0;
        padding: 0.5rem;
    }
    .main-img {
        min-width: 100%;
        height: 200px;
        border-radius: 20px;
    }
    .main-img-text {
        width: 300px;
        justify-content: center;
        text-align: center;
        height: 200px;
        gap: 1rem;
        grid-template-rows: 1fr 30px 30px 50px;
    }
    .p-img {
        font-size: 12px;
        height: 100%;
        margin: 0;
    }
    .main-second {
        min-width: 320px;
        max-width: 480px;
        height: 350px;
        grid-template-rows: 1fr;
    }
    .main-card {
        display: flex;
        flex-wrap: wrap; /* Permet aux éléments de passer à la ligne */
        justify-content: space-between; /* Écarte les cartes sur une ligne */
        align-items: flex-start; /* Aligne les éléments en haut de la ligne */
        width: 100%;
        height: 325px;
        width: 100%;
        padding: 0.4rem;
        gap: 0.5rem;
        position: relative; /* Nécessaire pour positionner le dernier élément */
    }

    .card {
        flex: 0 1 calc(48% - 0.2rem); /* Occupe environ 48% de la largeur avec gap */
        height: 160px; /* Exemple de hauteur pour les cartes */
        gap: 0.2rem;
        background-color: white;
        border-radius: 5px; /* Bord arrondi */
        display: grid;
        padding: 0;
        padding-left: 0.2rem;
        width: 100%;
        grid-template-rows: 40px 20px auto;
        border: 1px solid var(--hint-leger-CE);
    }

    /* Styles spécifiques pour la dernière carte */
    .card:last-child {
        flex: 0 1 100%; /* S'étend sur toute la ligne */
        align-self: center; /* Place la carte au centre */
    }

    .h2 {
        font-size: 12px;
    }
    .card-p {
        font-size: 10px;
    }
    .fa-icon {
        width: 30px;
        font-size: 20px;
        height: 30px;
    }
    .country-sponsor {
        min-width: 320px;
        max-width: 480px;
        height: 500px;
        grid-template-rows: 80px 1fr;
        gap: 1rem;
        display: none;
    }

    .country {
        width: 100%;
        height: 400px;
        border-radius: 0;
        grid-template-rows: 90px 1fr;
    }
    .country-text {
        width: 320px;
        height: 90px;
        gap: 0.5rem;
        place-self: start;
        padding: 0.4rem;
        padding-top: 0;
        grid-template-columns: 1fr 50px;
    }
    .h2-country {
        font-size: 14px;
    }
    .p-r-res {
        font-size: 12px;
    }
    .country-paginate {
        width: 150px;
        display: none;
    }

    .country-flag {
        width: 320px;
        gap: 0.1rem;
        grid-template-columns: repeat(5, 1fr);
        justify-content: space-around;
        align-items: center;
        height: 250px;
    }
    .country-paginate {
        gap: 0.5;
        width: 50px;
    }
    .fa-pag {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    .visa-category {
        min-width: 320px;
        max-width: 480px;
        height: 750px;
        margin-top: 0;
    }
    .visa-category-main {
        width: 100%;
        grid-template-rows: 80px 1fr;
        gap: 0;
    }
    .visa-category-main-text {
        margin-top: 0;
        width: 100%;
        height: 90px;
        gap: 0;
    }
    .v-c-m-div {
        font-size: 12px;
    }
    .visa-category-main-content {
        width: 320px;
        padding: 0.4rem;
        margin-top: 0;
        height: 650px;
        gap: 0;
        grid-template-columns: none;
        grid-template-rows: repeat(4, 1fr);
    }
    .visa-type {
        height: 150px;
        grid-template-columns: 150px 1fr;
        border-radius: 10px;
        padding: 0;
        gap: 0;
        width: 315px;
    }
    .img-visa-category {
        height: 145px;
        border-radius: 10px;
        width: 100%;
    }
    .visa-type-des {
        height: 150px;
        grid-template-rows: repeat(3, 1fr);
        width: auto;
        gap: 0.2rem;
        padding-top: 0;
    }
    .visa-t {
        font-size: 14px;
    }
    .p-visa {
        font-size: 12px;
    }
    .type-desc-nav {
        font-size: 25px;
    }
    .available-country-div {
        min-width: 320px;
        max-width: 480px;
        height: 600px;
        grid-template-rows: 600px;
        display: none;
    }
    .urban {
        display: none;
    }
    .urban-text {
        width: 1020px;
        padding: 1rem;
    }
    .urban-card {
        min-width: 1020px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .consul-stat {
        min-width: 481px;
        place-self: center;
        align-self: center;
        padding: 0;
        grid-template-columns: 250px 1fr;
    }
    .img-sonsul-stat {
        width: 230px;
    }
    .main-stat {
        width: 100%;
    }
    .p-res-card {
        font-size: 16px;
    }
    .main-text-div {
        margin-left: 1rem;
    }
    .main-data-div {
        height: 120px;
        place-self: end;
    }
    .p-r-res {
        font-size: 12px;
    }
    .h2-session {
        font-size: 16px;
    }
    .card-img-support {
        height: 200px;
    }
    .s-c-img {
        width: 310px;
        height: 150px;
        border-radius: 10px;
    }
    .c-s-d {
        width: 100%;
        height: 100px;
        border-radius: 10px;
        bottom: 0;
    }
    .r-v {
        width: 100%;
        min-width: 300px;
        max-width: 480px;
        height: 550px;
        margin-bottom: 4rem;
        height: auto;
        margin-left: 0;
        border-radius: 10px;
    }
    .r-v-container {
        border-radius: 0;
        width: 100%;
        padding: 0.4rem;
        grid-template-rows: 70px 1fr;
    }
    .r-v-head {
        width: 100%;
    }
    .h-rv-titre {
        font-size: 16px;
    }
    .p-rv-res {
        font-size: 12px;
    }
    .r-v-category {
        width: 100%; /* Prend toute la largeur disponible */
        gap: 1rem;
        height: auto;
        padding: 0.4rem;
        grid-template-columns: none;
        grid-template-rows: repeat(4, 1fr);
    }
    .rv-category-card {
        width: 100%;
        height: 100px;
        border-radius: 10px;
    }
    .h-rv-res {
        font-size: 18px;
    }
    .justify {
        min-width: 320px;
        max-width: 480px;
        height: 260px;
        justify-content: center;
        display: flex;
        place-self: center;
        margin-top: 0;
    }
    .justify-container {
        margin-top: 0;
        grid-template-columns: 1fr 1fr;
        justify-content: center;
        height: 260px;
        width: 320px;
        gap: 0.2rem;
        padding: 0.2rem;
    }
    .justify-image {
        width: 100%;
        height: 250px;
        border-radius: 10px;
    }
    .justify-desc {
        width: 100%;
        border-radius: 10px;
        height: 250px;
        padding: 0.4rem;
        gap: 0;
        grid-template-rows: 40px 1fr 40px;
    }
    .img-dg {
        width: 50px;
        height: 50px;
    }
    .dg-message {
        font-size: 12px;
        line-height: 1rem;
        padding: 0;
        margin-top: 0;
    }
    .dg-info {
        width: 200px;
        padding: 1rem;
        padding-left: 0;
        gap: 0;
        justify-content: space-between;
    }
    .dg-about {
        gap: 0.5rem;
        margin-left: -2.5rem;
    }
    .dg-name {
        font-size: 12px;
        width: 100%;
    }
    .dg-role {
        font-size: 12px;
    }
    .section-contact-formation {
        width: 100%;
        min-width: 320px;
        max-width: 480px;
        height: auto;
    }
    .p-ci {
        font-size: 12px;
    }
    .h2-ci {
        font-size: 14px;
    }
    .contact-information {
        width: 100%;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .ce-information {
        grid-template-columns: none;
        grid-template-rows: 200px, 150px, 1fr;
        gap: 1rem;
        padding: 0.5rem;
    }
    .ce-about-info {
        padding-left: 1rem;
        height: 200px;
        border-right: none;
        border-bottom: 1px solid var(--hint-leger-CE);
    }
    .ce-about-info-first {
        gap: 2rem;
        width: 100%;
        align-items: center;
    }
    .fa-cordonnee {
        width: 30px;
        height: 30px;
    }
    .p-ce-cordonnee,
    .p-ce-cordonnee-bold {
        font-size: 13px;
    }
    .ce-about-info-time {
        border-bottom: 1px solid var(--hint-leger-CE);
    }
    .time-open {
        font-size: 12px;
    }
}

.h1 {
    font-size: 80px;
    font-weight: bold;
}
.span {
    font-family: "Marck Script", cursive;
    font-weight: 300;
    font-style: normal;
    font-size: 90px;
}

.fa-square-check {
    font-size: 20px;
}

.p-why {
    font-size: 12px;
}
.color-t {
    color: var(--primary);
}
.fa-phone {
    background-color: var(--color-CE);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
}

.h1-visa-category {
    font-size: 30px;
    font-family: var(--font-family-CE);
    color: var(--color-CE);
}

.fa-location-arrow {
    width: 30px;
    color: var(--primary);
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    height: 30px;
    font-size: 30px;
}
.fa-file-shield {
    font-size: 30px;
    font-weight: 300;
    cursor: pointer;
}
.fa-visa {
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
}
.p-urban {
    font-family: var(--font-family-CE);
}
.fa-ion-eart {
    background-color: var(--primary);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    color: white;
    font-size: 30px;
    justify-content: center;
    align-content: center;
    text-align: center;
}
.h2-data {
    font-size: 50px;
}
.fa-support-pag {
    border: 1px solid var(--hint-leger-CE);
}
.h4 {
    font-size: 22px;
}
.p-card-d-link {
    color: var(--hint-CE);
}
.fa-link {
    width: 70px;
    height: 50px;
    border-radius: 10px;
    margin-left: 1rem;
    border: 1px solid var(--hint-leger-CE);
    display: grid;
    text-align: center;
    justify-content: center;
    align-content: center;
    cursor: pointer;
    &:hover {
        background-color: var(--primary);
        color: white;
    }
}
.fa-link-middle {
    background-color: var(--primary);
    color: white;
    &:hover {
        background-color: white;
        color: var(--color-CE);
    }
}
.fa-quote-left {
    font-size: 40px;
}
.fa-microchip {
    color: var(--color-CE);
}
.sous-line {
    all: unset;
}
@media (min-width: 1025px) and (max-width: 1440px) {
    .h1-visa-category {
        font-size: 30px;
    }
    .h2-data {
        font-size: 40px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .h1 {
        font-size: 50px;
    }
    .span {
        font-size: 50px;
    }
    .h1-visa-category {
        font-size: 25px;
    }
    .fa-location-arrow {
        font-size: 30px;
    }
    .fa-file-shield {
        font-size: 25px;
    }
    .h2-data {
        font-size: 20px;
    }
    .h4 {
        font-size: 16px;
    }
    .p-card-d-link {
        font-size: 12px;
    }
    .sous-line {
        height: 100%;
    }
    .fa-phone {
        width: 40px;
        height: 40px;
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .h1 {
        font-size: 35px;
        place-self: center;
    }
    .t-res {
        font-size: 48px;
    }
    .p-why {
        font-size: 12px;
    }
    .fa-phone {
        width: 40px;
        height: 40px;
    }
    .h1-visa-category {
        font-size: 16px;
    }
    .h4 {
        font-size: 14px;
    }
    .p-card-d-link {
        font-size: 12px;
    }
    .fa-quote-left {
        font-size: 20px;
    }
    .fa-file-shield {
        font-size: 20px;
    }
    .fa-location-arrow {
        font-size: 20px;
    }
    .h2-data {
        font-size: 20px;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    .h1 {
        font-size: 20px;
        place-self: center;
    }
    .t-res {
        font-size: 28px;
    }
    .p-why {
        font-size: 12px;
    }
    .fa-phone {
        width: 25px;
        font-size: 12px;
        height: 25px;
    }
    .h1-visa-category {
        font-size: 16px;
    }
    .h4 {
        font-size: 14px;
    }
    .p-card-d-link {
        font-size: 12px;
    }
    .fa-quote-left {
        font-size: 20px;
    }
    .sous-line {
        height: 150px;
    }
    .fa-file-shield {
        font-size: 15px;
    }
    .fa-location-arrow {
        font-size: 15px;
    }
}

.flag {
    color: white; /* Pour rendre le texte visible */
    text-align: center;
    padding: 1rem;
    border: 1px solid white;
    border-radius: 10px;
    transition: all 0.3s ease; /* Animation pour un effet fluide */
    overflow: hidden; /* Cache le texte tant qu'il n'est pas agrandi */
    white-space: nowrap; /* Empêche le texte de passer à la ligne */
    display: grid;
    grid-template-rows: 60px 1fr;
    cursor: pointer;
    gap: 2rem;
}

.flag:hover {
    width: 260px; /* Augmente la largeur au survol */
    height: auto; /* Optionnel : ajuste la hauteur si le contenu est plus grand */
    overflow: visible; /* Montre tout le contenu */
}

.flag-1 {
    background-image: url("/images/france.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.circle-1 {
    width: 60px;
    height: 60px;
    background-color: var(--color-CE);
    border-radius: 50%;
    background-image: url("/images/france.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.flag-apply {
    background-color: var(--primary);
    border-radius: 20px;
    height: 170px;
    opacity: 0; /* Complètement transparent */
    visibility: hidden; /* Masque l'élément */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Ajoute une transition fluide */
    display: grid;
    max-width: 230px;
    grid-template-rows: 40px 1fr 1fr;
    text-align: start;
    font-size: 10px;
    padding: 1rem;
    font-family: var(--font-family-CE);
}
.flag:hover .flag-apply {
    opacity: 1; /* Rendre visible */
    visibility: visible;
    /* Affiche l'élément */
}
.p-flag {
    max-width: 230px;
    word-wrap: break-word; /* Forcer le retour à la ligne pour les mots longs */
    word-break: break-word; /* Brise les mots longs si nécessaire */
    white-space: normal;
    font-size: 12px;
}

.flag-2 {
    background-image: url("/images/usa.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.circle-2 {
    width: 60px;
    height: 60px;
    background-color: var(--color-CE);
    border-radius: 50%;
    background-image: url("/images/usa.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.flag-3 {
    background-image: url("/images/espagne.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.circle-3 {
    width: 60px;
    height: 60px;
    background-color: var(--color-CE);
    border-radius: 50%;
    background-image: url("/images/espagne.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.flag-4 {
    background-image: url("/images/grb.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.circle-4 {
    width: 60px;
    height: 60px;
    background-color: var(--color-CE);
    border-radius: 50%;
    background-image: url("/images/grb.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.flag-5 {
    background-image: url("/images/cn.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.circle-5 {
    width: 60px;
    height: 60px;
    background-color: var(--color-CE);
    border-radius: 50%;
    background-image: url("/images/cn.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 1025px) and (max-width: 1440px) {
    /* Désactive l'agrandissement de la largeur au survol */
    .flag {
        width: 190px; /* Largeur fixe dans cette plage de taille */
        overflow: visible; /* Garde le texte visible */
    }

    .flag:hover {
        width: 190px; /* Garder la même taille qu'avant le survol */
    }

    /* Optionnel : vous pouvez également ajuster la taille du texte et d'autres propriétés */
    .flag .p-flag {
        font-size: 12px; /* Taille de police fixée */
    }

    /* Ajuster la taille des éléments circulaires pour qu'ils soient compatibles */
    .circle-1,
    .circle-2,
    .circle-3,
    .circle-4,
    .circle-5 {
        width: 60px;
        height: 60px;
    }

    /* Gérer l'apparence du conteneur .flag-apply */
    .flag-apply {
        max-width: 200px; /* Garder la largeur maximale */
        height: auto;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .flag {
        width: 100px; /* Largeur fixe dans cette plage de taille */
    }
    .flag:hover {
        height: 400px;
    }

    /* Optionnel : vous pouvez également ajuster la taille du texte et d'autres propriétés */
    .flag .p-flag {
        font-size: 12px; /* Taille de police fixée */
    }

    /* Ajuster la taille des éléments circulaires pour qu'ils soient compatibles */
    .circle-1,
    .circle-2,
    .circle-3,
    .circle-4,
    .circle-5 {
        width: 60px;
        height: 60px;
    }

    /* Gérer l'apparence du conteneur .flag-apply */
    .flag-apply {
        max-width: 200px; /* Garder la largeur maximale */
        height: auto;
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .flag {
        width: 100%; /* Largeur fixe dans cette plage de taille */
        height: 100%;
    }
    .flag:hover {
        height: 400px;
    }

    /* Optionnel : vous pouvez également ajuster la taille du texte et d'autres propriétés */
    .flag .p-flag {
        font-size: 12px; /* Taille de police fixée */
    }

    /* Ajuster la taille des éléments circulaires pour qu'ils soient compatibles */
    .circle-1,
    .circle-2,
    .circle-3,
    .circle-4,
    .circle-5 {
        width: 60px;
        height: 60px;
    }

    /* Gérer l'apparence du conteneur .flag-apply */
    .flag-apply {
        max-width: 200px; /* Garder la largeur maximale */
        height: auto;
    }
}
@media (min-width: 320px) and (max-width: 480px) {
    .flag {
        width: 100%; /* Largeur fixe dans cette plage de taille */
        height: 100%;
    }
    .flag:hover {
        height: 400px;
    }

    /* Optionnel : vous pouvez également ajuster la taille du texte et d'autres propriétés */
    .flag .p-flag {
        font-size: 12px; /* Taille de police fixée */
    }

    /* Ajuster la taille des éléments circulaires pour qu'ils soient compatibles */
    .circle-1,
    .circle-2,
    .circle-3,
    .circle-4,
    .circle-5 {
        width: 40px;
        height: 40px;
    }

    /* Gérer l'apparence du conteneur .flag-apply */
    .flag-apply {
        max-width: 200px; /* Garder la largeur maximale */
        height: auto;
    }
}

/* Style de la popup (fond sombre) */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none; /* Masqué par défaut */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Contenu de la popup */
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: start;
    width: 860px;
    height: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: scaleUp 0.3s ease; /* Animation */
    display: grid;
    grid-template-rows: 50px 50px 1fr;
    font-family: var(--font-family-CE);
    border-radius: 20px;
}
.titre-exit {
    display: flex;
    justify-content: space-between;
}
.titre-formulaire {
    font-size: 25px;
}
.p-accord {
    font-size: 15px;
}
.form-contact {
    display: grid;
    justify-content: center;
    grid-template-rows: 50px 1fr 50px;
    gap: 1rem;
}
.inputs-part {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    font-family: var(--font-family-CE);
}
.input-att {
    all: unset; /* Supprime tous les styles par défaut */
    border-radius: 20px;
    background-color: var(--hint-leger-CE);
    text-decoration: none;
    box-sizing: border-box;
    font-family: var(--font-family-CE);
    color: var(--color-CE);
    padding-left: 1rem;
    font-weight: bold;
}
.text-area-att {
    all: unset;
    background-color: var(--hint-leger-CE);
    box-sizing: border-box;
    border-radius: 20px;
    font-weight: bold;
    padding: 1rem;
}
.btn-conf {
    height: 50px;
}
/* Animation d'agrandissement */
@keyframes scaleUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* Bouton de fermeture */
.popup-close {
    top: 10px;
    right: 10px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    background-color: red;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
}

.popup-close:hover {
    background-color: rgb(227, 10, 10); /* Changement de couleur au survol */
}

/* Bouton d'action */
.popup-action {
    padding: 15px;
    background-color: var(--primary);
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    height: 50px;
    width: 200px;
    place-self: flex-end;
}

.popup-action:hover {
    background-color: #005bb5;
}

/* Masquer tout derrière la popup */
.popup-container-rv {
    height: 100vh;
    top: 0;
    left: 0;
    width: 100%;
    position: fixed; /* Fixe la popup à la fenêtre */
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Assurez-vous que ce chiffre est élevé */
}

/* Empêcher le défilement du body */
.no-scroll {
    overflow: hidden;
}

.rv-popup {
    width: 1000px;
    height: 600px;
    background-color: var(--color-CE);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: scaleUp 0.3s ease;
    /* Animation */
}

.logo-side-form {
    color: var(--primary);
    display: grid;
    grid-template-rows: 50px 1fr 50px;
    justify-content: center;
    align-items: center;
    font-family: var(--font-family-CE);
    text-align: center;
    padding: 2rem;
}

.logo-popu-CE {
    width: 300px;
    height: 300px;
    border-radius: 50%;
}

.calendar-form-side {
    background-color: white;
    padding: 2rem;
    display: grid;
    grid-template-rows: 30px 50px 1fr;
    gap: 1rem;
    font-family: var(--font-family-CE);
    border-radius: 0 20px 20px 0;
    height: 600px;
}

.calendar-head-p-exit {
    display: grid;
    grid-template-columns: 1fr 60px;
    justify-content: space-between;
    justify-content: center;
    align-items: center;
}

.p-h-calendar {
    font-size: 15px;
}

.h1-calendar {
    font-size: 20px;
}

.calendar-main-date-time {
    margin-top: 2rem;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 1rem;
    height: 322px;
}

.input-calendar {
    display: grid;
    grid-template-rows: 20px 1fr;
    gap: 1rem;
}

.inp-calendar {
    outline: none;
    border-radius: 10px;
    border: 1px solid var(--hint-CE);
    padding: 1rem;
    cursor: pointer;
    font-weight: bold;
    color: var(--color-CE);

    &:hover {
        border: 2px solid var(--primary);
    }
}

.btn-next-calendar {
    background-color: var(--primary);
    width: 150px;
    display: flex;
    height: 40px;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-family-CE);
    color: white;
    cursor: pointer;
    place-self: end;

    &:hover {
        background-color: var(--color-CE);
    }
}

.btn-next {
    all: unset;
    font-weight: bold;
}
/* Animation d'agrandissement */
@keyframes scaleUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* Bouton de fermeture */
.popup-close-form-first {
    top: 10px;
    right: 10px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    background-color: red;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
}

.popup-close:hover {
    background-color: rgb(227, 10, 10); /* Changement de couleur au survol */
}

@media (min-width: 769px) and (max-width: 1024px) {
    .rv-popup {
        width: 700px;
        gap: 0.5rem;
        grid-template-columns: repeat(2, 1fr);
    }
    .h1-calendar {
        font-size: 25px !important;
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .rv-popup {
        width: 460px;
        gap: 0.5rem;
        grid-template-columns: 1fr;
        height: 500px;
        padding: 0.4rem;
    }
    .logo-side-form {
        display: none;
    }
    .calendar-form-side {
        border-radius: 30px;
        height: 500px;
        grid-template-rows: 30px 40px 1fr;
        gap: 0.5rem;
    }
    .popup-close-form-first {
        width: 30px !important;
        height: 30px !important;
        place-self: center;
        justify-items: center;
        background-color: white !important;
        color: red !important;
        margin-bottom: 1rem !important;
    }
    .h1-calendar {
        font-size: 25px !important;
    }
}
@media (min-width: 320px) and (max-width: 480px) {
    .rv-popup {
        width: 320px;
        gap: 0.5rem;
        grid-template-columns: 1fr;
        height: 410px;
        padding: 0.4rem;
    }
    .logo-side-form {
        display: none;
    }
    .calendar-form-side {
        border-radius: 20px;
        height: 400px;
        grid-template-rows: 30px 30px 1fr;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    .h1-calendar {
        font-size: 12px !important;
    }
    .popup-close-form-first {
        width: 30px !important;
        height: 30px !important;
        place-self: center;
        justify-items: center;
        background-color: white !important;
        color: red !important;
        margin-bottom: 1rem !important;
    }
    .p-h-calendar {
        font-size: 12px !important;
    }
    .calendar-main-date-time {
        margin-top: 0;
        gap: 0;
    }
    .input-calendar {
        height: 80px;
        width: 100%;
    }
    .inp-calendar {
        height: 40px;
        width: 100%;
    }
    .btn-next-calendar {
        margin-bottom: 2rem;
        height: 40px;
    }
}

.popup-container-rv,
.popup-container-second-rv {
    display: none; /* Masque les popups par défaut */
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fond transparent */
    z-index: 1000;
}

.no-scroll {
    overflow: hidden; /* Désactive le scroll */
}

.form-data-side {
    background-color: white;
    display: grid;
    padding: 1rem;
    grid-template-rows: 50px 80px 1fr;
    font-family: var(--font-family-CE);
    border-radius: 0 20px 20px 0;
    height: 600px;
}

.calendar-head-p-exit {
    display: grid;
    grid-template-columns: 1fr 60px;
    justify-content: space-between;
    justify-content: center;
    align-items: center;
}

.p-h-calendar {
    font-size: 15px;
}

.h1-calendar {
    font-size: 20px;
}

.user-data-rv {
    margin-top: 2rem;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 0.2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    height: 40px;
}
.btn-data-submit-retrun {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}
.btn-send-data {
    background-color: var(--primary);
    width: 150px;
    display: flex;
    height: 50px;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-family-CE);
    color: white;
    cursor: pointer;
    place-self: end;

    &:hover {
        background-color: var(--color-CE);
    }
}
.btn-return-data {
    background-color: var(--hint-CE);
    width: 150px;
    display: flex;
    height: 50px;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-family-CE);
    color: white;
    cursor: pointer;
    place-self: end;

    &:hover {
        background-color: var(--hint-CE);
    }
}

.data-user-rv {
    display: grid;
    grid-template-rows: 30px 1fr;
    font-family: var(--font-family-CE);
    color: var(--color-CE);
}
.inpt-data-rv {
    all: unset;
    border: 1px solid var(--hint-CE);
    border-radius: 10px;
    background-color: white;
    padding-left: 0.5rem;
    height: 50px;
}
.label-data-user-rv {
    color: var(--hint-CE);
    font-weight: bold;
}
.btn-next {
    all: unset;
    font-weight: bold;
}
/* Animation d'agrandissement */
@keyframes scaleUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* Bouton de fermeture */
.popup-close-form-first {
    top: 10px;
    right: 10px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    background-color: red;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
}

.popup-close:hover {
    background-color: rgb(227, 10, 10); /* Changement de couleur au survol */
}
@media (min-width: 769px) and (max-width: 1024px) {
    .rv-popup {
        width: 700px;
        gap: 0.5rem;
        grid-template-columns: repeat(2, 1fr);
    }
    .logo-side-form {
        width: 100%;
        padding: 0.5rem;
    }
    .form-data-side {
        width: 100%;
        padding: 1rem;
    }
    .h1-calendar {
        font-size: 20px;
    }
    .user-data-rv {
        padding: 0;
        height: 400px;
    }
    .data-user-rv {
        gap: 0.2rem;
    }
    .btn-return-data,
    .btn-send-data {
        height: 40px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .rv-popup {
        width: 460px;
        gap: 0.5rem;
        height: 500px;
        grid-template-columns: 1fr;
        padding: 0.4rem;
    }
    .logo-side-form {
        display: none;
    }
    .form-data-side {
        height: 500px;
        width: 100%;
        padding: 1rem;
        grid-template-rows: 30px 40px 1fr;
        border-radius: 30px;
    }
    .h1-calendar {
        font-size: 20px;
    }
    .user-data-rv {
        padding: 0;
        height: 350px;
    }
    .data-user-rv {
        gap: 0.2rem;
    }

    .btn-return-data,
    .btn-send-data {
        height: 40px;
    }
}
@media (min-width: 320px) and (max-width: 480px) {
    .rv-popup {
        width: 310px;
        gap: 0.5rem;
        height: 410px;
        grid-template-columns: 1fr;
        padding: 0.4rem;
    }
    .logo-side-form {
        display: none;
    }
    .form-data-side {
        height: 400px;
        width: 100%;
        padding: 0.5rem;
        grid-template-rows: 20px 30px 1fr;
        border-radius: 30px;
        gap: 0.5rem;
    }
    .h1-calendar {
        font-size: 20px;
    }
    .user-data-rv {
        padding: 0;
        margin: 0;
        height: 350px;
        gap: 0.5rem;
    }
    .data-user-rv {
        gap: 0.2rem;
    }
    .label-data-user-rv {
        font-size: 12px;
    }
    .inpt-data-rv {
        height: 40px;
        font-size: 12px;
    }
    .btn-data-submit-retrun {
        height: 30px;
    }
    .data-user-rv {
        gap: 0.2rem;
    }

    .btn-return-data,
    .btn-send-data {
        height: 100%;
        width: 100px;
        gap: 0.5rem;
        font-size: 12px;
    }
}

.popup-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 18px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 1000;
    transition: opacity 0.5s ease;
    opacity: 0; /* Par défaut invisible */
    place-self: center;
    display: grid;
    text-align: center;
    justify-content: center;
    align-items: center;
    place-items: center;
}

.popup-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.popup-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}



.about-section {
    display: grid;
}
.div-container-img-about {
    display: grid;
}
.div-img-about {
    width: 1750px;
    height: 500px;
    border: 1px solid black;
    border-radius: 30px;
    background: linear-gradient(rgba(16, 34, 63, 0.4), rgba(16, 34, 63, 0.4)),
        /* Couleur #10223F avec transparence */ url("/images/CE/apropos-2.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
    display: grid;
    justify-content: start;
    align-items: center;
    text-align: center;
    font-family: var(--font-family-CE);
    color: white;
    -o-object-fit: contain;
       object-fit: contain;
    place-self: center;
}
.img-about-text {
    width: 500px;
    height: 150px;
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
}
.page-actuel {
    display: grid;
    grid-template-columns: auto 20px auto;
    width: 300px;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-weight: 300;
}
.p-img-page-act {
    font-size: 20px;
}
.h-img-page {
    font-size: 50px;
}
.why-choice-us-about {
    margin-top: 4rem;
    height: 600px;
    display: grid;
    justify-content: center;
}
.get-stat-about {
    width: 1200px;
    margin-top: 4rem;
    place-self: center;
}
.sponsor-about {
    place-self: center;
    margin-top: 4rem;
}

.why-choice-us-about {
    width: 100vw;
    margin-top: 2rem;
}
.main-choice {
    height: 100%;
    width: 1200px;
    place-self: center;
    align-self: center;
    display: grid;
    grid-template-columns: 1fr 600px;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}
.choice-img {
    width: 100%;
    height: 100%;
    grid-template-columns: repeat(2, 1fr);
}
.img-div {
    grid-template-rows: 400px 1fr;
    width: 100%;
}
.choice-img-div {
    width: 240px;
}
.main-choose-text {
    width: 100%;
    grid-template-rows: 30px, 50px, 1fr, 50px;
    gap: 1rem;
    font-family: var(--font-family-CE);
    padding: 0;
    height: 100%;
}
.why-choose-us {
    height: 30px;
}

.choice-logo-div {
    display: grid;
    grid-template-rows: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("/images/TM/logo.jpg");
    height: 200px;
    width: 200px;
    border-radius: 50%;
    border: 1px solid var(--primary);
}
.p-why-long {
    text-align: justify;
    font-size: 18px;
    height: 100%;
    line-height: 1.8rem;
    font-weight: 500;
    color: var(--color-CE);
}
.choose-us-btn {
    height: 50px;
    display: grid;
    grid-template-columns: 250px;
    justify-content: start;
    align-items: end;
    gap: 2rem;
}

.experience {
    display: grid;
    grid-template-rows: 127px 1fr;
    gap: 1rem;
}
.experience-first {
    background-color: var(--color-CE);
    border-radius: 20px;
    color: white;
    font-family: var(--font-family-CE);
    display: grid;
    grid-template-columns: 50px auto;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 1rem;
}
.year-experience {
    font-size: 50px;
    font-weight: bold;
}
.experience-img {
    border-radius: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("/images/CE/pii.jpg");
}

.main-choose-text {
    display: grid;
    grid-template-rows: 1fr, 100px, 1fr, 200px, 90px;
    width: 750px;
    gap: 0.8rem;
}
.why-choose-us {
    display: flex;
    color: var(--color-CE);
    justify-content: start;
    align-items: center;
    gap: 0.5rem;
}

.p-why-long {
    color: var(--hint-CE);
    font-size: 15px;
}

.need-help {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-family: var(--font-family-CE);
    gap: 0.5rem;
}
.need-num {
    display: grid;
    justify-content: space-evenly;
    gap: 0.2rem;
}
.fa-pa {
    width: 40px;
    height: 40px;
    font-size: 25px;
}
.pp-text {
    font-size: 20px;
}
.p-div-text {
    color: var(--hint-CE);
}
.h2-why {
    font-size: 25px;
    height: 50px;
    margin: 0;
    color: var(--color-CE);
    height: 100px;
    line-height: 2rem;
    font-family: var(--font-family-CE);
}
.p-why {
    font-family: var(--font-family-CE);
}
.partenaires {
    display: grid;
    grid-template-rows: 40px 1fr;
    height: auto;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}
.handshake {
    display: grid;
    grid-template-columns: 30px 300px;
    gap: 1rem;
    font-family: var(--font-family-CE);
    justify-content: center;
    font-size: 20px;
    align-content: center;
    align-items: center;
    color: var(--color-CE);
}
.p-partenaire {
    width: auto;
    font-weight: bold;
    font-size: 20px;
}
.fa-handshake {
    font-size: 20px;
}

.sponsor {
    width: 1200px;
    height: 100px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-content: space-between;
    gap: 1rem;
}
.sponsor-logo {
    background-color: var(--hint-leger-CE);
    width: 100%;
    height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
    background-color: white;
    border: 1px solid var(--hint-leger-CE);
}
.pays-destination {
    width: 100vw;
    display: grid;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    margin-top: 4rem;
}
.pays-destination-div {
    width: 1200px;
    height: auto;
    gap: 1rem;
    display: grid;
    grid-template-rows: 50px 1fr;
    font-family: var(--font-family-CE);
    color: var(--color-CE);
    justify-content: center;
    align-items: center;
}
.pays-cible-head {
    height: 50px;
    width: 100%;
    display: grid;
    grid-template-columns: 30px 200px;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    gap: 0.5rem;
    font-weight: bold;
}
.flag-pays-cible {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 200px);
    gap: 1rem;
    justify-content: center;
}
.pc-flag-div {
    width: 100%;
    height: 260px;
    display: grid;
    grid-template-rows: 200px 50px;
    gap: 0.5rem;
}
.pc-flag {
    width: 100%;
    border-radius: 50%;
    height: 100%;
}
.titre-flag-pc {
    font-family: var(--font-family-CE);
    background-color: var(--color-CE);
    color: white;
    text-align: center;
    display: grid;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: 16px;
    height: 40px;
}
@media (max-width: 1441px) {
    .div-container-img-about {
        width: 100%;
        min-width: 1300px;
        max-width: 1600px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .div-img-about {
        width: 100%;
        border-radius: 30px;
    }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
    .div-container-img-about {
        width: 100%;
        min-width: 1025px;
        max-width: 1440px;
        padding-right: 1rem;
        padding-left: 1rem;
        height: 400px;
    }
    .div-img-about {
        width: 100%;
        height: 100%;
    }
    .why-choice-us-about {
        width: 100%;
        min-width: 1025px;
        max-width: 1440px;
        height: auto;
    }
    .main-choice {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 1rem;
    }
    .choice-img {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .choice-img-div {
        width: 100%;
    }
    .choice-logo-div {
        width: 180px;
        height: 180px;
    }
    .experience {
        width: 100%;
    }
    .main-choose-text {
        width: 100%;
    }
    .pays-destination {
        width: 100%;
        min-width: 1025px;
        max-width: 1440px;
        margin-top: 2rem;
    }
    .pays-destination-div {
        width: 100%;
        min-width: 1025px;
        max-width: 1200px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .flag-pays-cible {
        width: 100%;
        grid-template-columns: repeat(5, 1fr);
    }
    .partenaires {
        width: 100%;
        min-width: 1025px;
        max-width: 1440px;
    }
    .sponsor {
        width: 100%;
        max-width: 1200px;
    }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .div-container-img-about {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
        padding-right: 1rem;
        padding-left: 1rem;
        height: 400px;
    }
    .div-img-about {
        width: 100%;
        height: 100%;
    }
    .why-choice-us-about {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
        height: auto;
    }
    .main-choice {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        height: auto;
        gap: 1rem;
        grid-template-columns: none;
        grid-template-rows: repeat(2, 1fr);
    }
    .img-div {
        grid-template-rows: 1fr;
    }
    .choice-img {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .choice-img-div {
        width: 420px;
    }
    .choice-logo-div {
        display: none;
    }
    .experience {
        width: 100%;
    }
    .main-choose-text {
        width: 100%;
        grid-template-rows: 30px, 50px, 1fr, 50px;
        gap: 0;
    }
    .pays-destination {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
        margin-top: 2rem;
    }
    .pays-destination-div {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .flag-pays-cible {
        width: 100%;
        grid-template-columns: repeat(5, 1fr);
    }
    .partenaires {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
    }
    .sponsor {
        width: 100%;
        max-width: 1200px;
    }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
    .div-container-img-about {
        width: 100%;
        min-width: 481px;
        max-width: 768px;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
        height: 300px;
    }
    .div-img-about {
        width: 100%;
        height: 100%;
    }
    .why-choice-us-about {
        width: 100%;
        min-width: 481px;
        max-width: 768px;
        height: auto;
    }
    .main-choice {
        width: 100%;
        padding-left: 0.2rem;
        padding-right: 0.2rem;
        height: auto;
        gap: 0.5rem;
        grid-template-columns: none;
        grid-template-rows: repeat(2, 1fr);
    }
    .img-div {
        grid-template-rows: 1fr;
    }
    .choice-img {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .choice-img-div {
        width: 230px;
    }
    .choice-logo-div {
        display: none;
    }
    .experience {
        width: 100%;
    }
    .main-choose-text {
        width: 100%;
        grid-template-rows: 30px, 50px, 1fr, 50px;
        gap: 0;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .pays-destination {
        width: 100%;
        min-width: 481px;
        max-width: 768px;
        margin-top: 2rem;
    }
    .pays-destination-div {
        width: 100%;
        min-width: 481px;
        max-width: 768px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .flag-pays-cible {
        width: 100%;
        grid-template-columns: repeat(5, 1fr);
        gap: 0.2rem;
    }
    .pc-flag-div {
        grid-template-rows: 150px 50px;
        height: auto;
    }
    .pc-flag {
        width: 100%;
        height: 150px;
    }
    .titre-flag-pc {
        font-size: 12px;
    }
    .partenaires {
        width: 100%;
        min-width: 481px;
        max-width: 768px;
    }
    .sponsor {
        width: 100%;
        max-width: 1200px;
    }
    .h-img-page {
        font-size: 30px;
    }
    .page-actuel {
        font-size: 15px;
    }
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
    .div-container-img-about {
        width: 100%;
        min-width: 320px;
        max-width: 480px;
        padding-right: 0.2rem;
        padding-left: 0.2rem;
        height: 200px;
    }
    .div-img-about {
        width: 100%;
        height: 100%;
    }
    .why-choice-us-about {
        width: 100%;
        min-width: 320px;
        max-width: 480px;
        height: auto;
        margin: 0;
    }
    .main-choice {
        width: 100%;
        padding-left: 0.2rem;
        padding-right: 0.2rem;
        height: 1250px;
        gap: 0.5rem;
        grid-template-columns: none;
        grid-template-rows: repeat(2, 1fr);
    }
    .img-div {
        grid-template-rows: 1fr;
        height: 250px;
    }
    .choice-img {
        height: auto;
        grid-template-columns: none;
        grid-template-rows: repeat(2, 1fr);
        gap: 0.5rem;
        margin-top: 0;
        margin-bottom: 0;
    }

    .choice-img-div {
        width: 100%;
        min-width: 350px;
        max-width: 400px;
        height: 250px;
    }
    .choice-logo-div {
        display: none;
    }
    .experience {
        width: 100%;
        gap: 0.5rem;
    }
    .main-choose-text {
        width: 100%;
        grid-template-rows: 30px, 50px, 1fr, 50px;
        gap: 0;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .h2-why {
        font-size: 14px;
    }
    .p-why-long {
        font-size: 14px;
    }
    .need-help {
        gap: 0;
    }
    .need-num {
        font-size: 12px;
    }
    .pays-destination {
        width: 100%;
        min-width: 320px;
        max-width: 480px;
        margin-top: 2rem;
    }
    .pays-cible-head {
        font-size: 16px;
        place-self: center;
    }
    .pays-destination-div {
        width: 100%;
        min-width: 320px;
        max-width: 480px;
        padding-left: 0.2rem;
        padding-right: 0.2rem;
        justify-content: center;
    }
    .flag-pays-cible {
        width: 100%;
        grid-template-columns: repeat(5, 1fr);
        gap: 0.2rem;
    }
    .pc-flag-div {
        grid-template-rows: 100px 50px;
        height: auto;
    }
    .pc-flag {
        width: 100%;
        height: 100px;
    }
    .titre-flag-pc {
        font-size: 12px;
        height: 30px;
    }
    .partenaires {
        width: 100%;
        min-width: 320px;
        max-width: 480px;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    .handshake {
        font-size: 14px;
        gap: 0.2rem;
        grid-template-columns: 30px 120px;
    }
    .fa-handshake {
        font-size: 14px;
    }
    .p-partenaire {
        font-size: 14px;
    }
    .sponsor {
        width: 100%;
        max-width: 1200px;
        gap: 0.2rem;
    }
    .h-img-page {
        font-size: 30px;
    }
    .page-actuel {
        font-size: 15px;
    }
}

.success-section {
    display: grid;
    justify-content: center;
}
.div-image-container-success {
    display: grid;
}
.div-img-success-res {
    height: 500px;
    border: 1px solid black;
    width: 1750px;
    border-radius: 30px;
    background: linear-gradient(rgba(16, 34, 63, 0.4), rgba(16, 34, 63, 0.4)),
        /* Couleur #10223F avec transparence */ url("/images/CE/tm.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
    display: grid;
    justify-content: start;
    align-items: center;
    text-align: center;
    font-family: var(--font-family-CE);
    color: white;
}
.h-img-success {
    font-size: 50px;
}
.card-success-main {
    display: grid;
    margin-top: 4rem;
    margin-bottom: 4rem;
    grid-template-rows: 1fr 100px;
    width: 1300px;
    gap: 2rem;
    place-self: center;
    justify-content: center;
}
.card-success {
    display: grid;
    grid-template-columns: repeat(3, 400px);
    /* grid-template-rows: repeat(3, 400px);*/
    gap: 2rem;
}
.card-temoin {
    font-family: var(--font-family-CE);
    border-radius: 20px;
    background-color: white;
    display: grid;
    grid-template-rows: 40px 1fr 70px;
    gap: 1rem;
    padding: 2rem;
    box-shadow: 0px 0px 8px var(--hint-CE);
}
.card-temoin:nth-child(odd) {
    background-color: white; /* Premier, troisième, cinquième, etc. */
}

.card-temoin:nth-child(even) {
    background-color: var(
        --hint-leger-CE
    ); /* Deuxième, quatrième, sixième, etc. */
}
.i-success {
    color: var(--primary);
}
.p-success-comment {
    font-size: 22px;
    place-self: center;
}
.img-temoin-user-success {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 60px 1fr;
    gap: 1rem;
}
.p-name-success {
    font-size: 20px;
    font-family: var(--font-family-CE);
    font-weight: 600;
}
.img-user-success {
    border-radius: 50px;
    width: 70px;
    height: 70px;
    align-self: center;
}
.paginate-sucess {
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 50px);
    width: 250px;
    justify-content: center;
    align-items: center;
    place-self: center;
    gap: 1rem;
}
.nmb-paginate {
    border: 1px solid var(--hint-CE);
    place-self: center;
    width: 50px;
    height: 50px;
    font-weight: bold;
    font-family: var(--font-family-CE);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    &:hover {
        border: 2px solid var(--primary);
    }
}
.pag-chevron {
    display: grid; /* Active Grid Layout */
    place-items: center; /* Centre verticalement et horizontalement */
    place-content: center;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--hint-CE);
    text-align: center; /* Facultatif, utile si le texte est impliqué */
    cursor: pointer;
    &:hover {
        border: 2px solid var(--primary);
    }
}
@media (max-width: 1441px) {
    .div-image-container-success {
        max-width: 1600px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .div-img-success-res {
        width: 100%;
    }
    .p-success-comment {
        font-size: 18px;
    }
}
@media (min-width: 1025px) and (max-width: 1440px) {
    .div-image-container-success {
        width: 100%;
        min-width: 1025px;
        max-width: 1440px;
        height: 450px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .div-img-success-res {
        width: 100% !important;
        height: 100%;
    }
    .card-success-main {
        width: 100%;
        min-width: 1025px;
        max-width: 1440px;
        padding-left: 2rem;
        padding-right: 2rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
        gap: 1rem;
    }
    .card-success {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }
    .p-success-comment {
        font-size: 15px;
    }
    .p-name-success {
        font-size: 14px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .div-image-container-success {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
        height: 400px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .div-img-success-res {
        width: 100% !important;
        height: 100%;
        border-radius: 20px;
    }
    .card-success-main {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
        padding-left: 2rem;
        padding-right: 2rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
        gap: 1rem;
    }
    .card-success {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }
    .card-temoin {
        padding: 0.5rem;
    }
    .p-success-comment {
        font-size: 14px;
    }
    .p-name-success {
        font-size: 14px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .div-image-container-success {
        width: 100%;
        min-width: 481px;
        max-width: 768px;
        height: 300px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .div-img-success-res {
        width: 100% !important;
        height: 100%;
        border-radius: 20px;
    }
    .card-success-main {
        width: 100%;
        min-width: 481px;
        max-width: 768px;
        padding-left: 2rem;
        padding-right: 2rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
        gap: 1rem;
    }
    .card-success {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    .card-temoin {
        padding: 0.5rem;
        gap: 0.2rem;
        height: 300px;
    }
    .p-success-comment {
        font-size: 12px;
    }
    .p-name-success {
        font-size: 12px;
    }
    .img-temoin-user-success {
        gap: 0;
    }
    .img-user-success {
        width: 40px;
        height: 40px;
    }
    .pag-chevron,
    .nmb-paginate {
        width: 40px;
        height: 30px;
        font-size: 12px;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    .div-image-container-success {
        width: 100%;
        min-width: 320px;
        max-width: 480px;
        height: 200px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .img-about-text {
        width: 100%;
    }
    .div-img-success-res {
        width: 100% !important;
        height: 100%;
        border-radius: 20px;
    }
    .h-img-success {
        font-size: 20px;
    }
    .card-success-main {
        width: 100%;
        min-width: 320px;
        max-width: 480px;
        padding-left: 2rem;
        padding-right: 2rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
        gap: 1rem;
    }
    .card-success {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .card-temoin {
        padding: 0.5rem;
        gap: 0;
        height: 300px;
    }
    .p-success-comment {
        font-size: 12px;
    }
    .p-name-success {
        font-size: 12px;
    }
    .img-temoin-user-success {
        gap: 0;
    }
    .img-user-success {
        width: 40px;
        height: 40px;
    }
    .pag-chevron,
    .nmb-paginate {
        width: 40px;
        height: 30px;
        font-size: 12px;
    }
}

.gallery-section {
    display: grid;
}
.div-image-container-gallery {
    display: grid;
}
.div-img-gallery {
    height: 500px;
    width: 1750px;
    border: 1px solid black;
    border-radius: 30px;
    background: linear-gradient(rgba(16, 34, 63, 0.4), rgba(16, 34, 63, 0.4)),
        /* Couleur #10223F avec transparence */ url("/images/CE/gallery.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
    display: grid;
    justify-content: start;
    align-items: center;
    text-align: center;
    font-family: var(--font-family-CE);
    color: white;
    -o-object-fit: contain;
       object-fit: contain;
    place-self: center;
}
.img-gallery {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: grid;
    width: 100%;
    place-self: center;
    grid-template-columns: repeat(3, 400px);
    gap: 1rem;
    justify-content: center;
    grid-template-rows: repeat(3, 500px);
}
.img-gallery-item {
    width: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    border-radius: 20px;
}

@media (max-width: 1441px) {
    .div-image-container-gallery {
        max-width: 1600px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .div-img-gallery {
        width: 100%;
    }
    .img-about-text {
        width: 100%;
    }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
    .div-image-container-gallery {
        width: 100%;
        min-width: 1025px;
        max-width: 1440px;
        padding-left: 1rem;
        padding-right: 1rem;
        height: 400px;
    }
    .div-img-gallery {
        width: 100%;
        border-radius: 30px;
        height: 100%;
    }
    .div-img-about {
        width: 100%;
    }
    .section-img-g {
        place-content: center;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .img-gallery {
        width: 100%;
        grid-template-columns: repeat(3, 300px);
        grid-template-rows: repeat(3, 400px);
        margin: 0;
        padding: 0;
    }
    .img-gallery-item {
        width: 100%;
    }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .div-image-container-gallery {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
        padding-left: 1rem;
        padding-right: 1rem;
        height: 400px;
    }
    .div-img-gallery {
        width: 100%;
        border-radius: 20px;
        height: 100%;
    }
    .div-img-about {
        width: 100%;
    }
    .section-img-g {
        min-width: 769px;
        max-width: 1024px;
        place-content: center;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .img-gallery {
        width: 100%;
        grid-template-columns: repeat(3, 210px);
        grid-template-rows: repeat(3, 300px);
        margin: 0;
        padding: 0;
    }
    .img-gallery-item {
        width: 100%;
    }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
    .div-image-container-gallery {
        width: 100%;
        min-width: 481px;
        max-width: 768px;
        padding-left: 1rem;
        padding-right: 1rem;
        height: 400px;
        height: 300px;
    }
    .div-img-gallery {
        width: 100%;
        border-radius: 20px;
        height: 100%;
    }
    .div-img-about {
        width: 100%;
    }
    .section-img-g {
        min-width: 481px;
        max-width: 768px;
        place-content: center;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .img-gallery {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 250px);
        margin: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .img-gallery-item {
        width: 100%;
        height: 250px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .div-image-container-gallery {
        width: 100%;
        min-width: 320px;
        max-width: 480px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        height: 400px;
        height: 200px;
    }
    .div-img-gallery {
        width: 100%;
        border-radius: 20px;
        height: 100%;
    }
    .div-img-about {
        width: 100%;
    }
    .section-img-g {
        min-width: 320px;
        max-width: 480px;
        place-content: center;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .img-gallery {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 180px);
        gap: 0.5rem;
        margin: 0;
        padding: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .img-gallery-item {
        width: 100%;
        height: 180px;
    }
}

.coaching-section {
    display: grid;
}
.div-img-container-coach {
    display: grid;
}
.div-img-coaching {
    height: 500px;
    border: 1px solid black;
    width: 1750px;
    border-radius: 30px;
    background: linear-gradient(rgba(16, 34, 63, 0.4), rgba(16, 34, 63, 0.4)),
        /* Couleur #10223F avec transparence */ url("/images/prixencharge.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
    display: grid;
    justify-content: start;
    align-items: center;
    text-align: center;
    font-family: var(--font-family-CE);
    color: white;
    place-self: center;
}
.diff-services {
    height: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: grid;
    justify-content: center;
}
.diff-service-container {
    display: grid;
    width: 1750px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: var(--font-family-CE);
    height: auto;
    grid-template-rows: 40px 1fr;
    gap: 1rem;
}

.service-h {
    font-size: 20px;
    color: var(--color-CE);
    display: grid;
    grid-template-columns: 30px 200px;
    justify-content: center;
    align-items: center;
}
.service {
    width: 1200px;
    height: 100%;
    display: grid;
    grid-template-rows: repeat(5, 150px);
    font-family: var(--font-family-CE);
    gap: 1rem;
}
.services-etape {
    height: 100%;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1rem;
    border-radius: 20px;
    background-color: var(--color-CE);
}
.services-etape-left {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 1rem;
    border: 1px solid var(--hint-CE);
    border-radius: 20px;
}

.etape {
    background-color: var(--hint-leger-CE);
    display: grid;
    grid-template-rows: 80px 50px;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.5rem;
    border-radius: 20px;
    height: 150px;
}
.etape01 {
    font-size: 60px;
    font-weight: bold;
    color: var(--color-CE);
}
.etape01-titre {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-CE);
}
.etape-text {
    font-size: 16px;
    display: grid;
    text-align: justify;
    padding: 0.5rem;
    color: var(--hint-CE);
}
.p-text-etape {
    display: grid;
    justify-content: center;
    align-items: center;
    color: white;
}
.p-etape-text {
    color: var(--color-CE);
    display: grid;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1441px) {
    .div-img-container-coach {
        max-width: 1600px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .div-img-coaching {
        width: 100%;
    }
    .diff-services {
        max-width: 1441px;
    }
    .diff-service-container {
        width: 100%;
    }
}
@media (min-width: 1025px) and (max-width: 1440px) {
    .div-img-container-coach {
        width: 100%;
        min-width: 1025px;
        max-width: 1440px;
        height: 400px;
    }
    .div-img-coaching {
        width: 100%;
        height: 100%;
        border-radius: 30px;
    }
    .img-about-text {
        margin: 0;
    }
    .diff-services {
        width: 100%;
        min-width: 1025px;
        max-width: 1440px;
    }
    .diff-service-container {
        width: 100%;
    }
    .service {
        width: 1000px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .div-img-container-coach {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
        height: 400px;
    }
    .div-img-coaching {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }
    .img-about-text {
        margin: 0;
    }
    .diff-services {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
    }
    .diff-service-container {
        width: 100%;
    }
    .service {
        width: 700px;
    }
    .etape01-titre {
        font-size: 18px;
    }
    .p-text-etape {
        font-size: 14px;
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .div-img-container-coach {
        width: 100%;
        min-width: 481px;
        max-width: 768px;
        height: 300px;
    }
    .div-img-coaching {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }
    .img-about-text {
        margin: 0;
    }
    .diff-services {
        width: 100%;
        min-width: 481px;
        max-width: 768px;
    }
    .diff-service-container {
        width: 100%;
    }
    .service {
        width: 400px;
        grid-template-rows: repeat(5, 1fr);
    }
    .services-etape {
        grid-template-columns: none;
        grid-template-rows: 100px 1fr;
    }
    .etape {
        grid-template-rows: none;
        grid-template-columns: 80px 1fr;
        height: 100px;
    }
    .etape-text {
        height: 130px;
        padding: 0.5rem;
    }
    .etape01-titre {
        font-size: 25px;
    }
    .p-text-etape {
        font-size: 14px;
        text-align: center;
        height: 110px;
    }
    .service-h {
        font-size: 16px;
    }
    .services-etape-left {
        height: 100%;
        display: flex;
        flex-direction: column-reverse; /* Pour avoir les éléments en colonne */
        gap: 1rem; /* Espacement entre les éléments */
        border: 1px solid var(--hint-CE);
        border-radius: 20px;
    }
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
    .div-img-container-coach {
        width: 100%;
        min-width: 320px;
        max-width: 480px;
        height: 200px;
        padding-left: 0.5rem;
    }
    .div-img-coaching {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }
    .img-about-text {
        margin: 0;
    }
    .diff-services {
        width: 100%;
        min-width: 320px;
        max-width: 480px;
    }
    .diff-service-container {
        width: 100%;
    }
    .service {
        width: 310px;
        grid-template-rows: repeat(5, 1fr);
    }
    .services-etape {
        grid-template-columns: none;
        grid-template-rows: 100px 1fr;
    }
    .etape {
        grid-template-rows: none;
        grid-template-columns: 50px 1fr;
        height: 100px;
    }
    .etape-text {
        height: 130px;
        padding: 0.5rem;
    }
    .etape01-titre {
        font-size: 20px;
    }
    .etape01 {
        font-size: 35px;
    }
    .p-text-etape {
        font-size: 12px;
        text-align: center;
        height: 110px;
    }
    .service-h {
        font-size: 14px;
    }
    .services-etape-left {
        height: 100%;
        display: flex;
        flex-direction: column-reverse; /* Pour avoir les éléments en colonne */
        gap: 1rem; /* Espacement entre les éléments */
        border: 1px solid var(--hint-CE);
        border-radius: 20px;
    }
    .p-etape-text {
        font-size: 12px;
    }
}

.section-cd {
    display: grid;
    justify-content: center;
}
.img-c-cd {
    height: 500px;
    width: 1750px;
    border-radius: 30px;
    background: linear-gradient(rgba(16, 34, 63, 0.4), rgba(16, 34, 63, 0.4)),
        /* Couleur #10223F avec transparence */ url("/images/CE/cd.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
    display: grid;
    justify-content: start;
    align-items: center;
    text-align: center;
    font-family: var(--font-family-CE);
    color: white;
    place-self: center;
}
.details-coaching-formation {
    place-self: center;
    margin-top: 4rem;
    margin-bottom: 6rem;
    height: 100vh;
    width: 1200px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
}

.about-formation-details {
    display: grid;
    grid-template-rows: 400px 100px 200px 1fr;
    font-family: var(--font-family-CE);
    gap: 1rem;
}
.img-coaching-details {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.h1-details-coaching {
    font-size: 30px;
    color: var(--color-CE);
    display: grid;
    align-items: center;
}
.p-des-details-coaching {
    font-size: 18px;
    color: var(--hint-CE);
    text-align: justify;
}
.points-details-coaching {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
}
.step-cd {
    padding: 1rem;
    display: grid;
    grid-template-rows: 30px 1fr;
    gap: 1rem;
    font-family: var(--font-family-CE);
}
.step-cd-head {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.fa-circle-chevron-down {
    color: var(--primary);
}
.step-cd-p {
    color: var(--hint-CE);
}
.others-formation {
    border-radius: 20px;
    display: grid;
    grid-template-rows: 180px 200px;
    gap: 2rem;
}
.others-formation-head {
    background-color: var(--hint-leger-CE);
    border-radius: 20px;
    padding: 2rem;
    display: grid;
    gap: 1rem;
    grid-template-rows: repeat(2, 1fr);
}
.formation-id {
    background-color: var(--background);
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr 30px;
    align-items: center;
    padding: 1rem;
    font-family: var(--font-family-CE);
    cursor: pointer;
}
.titre-formation-cd {
    font-size: 15px;
}
.fa-circle-chevron-right {
    color: var(--hint-CE);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    &:hover {
        color: var(--primary);
    }
}
.others-formation-num {
    background-color: var(--hint-leger-CE);
    border-radius: 20px;
    display: grid;
    grid-template-rows: 1fr 50px 50px;
    justify-content: center;
    padding: 2rem;
    font-family: var(--font-family-CE);
    gap: 1rem;
}
.fa-call-cd {
    place-self: center;
    width: 60px;
    height: 60px;
}
.msg-cd {
    font-size: 20px;
}

@media (max-width: 1441px) {
    .container-coaching-details {
        width: 1440px;
        padding-left: 1rem;
        padding-right: 1rem;
        display: grid;
    }
    .div-img-coaching {
        width: 100%;
    }
    .details-coaching-formation {
        height: auto;
        place-self: center;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    .about-formation-details {
        height: auto;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .container-coaching-details-cd {
        min-width: 1025px;
        max-width: 1440px;
        padding-left: 1rem;
        padding-right: 1rem;
        display: grid;
    }
    .img-c-cd {
        width: 100%;
        height: 400px;
    }
    .details-coaching-formation {
        width: auto;
        height: auto;
        gap: 1rem;
        padding: 1rem;
    }
    .img-about-text {
        place-self: center;
        margin-left: 10rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container-coaching-details-cd {
        min-width: 769px;
        max-width: 1024px;
        padding-right: 0.4rem;
        padding-left: 0.4rem;
        display: grid;
    }
    .img-c-cd {
        width: 100%;
        height: 400px;
    }
    .img-about-text {
        place-self: center;
        margin-left: 10rem;
    }
    .details-coaching-formation {
        width: 100%;
        height: auto;
        gap: 1rem;
        grid-template-columns: 300px 1fr;
        padding: 0.4rem;
    }
    .others-formation {
        padding: 0.4rem;
    }
    .about-formation-details {
        padding: 0.4rem;
        grid-template-rows: 400px 90px 300px 1fr;
        height: auto;
        gap: 1rem;
    }
    .points-details-coaching {
        height: auto;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .container-coaching-details-cd {
        width: 100%;
        min-width: 481px;
        max-width: 768px;
        display: grid;
        display: grid;
        place-self: center;
    }
    .img-c-cd {
        width: 100%;
        height: 200px;
        border-radius: 20px;
    }
    .details-coaching-formation {
        width: 100%;
        min-width: 481px;
        max-width: 768px;
        grid-template-columns: 1fr 1fr;
        padding: 0.4rem;
        gap: 0.4rem;
    }
    .others-formation {
        width: 180px;
        gap: 0;
        height: auto;
    }
    .others-formation-head {
        padding: 0.4rem;
        height: 100px;
    }
    .formation-id {
        padding: 0.4rem;
    }
    .others-formation-num {
        padding: 0.2rem;
        height: 150px;
        grid-template-rows: repeat(3, 1fr);
        justify-content: center;
    }
    .titre-formation-cd {
        font-size: 12px;
    }
    .fa-call-cd {
        width: 30px;
        height: 30px;
    }
    .msg-cd {
        font-size: 14px;
    }
    .num-tel {
        font-size: 12px;
    }
    .about-formation-details {
        width: 280px;
        grid-template-rows: 180px 50px 200px 1fr;
    }
    .img-coaching-details {
        width: 280px;
        height: 180px;
    }
    .h1-details-coaching {
        font-size: 14px;
    }
    .p-des-details-coaching {
        font-size: 12px;
        width: 280px;
    }
    .points-details-coaching {
        width: 280px;
        grid-template-columns: repeat(2, 1fr);
    }
    .step-cd {
        padding: 0;
        font-size: 12px;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    .container-coaching-details-cd {
        min-width: 320px;
        max-width: 480px;
        padding-right: 0.3rem;
        padding-left: 0.3rem;
        display: grid;
        place-self: center;
    }
    .img-c-cd {
        width: 100%;
        height: 200px;
        border-radius: 20px;
    }
    .img-about-text {
        place-self: center;
        margin-left: 10rem;
    }
    .details-coaching-formation {
        width: 320px;
        height: auto;
        gap: 2rem;
        grid-template-columns: none;
        grid-template-rows: 250px 1fr;
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }
    .others-formation {
        width: 100%;
        font-size: 12px;
        height: 250px;
        gap: 0.5rem;
        grid-template-rows: 100px 1fr;
    }
    .others-formation-head {
        height: 100px;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    .formation-id {
        height: 30px;
        justify-content: center;
        align-items: center;
        padding: 0;
        font-size: 12px;
    }
    .titre-formation-cd {
        place-self: center;
        font-weight: 500;
        font-size: 12px;
    }
    .others-formation-num {
        height: 140px !important;
        padding: 0.4rem;
        gap: 0.4rem;
        grid-template-rows: repeat(3, 1fr);
    }
    .fa-call-cd {
        height: 40px;
        width: 40px;
        font-size: 18px;
    }
    .msg-cd {
        font-size: 14px;
    }
    .about-formation-details {
        grid-template-rows: 200px 20px 180px 1fr;
        height: auto;
        gap: 0.5rem;
        font-size: 12px;
    }
    .img-coaching-details {
        height: 100%;
    }
    .h1-details-coaching {
        font-size: 14px;
    }
    .p-des-details-coaching {
        font-size: 12px;
    }
    .points-details-coaching {
        height: auto;
        padding: 0;
    }
    .step-cd {
        padding: 0;
    }
}

.section-vd {
    display: grid;
    justify-content: center;
}
.div-img-visa {
    height: 500px;
    border: 1px solid black;
    width: 1750px;
    border-radius: 30px;
    background: linear-gradient(rgba(16, 34, 63, 0.4), rgba(16, 34, 63, 0.4)),
        /* Couleur #10223F avec transparence */ url("/images/CE/vd.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
    display: grid;
    justify-content: start;
    align-items: center;
    text-align: center;
    font-family: var(--font-family-CE);
    color: white;
}
.main-visa-details {
    place-self: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: auto;
    width: 1200px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

.visa-details-text {
    display: grid;
    grid-template-rows: 300px 400px;
    gap: 2rem;
    height: auto;
}

.visa-details-text-first {
    display: grid;
    grid-template-rows: 50px 1fr;
    font-family: var(--font-family-CE);
    gap: 0.5rem;
    padding: 1rem;
    color: var(--color-CE);
    align-items: center;
    height: 300px;
}
.h-vd {
    font-size: 30px;
}
.h-vd-small {
    font-size: 22px;
}
.p-vd-first {
    color: var(--hint-CE);
    text-align: justify;
    line-height: 1.5rem;
    font-size: 18px;
}

.asked-question-details {
    display: grid;
    grid-template-rows: 50px repeat(2, 1fr);
    gap: 1rem;
    font-family: var(--font-family-CE);
    padding-left: 1rem;
    padding-right: 1rem;
    color: var(--color-CE);
    height: 250px;
}
.h-frequenly-ask {
    font-weight: 600;
}
.questions-content {
    background-color: var(--hint-leger-CE);
    border-radius: 10px;
    display: grid;
    align-items: center;
    padding: 1rem;
    grid-template-columns: 1fr 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    &:hover {
        box-shadow: 0px 0px 10px var(--hint-leger-CE);
    }
}
.plus-vd {
    background-color: var(--primary);
    color: white;
    width: 40px;
    height: 40px; /* Taille carrée pour un élément centré */
    place-content: center;
    text-align: center;
    border-radius: 50px;
}
.response-content {
    background-color: var(--hint-leger-CE);
    height: auto;
    border-radius: 20px;
    padding: 1rem;
}
.visa-details-others {
    height: 600px;
    display: grid;
    grid-template-rows: 1fr 200px;
    gap: 2rem;
}
.visa-others {
    background-color: var(--hint-leger-CE);
    border-radius: 20px;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 1rem;
    padding: 1rem;
}
.visa-id {
    display: grid;
    grid-template-columns: 1fr 30px;
    background-color: var(--background);
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 30px;
    font-family: var(--font-family-CE);
    cursor: pointer;
}

.questions-content {
    background-color: var(--hint-leger-CE);
    border-radius: 10px;
    display: grid;
    align-items: center;
    padding: 1rem;
    grid-template-columns: 1fr 40px;
    gap: 1rem;
    cursor: pointer; /* Indique que la section est cliquable */
    position: relative; /* Pour positionner les réponses correctement */
}

.questions-content p {
    margin: 0;
}

.plus-vd {
    background-color: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.response-content {
    grid-column: 1 / -1; /* Occupe toute la largeur de la grille */
    padding: 1rem;
    background-color: var(--hint-leger-CE);
    border-radius: 0 0 10px 10px;
    display: none; /* Caché par défaut */
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.active .response-content {
    display: block; /* Affiche la réponse lorsqu'elle est active */
}

.active .plus-vd {
    transform: rotate(45deg); /* Transformation visuelle du bouton */
}

@media (max-width: 1441px) {
    .div-img-visa {
        width: 1400px;
    }
    .main-visa-details {
        place-self: center;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .container-visa-details {
        padding-left: 1rem;
        padding-right: 1rem;
        min-width: 1025px;
        max-width: 1440px;
    }
    .div-img-visa {
        width: 100%;
        height: 400px;
        border-radius: 30px;
    }
    .main-visa-details {
        height: auto;
        margin-bottom: 1rem;
        margin-top: 2rem;
        width: 100%;
        padding-right: 1rem;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .container-visa-details {
        padding-left: 1rem;
        padding-right: 1rem;
        min-width: 769px;
        max-width: 1024px;
    }
    .div-img-visa {
        width: 100%;
        height: 400px;
        border-radius: 20px;
    }
    .main-visa-details {
        height: auto;
        margin-bottom: 2rem;
        margin-top: 2rem;
        width: auto;
        padding-right: 1rem;
        grid-template-columns: 1fr 300px;
        height: 770px;
    }
    .h-vd {
        font-size: 18px;
    }
    .h-frequenly-ask,
    .h-vd-small {
        font-size: 18px;
    }
    .visa-details-text {
        height: 700px;
        grid-template-rows: repeat(2, 1fr);
    }
    .visa-details-text-first {
        gap: 1rem;
        grid-template-rows: 50px 1fr;
        height: auto;
    }
    .asked-question-details {
        height: 220px;
        grid-template-rows: 30px repeat(2, 1fr);
        font-size: 16px;
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .container-visa-details {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        min-width: 481px;
        max-width: 768px;
    }
    .div-img-visa {
        width: auto;
        height: 250px;
        border-radius: 20px;
    }
    .h-res-vd {
        margin: 0;
    }
    .page-actuel-vd {
        margin: 0;
    }
    .main-visa-details {
        margin-bottom: 1rem;
        margin-top: 2rem;
        width: auto;
        grid-template-columns: 1fr 200px;
        gap: 0.5rem;
        height: 450px;
    }
    .h-vd {
        font-size: 14px;
    }
    .h-frequenly-ask,
    .h-vd-small {
        font-size: 14px;
    }
    .visa-details-text {
        padding: 0;
        max-height: 450px;
        grid-template-rows: 1fr;
    }
    .visa-details-text-first {
        grid-template-rows: 50px 1fr;
        padding: 0.4rem;
        min-height: 300px;
        max-height: 450px;
        gap: 0;
    }
    .visa-details-others {
        height: 300px;
        gap: 1rem;
    }
    .visa-others {
        height: 170px;
        gap: 0.4rem;
    }
    .visa-id {
        height: 40px;
        padding: 0.4rem;
    }
    .p-vd-first {
        font-size: 14px;
        text-align: start;
    }
    .asked-question-details {
        display: none;
        gap: 0.2rem;
        height: auto;
        grid-template-rows: 30px repeat(2, 1fr);
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }
    .questions-content {
        padding: 0.4rem;
        height: 50px;
    }
    .question-title {
        font-size: 12px;
    }
    .plus-vd {
        width: 20px;
        height: 20px;
    }
}
@media (min-width: 320px) and (max-width: 480px) {
    .container-visa-details {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }
    .div-img-visa {
        width: auto;
        height: 200px;
        border-radius: 20px;
    }
    .h-res-vd {
        margin: 0;
    }
    .page-actuel-vd {
        margin: 0;
    }
    .main-visa-details {
        margin-bottom: 0;
        margin-top: 0;
        width: auto;
        grid-template-columns: none;
        grid-template-rows: repeat(2, 1fr);
        gap: 0.5rem;
        height: 1000px;
    }
    .h-vd {
        font-size: 14px;
    }
    .h-frequenly-ask,
    .h-vd-small {
        font-size: 14px;
    }
    .visa-details-text {
        padding: 0;
        height: auto;
        gap: 1rem;
        grid-template-rows: 1fr ;
    }
    .visa-details-others {
        height: 300px;
        gap: 0.5rem;
        grid-template-rows: 1fr 120px;
        padding: 0.4rem;
    }
    .sous-line {
        height: auto;
    }
    .visa-others {
        height: 180px;
        gap: 0.2rem;
    }
    .visa-id {
        height: 40px;
        padding: 0.4rem;
    }
    .others-formation-num {
        margin-top: 0;
        height: 100%;
    }
    .p-vd-first {
        font-size: 14px;
    }
    .asked-question-details {
        display: none;
        gap: 0.2rem;
        height: 300px;
    }
    .questions-content {
        padding: 0.4rem;
        height: 50px;
    }
    .question-title {
        font-size: 12px;
    }
    .plus-vd {
        width: 20px;
        height: 20px;
    }
    .visa-details-text-first {
        gap: 0;
        height: auto;
        gap: 0;
        grid-template-rows: 50px 1fr;
        padding: 0.4rem;
    }
}

.contact-section {
    display: grid;
    justify-content: center;

}
.div-container-image-contact {
    display: grid;
}
.div-img-contact {
    height: 500px;
    border: 1px solid black;
    width: 1750px;
    border-radius: 30px;
    background: linear-gradient(rgba(16, 34, 63, 0.4), rgba(16, 34, 63, 0.4)),
        /* Couleur #10223F avec transparence */ url("/images/CE/handshake.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
    display: grid;
    justify-content: start;
    align-items: center;
    text-align: center;
    font-family: var(--font-family-CE);
    color: white;
}
.form-about-contact {
    height: 600px;
    border-radius: 30px;
    background-color: var(--color-CE);
    margin-top: 4rem;
    margin-bottom: 4rem;
    width: 1200px;
    place-self: center;
    display: grid;
    grid-template-columns: 500px 650px;
    gap: 1rem;
}

.form-side-about {
    display: grid;
    margin-left: 2rem;
    grid-template-rows: 30px 90px 1fr;
    font-family: var(--font-family-CE);
    color: white;
    justify-content: start;
}

.info-person-about {
    font-size: 12px;
    display: flex;
    align-items: center;
}
.h-about-form {
    font-size: 30px;
    display: flex;
    align-items: center;
}
.form-contact-about {
    padding: 1rem;
    background-color: var(--background);
    border-radius: 20px;
    margin-bottom: 1rem;
    display: grid;
    grid-template-rows: repeat(2, 90px) 1fr 50px;
    gap: 1rem;
}
.inp-about-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.inp-about-two-first {
    color: var(--color-CE);
    display: grid;
    grid-template-rows: 30px 1fr;
}
.email-about {
    all: unset;
    border-radius: 30px;
    background-color: var(--hint-leger-CE);
    border: 1px solid var(--hint-CE);
    padding-left: 1.5rem;
    transition: all 0.3s;
    &:hover {
        border: 2px solid var(--color-CE);
    }
}
.inp-about {
    color: var(--color-CE);
    display: grid;
    grid-template-rows: 30px 1fr;
}
.area-about {
    display: grid;
    grid-template-rows: 30px 1fr;
    color: var(--color-CE);
}
.area-about-ch {
    all: unset;
    border: 1px solid var(--hint-CE);
    background-color: var(--hint-leger-CE);
    border-radius: 30px;
    word-wrap: break-word; /* permet aux mots longs de se couper et de revenir à la ligne */
    overflow-wrap: break-word; /* pour le retour à la ligne au niveau des mots */
    white-space: pre-wrap; /* assure que le texte retourne à la ligne quand nécessaire */
    resize: none;
    padding: 1rem;
    transition: all 0.3s;

    &:hover {
        border: 2px solid var(--color-CE);
    }
}

.btn-about {
    background-color: var(--primary);
    display: grid;
    grid-template-columns: 70px 30px;
    border-radius: 30px;
    height: 50px;
    place-self: end;
    width: 120px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
    &:hover {
        background-color: var(--color-CE);
    }
}
.btn-send-about {
    all: unset;
}

@media (max-width: 1441px) {
    .div-container-image-contact {
        width: 100%;
        min-width: 1400px;
        max-width: 1600px;
    }
    .div-img-contact {
        width: 100%;
        place-self: center;
        height: 500px;
    }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
    .div-container-image-contact {
        width: 100%;
        min-width: 1025px;
        max-width: 1440px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .div-img-contact {
        width: 100%;
        border-radius: 30px;
        height: 400px;
    }
    .img-about-text {
        margin: 0;
    }
    .form-about-contact {
        width: 100%;
        width: 1020px;
        grid-template-columns: 350px 650px;
        margin-top: 2rem;
        margin-bottom: 2rem;
        gap: 0;
    }
    .logo-side-about {
        padding: 0;
    }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .div-container-image-contact {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .div-img-contact {
        width: 100%;
        border-radius: 30px;
        height: 400px;
    }
    .img-about-text {
        margin: 0;
    }
    .form-about-contact {
        width: 100%;
        width: 760px;
        grid-template-columns: 700px;
        margin-top: 2rem;
        margin-bottom: 2rem;
        gap: 0;
    }
    .logo-side-about {
        padding: 0;
        display: none;
    }
    .form-contact-about {
        width: 700px;
    }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
    .div-container-image-contact {
        width: 100%;
        min-width: 481px;
        max-width: 768px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .div-img-contact {
        width: 100%;
        border-radius: 30px;
        height: 300px;
    }
    .img-about-text {
        margin: 0;
    }
    .form-about-contact {
        width: 100%;
        width: 470px;
        grid-template-columns: 400px;
        margin-top: 2rem;
        margin-bottom: 2rem;
        gap: 0;
        padding: 0;
        border-radius: 20px;
        height: auto;
    }
    .logo-side-about {
        padding: 0;
        display: none;
    }
    .form-side-about {
        margin: 0;
        width: 470px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        height: auto;
    }
    .h-about-form {
        font-size: 16px;
    }
    .form-contact-about {
        width: 460px;
        grid-template-rows: 180px repeat(2, 80px) 100px 40px;
        height: 520px;
    }
    .inp-about-two {
        grid-template-columns: none;
        grid-template-rows: repeat(2, 1fr);
        height: auto;
    }
    .inp-about-two-first {
        height: 80px;
        font-size: 14px;
    }
    .inp-about,
    .area-about {
        font-size: 14px;
    }
    .email-about {
        border-radius: 20px;
    }
    .area-about-ch {
        height: 80px;
        border-radius: 20px;
    }
    .btn-about {
        height: 40px;
        font-size: 14px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .div-container-image-contact {
        width: 100%;
        min-width: 320px;
        max-width: 480px;
        padding-left: 0.2em;
        padding-right: 0.2em;
    }
    .div-img-contact {
        width: 100%;
        border-radius: 20px;
        height: 200px;
    }
    .img-about-text {
        margin: 0;
    }
    .form-about-contact {
        width: 100%;
        width: 320px;
        grid-template-columns: 300px;
        margin-top: 2rem;
        margin-bottom: 2rem;
        gap: 0;
        padding: 0;
        border-radius: 20px;
        height: auto;
    }
    .logo-side-about {
        padding: 0;
        display: none;
    }
    .form-side-about {
        margin: 0;
        width: 320px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        height: auto;
    }
    .h-about-form {
        font-size: 16px;
    }
    .form-contact-about {
        width: 305px;
        grid-template-rows: 180px repeat(2, 80px) 100px 40px;
        border-radius: 10px;
        height: 520px;
    }
    .inp-about-two {
        grid-template-columns: none;
        grid-template-rows: repeat(2, 1fr);
        height: auto;
    }
    .inp-about-two-first {
        height: 80px;
        font-size: 14px;
    }
    .inp-about,
    .area-about {
        font-size: 14px;
    }
    .email-about {
        border-radius: 20px;
    }
    .area-about-ch {
        height: 80px;
        border-radius: 20px;
    }
    .btn-about {
        height: 40px;
        font-size: 14px;
    }
}

.faq-section {
    display: grid;
}
.div-image-container-faq {
    display: grid;
}
.div-img-faq {
    width: 1750px;
    height: 500px;
    border: 1px solid black;
    border-radius: 30px;
    background: linear-gradient(rgba(16, 34, 63, 0.4), rgba(16, 34, 63, 0.4)),
        /* Couleur #10223F avec transparence */ url("/images/CE/faq.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
    display: grid;
    justify-content: start;
    align-items: center;
    text-align: center;
    font-family: var(--font-family-CE);
    color: white;
    margin-top: 0;
    place-self: center;
    -o-object-fit: cover;
       object-fit: cover;
}

.accordion {
    width: 1200px;
    margin: 0 auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 2rem;
    font-family: var(--font-family-CE);
    color: var(--color-CE);
}

/* Style des boutons de l'accordéon */
.accordion-item {
    border: 1px solid white;
    margin-bottom: 5px;
}

.accordion-item-header {
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    background-color: var(--hint-leger-CE);
    text-align: left;
    transition: background-color 0.3s ease;
    border-radius: 10px;
}

/* Contenu de l'accordéon */
.accordion-item-content {
    padding: 15px;
    display: none;
    /* Par défaut, caché */
    background-color: var(--background);
}

/* Si l'accordéon est ouvert, on affiche le contenu */
input:checked + .accordion-item-header + .accordion-item-content {
    display: block;
}

/* Style des cases à cocher cachées */
input[type="checkbox"] {
    display: none;
}

@media (max-width: 1441px) {
    .div-image-container-faq {
        max-width: 1600px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .div-img-faq {
        width: 100%;
    }
}
@media (min-width: 1025px) and (max-width: 1440px) {
    .div-image-container-faq {
        width: 100%;
        min-width: 1025px;
        max-width: 1440px;
        height: 450px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .div-img-faq {
        width: 100% !important;
        height: 100%;
    }
    .accordion {
        width: 100%;
        min-width: 1025px;
        max-width: 1440px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .div-image-container-faq {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
        height: 400px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .div-img-faq {
        width: 100% !important;
        height: 100%;
        border-radius: 20px;
    }
    .accordion {
        width: 100%;
        min-width: 769px;
        max-width: 1024px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .img-about-text {
        margin-left: 0;
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .div-image-container-faq {
        width: 100%;
        min-width: 481px;
        max-width: 768px;
        height: 300px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .div-img-faq {
        width: 100% !important;
        height: 100%;
        border-radius: 20px;
    }
    .accordion {
        width: 100%;
        min-width: 481px;
        max-width: 768px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .accordion-item-header,
    .accordion-item-content {
        font-size: 12px;
    }
    .img-about-text {
        margin-left: 0;
    }
    .page-actuel {
        margin-left: 0;
    }
}
@media (min-width: 320px) and (max-width: 480px) {
    .div-image-container-faq {
        width: 100%;
        min-width: 320px;
        max-width: 480px;
        height: 200px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .div-img-faq {
        width: 100% !important;
        height: 100%;
        border-radius: 20px;
    }
    .accordion {
        width: 100%;
        min-width: 320px;
        max-width: 480px;
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 0.5rem;
        margin-top: 0;
        margin-bottom: 0;
    }

    .accordion-left {
        gap: 0.2rem;
    }
    .accordion-item-header,
    .accordion-item-content {
        font-size: 12px;
        padding: 0.5rem;
    }
    .img-about-text {
        margin-left: 0;
    }
    .page-actuel {
        margin-left: 0;
    }
}


