/*-----------------------------------------------------------------------------------------------------------
-----------------------------------------------Top section---------------------------------------------------
-------------------------------------------------------------------------------------------------------------*/

#homeContainer .top-section{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-image: url(../../media/images/top-section-image-2.webp);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: calc(100vh - 6em + 5em);
    position: relative;
    color: white;
    padding-bottom: 5em;
}

#homeContainer .top-section::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    /* background: #3a3a3ae3; */
    background: linear-gradient(45deg, #000000a6, #959595);
}



/*Contenu de la section principale
-------------------------------------------------------------------------------------------------------------*/

#homeContainer .top-section>.content{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-grow: 1;
}


#homeContainer .top-section .left-part, 
#homeContainer .top-section .middle-part,
#homeContainer .top-section .right-part{
    z-index: 2;
    height: 100%;
}






#homeContainer .top-section .left-part{
    display: none;
}


#homeContainer .top-section .left-part .title-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}


#homeContainer .top-section .left-part .title-container .logo-container{
    width: 10em;
    height: 10em;
    padding: 0.5em;
    text-align: center;
}

#homeContainer .top-section .left-part .title-container .logo-container .logo-link{
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
}

#homeContainer .top-section .left-part .title-container .logo-container .logo-svg{
    height: 100%;
}

#homeContainer .top-section .left-part .title-container .logo-container .logo-svg path{
    fill: none;
    stroke: white;
    stroke-width: 6px;
    stroke-linecap: round;
    filter: url(#logoShadow);
}

#homeContainer .top-section .left-part .title-container .logo-container .logo-svg path:first-of-type{
    stroke: url(#gradMainLogo);
}

#homeContainer .top-section .left-part .title-container .logo-container .logo-svg path:nth-of-type(2){
    stroke: url(#gradMainLogoReverse);
}


#homeContainer .top-section .left-part .title-container .logo-container .logo-svg circle{
    stroke: none;
    fill: url(#gradMainLogo);
    filter: url(#logoShadow);
    -webkit-filter: url(#logoShadow);
}






#homeContainer .top-section .left-part .site-name-container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}


#homeContainer .top-section .left-part .site-name-container .site-name{
    font-size: 3em;
    text-transform: uppercase;
    font-weight: normal;
    color: #b2b2b2;
}

#homeContainer .top-section .left-part .site-name-container .site-slogan{
    margin-top: -1em;
    color: white;
    font-size: 1.5em;
}








#homeContainer .top-section .middle-part{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding-left: 2em;
}


#homeContainer .top-section .middle-part .main{
    font-size: 2.5em;
    margin-bottom: 2em;
    margin-top: auto;
    font-weight: bold;
    padding-right: 2em;
}

#homeContainer .top-section .middle-part .sub{
    font-size: 1em;
    padding-right: 2em;
}


#homeContainer .top-section .middle-part .sub .first{
    margin-bottom: 2em;
    letter-spacing: 0.05em;
    line-height: 1.5em;
}

#homeContainer .top-section .middle-part .sub .second{
    letter-spacing: 0.05em;
    line-height: 1.5em;
}




#homeContainer .top-section .middle-part .bottom{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: auto;
    margin-top: auto;
}



#homeContainer .top-section .middle-part .contact-link{
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0.5em 1em;
    background: rgba(255, 255, 255, 0.223);
    color: white;
    font-size: 1.25em;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

#homeContainer .top-section .middle-part .contact-link:hover{
    padding: 0.5em 1.5em;
}


#homeContainer .top-section .middle-part .contact-link .icon{
    opacity: 0;
    transform: translateX(-20px);
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
    color: white;
    margin-left: -0.25em;
}

#homeContainer .top-section .middle-part .contact-link:hover .icon{
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    margin-left: 1em;
}




#homeContainer .top-section .services{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    list-style: none;
    width: 100%;
    padding: 1em;
    margin-top: auto;
    z-index: 2;
}


#homeContainer .top-section .services>li{
    padding: 0.5em;
    width: 12em;
    margin: 1em auto;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9em;
}




/*Media queries pour le contenu de la section principale
-------------------------------------------------------------------------------------------------------------*/




@media screen and (min-width:900px) {
    
    #homeContainer .top-section .left-part{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 35%;
    }

    #homeContainer .top-section .middle-part{
        width: 65%;
    }

}


@media screen and (min-width:1200px) {

    #homeContainer .top-section .middle-part .bottom{
        margin-bottom: 4em;
    }
    

}









