/*ANIMATION D'ENTREE*/
.no-scroll {
    position: fixed;
    width: 100%;
}
#couverture {
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 9998;
    background-color: rgba(5, 85, 138, 1);
    position: absolute;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    transform: translateY(-100%);
    animation: name_intro 4s ease;
    overflow: hidden;
}

#intro_text {
    display: flex;
    flex-direction: column;
    color: white;
    justify-content: center;
    align-items: center;
    overflow: hidden;

}

#intro_text p {
    display: inline-flex;
    font-weight: bold;
    font-size: 2rem;
    margin: 1rem;
}

#intro_text hr {
    width: 25rem;
    height: 0.1rem;
    background-color: white;
}

#haut {
    animation: left_entry 3s ease;
}

#bas {
    animation: right_entry 3s ease;
}

#middle {
    animation: back_entry 3s ease;
}

@keyframes right_entry {
    0% {transform: translateX(75%);height: 0.1rem;}
    66% {transform: translateX(0%);height: 0.1rem;}
    75% {transform: translateX(0%);height: 0.1rem;}
    87.5% {transform: translateX(0%); height: 0.3rem;}
    100% {transform: translateX(0%); height: 0.1rem;}
}

@keyframes left_entry {
    0% {transform: translateX(-75%);height: 0.1rem;}
    66% {transform: translateX(0%);height: 0.1rem;}
    75% {transform: translateX(0%);height: 0.1rem;}
    87.5% {transform: translateX(0%);height: 0.3rem;}
    100% {transform: translateX(0%);height: 0.1rem;}
}

@keyframes back_entry {
    0% {font-size: 2rem; margin:1rem;}
    66% {font-size: 2rem; margin:1rem;}
    75% {font-size: 2rem; margin:1rem;}
    87.5% {font-size: 2.4rem; margin:0.8rem;}
    100% {font-size: 2rem; margin:1rem;}
}

@keyframes name_intro {
    0% {transform: translateY(0%);}
    75% {transform: translateY(0%);}
    100% {transform: translateY(-100%);}
}
@media (max-width: 550px) {
@keyframes back_entry {
    0% {
        font-size: 1.5rem;
        margin: 1rem;
    }

    66% {
        font-size: 1.5rem;
        margin: 1rem;
    }

    75% {
        font-size: 1.5rem;
        margin: 1rem;
    }

    87.5% {
        font-size: 2rem;
        margin: 0.8rem;
    }

    100% {
        font-size: 1.5rem;
        margin: 1rem;
    }
}
#intro_text hr {
    width: 20rem;
}
#intro_text p {
    font-size: 1.5rem;
}
#couverture {
    overflow: hidden;
}
}

/*__________PAGE__________*/

.content{
    display: flex;
    flex-direction: column;
    flex : 1 0 auto;
    align-items: center;
}
html, body{
    height: 100%;
    margin : 0;

}
 body{
    display: flex;
    flex-direction: column;
 }

 header{
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: column;
 }

 .titre_header{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    font-size: 2.5rem;
    margin:0;
    flex-grow: 2;
    background-color: rgba(5, 85, 138, 0.801);
 }

 .titre_header img{
    display: flex;
    width: 8rem;
    justify-content: left;
    margin:5rem;
}

.menu{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 80%;
    height:2rem;
}

.menu a{
    font-size: 1.3rem;
    color:rgba(0, 91, 174, 1);
    margin-bottom: 0;
    text-decoration: none;
}

.menu a:hover, .menu a:focus{
    text-decoration: underline;
}

.menu_actuel{
    font-weight: bold;
}

header hr{
    width:90%;
    color:rgba(5, 85, 138, 0.801);
    height: 0.2rem;
    background-color: rgba(5, 85, 138, 0.801);
}

.fleche_menu{
    margin:0.5rem;
    height:0rem;
    overflow:hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color:rgba(0, 91, 174, 1);
    font-size:1.3rem;
}

