@media all and (min-width: 1530px) {

    html {
        scroll-behavior: smooth;
        font-family: 'Roboto', sans-serif;
    }

    body{
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        color: #1A1A24;
        background: #F7F7F9;
    }

    #conteneur{
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #intro{
        width: 100vw;
        height: 100vh;
        background: url('../img/background001.jpg') no-repeat #1A1A24;
        background-size: cover;
        background-position: center;
    }

    video {
        object-fit: cover;
        object-position: center;
        width: 100vw;
        height: 100%;
        top: 0;
        left: 0;
        z-index:0;
    }

    #backgroundIntro{
        position: absolute;
        top: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: black;
        opacity: 0.5;
        z-index: 1;
    }

    #logo{
        position: absolute;
        z-index: 2;
        top: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #logo img{
        margin-left: 50px;
    }

    .chevron{
        position: absolute;
        left: 50vw;
        bottom: 50px;
        color: white;
        animation-name: chevron;
        animation-duration: 0.9s;
        animation-iteration-count: infinite;
    }

    @keyframes chevron{
        0%{
            opacity: 0;
        }

        50%{
            opacity: 1;
        }

        100%{
            opacity: 0;
        }
    }

    #introResponsive{
        display: none;
    }

    #backgroundIntroResponsive{
        display: none;
    }

    #logoResponsive{
        display: none;
    }

    #menuResponsive{
        display: none;
    }
    
    #menu{
        position: sticky;
        position: -webkit-sticky;
        top: 0; 
        display: flex;
        justify-content: space-around;
        z-index: 3;
        width: 100vw;
        height: 100px;
        background: #F1F1F1;
        box-shadow: 0 10px 20px 0px rgba(192,192,193,0.75);
        -webkit-box-shadow: 0 10px 20px 0px rgba(192,192,193,0.75);
        -moz-box-shadow: 0 10px 20px 0px rgba(192,192,193,0.75);
        animation-name: afficheMenu;
        animation-duration: 0.5s;
    }

    @keyframes afficheMenu{
        0%{
            opacity: 0;
        }

        100%{
            opacity: 1;
        }
    }

    #conteneurMenu{
        width: 1600px;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        padding-right: 25px;
    }

    #logoMenu{
        width: 25%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        margin-left: 50px;
        font-size: 2em;
        font-weight: lighter;
        background: linear-gradient(120deg,#BACDD3 0%,#225670 100%);
        background-clip: border-box;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    #logoMenu a{
        text-decoration: none;
    }

    #menuTxt{
        width: 75%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
    }

    #menuTxt ul li{
        padding: 15px;
        margin-left: 50px;
        display: inline;
    }

    #menuTxt ul li a{
        padding: 15px;
        font-size: 1em;
        font-weight: lighter;
        text-decoration: none;
        color: #1A1A24;
    }

    #menuTxt ul li:hover > a{
        background: #033B5C;
        border-radius: 5px;
        color: white;
    }

    #presentation{
        padding-top:100px;
        width: 1540px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-self: center;
        background: #F7F7F9;
    }

    #presentation01{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    #presentation02{
        margin-top: 25px;
        width: 100%;
        display: flex;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    #txtPresentation01{
        width: 50%;
    }

    #txtPresentation02{
        width: 50%; 
    }

    #imgPresentation01{
        margin: 25px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 500px;
        height: 300px;
        box-shadow: 25px 20px 0px 0px #033B5C;
        -webkit-box-shadow: 25px 20px 0px 0px #033B5C;
        -moz-box-shadow: 25px 20px 0px 0px #033B5C;
    }

    #imgPresentation02{
        margin: 25px;
        width: 500px;
        height: 300px;
        box-shadow: -20px 20px 0 0 #033B5C;
        -webkit-box-shadow: -20px 20px 0 0 #033B5C;
        -moz-box-shadow: -20px 20px 0 1 #033B5C;
    }

    .imgPresentation{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .imgPresentation2{
        width: 500px;
        height: 300px;
        object-fit: cover;
        object-position: center;
    }

    .imgPresentation:hover, .imgPresentation2:hover {
        opacity: 1;
        -webkit-animation: flash 1.5s;
        animation: flash 1.5s;
    }
    @-webkit-keyframes flash {
        0% {
            opacity: .4;
        }
        100% {
            opacity: 1;
        }
    }
    @keyframes flash {
        0% {
            opacity: .4;
        }
        100% {
            opacity: 1;
        }
    }

    .txtPresentation{
        color: #1A1A24;
    }

    .titrePresentation{
        font-size: 1.5em;
        color: #033B5C;
        font-weight: bold;
    }

    .txtPresentation{
        font-weight: lighter;
        text-align: justify;
    }

    .txtPresentation a{
        text-decoration: none;
        color: #033B5C;
        font-weight: bolder;
    }

    .txtPresentation li{
        margin-left: -50px;
    }

    .boutonDevis{
        width: 100%;
        height: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: #1A1A24;
        color: white;
        border-radius: 10px;
        font-weight: bold;
    }

    .boutonDevis a{
        color: white;
        text-decoration: none;
    }

    .boutonDevis:hover{
        cursor: pointer;
        background: #033B5C;
        color: white;
    }

    #services{
        width: 100vw;
        min-height: 100vh;
        height: 100%;
        background: #1A1A24;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    #titreService{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-self: center;
        max-width: 1550px;
    }

    .titreServices{
        position: relative;
        margin-top: 125px;
        left: 10vh;
        text-transform: uppercase;
        color: white;
        font-size: 1.75em;
        font-weight: bold;
    }

    #carrousel{
        width: 1400px;
        min-height: 60vh;
        background: white;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-self: center;
    }

    #gauche, #droite{
        width: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #centre{
        width: 1200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #titreService{
        width: 100%;
        margin-bottom: 10px;
        color: #1A1A24;
        font-size: 1.5em;
    }

    #imgDescriptionService{
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-self: flex-start;
    }

    #imgService{
        width: 500px;
        height: 300px;
        background-size: cover;
        background-position: center;
    }

    
    .imgService{
        width: 500px;
        height: 300px;
        background-size: cover;
        background-position: center;
    }

    #descriptionService{
        width: 100%;
        text-align: justify;
        padding: 25px;
        font-weight: lighter;
    }

    #service01{
        display: flex;
        width: 1200px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        animation-name: afficheMenu;
        animation-duration: 0.5s;
    }

    #service02{
        display: none;
        width: 1200px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        animation-name: afficheMenu;
        animation-duration: 0.5s;
    }

    #service03{
        display: none;
        width: 1200px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        animation-name: afficheMenu;
        animation-duration: 0.5s;
    }

    #flecheGauche, #flecheDroite{
        cursor:pointer;
    }

    #boutonsSlider{
        margin-top: 25px;
        width: 100vw;
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 25px;
    }

    #bouton1{
        width: 25px;
        height: 25px;
        background: #033B5C;
        border-radius: 50%;
    }

    #bouton2{
        margin-left: 10px;
        width: 25px;
        height: 25px;
        background: white;
        border-radius: 50%;
    }

    #bouton3{
        margin-left: 10px;
        width: 25px;
        height: 25px;
        background: white;
        border-radius: 50%;
    }

    #contact{
        width: 100vw;;
        min-height: 100vh;
        background: #F1F1F1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    #titreContact{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        max-width: 1550px;
    }

    #titreContactezMoi{
        margin-top: 125px;
        margin-bottom: 25px;
        margin-left: 25px;
        width: 1600px;
        text-transform: uppercase;
        color: #151515;
        font-size: 1.5em;
        font-weight: bolder;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    #carte{
        width: 1500px;
    }

    #coordonnees{
        width: 1500px;
        display: flex;
        flex-direction: row;
    }

    #infos{
        margin-top: 25px;
        width: 60%;
    }

    #cadreAdresse{
        display: flex;
        flex-direction: row;
        margin: 5px
    }

    #adresse{
        margin-left: 5px;
        height: 75px;
    }

    #iconeAdresse{
        width: 75px;
        height: 75px;
        background: #222529;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .logoFA{
        color: white;
    }

    .styleTitreInfo{
        font-weight: bold;
        font-size: 1.5em;
        margin: 2px 0;
    }

    #cadreTelephone{
        display: flex;
        flex-direction: row;
        margin: 5px
    }

    #telephone{
        margin: 5px;
        height: 75px;
    }

    #iconeTelephone{
        width: 75px;
        height: 75px;
        background: #222529;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #cadreEmail{
        display: flex;
        flex-direction: row;
        margin: 5px
    }

    #emailInfo{
        margin: 5px;
        height: 75px;
    }

    #iconeEmail{
        width: 75px;
        height: 75px;
        background: #222529;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #formulaire{
        width: 40%;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    form{
        width: 400px;
        display: flex;
        flex-direction: column;
    }

    input {
        width: 100%;
        height: 25px;
        border-radius: 5px;
        background: #F1F1F1;
        border: 1px solid #B4B4B5;
    }

    select{
        width: 405px;
        border-radius: 5px;
        height: 30px;
        background: #F1F1F1;
        border: 1px solid #B4B4B5;
    }

    textarea{
        width: 400px;
        height: 75px;
        border-radius: 5px;
        background: #F1F1F1;
        border: 1px solid #B4B4B5;
    }

    #nom{
        margin-bottom: 10px;
    }

    #prenom{
        margin-bottom: 5px;
    }

    #email{
        margin-left: 0;
        height: 25px;
        margin-bottom: 10px;
    }

    #inputTelephone{
        margin-left: 0;
        height: 25px;
        margin-bottom: 10px;
    }

    #preference{
        margin-bottom: 10px;
    }

    #message{
        margin-bottom: 10px;
    }

    #boutonEnvoyez{
        width: 200px;
        height: 40px;
        background:#151515;
        color: #A2A2A2;
        text-align: center;
        border-radius: 5px;
        border: none;
    }

    #check1, #check2{
        display: flex;
        flex-direction: row;
        margin-bottom: 10px;
    }

    #conditionsGenerales{
        width: 15px;
        height: 15px;
    }

    #autorisation{
        width: 20px;
        height: 20px;
    }

    label[for=conditionsGenerales]
    {
        font-size: 0.75em;
    }

    label[for=conditionsGenerales] a{
        color: #151515;
    }

    label[for=autorisation]
    {
            font-size: 0.75em;
    }

    #boutonEnvoyez:hover{
        background: #033B5C;
        color: white;
        cursor: pointer;
    }

    #footer{
        width: 100vw;
        background: #1D1D1D;
        color: #FFFFFF;
        display: flex;
        flex-direction: row;
    }

    #footerTxt{
        width: 90%;
        text-align: center;
        font-size: 1em;
        font-weight: lighter;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .ebdf{
        font-size: 1.25em;
        text-transform: uppercase;
        font-weight: bold;
    }

    .ebdf:hover{
        opacity: 0.5;
        cursor: pointer;
    }

    #logoFB{
        width: 10%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #logoFB a{
        color: white;
    }

    #logoFB a:hover{
        opacity: 0.5;
    }

    #footer2{
        width: 100vw;
        height: 25px;
        background: #232323;
    }

    #popup{
        width: 100vw;
        height: 100vh;
        position: absolute;
        top: 0;
        z-index: 10;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: black;
        color: white;
    }

    .msgEmail{
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .retourSite{
        margin-top: 25px;
        width: 125px;
        height: 50px;
        background: white;
        color: black;
        border: none;
    }

    .surRdv{
        color: red;
        margin-bottom: 10px;
        font-weight: bolder;
    }

    .gaelle{
        font-size: 1em;
        font-weight: bolder;
        margin-top: -15px;
        margin-bottom: 10px;
    }

}