/*-----------------------------------------------------------------------------------------------------------
----------------------------------------------Section équipe-------------------------------------------------
-------------------------------------------------------------------------------------------------------------*/

#equipe{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


#equipe .left-part{
    width: 100%;
    padding: 5em 2em;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#equipe .left-part .title-container{
    font-size: 2em;
    margin-bottom: 2em;
}

#equipe .left-part .content{
    line-height: 1.5em;
    letter-spacing: 0.05em;
    font-size: 1.2em;
}


#equipe .right-part{
    width: 100%;
    padding: 2em 0;
    align-self: stretch;
    background: url(../../media/images/foule-jour.webp);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

#equipe .right-part::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #00000066;
}

#equipe .right-part img{
    opacity: 0;
    width: 15em;
    margin: 1em;
    z-index: 2;
    transition: 2s all;
    -webkit-transition: 2s all;
    -moz-transition: 2s all;
    -ms-transition: 2s all;
    -o-transition: 2s all;
}

#equipe .right-part img.image-1{
    transform: translateX(10em) translateY(-30%);
    -webkit-transform: translateX(10em) translateY(-30%);
    -moz-transform: translateX(10em) translateY(-30%);
    -ms-transform: translateX(10em) translateY(-30%);
    -o-transform: translateX(10em) translateY(-30%);
}

#equipe .right-part img.image-2{
    transform: translateX(-10em) translateY(30%);
    -webkit-transform: translateX(-10em) translateY(30%);
    -moz-transform: translateX(-10em) translateY(30%);
    -ms-transform: translateX(-10em) translateY(30%);
    -o-transform: translateX(-10em) translateY(30%);
}

#equipe .right-part img.image-3{
    position: absolute;
    right: 0;
    z-index: 1;
    transform: translateY(10em);
    -webkit-transform: translateY(10em);
    -moz-transform: translateY(10em);
    -ms-transform: translateY(10em);
    -o-transform: translateY(10em);
}

#equipe .right-part img.image-1.anim{
    opacity: 1;
    transform: translateX(-50px) translateY(-30%);
    -webkit-transform: translateX(-50px) translateY(-30%);
    -moz-transform: translateX(-50px) translateY(-30%);
    -ms-transform: translateX(-50px) translateY(-30%);
    -o-transform: translateX(-50px) translateY(-30%);
}

#equipe .right-part img.image-2.anim{
    opacity: 1;
    transform: translateX(-50px) translateY(30%);
    -webkit-transform: translateX(-50px) translateY(30%);
    -moz-transform: translateX(-50px) translateY(30%);
    -ms-transform: translateX(-50px) translateY(30%);
    -o-transform: translateX(-50px) translateY(30%);
}

#equipe .right-part img.image-3.anim{
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
}




@media screen and (min-width:1000px) {
    
    #equipe{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        height: calc(100vh - 3em);
    }

    #equipe .left-part{
        width: 50%;
        padding: 2em;
        align-self: stretch;
        padding-right: 70px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    #equipe .right-part{
        width: 50%;
        padding: 2em 0;
        align-self: stretch;
        background-position: center;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        position: relative;
    }

    #equipe .right-part img{
        width: 25em;
        transition: 1s all linear;
        margin: 1em;
        z-index: 2;
        -webkit-transition: 1s all linear;
        -moz-transition: 1s all linear;
        -ms-transition: 1s all linear;
        -o-transition: 1s all linear;
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        opacity: 0;
}

    #equipe .right-part img.image-1{
        transform: translateX(10em) translateY(-40%);
        -webkit-transform: translateX(10em) translateY(-40%);
        -moz-transform: translateX(10em) translateY(-40%);
        -ms-transform: translateX(10em) translateY(-40%);
        -o-transform: translateX(10em) translateY(-40%);
}

    #equipe .right-part img.image-2{
        transform: translateX(-10em) translateY(40%);
        -webkit-transform: translateX(-10em) translateY(40%);
        -moz-transform: translateX(-10em) translateY(40%);
        -ms-transform: translateX(-10em) translateY(40%);
        -o-transform: translateX(-10em) translateY(40%);
}

    #equipe .right-part img.image-3{
        position: absolute;
        right: 0;
        z-index: 1;
        transform: translateY(10em);
        -webkit-transform: translateY(10em);
        -moz-transform: translateY(10em);
        -ms-transform: translateY(10em);
        -o-transform: translateY(10em);
    }

    #equipe .right-part img.image-1.anim{
        opacity: 1;
        transform: translateX(-50px) translateY(-40%);
        -webkit-transform: translateX(-50px) translateY(-40%);
        -moz-transform: translateX(-50px) translateY(-40%);
        -ms-transform: translateX(-50px) translateY(-40%);
        -o-transform: translateX(-50px) translateY(-40%);
}

    #equipe .right-part img.image-2.anim{
        opacity: 1;
        transform: translateX(-50px) translateY(40%);
        -webkit-transform: translateX(-50px) translateY(40%);
        -moz-transform: translateX(-50px) translateY(40%);
        -ms-transform: translateX(-50px) translateY(40%);
        -o-transform: translateX(-50px) translateY(40%);
}

    #equipe .right-part img.image-3.anim{
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
}

}












