/* Background de la page internet */
@import url(https://db.onlinewebfonts.com/c/9b9cad44314f47ea67ac9d2652bdd80a?family=Adam+Light);

body {
    margin: 0 auto;
    background-color:#292929;
    cursor: url('/images/TEST.png'), auto;
    overflow-x: hidden; /* Empêche le défilement horizontal */
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Police d'écriture et curseur */
@font-face {
    font-family: 'Adam-Light';
    src:url('Adam-Light.ttf.woff') format('woff'),
        url('Adam-Light.ttf.svg#Adam-Light') format('svg'),
        url('Adam-Light.ttf.eot'),
        url('Adam-Light.ttf.eot?#iefix') format('embedded-opentype'); 
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: "Adam Light";
    cursor: url('/images/TEST.png'), auto;
    font-weight: lighter;
}

::-webkit-scrollbar{
    display: none;
}





.A-load {
    background-color: #292929;
    position: fixed; /* Utiliser "fixed" pour que le conteneur occupe tout l'écran */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh; /* Utiliser "100vh" pour définir la hauteur en fonction de la taille de l'écran */
    z-index: 2000000000; /* Assurez-vous que le z-index est supérieur à celui des autres éléments */
    animation: fadeInOut 2s ease-in-out forwards;
}

.A-load img {
    display: block;
    margin: auto; /* Centre l'image horizontalement et verticalement */
    margin-top: 15vw;
    max-width: 100%; /* Assurez-vous que l'image ne dépasse pas la largeur du conteneur */
    max-height: 100%; /* Assurez-vous que l'image ne dépasse pas la hauteur du conteneur */
    animation: fadeIn 1.5s ease-in forwards;
    opacity: 0;
    
}





@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        display: none;
    }
}






/* Bannière du haut (menu) */

.header {
    z-index: 200;
    display: flex;
    background-color: rgba(94, 94, 94, 0.308); /* Fond d'en-tête semi-transparent */
    position: fixed;
    right: 0;
    left: 0;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
    
}


.header.hidden {
    opacity: 0;
    pointer-events: none;
}


header.header img{
    width: 20%;
    padding-left: 0.5%;
    padding-top: 0.5%;
    padding-bottom: 0.3%;
    transition: all 0.3s ease;
}

.navbar {
    display : flex;
    margin-left : 10%;
    width: 100%;
    justify-content: space-around;
    align-items: end;
}

.ri-shopping-cart-line {
    color: white;
    display: flex;
    align-items: end;
    font-size: 1.8vw;
    padding-bottom: 0.4vw;
    margin-right: 2.3vw;
    transition: all 0.3s ease;
}

.ri-shopping-cart-line,
.ri-shopping-cart-line:hover {
    text-decoration: none; /* Supprime le soulignement */
}

.icons {
    position: absolute;
    color: white;
    display: none;
    font-size: 2.8rem;
    right: 5%;
}

#check {
    display: none;
}

.navbar li {
    text-decoration: none;
    display: flex;
    transition: all 0.3s ease; /* Pour ajouter une transition fluide */
}

/* Réduire la taille des blocs lorsque la fenêtre est réduite */
.navbar li {
    font-size: 2.5vw; /* Utilisation de vw pour la taille de la police, ajuste selon tes préférences */
}

.navbar a{
    color: white;
    text-decoration : none;
    font-size: 100%;
}

/* Styles pour les liens non visités */
.navbar li a:link {
    color: white;
    text-decoration: none;
}

/* Styles pour les liens visités */
.navbar li.active a {
    color: #c48c67;
}

/* Styles pour les liens au survol */
.navbar li a:hover {
    color: #c48c67; /* Couleur au survol */
    transition: color 0.4s ease;
}

/* Styles pour les liens lorsqu'ils sont activés (cliqués) */
.navbar li a:active {
    color: #888888; /* Couleur lorsqu'un lien est activé */
}

/* Image à coté de 3D */
.orange-letter{
    color: #c48c67;
}







.text_information {
    position: absolute;
    left: 6vw;
    top: 10vw;
}