.fleche_menu img{
    width:2rem;
    height: auto;
    margin-left: 1rem;
    margin-right: 1rem;
    rotate:180deg;
}
.fleche_menu p{
    margin-left:1rem;
}

 @media (min-width:701px) and (max-width:900px){
    .titre_header{
        flex-direction: column;
        flex-grow: 0;
        text-align: center;
        font-size: 2rem;
    }
    .titre_header img{
        margin:2rem;
    }
    .menu{
        height:0rem;
        overflow: hidden;
        flex-direction: column;
        transition: all 0.7s ease;
    }
    .menu a{
        margin-top:0.5rem
    }
    .fleche_menu{
        height:4rem;
        border-style: solid;
        border-width: 0.2rem;
        border-radius: 1rem;
        border-color: rgba(5, 85, 138, 0.8);
    }
 } 
 
 @media (max-width:700px){
    .titre_header{
        flex-direction: column;
        flex-grow: 0;
        text-align: center;
        font-size: 1.5rem;
    }
    .titre_header img{
        margin:2rem;
        width:6rem;
    }
    .menu{
        height:0rem;
        overflow: hidden;
        flex-direction: column;
        transition: all 0.7s ease;
    }
    .menu a{
        margin-top:0.5rem
    }
    .fleche_menu{
        height:4rem;
        border-style: solid;
        border-width: 0.2rem;
        border-radius: 1rem;
        border-color: rgba(5, 85, 138, 0.8);
    }
 }

 /*__________MAIN__________*/

.titre{
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
}

.titre img{
    width:6rem;
    height: auto;
}

.texte_titre{
    display: flex;
    flex-direction: column;
    align-items:center;
}

.texte_titre h1{
    font-size: 4rem;
    margin-bottom: 0;
    margin-top: 0;
}

.texte_titre p{
    font-size: 1.5rem;
    margin-top:0;
}

@media (max-width:600px){
    .titre{
        margin-top:0.7rem;
        flex-direction: column;
        align-items: center;
    }
    .texte_titre h1{
        font-size:3rem;
    }
    .texte_titre p{
        font-size:1.7rem;
    }
}

/*GESTION_CARTE*/
.map_container{
    display: flex;
    width: 65%;
    height: auto;
    align-items: center;
    position: relative;
}
#truc_pour_cacher_la_carte{
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    position: relative;
    border: solid black;
}



.carte{
    justify-content:center;
    display: flex;
    width:100%;
    position: relative;
}

.fondcarte{
    display: block;
    width:100%;
    z-index:-1;
    position:absolute;
}


.carte svg{
    position: relative;
    display: flex;
    width:100%;
}

.OSM{
    display: flex;
}

.chemin1{
    position:relative;
    pointer-events: stroke;
    z-index: 1;
    fill:transparent;
    stroke:#0068e0;
    stroke-width:4;
}

.chemin1_l{
    position:relative;
    pointer-events: stroke;
    z-index: 1;
    fill:transparent;
    stroke:#015dc7ff;
    stroke-width:0;
}

.chemin_cliquable1{
    position: relative;
    pointer-events: stroke;
    stroke: transparent;
    stroke-width:0;
    fill:transparent;
    z-index:1;
}

.chemin_cliquable2{
    position: relative;
    pointer-events: stroke;
    stroke: transparent;
    stroke-width:0;
    fill:transparent;
    z-index:1;
}

.chemin_cliquable3{
    position: relative;
    pointer-events: stroke;
    stroke: transparent;
    stroke-width:0;
    fill:transparent;
    z-index:1;
}

.chemin2{
    position: relative;
    pointer-events: stroke;
    fill:transparent;
    stroke:#b705e4ff;
    stroke-width:4;
    z-index: 1;

}
.chemin2_l{
    position: relative;
    pointer-events: stroke;
    fill:transparent;
    stroke:#a304caff;
    stroke-width:0;
    z-index: 1;

}
.chemin2_raccourci{
    position: relative;
    stroke-dasharray: 2 3;
    fill:transparent;
    stroke:#b705e4ff;
    stroke-width:4;
    z-index: 1;
    pointer-events: stroke;
}
.chemin2_raccourci_l{
    position: relative;
    stroke-dasharray: 2 3;
    fill:transparent;
    stroke:#a304caff;
    stroke-width:0;
    z-index: 1;
    pointer-events: stroke;
}
.chemin3{
    position:relative;
    pointer-events: stroke;
    fill:transparent;
    stroke:#00bb1fff;
    stroke-width:3;
    z-index: 1;
}
.chemin3_l{
    position:relative;
    pointer-events: stroke;
    fill:transparent;
    stroke:#009218ff;
    stroke-width:0;
    z-index: 1;
}
.chemin3_acces{
    position:relative;
    pointer-events: stroke;
    stroke-dasharray:2 3;
    fill:transparent;
    stroke:#00bb1fff;
    stroke-width:4;
    z-index: 1;
}