/*-----------------------------------------------------------------------------------------------------------
---------------------------------------------Services section------------------------------------------------
-------------------------------------------------------------------------------------------------------------*/


#services{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 2em;
}


#services>.title-container{
    margin: auto;
    width: 90%;
    padding: 2em;
    text-align: center;
    background-color: #3b3b3bba;
    color: white;
    z-index: 2;
    backdrop-filter: blur(2px);
}

#services>.title-container .title{
    font-size: 2em;
}


#services .services-container{
    width: 100%;
    max-width: 80em;
    overflow: scroll;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin: auto;
}
#services .services-container::-webkit-scrollbar{
    display: none;
}

#services .services-container .service{
    min-width: 20em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: 0px 0px 10px silver;
    padding: 2em;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin: 1.5em;
}


#services .services-container .service .title-container{
    width: 100%;
    padding-bottom: 1em;
    border-bottom: 4px solid #5c5c5c;
    margin-bottom: 1em;
}

#services .services-container .service .title-container .title{
    font-size: 1.25em;
}

#services .services-container .service .title-container .title>small{
    font-size: 0.75em;
}


#services .services-container .service .liste-service{
    list-style: circle;
}


#services .services-container .service .liste-service>li{
    padding: 0.5em 0;
}




.mention-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    /* margin-top: 5em; */
    width: 100%;
    background: #424242;
    /* background: linear-gradient(180deg, #bebebe, #5e5f61); */
}

.mention-container .mention{
    /* width: 20em;
    height: 20em; */
    width: 25em;
    height: 15em;
    padding: 1em;
    margin: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    /* border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%; */
    /* box-shadow: 15px 15px 22px -10px #646464, inset 20px 20px 20px -10px #8d8d8d; */
    position: relative;
    overflow: hidden;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transition: all 1s linear;
    -webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -ms-transition: all 1s linear;
    -o-transition: all 1s linear;
}

.mention-container .mention.appear{
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.mention-container .mention::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #24242487;
    z-index: 1;
}



.mention-container .mention>p{
    font-size: 1.25em;
    text-align: center;
    line-height: 2em;
    z-index: 2;
    font-weight: bold;
}


.mention-container .mention.rdv{
    background: url(../../media/images/1er-rdv.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.mention-container .mention.justice{
    background: url(../../media/images/image-justice.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



@media screen and (min-width:1200px) {

    #services>.title-container{
        padding: 2em 15vw;
    }

    #services .services-container{
        padding-left: 0;
    }

    #services .services-container .service{
        min-width: 20em;
        max-width: 20em;
        margin: 2em auto;
    }

}









/*-----------------------------------------------------------------------------------------------------------
---------------------------------------------Section secteurs------------------------------------------------
-------------------------------------------------------------------------------------------------------------*/


#secteurs{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

#secteurs .title-container{
    padding: 5em 0;
    width: 100%;
    text-align: center;
    box-shadow: 0px 3px 15px -4px silver;
}

#secteurs .title-container .title{
    width: 100%;
    text-align: center;
    font-size: 3em;
    text-transform: uppercase;
    color: #c2972b;
    font-weight: normal;
}


#secteurs .content-container{
    width: 40em;
    max-width: 90vw;
    margin: 8em auto;
}

#secteurs .content-container .content{
    text-align: center;
    font-size: 1.5em;
    letter-spacing: 0.025em;
    line-height: 2em;
}










/*-----------------------------------------------------------------------------------------------------------
---------------------------------------------Section process-------------------------------------------------
-------------------------------------------------------------------------------------------------------------*/


#process{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 2em;
}



#process .title-container{
    height: calc(50vh - 3em);
    background: url(../../media/images/process-image.webp);
    background-position: center;
    background-size: cover;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#process .title-container::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #0000008f;
    z-index: 1;
    background: linear-gradient(45deg, transparent, #000000ad);
}