.text_information h1{
    top: 10vw;
    text-decoration: none;
    text-align: center;
    font-size: 20vw;
    color: #c48c67;
    margin: 0;
}

.text_information h2 {
    font-size: 1.6vw;
    color: white;
    text-decoration: none;
    text-align: center;
    margin: 0;
}

/* Ajustez les marges top des h2 selon vos besoins */
.text_information .nom { margin-top: -1vw; }
.text_information .metier { margin-top: 0vw; }
.text_information .mail { margin-top: 1.5vw; }
.text_information .telephone { margin-top: 1.5vw; }
.text_information .TVA { margin-top: 1.5vw; }

::placeholder {
    color: #999999; /* Couleur de votre choix */

}






.timeline_H {
    background-color: transparent;
    height: 60vw;
    width: 100%;
    position: absolute;
    z-index: 20;
}

.timeline_H::after {
    content: "";
    position: absolute;
    margin-left: 32.1vw;
    top: 8.6vw; /* Utilisez top au lieu de bottom */
    width: 2px;
    height: 0vw;
    background: #ffffff;
    background-color: rgb(255, 255, 255);
    animation: moveline 3s linear forwards;
}

@keyframes moveline {
    0% {
        height: 0;
    }
    100% {
        height: 82.5vw;
        margin-top: 0; /* Réinitialisez margin-top */
    }
}


.th_dot{
    height: 1.3vw;
    width: 1.3vw;
    background-color: #ffffff;
    position: absolute;
    z-index: 5;
    border-radius: 50%;
    opacity: 0;
}

#th1{
    top: 23.5%;
    left: 31.5%;
    animation: fadeIn 0.5s ease-in-out 0.4s forwards;
}

#th2{
    top: 32.5%;
    left: 31.5%;
    animation: fadeIn 0.5s ease-in-out 0.6s forwards;
}

#th3{
    top: 41.5%;
    left: 31.5%;
    animation: fadeIn 0.5s ease-in-out 0.8s forwards;
}

#th4{
    top: 57.5%;
    left: 31.5%;
    animation: fadeIn 0.5s ease-in-out 1.2s forwards;
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}




#thmap1{
    top: 90.5vw;
    left: 31.49vw;
    animation: fadeIn 0.2s ease-in-out 3s forwards;
}



.timeline_map1::after {
    content: "";
    position: absolute;
    left: 32vw;
    transform: rotate(95deg);
    transform-origin: top;
    top: 91.1vw; /* Utilisez top au lieu de bottom */
    width: 2px;
    height: 0vw;
    background: #ffffff;
    background-color: rgb(255, 255, 255);
    animation: moveline1 4s linear forwards;
}


@keyframes moveline1 {
    75% {
        height: 0;
    }
    100% {
        height: 15vw;
    }
}









#thmap2{
    top: 89.1vw;
    left: 16.7vw;
    animation: fadeIn 0.2s ease-in-out 3s forwards;
}



.timeline_map2::after {
    content: "";
    position: absolute;
    left: 17vw;
    transform: rotate(262deg);
    transform-origin: top;
    top: 89.8vw; /* Utilisez top au lieu de bottom */
    width: 2px;
    height: 0vw;
    background: #ffffff;
    background-color: rgb(255, 255, 255);
    animation: moveline2 5s linear forwards;
}


@keyframes moveline2 {
    80% {
        height: 0;
    }
    100% {
        height: 39vw;
    }
}











#thmap3{
    top: 83.75vw;
    left: 54.8vw;
    animation: fadeIn 0.2s ease-in-out 3s forwards;
}



.timeline_map3::after {
    content: "";
    position: absolute;
    left: 55.5vw;
    transform: rotate(295deg);
    transform-origin: top;
    top: 84.3vw; /* Utilisez top au lieu de bottom */
    width: 2px;
    height: 0vw;
    background: #ffffff;
    background-color: rgb(255, 255, 255);
    animation: moveline3 6s linear forwards;
}


@keyframes moveline3 {
    83.33% {
        height: 0;
    }
    100% {
        height: 19vw;
    }
}





#thmap4{
    top: 91.7vw;
    left: 72vw;
    animation: fadeIn 0.2s ease-in-out 3s forwards;
}