.chemin3_acces_l{
    position:relative;
    pointer-events: stroke;
    stroke-dasharray:2 3;
    fill:transparent;
    stroke:#009218ff;
    stroke-width:0;
    z-index: 1;
}

.info_chemin1{
    position:absolute;
    display: flex;
    flex-direction: column;
    width:0%;
    height:0%;
    top:0;left:0;
    overflow: hidden;
    z-index:10;
    background-color: white;
    border-radius: 1rem;
    border: 0rem solid rgba(5, 85, 138, 0.8);
    transform: translate(-50%,-50%);
    z-index: 15;
}

.info_chemin_sortie{
    position:absolute;
    display: flex;
    top:0; right:0;
    width:2rem;
    height:2rem;
    margin:0.2rem;
}

.info_chemin2{
    position:absolute;
    display: flex;
    flex-direction: column;
    width:0%;
    height:0%;
    top:0;left:0;
    overflow: hidden;
    z-index:10;
    background-color: white;
    border-radius: 1rem;
    border: 0rem solid rgba(5, 85, 138, 0.8);
    transform: translate(-50%,-50%);
    z-index: 15;

}

.info_chemin3{
    position:absolute;
    display: flex;
    flex-direction: column;
    width:0%;
    height:0%;
    top:0;left:0;
    overflow: hidden;
    z-index:10;
    background-color: white;
    border-radius: 1rem;
    border: 0rem solid rgba(5, 85, 138, 0.8);
    transform: translate(-50%,-50%);
    z-index: 15;

}

.map_container > :not(.info_chemin1) {
  overflow: hidden;
}

.map_container > :not(.info_chemin2) {
  overflow: hidden;
}

.map_container > :not(.info_chemin3) {
  overflow: hidden;
}


/*GESTION PHOTOS*/

#photo1{
    left:53.5%;
    top: 28%;
    width:7%;
    height: 7%;
    position:absolute;
    z-index: 4;
    transform: translate(-50%,-50%);
}
#info_photo1{
    display: flex;
    width: 0rem;
    height: 0rem;
    overflow: hidden;
    position: absolute;
    transform: translate(-50%,-50%);
    background-color: white;
    border: solid 0rem rgba(5, 85, 138, 0.8);
    border-radius: 0rem;
    top:0%;
    left:0%;
    justify-content: center;
    align-items: center;
    z-index:8;
}
#src1{
    display: flex;
    width: 90%;
    height: auto;
}


#photo2{
    left: 50.5%;
    top: 36%;
    width:7%;
    height: 7%;
    position:absolute;
    z-index: 4;
    transform: translate(-50%,-50%);
}
#info_photo2{
    display: flex;
    width: 0rem;
    height: 0rem;
    overflow: hidden;
    position: absolute;
    transform: translate(-50%,-50%);
    background-color: white;
    border: solid 0rem rgba(5, 85, 138, 0.8);
    border-radius: 0rem;
    top:0%;
    left:0%;
    justify-content: center;
    align-items: center;
    z-index:8;
}
#src2{
    display: flex;
    width: auto;
    height: 90%;
}

#photo3{
    left:50%;
    top: 47.5%;
    width:7%;
    height: 7%;
    position:absolute;
    z-index: 4;
    transform: translate(-50%,-50%);
}
#info_photo3{
    display: flex;
    width: 0rem;
    height: 0rem;
    overflow: hidden;
    position: absolute;
    transform: translate(-50%,-50%);
    background-color: white;
    border: solid 0rem rgba(5, 85, 138, 0.8);
    border-radius: 0rem;
    top:0%;
    left:0%;
    justify-content: center;
    align-items: center;
    z-index:8;
}
#src3{
    display: flex;
    width: 90%;
    height: auto;
}