#process .title-container .title{
    font-size: 4em;
    color: white;
    width: 30rem;
    text-align: right;
    padding-right: 5%;
    z-index: 2;
    font-weight: normal;
    text-transform: uppercase;
}


#process .content-container{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

#process .process{
    width: 90%;
    min-width: 25em;
    max-width: 50em;
    padding: 2em;
    /* background-color: #010101d4; */
    background: linear-gradient(45deg, #005f98a6, #000000b3);
    border-radius: 10px;
    color: white;
    margin: 1em 2em;
    opacity: 0;
    transition: 1s all linear;
    -webkit-transition: 1s all linear;
    -moz-transition: 1s all linear;
    -ms-transition: 1s all linear;
    -o-transition: 1s all linear;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

#process .process.appear{
    opacity: 1;
}


#process .process .number{
    width: 2em;
    height: 2em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin: auto;
    margin-bottom: 2rem;
    font-size: 2.5em;
    font-weight: bold;
    border-bottom: 2px solid;
}

#process .process .description{
    font-size: 1.15em;
    letter-spacing: 0.05em;
    margin: 1em 0;
    padding-left: 1rem;
    border-left: 2px solid white;
}





@media screen and (min-width:1000px) {

    #process{
        margin-bottom: -50em;
    }

    #process .content-container{
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #process .process{
        width: 55%;
        max-width: 40em;
        padding: 2em;
        color: white;
        margin: 2em;
        border-radius: 10px;
        backdrop-filter: blur(6px);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }



    #process .process-1{
        /*align-self: flex-start;
        */z-index: 6;
        position: relative;
        transform: translate(-100%, -15em);
        -webkit-transform: translate(-100%, -15em);
        -moz-transform: translate(-100%, -15em);
        -ms-transform: translate(-100%, -15em);
        -o-transform: translate(-100%, -15em);
}

    #process .process-1.appear{
        transform: translate(-40%, -15em);
        -webkit-transform: translate(-40%, -15em);
        -moz-transform: translate(-40%, -15em);
        -ms-transform: translate(-40%, -15em);
        -o-transform: translate(-40%, -15em);
}
    
    #process .process-2{
        /*align-self: flex-end;
        */z-index: 5;
        position: relative;
        transform: translate(100%, -25em);
        -webkit-transform: translate(100%, -25em);
        -moz-transform: translate(100%, -25em);
        -ms-transform: translate(100%, -25em);
        -o-transform: translate(100%, -25em);
}  

    #process .process-2.appear{
        transform: translate(40%, -25em);
        -webkit-transform: translate(40%, -25em);
        -moz-transform: translate(40%, -25em);
        -ms-transform: translate(40%, -25em);
        -o-transform: translate(40%, -25em);
}  
    
    #process .process-3{
        /*align-self: flex-start;
        */z-index: 4;
        position: relative;
        transform: translate(-100%, -35em);
        -webkit-transform: translate(-100%, -35em);
        -moz-transform: translate(-100%, -35em);
        -ms-transform: translate(-100%, -35em);
        -o-transform: translate(-100%, -35em);
} 

    #process .process-3.appear{
        transform: translate(-40%, -35em);
        -webkit-transform: translate(-40%, -35em);
        -moz-transform: translate(-40%, -35em);
        -ms-transform: translate(-40%, -35em);
        -o-transform: translate(-40%, -35em);
}  
    
    #process .process-4{
        /*align-self: flex-end;
        */z-index: 3;
        position: relative;
        transform: translate(100%, -45em);
        -webkit-transform: translate(100%, -45em);
        -moz-transform: translate(100%, -45em);
        -ms-transform: translate(100%, -45em);
        -o-transform: translate(100%, -45em);
}

    #process .process-4.appear{
        transform: translate(40%, -45em);
        -webkit-transform: translate(40%, -45em);
        -moz-transform: translate(40%, -45em);
        -ms-transform: translate(40%, -45em);
        -o-transform: translate(40%, -45em);
}  

}






/*-----------------------------------------------------------------------------------------------------------
---------------------------------------------Section à propos------------------------------------------------
-------------------------------------------------------------------------------------------------------------*/


#aPropos{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 3;
    margin-top: 5em;
}

#aPropos .title-container{
    background: url(../../media/images/foule-nuit.webp);
    background-position: center;
    background-size: cover;
    width: 100%;
    min-height: 10em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#aPropos .title-container::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #0000008f;
    z-index: 1;
    /* background: linear-gradient(45deg, transparent, #000000ad); */
    background-color: #4242429e;
}

