:root {
    /* Variables pour les tailles de texte */
    --texte1: 1rem;
    /* Taille pour le texte standard */
    --texte2: 1.2rem;
    /* Taille pour un texte légèrement plus grand */

    /* Variables pour les sous-textes */
    --sous-texte: 0.85rem;
    /* Taille pour le sous-texte, plus petit */

    /* Variables pour les titres */
    --titre1: 2.5rem;
    /* Taille pour le titre principal (h1) */
    --titre2: 2rem;
    /* Taille pour les sous-titres (h2) */
    --titre3: 1.5rem;
    /* Taille pour les titres de section (h3) */

    /* Variables pour les styles de police */
    --font-style1: 'Montserrat', sans-serif;
    /* Style de police principal pour les titres */
    --font-style2: 'Roboto', sans-serif;
    /* Style de police pour les paragraphes */
    --font-style3: 'Arial', sans-serif;
    /* Police alternative pour des usages spécifiques */

    /* Variables pour les couleurs */
    --couleur1: #F95203;
    /* Couleur principale (orange) */
    --couleur2: #0076FF;
    /* Couleur secondaire (bleu) */
    --couleur3: #072335;
    /* Couleur pour le texte principal (gris foncé) */
    --couleur4: #666666;
    /* Couleur pour le sous-texte (gris moyen) */
    --coulBlanche: #FFFFFF;
    /* Couleur blanche */
    --couleur6: #EEEEEE;
    --couleurExp: #E3E3E3;
    /* Couleur pour les arrière-plans clairs (gris très clair) */
    --global-animation-easing-function: cubic-bezier(0.455, 0.030, 0.515, 0.955);
    --global-staggered-translate-y-duration: 0.7;
    --global-staggered-opacity-duration: 0.9;
    --global-staggered-delay: 0.15;
}


* {
    padding: 0px;
    margin: 0px;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    scroll-padding-top: 3rem;
}



/* Appliquer Montserrat pour les titres et Roboto pour le texte */
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--couleurExp);
}



/* Style du loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    /* Fond blanc */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
    transition: opacity 1s linear, visibility 1s linear;
}

/* Style des cercles */
.circle {
    width: 50px;
    height: 50px;
    border: 3px solid var(--couleur1);
    /* Bordure orange pour correspondre à l'image */
    border-radius: 50%;
    position: absolute;
    animation: ripple 2.3s linear 1;
    opacity: 0;
    transform: scale(0);
}

.circle:nth-child(1) {
    animation-delay: 0s;
}

.circle:nth-child(2) {
    animation-delay: 0.7s;
}

.circle:nth-child(3) {
    animation-delay: 1.4s;
}

.circle:nth-child(4) {
    animation-delay: 2.1s;
}

/* Animation de l'effet de cercles qui se dilatent */
@keyframes ripple {
    0% {
        opacity: 1;
        transform: scale(0);
    }

    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(2);
    }

    75% {
        transform: scale(3);
    }

    100% {
        opacity: 0;
        transform: scale(4);
    }
}

/* Effet pour masquer le loader après l'animation */
body.loaded #loader {
    opacity: 0;
    visibility: hidden;
    transition: 1s linear;
}





/* Style général du header */
.header {
    background-color: transparent;
    width: 100%;
    height: 50vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

}

/* Style initial pour le header */
.header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    width: 100%;
    height: 40vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.5s linear;
}

/* Style initial pour la navbar */
.navbar {
    background-color: transparent;
    height: 3.75rem;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.5s linear, border-bottom 0.5s linear;
}

.navbar .navbar-brand {
    margin-left: 1.25rem;
}


.navbar.scrolled .navbar-brand img {
    opacity: 1;
    transform: scale(1.1);
}


.navbar .navbar-nav {
    gap: 1.25rem;
}

.navbar .navbar-nav .nav-link {
    color: var(--coulBlanche);
    font-weight: 500;
    font-size: 1rem;
    transition: 0.6s linear;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--couleur1);
}