#photo4{
    left:53%;
    top: 52%;
    width:7%;
    height: 7%;
    position:absolute;
    z-index: 4;
    transform: translate(-50%,-50%);
}
#info_photo4{
    display: flex;
    width: 0rem;
    height: 0rem;
    overflow: hidden;
    position: absolute;
    transform: translate(-50%,-50%);
    background-color: white;
    border: solid 0rem rgba(5, 85, 138, 0.8);
    border-radius: 0rem;
    top:0%;
    left:0%;
    justify-content: center;
    align-items: center;
    z-index:8;
}
#src4{
    display: flex;
    width: 90%;
    height: auto;
}

#photo5{
    left:45.5%;
    top: 55%;
    width:7%;
    height: 7%;
    position:absolute;
    z-index: 4;
    transform: translate(-50%,-50%);
}
#info_photo5{
    display: flex;
    width: 0rem;
    height: 0rem;
    overflow: hidden;
    position: absolute;
    transform: translate(-50%,-50%);
    background-color: white;
    border: solid 0rem rgba(5, 85, 138, 0.8);
    border-radius: 0rem;
    top:0%;
    left:0%;
    justify-content: center;
    align-items: center;
    z-index:8;
}
#src5{
    display: flex;
    width: 90%;
    height: auto;
}

#photo6{
    left:52.4%;
    top: 53.7%;
    width:7%;
    height: 7%;
    position:absolute;
    z-index: 4;
    transform: translate(-50%,-50%);
}
#info_photo6{
    display: flex;
    width: 0rem;
    height: 0rem;
    overflow: hidden;
    position: absolute;
    transform: translate(-50%,-50%);
    background-color: white;
    border: solid 0rem rgba(5, 85, 138, 0.8);
    border-radius: 0rem;
    top:0%;
    left:0%;
    justify-content: center;
    align-items: center;
    z-index:8;
}
#src6{
    display: flex;
    width: 90%;
    height: auto;
}

#photo8{
    left:38.6%;
    top: 38%;
    width:7%;
    height: 7%;
    position:absolute;
    z-index: 4;
    transform: translate(-50%,-50%);
}
#info_photo8{
    display: flex;
    width: 0rem;
    height: 0rem;
    overflow: hidden;
    position: absolute;
    transform: translate(-50%,-50%);
    background-color: white;
    border: solid 0rem rgba(5, 85, 138, 0.8);
    border-radius: 0rem;
    top:0%;
    left:0%;
    justify-content: center;
    align-items: center;
    z-index:8;
}
#src8{
    display: flex;
    width: 90%;
    height: auto;
}

#photo9{
    left:38.7%;
    top: 30%;
    width:7%;
    height: 7%;
    position:absolute;
    z-index: 4;
    transform: translate(-50%,-50%);
}
#info_photo9{
    display: flex;
    width: 0rem;
    height: 0rem;
    overflow: hidden;
    position: absolute;
    transform: translate(-50%,-50%);
    background-color: white;
    border: solid 0rem rgba(5, 85, 138, 0.8);
    border-radius: 0rem;
    top:0%;
    left:0%;
    justify-content: center;
    align-items: center;
    z-index:8;
}
#src9{
    display: flex;
    width: 90%;
    height: auto;
}


#photo10{
    left: 26%;
    top: 17.5%;
    width:7%;
    height: 7%;
    position:absolute;
    z-index: 4;
    transform: translate(-50%,-50%);
}
#info_photo10{
    display: flex;
    width: 0rem;
    height: 0rem;
    overflow: hidden;
    position: absolute;
    transform: translate(-50%,-50%);
    background-color: white;
    border: solid 0rem rgba(5, 85, 138, 0.8);
    border-radius: 0rem;
    top:0%;
    left:0%;
    justify-content: center;
    align-items: center;
    z-index:8;
}
#src10{
    display: flex;
    width: 90%;
    height: auto;
}