.timeline_map4::after {
    content: "";
    position: absolute;
    left: 72.6vw;
    transform: rotate(-20deg);
    transform-origin: top;
    top: 92.4vw; /* Utilisez top au lieu de bottom */
    width: 2px;
    height: 0vw;
    background: #ffffff;
    background-color: rgb(255, 255, 255);
    animation: moveline4 7s linear forwards;
}


@keyframes moveline4 {
    85.71% {
        height: 0;
    }
    100% {
        height: 18vw;
    }
}












#thmap5{
    top: 108.6vw;
    left: 78.1vw;
    animation: fadeIn 0.2s ease-in-out 3s forwards;
}



.timeline_map5::after {
    content: "";
    position: absolute;
    left: 78.9vw;
    transform: rotate(62deg);
    transform-origin: top;
    top: 109vw; /* Utilisez top au lieu de bottom */
    width: 2px;
    height: 0vw;
    background: #ffffff;
    background-color: rgb(255, 255, 255);
    animation: moveline5 8s linear forwards;
}


@keyframes moveline5 {
    87.5% {
        height: 0;
    }
    100% {
        height: 21vw;
    }
}







#thmap6{
    top: 118.2vw;
    left: 59.8vw;
    animation: fadeIn 0.2s ease-in-out 3s forwards;
}



.timeline_map6::after {
    content: "";
    position: absolute;
    left: 60.4vw;
    transform: rotate(175deg);
    transform-origin: top;
    top: 119.3vw; /* Utilisez top au lieu de bottom */
    width: 2px;
    height: 0vw;
    background: #ffffff;
    background-color: rgb(255, 255, 255);
    animation: moveline6 9s linear forwards;
}


@keyframes moveline6 {
    88% {
        height: 0;
    }
    100% {
        height: 23vw;
    }
}















#thmap7{
    top: 95.9vw;
    left: 57.85vw;
    animation: fadeIn 0.2s ease-in-out 3s forwards;
}



.timeline_map7::after {
    content: "";
    position: absolute;
    left: 58.2vw;
    transform: rotate(80deg);
    transform-origin: top;
    top: 96.6vw; /* Utilisez top au lieu de bottom */
    width: 2px;
    height: 0vw;
    background: #ffffff;
    background-color: rgb(255, 255, 255);
    animation: moveline7 10s linear forwards;
}


@keyframes moveline7 {
    89.2% {
        height: 0;
    }
    100% {
        height: 10vw;
    }
}







#thmap8{
    top: 97.75vw;
    left: 47.8vw;
    animation: fadeIn 0.2s ease-in-out 3s forwards;
}



.timeline_map8::after {
    content: "";
    position: absolute;
    left: 37.3vw;
    transform: rotate(-110deg);
    transform-origin: top;
    top: 110vw; /* Utilisez top au lieu de bottom */
    width: 2px;
    height: 0vw;
    background: #ffffff;
    background-color: rgb(255, 255, 255);
    animation: moveline8 12s linear forwards;
}


@keyframes moveline8 {
    91% {
        height: 0;
    }
    100% {
        height: 15vw;
    }
}




#thmap9{
    top: 104.2vw;
    left: 50.9vw;
    animation: fadeIn 0.2s ease-in-out 3s forwards;
}



.timeline_map9::after {
    content: "";
    position: absolute;
    left: 48.7vw;
    transform: rotate(44deg);
    transform-origin: top;
    top: 98vw; /* Utilisez top au lieu de bottom */
    width: 2px;
    height: 0vw;
    background: #ffffff;
    background-color: rgb(255, 255, 255);
    animation: moveline9 11s linear forwards;
}


@keyframes moveline9 {
    91.2% {
        height: 0;
    }
    100% {
        height: 17vw;
    }
}















#thmap10{
    top: 109.4vw;
    left: 36.7vw;
    animation: fadeIn 0.2s ease-in-out 3s forwards;
}



.timeline_map10::after {
    content: "";
    position: absolute;
    left: 51.5vw;
    transform: rotate(-44deg);
    transform-origin: top;
    top: 104.7vw; /* Utilisez top au lieu de bottom */
    width: 2px;
    height: 0vw;
    background: #ffffff;
    background-color: rgb(255, 255, 255);
    animation: moveline10 13s linear forwards;
}