.globe-icon {
    background: none;
    color: var(--coulBlanche);
    transition: color 0.4s ease;
    text-decoration: none;
    margin-left: 2rem;
}

.globe-icon:hover {
    color: var(--couleur1);
}


/* Style de la navbar et du header après scroll */
.header.scrolled {
    background: none;
    height: 4rem;
    transition: 0.5s linear;
}

.navbar.scrolled {
    background-color: var(--coulBlanche);
    /* border-bottom: 1px solid #ddd; */
}

.navbar-brand img {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.navbar.scrolled .navbar-nav .nav-link,
.navbar.scrolled .globe-icon {
    color: rgba(7, 35, 53, 1);
    transition: 0.6s linear;
}

.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .globe-icon:hover {
    color: var(--couleur1);
}

/* Supprimer la flèche par défaut de Bootstrap pour les dropdowns */
.navbar .dropdown-toggle::after {
    display: none;
}

.navbar .dropdown-toggle i.bx {
    font-size: 1rem;
    margin-left: 5px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.navbar .dropdown-toggle[aria-expanded="true"] i.bx {
    transform: rotate(180deg);
}

.navbar .dropdown-menu {
    background-color: var(--coulBlanche);
    border: 1px solid #ddd;
    margin-top: 0;
}

.navbar .dropdown-menu .dropdown-item {
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 50px;
    transition: 0.6s linear;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background-color: var(--couleur1);
    color: var(--coulBlanche);
}

/* hero-section */
.hero-section {
    background-color: var(--couleurExp);
    position: relative;
    height: 180vh;
    left: 0px;
    top: 0px;
    width: 100%;
}

.image-heros {
    background-color: transparent;
    position: absolute;
    top: -4rem;
    object-fit: cover;
    height: 75%;
    width: 100%;
    z-index: 51;
}

.hero-section .image-heros-ombre{
    background-color: transparent;
    position: absolute;
    top: -4rem;
    object-fit: cover;
    height: 75%;
    width: 100%;
    z-index: 52;
}

.oval-vide-blanc-bor-orange-left {
    background-color: transparent;
    position: absolute;
    height: 413px;
    left: 0px;
    bottom: 13rem;
    width: 309px;
    z-index: 53;
}

.oval-vide-blanc-bor-orange-dr {
    background-color: transparent;
    position: absolute;
    height: 407px;
    right: 0px;
    top: 390px;
    width: 232px;
    z-index: 53;
}

.hero-text-container {
    background-color: transparent;
    position: absolute;
    color: white;
    font-style: normal;
    font-weight: 400;
    height: auto;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 0px;
    line-height: normal;
    text-align: center;
    top: 406px;
    width: 30rem;
    z-index: 53;
}

.hero-text {
    font-size: 3.4rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}


/* Vector image*/
.image-vector {
    position: absolute;
    width: 80%;
    object-fit: contain;
    height: 700vh;
    top: 145rem;
    right: 3rem;
    z-index: 1;
}





/* Style général de la section2 */
.section2 {
    background-color: var(--couleurExp);
    position: relative;
    height: 20.75rem;
    width: 100%;
}

.section2 .sec2-vague {
    /* background-color: transparent; */
    position: absolute;
    top: -77rem;
    width: 100%;
    height: 350vh;

}

.section2-container {
    position: absolute;
    width: 87%;
    height: 87%;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    top: -5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.partie1 {
    position: relative;
    height: 12.5rem;
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partie1-text-container {
    background-color: transparent;
    width: 80%;
    height: 7.63rem;
}

.partie1-text {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    color: var(--couleur1);
    line-height: 3.05rem;
    font-weight: 700;
}

.partie1-img {
    position: relative;
    bottom: 1rem;
    width: 10rem;
    height: 10rem;
}

.partie2 {
    position: relative;
    height: 8.13rem;
    width: 95%;
    margin: 0 auto;
}

.partie2-text {
    font-family: var(--font-style2);
    font-size: 1rem;
    color: #072335;
    text-align: justify;
}

.partie3 {
    position: relative;
    right: 0;
    bottom: 0;
    height: 50%;
    width: 100%;
}

.partie3-avion {
    position: absolute;
    right: 2rem;
    top: 0;
    width: 3.63rem;
    height: 3.63rem;
}

.partie3-traie {
    position: absolute;
    right: -1rem;
    bottom: -11.5rem;
    width: 3.6rem;
    height: 11.13rem;
}



/* Style général de la section3 */
.section3 {
    position: relative;
    width: 100%;
    height: 50.13rem;
}

.section3-img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}

.container {
    position: relative;
    top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 1.25rem;
    z-index: 2;
}

/* Style des boîtes */
.box {
    perspective: 1000px;
    /* Nécessaire pour l'effet 3D */
    flex: 1 1 20rem;
    max-width: 18rem;
    height: 17rem;
    min-width: 16rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Style de la carte */
.card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    /* Nécessaire pour la 3D */
    transition: transform 0.6s ease-in-out;
    /* Animation fluide */
    border: transparent;
}

.card:hover {
    transform: rotateY(180deg);
    /* Rotation au survol */
}

/* Faces de la carte */
.card .front,
.card .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    /* Cache la face arrière */
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
}

.card .front {
    background: var(--coulBlanche);
    color: var(--couleur3);
}

.card .back {
    background: var(--couleur3);
    transform: rotateY(180deg);
    /* Position initiale de la face arrière */
    color: white;
}

.card .back p,
.card .back h1 {
    color: var(--coulBlanche);
}

.card h1 {
    font-weight: 700;
    font-family: "Nokora";
    font-size: 5rem;
    color: var(--couleur3);
}

.card p {
    font-weight: 500;
    font-family: var(--font-style2);
    font-size: 1.5rem;
    color: var(--couleur3);
}

/* Style responsive */
@media (max-width: 768px) {
    .box {
        flex: 1 1 calc(50% - 40px);
        max-width: calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .box {
        flex: 1 1 100%;
        max-width: 100%;
    }
}




/* Style général de section4 */
.section4 {
    background-color: var(--couleurExp);
    position: relative;
    min-height: 150vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section4 .section4-container {
    background-color: transparent;
    position: relative;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.section4 .sec4-element {
    position: relative;
    width: 100%;
    height: 51rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 5rem;
}

.section4 .sec4-partie3 {
    position: relative;
    width: 100%;
    height: 50rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;

}

.section4 .sec4-sousDiv1 {
    position: relative;
    width: 60%;
    height: 11rem;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.section4 .sec4-sousDiv1-text-container {
    position: relative;
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
}

.section4 .sec4-sousDiv1-nbre {
    position: relative;
    bottom: 2rem;
    font-family: "Nokora";
    font-size: 11.5rem;
    font-weight: bold;
    color: var(--coulBlanche);
    letter-spacing: 1rem;
}

.section4 .sec4-sousDiv1-text-container p {
    font-weight: 700;
    font-family: var(--font-style2);
    font-size: 1.8rem;
    color: var(--couleur3);
}


.section4 .sec4-img1 {
    position: relative;
    bottom: 2rem;
    width: 10.5rem;
    height: 10.5rem;
}

.section4 .sec4-sousDiv2 {
    position: relative;
    width: 95%;
    height: 40rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section4 .sec4-sousDiv2-left {
    position: relative;
    height: 90%;
    width: 33.75rem;
}

.section4 .sec4-left1 {
    position: absolute;
    left: 2rem;
    width: 76%;
    height: 79%;
    border: 1px solid transparent;
    border-radius: 3%;
    background: linear-gradient(to right, var(--couleur1), #1D52D0);
    z-index: 1;
}

.section4 .sec4-img2 {
    position: absolute;
    top: 1.5rem;
    left: 3.5rem;
    width: 80%;
    height: 90%;
    z-index: 2;
}

.section4 .sec4-sousDiv2-right {
    position: relative;
    width: 50%;
    height: 45%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.section4 ul {
    position: relative;
    background-color: var(--coulBlanche);
    width: 100%;
    height: 12rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border-radius: 10px;
    /* Coins arrondis */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Effet d'ombre léger */
}

.section4 .sol-button{
    background-color: transparent;
    position: absolute;
    right: 3rem;
    top: 12rem;
    width: 5.94rem;
    height: 1.63rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section4 .sol-button a{
    color: var(--couleur1);
    font-size: 1rem;
    font-family: var(--font-style2);
    font-weight: 500;
    text-decoration: none;
}


.section4 .sol-button i{
    font-size: 1.4rem;
    color: var(--couleur1);
    padding: .3rem;
}


.section4 .sec4-ul1 {
    height: 10rem;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}



.section4 li {
    padding: 0 2rem 0 3rem;
    font-weight: 500;
    font-family: var(--font-style2);
    font-size: 1rem;
    color: var(--couleur3);
}

.sec4-ul1 li, .sec4-ul1 span{
    text-align: justify;
}

/* Ajout des puces personnalisées */
.section4 li::before {
    content: "•";
    /* Symbole puce */
    color: var(--couleur3);
    /* Couleur de la puce */
    font-size: 1.5rem;
    /* Taille de la puce */
    position: absolute;
    left: 2rem;
    /* Décale la puce vers la gauche */
    top: 39%;
    /* Centre verticalement */
    transform: translateY(-50%);
    /* Ajustement pour centrer */
}

.sec4-list.sec4-ul1 li::before{
    top: 29%;
}

/* Ajout des puces personnalisées */
.section4 .sec4-li1::before {
    content: "•";
    /* Symbole puce */
    color: var(--couleur3);
    /* Couleur de la puce */
    font-size: 1.5rem;
    /* Taille de la puce */
    position: absolute;
    left: 2rem;
    /* Décale la puce vers la gauche */
    top: 55%;
    /* Centre verticalement */
    transform: translateY(-50%);
    /* Ajustement pour centrer */
}

.sec4-partie5 .sec4-ul1 li::before{
    top: 42%;
}

.sec4-partie5 li::before{
    top: 26%;
}


.sec4-partie4 .sec4-ul1 li::before{
    top: 20%;
}

.sec4-partie4 .sec4-ul1 span::before{
    top: 60%;
}



.sec4-partie3 li::before{
    top: 25%;
    left: 10%;
}



.sec4-partie2 .sec4-sousDiv2 {
    left: 2rem;
    width: 100%;
}

.sec4-partie2 .sec4-sousDiv2-right {
    width: 45%;
    bottom: 2rem;
}

.sec4-partie2 .sec4-sousDiv1-text {
    position: relative;
    bottom: 1rem;
}


.sec4-partie3 .sec4-sousDiv1 {
    height: 12rem;
}


.sec4-partie3 .sec4-sousDiv2 {
    flex-direction: column;
    height: 35rem;
}

.section4 .sec4-partie3 .sec4-sousDiv2 .sec4-sousDiv2-left {
    width: 100%;
}


.section4 .sec4-partie3 .sec4-sousDiv2 .sec4-sousDiv2-right {
    flex-direction: row;
    width: 100%;
}

.section4 .sec4-partie3 .sec4-sousDiv2 .sec4-sousDiv2-right .sec4-list {
    right: 1rem;
    flex-direction: row;
    width: 55%;
    height: 75%;
    padding: 1.5rem 2rem;
}

.section4 .sec4-partie3 .sec4-sousDiv2 .sec4-sousDiv2-right .sec4-list li {
    padding: 1.5rem 3.5rem;
    text-align: justify;
}


.sec4-partie3 .sec4-sousDiv2 .sec4-left1 {
    left: 15rem;
    height: 80%;
    width: 38.1rem;
    background: linear-gradient(to right, #1D52D0, var(--couleur1));
}


.sec4-partie3 .sec4-sousDiv2 .sec4-img2 {
    left: 11rem;
    width: 60%;
    height: 85%;
}

.sec4-partie3 .sec4-sousDiv2 ul {
    width: 22rem;
    height: 50%;
}

.sec4-partie4 .sec4-sousDiv2 ul {
    width: 38rem;
    height: 80%;
}



/* grande-paper-plane */
.grande-paper-plane {
    position: absolute;
    width: 7rem;
    height: 7rem;
    top: 404.5rem;
    right: 36.5rem;
    z-index: 1;
}





/* Style général de la section 9 */

.sec9 {
    background-color: var(--couleurExp);
    position: relative;
    height: 180vh;
}

.sec9 .home {
    background-color: transparent;
    position: absolute;
    height: 92%;
    width: 100%;
    z-index: 1;
}

.sec9 .home-ombre {
    background-color: transparent;
    position: absolute;
    height: 92%;
    width: 100%;
    z-index: 2;
}

.sec9 .partic-2 {
    background-color: transparent;
    height: 64%;
    left: 0rem;
    position: absolute;
    top: 10.5rem;
    width: 100%;
    z-index: 3;
}


.sec9-containt {
    background-color: transparent;
    position: absolute;
    top: 30%;
    left: 5%;
    width: 68%;
    height: 35%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.sec9-containt .div1-h1 {
    color: var(--coulBlanche);
    font-family: 'Montserrat', sans-serif;
    font-size: 2.7rem;
    font-weight: 700;
    letter-spacing: 0.25px;
    line-height: 3.5rem;
    /* text-align: justify; */
}

.sec9-containt .div1-p {
    color: var(--coulBlanche);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.25px;
    line-height: 2.5rem;
}


.sec9-containt .button-2 {
    width: 7.81rem;
    height: 1.7rem;
    background-color: var(--couleur1);
    color: var(--coulBlanche);
    font-size: 1rem;
    font-weight: bold;
    border: solid 1px var(--couleur1);
    border-radius: 0.7rem;
    cursor: pointer;
    transition: 0.4s;
}


.sec9-containt .button-2:hover {
    background-color: transparent;
    color: var(--couleur1);
}









/* Scroll Btn */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: #ff4500;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: #ff5722;
    transform: translateY(-3px);
}

.scroll-top-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
    }

    .scroll-top-btn svg {
        width: 16px;
        height: 16px;
    }
}





/* Style général du footer */
.footer-section {
    width: 90%;
    display: flex;
    justify-content: space-between;
    padding: 40px 0px;
    margin: 0px auto;
    background-color: var(--couleurExp);
    color: #072335;
}

/* Partie gauche */
.footer-left {
    width: 50%;
}

.footer-title {
    font-family: "Montserrat", sans-serif;
    margin-bottom: 2.5rem;
    width: 80%;
}

.footer-highlight-1 {
    background-color: transparent;
    font-family: "Montserrat", sans-serif;
    color: var(--couleur1);
    font-size: 1.9rem;
    font-weight: 600;
    /* Diminution de l'épaisseur du texte */
    letter-spacing: 0px;
    line-height: normal;
}

.footer-highlight-2 {
    background-color: transparent;
    font-family: "Montserrat", sans-serif;
    color: #072335;
    font-size: 1.5rem;
    font-weight: 600;
    /* Diminution de l'épaisseur du texte */
    letter-spacing: 0px;
    line-height: normal;
    text-align: left;
}

.nav-adr-social {
    height: 335px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.footer-nav li {
    margin-bottom: 15px;
    position: relative;
}

.footer-nav a {
    color: #333;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    /* Diminution de l'épaisseur du lien */
    font-size: 1rem;
    transition: 0.4s;
    text-decoration: none;
    /* Retire le soulignement des liens */
}

.footer-nav a:hover {
    color: var(--couleur1);
    text-decoration: none;
    /* Assure que le lien ne soit pas souligné au survol */
}
  
  .footer-nav li::after {
    content: "";
    display: block;
    width: 14.5rem;
    height: 0.5px;
    background-color: #072335;
    margin-top: 5px;
  }

.footer-address {
    margin-top: 20px;
}

.footer-address p {
    font-family: "Roboto", sans-serif;
    margin-bottom: 5px;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-social img {
    width: 45px;
    height: 45px;
    transition: all 0.4s;
}

.footer-social img:hover {
    transform: translateY(-5px);
}

.footer-copyright {
    font-family: "Roboto", sans-serif;
    font-size: 0.875rem;
    margin-top: 40px;
    color: #666;
}

/* Partie droite du footer */
.footer-right {
    height: 24rem;
    width: 34rem;
    position: relative;
    display: flex;
    flex-direction: row;
    margin-top: 6.24rem;
}

/* Les images */
.overlay-images {
    position: relative;
    height: 100%;
    width: 100%;
}

.overlay-image {
    background-color: var(--couleurExp);
    position: absolute;
    top: 0;
    width: 5.5rem;
    height: 24.44rem;
}

.image1 {
    left: -1rem;
    z-index: 6;
}

.image2 {
    left: 2.3rem;
    z-index: 7;
}

.image3 {
    left: 5.1rem;
    z-index: 8;
}

.image4 {
    left: 9.25rem;
    z-index: 9;
}

.image5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.image6 {
    right: 9.25rem;
    z-index: 9;
}

.image7 {
    right: 6rem;
    z-index: 8;
}

.image8 {
    right: 2.8rem;
    z-index: 7;
}

.image9 {
    right: 0;
    z-index: 6;
}

/* Les bandes */
.bande {
    background-color: var(--couleurExp);
    position: absolute;
    height: 100%;
    z-index: 50;
}

.bande0 {
    width: 1.3rem;
    left: -1.6rem;
}

.bande1 {
    width: 0.8rem;
    left: 1.5rem;
}

.bande2 {
    width: 0.8rem;
    left: 4.4rem;
}

.bande3 {
    width: 1.3rem;
    left: 8rem;
}

.bande4 {
    width: 1.3rem;
    left: 13.03rem;
}

.bande5 {
    width: 1.3rem;
    right: 13.03rem;
}

.bande6 {
    width: 1.3rem;
    right: 8rem;
}

.bande7 {
    width: 1.3rem;
    right: 4.8rem;
}

.bande8 {
    width: 0.8rem;
    right: 2rem;
}

/* Les rectangles */
.rectangle {
    background-color: var(--couleurExp);
    position: absolute;
    z-index: 50;
}

.rectangle-1-1 {
    height: 8rem;
    width: 2rem;
    top: 1.6rem;
    left: -0.4rem;
}

.rectangle-1-2 {
    height: 4.9rem;
    width: 2rem;
    bottom: 5.85rem;
    left: -0.4rem;
}

.rectangle-2-1 {
    height: 4.75rem;
    width: 2.15rem;
    top: 1.6rem;
    left: 2.35rem;
}

.rectangle-2-2 {
    height: 3.85rem;
    width: 2.15rem;
    bottom: 1.6rem;
    left: 2.3rem;
}

.rectangle-3 {
    height: 3.2rem;
    width: 3.1rem;
    top: 10rem;
    left: 5.1rem;
}

.rectangle-4-1 {
    height: 4.85rem;
    width: 4.1rem;
    top: 1.6rem;
    left: 9.1rem;
}

.rectangle-4-2 {
    height: 4.1rem;
    width: 4.1rem;
    bottom: 1.6rem;
    left: 9.1rem;
}

.rectangle-6 {
    height: 4.6rem;
    width: 4.9rem;
    bottom: 5.9rem;
    right: 8.1rem;
}

.rectangle-7 {
    height: 3.2rem;
    width: 2rem;
    top: 6.3rem;
    right: 6.1rem;
}

.rectangle-9-1 {
    height: 3.2rem;
    width: 2rem;
    top: 6.3rem;
    right: 0.1rem;
}

.rectangle-9-2 {
    height: 8.4rem;
    width: 2rem;
    bottom: 2.2rem;
    right: 0.1rem;
}