#photo11{
    left: 50%;
    top: 23.5%;
    width:7%;
    height: 7%;
    position:absolute;
    z-index: 4;
    transform: translate(-50%,-50%);
}
#info_photo11{
    display: flex;
    width: 0rem;
    height: 0rem;
    overflow: hidden;
    position: absolute;
    transform: translate(-50%,-50%);
    background-color: white;
    border: solid 0rem rgba(5, 85, 138, 0.8);
    border-radius: 0rem;
    top:0%;
    left:0%;
    justify-content: center;
    align-items: center;
    z-index:8;
}
#src11{
    display: flex;
    width: 90%;
    height: auto;
}

#photo12{
    left: 37.3%;
    top: 45%;
    width:7%;
    height: 7%;
    position:absolute;
    z-index: 4;
    transform: translate(-50%,-50%);
}
#info_photo12{
    display: flex;
    width: 0rem;
    height: 0rem;
    overflow: hidden;
    position: absolute;
    transform: translate(-50%,-50%);
    background-color: white;
    border: solid 0rem rgba(5, 85, 138, 0.8);
    border-radius: 0rem;
    top:0%;
    left:0%;
    justify-content: center;
    align-items: center;
    z-index:8;
}
#src12{
    display: flex;
    width: 90%;
    height: auto;
}

#photo14{
    left: 60%;
    top: 22.2%;
    width:7%;
    height: 7%;
    position:absolute;
    z-index: 4;
    transform: translate(-50%,-50%);
}
#info_photo14{
    display: flex;
    width: 0rem;
    height: 0rem;
    overflow: hidden;
    position: absolute;
    transform: translate(-50%,-50%);
    background-color: white;
    border: solid 0rem rgba(5, 85, 138, 0.8);
    border-radius: 0rem;
    top:0%;
    left:0%;
    justify-content: center;
    align-items: center;
    z-index:8;
}
#src14{
    display: flex;
    width: auto;
    height: 90%;
}

 .info_text svg{
    width: 2rem;
    height: 2rem;
 }
.info_text_dessin{
    fill:transparent;
    stroke:#000000;
    stroke-width:10;
    stroke-linecap:round;
    stroke-dasharray:24, 24;
    stroke-dashoffset:0;
}

.info_text_titre{
    font-weight:bold;
    margin-left:0.5rem; 
    margin-right:0.5rem;
}

.info_text_text{
    display: flex;
    flex-direction: row;
    margin-left:0.5rem;
    margin-right: 0.5rem;
    width:100%;
    align-items: center;
}
.info_text_text p{
    margin-left:0.5rem;
    margin-right:1rem;
}

.info_text_text a{
    margin-left: 0.5rem;
    font-style: normal;
    text-decoration: none;
    font-weight: bold;
    color:black;
}

.info_text_text a:hover, .info_text_text a:focus{
    text-decoration: underline;
}

.info_text_text img{
    width: 2rem;
    height: 2rem;
}

.chemin_legende{
    fill:transparent;
    stroke:#000000;
    stroke-width:50;
    stroke-dasharray:15 20;
}
.GR_IDF{
    position:relative;
    pointer-events: stroke;
    z-index: 1;
    fill:transparent;
    stroke:#c09f0d;
    stroke-width:6;
}
.GR_655{
    position:relative;
    pointer-events: stroke;
    z-index: 1;
    fill:transparent;
    stroke:#06a6e6;
    stroke-width:6;
}
.GR_IDF_l{
    position:relative;
    pointer-events: stroke;
    z-index: 1;
    fill:transparent;
    stroke:#8f7609;
    stroke-width:0;
}
.GR_655_l{
    position:relative;
    pointer-events: stroke;
    z-index: 1;
    fill:transparent;
    stroke:#0583b4;
    stroke-width:0;
}
#legende_carte{
    width: 20%;
    height: auto;
    position: absolute;
    z-index: 2;
    background-color: rgb(167, 166, 166);
    border: 0.2rem solid gray ;
    border-radius:0.5rem;
    right: 0.5rem;
    top:0.5rem;
}

#legende_carte2{
    width: 0;
    height: 0;
    z-index: 2;
    background-color: rgb(167, 166, 166);
    border: 0 solid gray ;
    border-radius:0.5rem;
    right: 0.5rem;
    top:0.5rem;
    margin-top: 1rem;
    overflow: hidden;
}