@keyframes moveline10 {
    92% {
        height: 0;
    }
    100% {
        height: 32vw;
    }
}


#thmap11{
    top: 126.8vw;
    left: 72.75vw;
    animation: fadeIn 0.2s ease-in-out 3s forwards;
}


.map{
    margin-top: 14vw;
    position: relative;
    margin-right: 25vw;
    left: 13%;
    z-index: -1;
}

.map img{
    height: 100vw;
    width: auto;
    opacity: 0;
    animation: FadeMap 3s ease-in-out forwards;
}

@keyframes FadeMap {
    80% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}






/* Section body_contenu principal */


.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 12vw;
    margin-left: 0vw;
    height: auto;
    width: auto;
    z-index: 30;
  }
  
  .form-group, .form-group_pre {

    position: relative;
    margin-bottom: 1.5vw; /*chnager la hauteur entre les form*/
  }
  
  label {
    padding-left: 0.7vw;
    font-size: large;
    color: rgb(255, 255, 255);
    display: block;
    margin-bottom: .5vw;
    
  }
  
  input,
  textarea {
    background-color: #292929;
    padding: 0.5vw;
    font-size: 1.1vw;
    color: white;
    width: 20vw;
    border-color: rgb(255, 255, 255);
    border-width: 0.1vw;
    border-style: solid;
    height: 1vw;
    
  }

  input{
    border-radius: 0.6vw;

  }

  textarea{
    border-radius: 1vw;

  }
  
  textarea {
    height: 10vw;
    resize: none;
  }
  
  input:focus,
  textarea:focus {
    outline: none;
    border-color: #c48c67;
    border-width: 0.1vw;
    transition: border-color .3s ease-in-out;
  }

  button[type="submit"] {
    background-color: #4e4e4e;
    color: #fff;
    border: none;
    border-radius: 0.5vw;
    padding: 1.5vw 3vw;
    font-size: 1.6vw;
    cursor: pointer;
    margin-top: -0.5vw;
    transition: background-color 0.2s ease-in-out;
  }
  
  button[type="submit"]:hover {
    background-color: #c48c67;
  }


  .popup-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
  }

  
  label{
    font-size: 1.2vw;
  }









/* remonter la page */

.img_click_top_page {
    width: 4vw;
    height: 4vw;
    margin: 0;
    position: fixed;
    bottom: 1vw;
    left: 1vw;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer; /* Ajoute un curseur pointer pour indiquer que c'est cliquable */
}

.img_click_top_page img {
    width: 4vw;
    height: 5vw;
    object-fit: cover;
    border-radius: 50%;
}

#backToTop {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#backToTop.visible {
    opacity: 1;
}



 
    




.custom-line1 {
    position: absolute;
    margin-top: 17.8vw;
    margin-left: 20vw;
    width: 0.001vw; /* La ligne occupe toute la largeur disponible */
    height: 33vw; /* Épaisseur de la ligne */
    background-color: #ffffff; /* Couleur de la ligne */
     
  }

  .custom-line2 {
    position: absolute;
    margin-top: 35.8vw;
    margin-left: 5vw;
    transform: rotate(90deg);
    width: 0.001vw; /* La ligne occupe toute la largeur disponible */
    height: 30vw; /* Épaisseur de la ligne */
    background-color: #ffffff; /* Couleur de la ligne */
    z-index: -1;
     
  }

  .custom-line3 {
    position: absolute;
    margin-top: 12.6vw;
    margin-left: 5vw;
    transform: rotate(90deg);
    width: 0.001vw; /* La ligne occupe toute la largeur disponible */
    height: 30vw; /* Épaisseur de la ligne */
    background-color: #ffffff; /* Couleur de la ligne */
    z-index: -1;
     
  }

  .custom-line4 {
    position: absolute;
    margin-top: 22.2vw;
    margin-left: 5vw;
    transform: rotate(90deg);
    width: 0.001vw; /* La ligne occupe toute la largeur disponible */
    height: 30vw; /* Épaisseur de la ligne */
    background-color: #ffffff; /* Couleur de la ligne */
    z-index: -1;
     
     
  }

  .custom-line5 {
    position: absolute;
    margin-top: 2.7vw;
    margin-left: 5vw;
    transform: rotate(90deg);
    width: 0.001vw; /* La ligne occupe toute la largeur disponible */
    height: 30vw; /* Épaisseur de la ligne */
    background-color: #ffffff; /* Couleur de la ligne */
    z-index: -1;
     

  }

  .custom-line6 {
    position: absolute;
    margin-top: 27.3vw;
    margin-left: 25.3vw;
    transform: rotate(90deg);
    width: 0.1vw; /* La ligne occupe toute la largeur disponible */
    height: 10.5vw; /* Épaisseur de la ligne */
    background-color: #ffffff; /* Couleur de la ligne */
    z-index: -1;
     
  }

















