#aPropos .title-container .title{
    color: white;
    font-size: 3em;
    font-weight: normal;
    text-transform: uppercase;
    z-index: 2;
    padding: 0 2rem;
}

#aPropos .content-container{
    width: 100%;
    align-self: stretch;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3em;
}

#aPropos .content-container .content{
    font-size: 1.5em;
    line-height: 1.5em;
    letter-spacing: 0.05em;
}



@media screen and (min-width:1000px) {
    
    #aPropos{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 50vh;
        height: 50vh;
        position: relative;
        z-index: 3;
    }

    #aPropos .title-container{
        width: 50%;
        height: 100%;
    }

    #aPropos .title-container{
        width: 50%;
    }

}






/*-----------------------------------------------------------------------------------------------------------
---------------------------------------------Section contact-------------------------------------------------
-------------------------------------------------------------------------------------------------------------*/


#contact{
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5em;
    margin-bottom: 5em;
}

#contact .contact-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    min-width: 25em;
    max-width: 60em;
    box-shadow: 0px 0px 10px silver;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


#contact .contact-form .title{
    margin: 1em 0;
    font-size: 2em;
    font-weight: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

#contact .contact-form .inputs-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
}


#contact .contact-form .inputs-container .section-form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 1em auto;
    padding: 0 2em;
}

#contact .contact-form .inputs-container .section-form label{
    font-size: 1.2em;
    padding-bottom: 0.5em;
    opacity: 0;
    transform: translateY(2em);
    -webkit-transform: translateY(2em);
    -moz-transform: translateY(2em);
    -ms-transform: translateY(2em);
    -o-transform: translateY(2em);
    transition: 0s all;
    -webkit-transition: 0s all;
    -moz-transition: 0s all;
    -ms-transition: 0s all;
    -o-transition: 0s all;
}

#contact .contact-form .inputs-container .section-form label.appear{
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
}

#contact .contact-form .inputs-container .section-form input,
#contact .contact-form .inputs-container .section-form textarea{
    width: 100%;
    padding: 0.7em;
    border: 1px solid #b4b4b4;
    font-size: 1.25em;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

#contact .contact-form .inputs-container .section-form textarea{
    height: 10em;
}


#contact .contact-form button{
    margin: 2em auto;
    width: 74%;
    padding: 0.5em 1em;
    background-color: #363636;
    font-size: 1.25em;
    color: white;
    border: none;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    cursor: pointer;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
}

#contact .contact-form button:hover{
    background-color: #131313;
}


#contact .phone-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2em 0;
}

#contact .phone-container>.title{
    width: 100%;
    font-size: 2em;
    text-transform: uppercase;
    /* font-weight: normal; */
    text-align: center;
    margin-bottom: 2em;
    margin-top: 2em;
}

#contact .phone-container .detail-phone{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

#contact .phone-container .detail-phone .phone{
    width: 50%;
    min-width: 25em;
    padding: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#contact .phone-container .detail-phone .phone>.title{
    font-size: 1.7em;
    margin-bottom: 1em;
    font-weight: normal;
    padding: 0.5em;
    border-bottom: 1px solid silver;
}

#contact .phone-container .detail-phone .phone>a{
    padding: 0.5em;
    font-size: 1.5em;
}





@media screen and (min-width:800px) {
    
    #contact .contact-form .inputs-container .section-form{
        width: 80%;
    }

}







/*-----------------------------------------------------------------------------------------------------------
---------------------------------------------Mentions légales-------------------------------------------------
-------------------------------------------------------------------------------------------------------------*/


#legal-notice{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

#legal-notice .title-container{
    width: 80%;
    min-width: 25em;
    max-width: 60em;
    background: linear-gradient(45deg, #323232, #959595);
    padding: 2em;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transition: 1s all;
    -webkit-transition: 1s all;
    -moz-transition: 1s all;
    -ms-transition: 1s all;
    -o-transition: 1s all;
}

#legal-notice .title-container.appear{
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

#legal-notice .title-container .title{
    color: white;
    font-size: 2em;
    font-weight: normal;
}


#legal-notice .content-container{
    width: 80%;
    max-width: 60em;
    min-width: 25em;
    margin: auto;
}

#legal-notice .content-container .content{
    font-size: 1.25em;
    text-align: center;
    line-height: 1.75em;
    letter-spacing: 0.05em;
    margin: 2em 0;
    padding: 1em;
}