#liste_des_elements_de_legende{
    display: flex;
    flex-direction: row;
    width: 95%;
}

.element_legende{
    display: flex;
    flex-direction: row;
    width:90%;
    margin:0.5rem;
    align-items: center;
}
.element_legende p{
    width: 80%;
    margin-left: 0.5rem;
}
#legende1{
    width:2rem;
    height: 2rem;
}
#legende_titre{
    font-size:1.5rem;
    color:black;
    margin-left:1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
#explication{
    display: flex;
    width:90%;
    font-size: 1.3rem;
    flex-direction: column;
    text-indent: 3rem;
}

#explication li{
    text-indent: 0rem;
}
#titre_partie{
    display: flex;
    width:100%;
    height: 4rem;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color:rgba(0, 91, 174, 1);
    font-size: 2rem;
}

#carte-zoom{
    display: flex;
    position: absolute;
    width: 2.5rem;
    height: 5rem;
    top:0.5rem;
    left:0.5rem;
    justify-content: space-between;
    flex-direction: column;
    z-index:3;
    align-items: center;
}

#zoom_plus{
    display: flex;
    width: 2rem;
    height: 2rem;
}

#zoom_moins{
    display: flex;
    width: 2rem;
    height: 2rem;
}

@media (min-width:1001px) and (max-width:1100px){
    #legende_carte{
        width:27%;
        height: auto;
    }
    #titre_partie p{
        text-align: center;
        margin:0.5rem;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }
}
 @media (min-width:701px) and (max-width:1000px){
    .chemin_cliquable1, .chemin_cliquable2, .chemin_cliquable3{
        stroke-width: 20;
    }
    .chemin_cliquable1, .chemin_cliquable2, .chemin_cliquable3{
        pointer-events: stroke;
    }
    .fondcarte, .carte svg{
        width:100%;
    }
    .map_container{
        width:95%;
        height: auto;
    }
    #legende_carte{
        width:0;
        height: 0;
        border: solid 0 ;
    }
    #legende_carte2{
        width:95%;
        height: auto;
        border: solid 0.2rem;
    }
    #titre_partie p{
        text-align: center;
        margin:0.5rem;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }
 } 
 
 @media (max-width:700px){
    .chemin_cliquable1, .chemin_cliquable2, .chemin_cliquable3{
        stroke-width: 20;
    }
    .chemin_cliquable1, .chemin_cliquable2, .chemin_cliquable3{
        pointer-events: stroke;
    }
    .fondcarte, .carte svg{
        width:100%;
    }
    .map_container{
        width:95%;
        height: auto;
    }
    #legende_carte{
        width:0;
        height: 0;
        border: solid 0;
        overflow: hidden;
    }
    #legende_carte2{
        display: flex;
        width:95%;
        height: auto;
        border: solid 0.2rem;
        flex-direction: column;
    }
    #liste1{
        display: flex;
        flex-direction: row;
    }
    #liste2{
        display: flex;
        flex-direction: row;
    }
    .element_legende{
        flex-direction: column;
    }
    #titre_partie p{
        text-align: center;
        margin:0.5rem;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }
    #explication{
        margin-top:2rem;
    }
 }

 /*__________FOOTER__________*/

.footer{
    display: flex;
    background-color: rgba(8, 129, 209, 0.6);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer_content1{
    display:flex;
    width: 50%;
    margin-left: 1rem;
    flex-direction: column;
    
}

.footer_content2{
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: end;
    margin-right: 2rem;
    justify-content: right;
    
}

.footer_ligne{
    display: flex;
    align-items: center;
    margin: 0.5rem;
}

.footer_ligne img{
    display: inline-flex;
    width: 1.5rem;
    height : auto;
}

.footer_ligne p{
    display: inline-flex;
    margin: 0;
}

.footer_content2 img{
    width: 7rem;
    height: auto;
}

@media (max-width:900px){
    .footer{
        flex-direction: column;
        align-items: normal;
    }
    .footer_ligne{
        width: 90%;
    }
    .footer_content1{
        width:90%;
    }
    .footer_content2{
        width:100%;
        align-items: center;
        margin-bottom: 4rem;
        margin-top:1rem;
    }
}