/* footer */

footer{
    overflow: hidden;
    margin-top: -10%;
    width: 100%;
}

div.Informations{
    display: flex;
    padding-top: 0.5vw;
    align-items: center;
    justify-content: space-around;
}

div.Contact{
    font-size: 1vw;
    color: white;
    width: 50vw;
    text-align: center;
    padding-left: 1vw;
    z-index: 10;
}

div.Informations img {
    width: 7%;
}

div.icones {
    display: flex;
    justify-content: space-around; /* changer space-around à space-between */
    width: 10vw;
    height: 8vw;
    align-items: center;
}



.icones a i{
    font-size: 2vw;
    color: white;
    padding: 0.5vw;
    opacity: 1;
    transition: opacity 0.3s;
}

  
.icones a i:hover {
    opacity: 0.3;
}
    
.Contact p{
    line-height: 0.5;
    color: rgb(255, 255, 255);
    font-size: 1.2vw;
}


.text_deplacement {
    position: absolute;
    top: 70vw;
    left: 2vw;
    text-align : right;
}

.text_deplacement h1 {
    color: white;
    font-size: 2vw;
}




@media (max-width: 768px){

    header.header img{
        width: 36%;
        padding-left: 0.5%;
        padding-top: 0.5%;
        padding-bottom: 0.3%;
        transition: all 0.3s ease;
    }

    .icons {
        display: inline-flex;
        bottom: 25%;
        font-size: 6vw;
    }

    .icons #close {
        display: none;
    }

    .ri-shopping-cart-line {
        display: inline-block;
        position: absolute;
        color: white;
        font-size: 6vw;
        right: 15%;
        bottom: 25%;
        text-decoration: none;
    }
    
    .header {
        align-items: center;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        margin: 0;
        width: 100%;
        height: 0;
        display: flex; /* Ajout de la propriété display flex */
        align-items: center; /* Pour centrer verticalement le contenu */
        flex-direction: column; /* Afficher les éléments en colonne */
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        overflow: hidden;
        transition: .3s ease;
        z-index: 11000;
    }
    
    .navbar a {
        display: block;
        font-size: 10vw;
        text-align: center;
        opacity: 0;
        transition: .3s ease;
        line-height: .1; /* Ajuster la hauteur de ligne pour réduire l'espace */
    }
    
    
    
    
    .header {
        z-index: 200;
        display: flex;
        background-color: rgba(94, 94, 94, 0.308); /* Fond d'en-tête semi-transparent */
        position: fixed;
        right: 0;
        left: 0;
        opacity: 1;
        transition: opacity 0.4s ease-in-out;
        height: 18vw;
        
    }

    #check:checked~.icons #menu{
        display: none;
    }

    #check:checked~.icons #close{
        display: inline-flex;
    }

    
    #check:checked ~ .navbar {
        height: 73vh;
    }
    
    #check:checked ~ .navbar a{
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(.35s * var(--i));
    }

    #check:checked ~ body {
        overflow: hidden;
    }

    /* Pour éviter que le fond ne soit coupé lors du défilement vers le haut */
    #check:checked ~ .top-page {
        position: fixed;
        width: 100%;
    }

    footer{
        margin-top: -7vw;
    }

    div.Informations{
        display: flex;
        padding-top: 0.5vw;
        align-items: center;
        justify-content: space-around;
    }
    
    div.Contact{
        font-size: 1vw;
        text-decoration: none;
        color: white;
        width: 60vw;
        text-align: center;
        padding-left: 4vw;
        z-index: 10;
    }
    
    div.Informations img {
        width: 12%;
        margin-left: 2vw;
    }
    
    div.icones {
        display: flex;
        justify-content: space-around; /* changer space-around à space-between */
        width: 3vw;
        height: 8vw;
        align-items: center;
        margin-right: 12vw;
    }

    .icones a i{
        text-decoration: none;
        font-size: 5vw;
        color: white;
        padding: 1vw;
        opacity: 1;
        transition: opacity 0.3s;
    }
    
      
    .icones a i:hover {
        opacity: 0.3;
    }
        
    .Contact p{
        text-decoration: none;
        line-height: 0.5;
        color: rgb(255, 255, 255);
        font-size: 2.3vw;
    }
    
    
    .text_deplacement {
        position: absolute;
        top: 90vw;
        left: 4vw;
        text-align : right;
    }
    
    .text_deplacement h1 {
        color: white;
        font-size: 3vw;
    }
    

    .autumn{
        display: flex;
        margin-top: 20vw;
        width: 30vw;
        height: 30vw;
        margin-right: 60vw;
    }
    
    .image_autumn{
        position: relative;
        width: 40vw;
        height: 43vw;
        margin: 0;
        margin-top: -11vw;
        margin-left: -4.5vw;
        z-index: -10;
    }
    
    

    
    #th1{
        top: 37%;
        margin-left: 28.5vw;
        animation: fadeIn 0.5s ease-in-out 0.4s forwards;
    }
    
    #th2{
        top: 46.8%;
        margin-left: 28.5vw;
        animation: fadeIn 0.5s ease-in-out 0.6s forwards;
    }
    
    #th3{
        top: 56.5%;
        margin-left: 28.5vw;
        animation: fadeIn 0.5s ease-in-out 0.8s forwards;
    }
    
    #th4{
        top: 73.5%;
        margin-left: 28.5vw;
        animation: fadeIn 0.5s ease-in-out 1.2s forwards;
    }
   
    
    






   
    .contact-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 33vw;
        margin-top: 21vw;
        height: 40vw;
        z-index: 30;
      }
      

    input[name="name"]::placeholder,
    input[name="téléphone"]::placeholder,
    input[name="email"]::placeholder,
    textarea[name="message"]::placeholder {
        font-size: 3.2vw; /* Changez la taille selon vos besoins */
    }
      

      .form-group, .form-group_pre {
    
        position: relative;
        margin-bottom: 2vw; /*chnager la hauteur entre les form*/
      }
      
      label[for="name"]{

        font-size: 4vw;
      }

      label[for="téléphone"]{

        font-size: 4vw;
      }

      label[for="email"]{

        font-size: 4vw;
      }

      label[for="message"]{

        font-size: 4vw;
      }

      .form-group name{

        color: #c48c67;
      }
      
      input,
      textarea {
        background-color: #292929;
        padding: 3vw;
        font-size: 1.5vw;
        color: white;
        width: 35vw;
        border-color: rgb(255, 255, 255);
        border-width: 0.1vw;
        border-style: solid;
        height: 1vw;
        
      }
    
      input{
        border-radius: 1.2vw;
    
      }
    
      textarea{
        border-radius: 2vw;
    
      }
      
      textarea {
        height: 15vw;
        resize: none;
      }
      
      input:focus,
      textarea:focus {
        outline: none;
        border-color: #c48c67;
        border-width: 0.1vw;
        transition: border-color .3s ease-in-out;
      }
    
      button[type="submit"] {
        background-color: #4e4e4e;
        color: #fff;
        border: none;
        border-radius: 1vw;
        padding: 1.5vw 3vw;
        font-size: 4vw;
        cursor: pointer;
        margin-top: 1vw;
        transition: background-color 0.2s ease-in-out;
      }
      
      button[type="submit"]:hover {
        background-color: #c48c67;
      }
    
      label{
        font-size: 1.2vw;
      }
    






    
      .timeline_H {
        background-color: transparent;
        height: 45vw;
        width: 10%;
        margin-top: 18vw;
        margin-left: -90vw;
        position: absolute;
        z-index: 20;
    }
    
    .timeline_H::after {
        content: "";
        position: absolute;
        margin-left: 32.1vw;
        top: 0vw; /* Utilisez top au lieu de bottom */
        width: 2px;
        height: 0vw;
        background: #ffffff;
        background-color: rgb(255, 255, 255);
        animation: moveline 3s linear forwards;
    }
    
    @keyframes moveline {
        0% {
            height: 0;
        }
        100% {
            height: 103vw;
            margin-top: 0; /* Réinitialisez margin-top */
        }
    }
    
    
    .th_dot{
        height: 1.3vw;
        width: 1.3vw;
        background-color: #ffffff;
        position: absolute;
        z-index: 5;
        border-radius: 50%;
        opacity: 0;
    }
    
    #th1{
        top: 25%;
        left: 31.65%;
        animation: fadeIn 0.5s ease-in-out 0.2s forwards;
    }
    
    #th2{
        top: 56.8%;
        left: 31.65%;
        animation: fadeIn 0.5s ease-in-out 0.5s forwards;
    }
    
    #th3{
        top: 88%;
        left: 31.65%;
        animation: fadeIn 0.5s ease-in-out 0.8s forwards;
    }
    
    #th4{
        top: 135.5%;
        left: 31.65%;
        animation: fadeIn 0.5s ease-in-out 1.2s forwards;
    }
    
    
    @keyframes fadeIn {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }

    

    

    #thmap1{
        top: 120.5vw;
        left: 31.49vw;
        animation: fadeIn 0.2s ease-in-out 3s forwards;
    }



    .timeline_map1::after {
        content: "";
        position: absolute;
        left: 32vw;
        transform: rotate(95deg);
        transform-origin: top;
        top: 121.1vw; /* Utilisez top au lieu de bottom */
        width: 2px;
        height: 0vw;
        background: #ffffff;
        background-color: rgb(255, 255, 255);
        animation: moveline1 4s linear forwards;
    }


    #thmap2{
        top: 119.1vw;
        left: 16.7vw;
        animation: fadeIn 0.2s ease-in-out 3s forwards;
    }



    .timeline_map2::after {
        content: "";
        position: absolute;
        left: 17vw;
        transform: rotate(262deg);
        transform-origin: top;
        top: 119.8vw; /* Utilisez top au lieu de bottom */
        width: 2px;
        height: 0vw;
        background: #ffffff;
        background-color: rgb(255, 255, 255);
        animation: moveline2 5s linear forwards;
    }



    #thmap3{
        top: 113.75vw;
        left: 54.8vw;
        animation: fadeIn 0.2s ease-in-out 3s forwards;
    }



    .timeline_map3::after {
        content: "";
        position: absolute;
        left: 55.5vw;
        transform: rotate(295deg);
        transform-origin: top;
        top: 114.3vw; /* Utilisez top au lieu de bottom */
        width: 2px;
        height: 0vw;
        background: #ffffff;
        background-color: rgb(255, 255, 255);
        animation: moveline3 6s linear forwards;
    }


    #thmap4{
        top: 121.7vw;
        left: 72vw;
        animation: fadeIn 0.2s ease-in-out 3s forwards;
    }



    .timeline_map4::after {
        content: "";
        position: absolute;
        left: 72.6vw;
        transform: rotate(-20deg);
        transform-origin: top;
        top: 122.4vw; /* Utilisez top au lieu de bottom */
        width: 2px;
        height: 0vw;
        background: #ffffff;
        background-color: rgb(255, 255, 255);
        animation: moveline4 7s linear forwards;
    }





    #thmap5{
        top: 138.6vw;
        left: 78.1vw;
        animation: fadeIn 0.2s ease-in-out 3s forwards;
    }



    .timeline_map5::after {
        content: "";
        position: absolute;
        left: 78.9vw;
        transform: rotate(62deg);
        transform-origin: top;
        top: 139vw; /* Utilisez top au lieu de bottom */
        width: 2px;
        height: 0vw;
        background: #ffffff;
        background-color: rgb(255, 255, 255);
        animation: moveline5 8s linear forwards;
    }




    #thmap6{
        top: 148.2vw;
        left: 59.8vw;
        animation: fadeIn 0.2s ease-in-out 3s forwards;
    }



    .timeline_map6::after {
        content: "";
        position: absolute;
        left: 60.4vw;
        transform: rotate(175deg);
        transform-origin: top;
        top: 149.3vw; /* Utilisez top au lieu de bottom */
        width: 2px;
        height: 0vw;
        background: #ffffff;
        background-color: rgb(255, 255, 255);
        animation: moveline6 9s linear forwards;
    }





    #thmap7{
        top: 125.9vw;
        left: 57.85vw;
        animation: fadeIn 0.2s ease-in-out 3s forwards;
    }



    .timeline_map7::after {
        content: "";
        position: absolute;
        left: 58.2vw;
        transform: rotate(80deg);
        transform-origin: top;
        top: 126.6vw; /* Utilisez top au lieu de bottom */
        width: 2px;
        height: 0vw;
        background: #ffffff;
        background-color: rgb(255, 255, 255);
        animation: moveline7 10s linear forwards;
    }




    #thmap8{
        top: 127.75vw;
        left: 47.8vw;
        animation: fadeIn 0.2s ease-in-out 3s forwards;
    }



    .timeline_map8::after {
        content: "";
        position: absolute;
        left: 37.3vw;
        transform: rotate(-110deg);
        transform-origin: top;
        top: 140vw; /* Utilisez top au lieu de bottom */
        width: 2px;
    }
        


    #thmap9{
        top: 134.2vw;
        left: 50.9vw;
        animation: fadeIn 0.2s ease-in-out 3s forwards;
    }



    .timeline_map9::after {
        content: "";
        position: absolute;
        left: 48.7vw;
        transform: rotate(44deg);
        transform-origin: top;
        top: 128vw; /* Utilisez top au lieu de bottom */
        width: 2px;
        height: 0vw;
        background: #ffffff;
        background-color: rgb(255, 255, 255);
        animation: moveline9 11s linear forwards;
    }




    #thmap10{
        top: 139.4vw;
        left: 36.7vw;
        animation: fadeIn 0.2s ease-in-out 3s forwards;
    }



    .timeline_map10::after {
        content: "";
        position: absolute;
        left: 51.5vw;
        transform: rotate(-44deg);
        transform-origin: top;
        top: 134.7vw; /* Utilisez top au lieu de bottom */
        width: 2px;
        height: 0vw;
        background: #ffffff;
        background-color: rgb(255, 255, 255);
        animation: moveline10 13s linear forwards;
    }



    #thmap11{
        top: 156.8vw;
        left: 72.75vw;
        animation: fadeIn 0.2s ease-in-out 3s forwards;
    }



    .map{
        margin-top: 35vw;
        z-index: -10;
    }

    
    
    @keyframes Opac{
        85%{
            opacity: 0%;
        }
        100%{
            opacity: 100%;
        }
    }


    .text_information {
        position: absolute;
        left: 1vw;
        top: 19vw;
    }
    
    .text_information h1{
        top: 10vw;
        text-align: center;
        font-size: 30vw;
        color: #c48c67;
        margin: 0;
    }
    
    .text_information h2 {
        text-decoration: none;
        font-size: 2.6vw;
        color: rgb(255, 255, 255);
        text-align: center;
        margin: 0;
    }
    
    
    .timeline_map{
        margin-top: -5.5vw;
    }
    
    @keyframes fadeIn {
        0% {
            opacity: 0;
        }
        25% {
            opacity: 0;
        }
        100% {
            opacity: 1;
            
        }
    }
    
    @keyframes fadeInOut {
        0% {
            opacity: 1;
        }
        50% {
            opacity: 1;
        }
        75% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            display: none;
            position: relative;
        }
    }

    .img_click_top_page{
        display: none;
    }

    .A-load{
        display: none;
    }
}