@media all and (max-width: 1529px){

    html {
        scroll-behavior: smooth;
        font-family: 'Roboto', sans-serif;
        overflow-x: hidden;
    }

    body{
        margin: 0;
        padding: 0;
        color: #1A1A24;
    }

    #popup{
        width: 100vw;
        height: 100vh;
        padding: 25px;
        position: absolute;
        top: 0;
        z-index: 10;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: black;
        color: white;
    }

    .msgEmail{
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .retourSite{
        margin-top: 25px;
        width: 125px;
        height: 50px;
        background: white;
        color: black;
        border: none;
    }

    #conteneur{
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #intro{
        display: none;
    }

    #backgroundIntro{
        display: none;
    }

    #logo{
        display:none;
    }

    #introResponsive{
        width: 100vw;
        height: 100vh;
        background: url("../img/background001.jpg");
        background-size: cover;
        background-position: center;
    }

    #backgroundIntroResponsive{
        position: absolute;
        top: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: black;
        opacity: 0.5;
        z-index: 1;
    }

    #logoResponsive{
        width: 100vw;
        height: 100vh;
        z-index: 5;
        position: absolute;
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #logoResponsive img{
        max-width: 70vw;
        max-height: 50vh;
        margin-bottom: 50px;
    }

    @keyframes chevron{
        0%{
            opacity: 0;
        }

        50%{
            opacity: 1;
        }

        100%{
            opacity: 0;
        }
    }

    #menu{
        display: none;
    }

    #conteneurMenu{
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
      
    .flex-center {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    * {
        box-sizing: border-box;
        font-family: "Open Sans", sans-serif;
        font-weight: 300;
    }
    a,
    a:visited,
    a:hover,
    a:active {
        color: inherit;
        text-decoration: none;
    }

    .outer-menu {
        position: fixed;
        top: 25px;
        left: 25px;
        z-index: 5;
    }

    .outer-menu .checkbox-toggle {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        cursor: pointer;
        width: 60px;
        height: 60px;
        opacity: 0;
    }

    .outer-menu .checkbox-toggle:checked + .hamburger > div {
        transform: rotate(135deg);
    }
    
    .outer-menu .checkbox-toggle:checked + .hamburger > div:before,
    .outer-menu .checkbox-toggle:checked + .hamburger > div:after {
        top: 0;
        transform: rotate(90deg);
    }
      
    .outer-menu .checkbox-toggle:checked + .hamburger > div:after {
        opacity: 0;
    }
    
    .outer-menu .checkbox-toggle:checked ~ .menu {
        pointer-events: auto;
        visibility: visible;
    }
    
    .outer-menu .checkbox-toggle:checked ~ .menu > div {
        transform: scale(1);
        transition-duration: 0.75s;
    }
    
    .outer-menu .checkbox-toggle:checked ~ .menu > div > div {
        opacity: 1;
        transition: opacity 0.4s ease 0.4s;
    }
    
    .outer-menu .checkbox-toggle:hover + .hamburger {
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
        transform: rotate(225deg);
    }
      
    .outer-menu .hamburger {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 60px;
        height: 60px;
        padding: 0.5em 1em;
        background: #1A1A24;
        cursor: pointer;
        transition: box-shadow 0.4s ease;
        -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .outer-menu .hamburger > div {
        position: relative;
        flex: none;
        width: 100%;
        height: 2px;
        background: #fefefe;
        transition: all 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .outer-menu .hamburger > div:before,
    .outer-menu .hamburger > div:after {
        content: "";
        position: absolute;
        z-index: 1;
        top: -10px;
        left: 0;
        width: 100%;
        height: 2px;
        background: inherit;
        transition: all 0.4s ease;
    }
    
    .outer-menu .hamburger > div:after {
        top: 10px;
    }
    
    .outer-menu .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        visibility: hidden;
        overflow: hidden;
        -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
        outline: 1px solid transparent;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .outer-menu .menu > div {
        position: absolute;
        left: -50vw;
        top: -50vh;
        width: 200vw;
        height: 200vh;
        border-radius: 50%;
        color: #fefefe;
        background: #1A1A24;
        transition: all 0.4s ease;
        flex: none;
        transform: scale(0);
        -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .outer-menu .menu > div > div {
        text-align: center;
        max-width: 90vw;
        max-height: 100vh;
        opacity: 0;
        transition: opacity 0.4s ease;
        overflow-y: auto;
        flex: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .outer-menu .menu > div > div > ul {
        list-style: none;
        padding: 0 1em;
        margin: 0;
        display: block;
        max-height: 100vh;
    }
    
    .outer-menu .menu > div > div > ul > li {
        padding: 0;
        margin: 1em;
        font-size: 24px;
        display: block;
    }
    
    .outer-menu .menu > div > div > ul > li > a {
        position: relative;
        display: inline;
        cursor: pointer;
        transition: color 0.4s ease;
    }
    
    .outer-menu .menu > div > div > ul > li > a:hover {
        color: #e5e5e5;
    }
    
    .outer-menu .menu > div > div > ul > li > a:hover:after {
        width: 100%;
    }
    
    .outer-menu .menu > div > div > ul > li > a:after {
        content: "";
        position: absolute;
        z-index: 1;
        bottom: -0.15em;
        left: 0;
        width: 0;
        height: 2px;
        background: #e5e5e5;
        transition: width 0.4s ease;
    }

    #presentation{
        width: 100vw;
        min-height: 100vh;
    }

    #presentation01{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #presentation02{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    #txtPresentation01, #txtPresentation02{
        width: 90%;
        color: #1A1A24;
        text-align: justify;
    }

    .titrePresentation{
        font-size: 1.25em;
        color:#033B5C;
        font-weight: bold;
    }

    #imgPresentation01, #imgPresentation02{
        width: 90%;
        height: 40vh;
        margin-bottom: 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .imgPresentation, .imgPresentation2{
        width: 50%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        background-size: cover;
        background-position: center;
        -webkit-box-shadow: 0px 0px 10px 7px #EDEDED; 
        box-shadow: 0px 0px 10px 7px #EDEDED;
    }

    .boutonDevis{
        width: 100%;
        height: 50px;
        color: white;
        background: #1D1D1D;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-weight: bold;
    }

    .boutonDevis a{
        color: white;
        text-decoration: none;
    }

    .boutonDevis:hover{
        background: #033B5C;
    }

    #services{
        width: 100%;
        min-height: 100vh;
        background: #1A1A24;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .titreServices{
        color: white;
        margin-left: 25px;
        font-weight: bold;
    }

    #carrousel{
        margin: 25px 0;
        width: 90%;
        padding: 15px;
        min-height: 75vh;
        background: white;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        align-self: center;
    }

    #gauche{
        margin: 10px;
        width: 10%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-self: center;
        cursor: pointer;
    }

    #centre{
        width: 80%;
        display: flex;
        flex-direction: column;
    }

    #droite{
        margin: 10px;
        width: 10%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    #titreService{
        font-weight: bold;
        margin-bottom: 10px;
    }

    #imgService{
        width: 100%;
        height: 250px;
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-position: center;
    }

    
    .imgService{
        width: 100%;
        height: 250px;
        background-size: cover;
        background-position: center;
    }

    #service01{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    #service02{
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    #service03{
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    #contact{
        width: 100vw;
        min-height: 100vh;
    }

    #titreContactezMoi{
        margin-top: 25px;
        margin-left: 50px;
        font-size: 1.25em;
        font-weight: bold;
        text-transform: uppercase;
    }

    #carte{
        padding: 25px;
        width: 100vw;
        display: flex;
        justify-self: center;
    }

    #coordonnees{
        padding: 25px;
        width: 100vw;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #infos{
        width: 100%;
        margin-top: 25px;
        margin-bottom: 25px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
        
    #cadreAdresse{
        display: flex;
        flex-direction: row;
    }

    #cadreAdresse{
        display: flex;
        flex-direction: row;
        margin: 5px;
    }

    #adresse{
        margin-left: 5px;
        height: 75px;
    }

    #iconeAdresse{
        width: 75px;
        height: 75px;
        background: #222529;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .logoFA{
        color: white;
    }

    .styleTitreInfo{
        margin: 5px;
        font-weight: bold;
        font-size: 1.5em;
        margin: 5px 0;
    }

    #cadreTelephone{
        display: flex;
        flex-direction: row;
        margin: 5px
    }

    #telephone{
        margin: 5px;
        height: 75px;
    }

    #iconeTelephone{
        width: 75px;
        height: 75px;
        background: #222529;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #cadreEmail{
        display: flex;
        flex-direction: row;
        margin: 5px
    }

    #emailInfo{
        margin: 5px;
        height: 75px;
    }

    #iconeEmail{
        width: 75px;
        height: 75px;
        background: #222529;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #formulaire{
        width: 100%;
        margin-top: 25px;
        margin-bottom: 25px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    form{
        margin-left: -10px;
        width: 90vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    input {
        width: 100%;
        height: 25px;
        border-radius: 5px;
        background: #F1F1F1;
        border: 1px solid #B4B4B5;
    }

    select{
        width: 100%;
        border-radius: 5px;
        height: 30px;
        background: #F1F1F1;
        border: 1px solid #B4B4B5;
    }

    textarea{
        width: 100%;
        height: 75px;
        border-radius: 5px;
        background: #F1F1F1;
        border: 1px solid #B4B4B5;
    }

    #nom{
        margin-bottom: 10px;
    }

    #prenom{
        margin-bottom: 5px;
    }

    #email{
        margin-left: 0;
        height: 25px;
        margin-bottom: 10px;
    }

    #inputTelephone{
        margin-left: 0;
        height: 25px;
        margin-bottom: 10px;
    }

    #preference{
        margin-bottom: 10px;
    }

    #message{
        margin-bottom: 10px;
    }

    #check1, #check2{
        display: flex;
        flex-direction: row;
        margin-bottom: 10px;
    }

    #conditionsGenerales{
        width: 20px;
        height: 20px;
    }

    #autorisation{
        width: 20px;
        height: 20px;
    }

    label[for=conditionsGenerales]
    {
        font-size: 0.75em;
    }

    label[for=conditionsGenerales] a{
        color: #151515;
    }

    label[for=autorisation]
    {
            font-size: 0.75em;
    }

    #boutonEnvoyez{
        width: 200px;
        height: 40px;
        background:#151515;
        color: #A2A2A2;
        text-align: center;
        border-radius: 5px;
        border: none;
    }

    #boutonEnvoyez:hover{
        background: #033B5C;
        color: white;
        cursor: pointer;
    }

    #footer{
        width: 100vw;
        background: #1D1D1D;
        color: #FFFFFF;
        display: flex;
        flex-direction: column;
    }

    #footerTxt{
        width: 100%;
        text-align: center;
        font-size: 1em;
        font-weight: lighter;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .ebdf{
        font-size: 1.25em;
        text-transform: uppercase;
        font-weight: bold;
    }

    .ebdf:hover{
        opacity: 0.5;
        cursor: pointer;
    }

    #logoFB{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 25px;
    }

    #logoFB a{
        color: white;
    }

    #logoFB a:hover{
        opacity: 0.5;
    }

    #footer2{
        width: 100vw;
        height: 25px;
        background: #232323;
    }

    .surRdv{
        color: red;
        font-weight: bolder;
    }

    .gaelle{
        font-size: 1em;
        font-weight: bolder;
        margin-top: -15px;
        margin-bottom: 10px;
    }

    .g-recaptcha{
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media all and (max-width: 600px){
    #imgPresentation01, #imgPresentation02{
        width: 90%;
        height: 40vh;
        margin-bottom: 25px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .imgPresentation, .imgPresentation2{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        background-size: cover;
        background-position: center;
        -webkit-box-shadow: 0px 0px 10px 7px #EDEDED; 
        box-shadow: 0px 0px 10px 7px #EDEDED;
    }

    #infos{
        margin-top: 50px;
        width: 100%;
    }

    .g-recaptcha{
        margin-top: 10px;
        margin-bottom: 10px;
    }

    #cadreAdresse, #cadreTelephone, #cadreEmail{
        flex-direction: column;
    }

    #adresse, #telephone, #emailInfo{
        margin-bottom: 25px;
    }
}

