#fond {
    display: grid;
    background: url("../inc/background.jpg") no-repeat center center fixed;
    height: 100vh;
    -webkit-background-size: 100% 100%;
    background-size: cover;
    justify-content: center;
  }

#logo {
    width: 500px;
    padding-top: 20vh;
    -webkit-filter: drop-shadow(1px 1px 2px white);
    filter: drop-shadow(1px 1px 2px white);
}

@media (max-width: 600px) {
    #logo {
        width: 250px;
        padding-top: 25vh;
    }
}
@media (max-width: 800px) {
    
}

#content {
    padding: 25px;
    text-align: center;
}

#prestations {
    margin: 0 auto;
    width: 75%;
    text-align: center;
    padding-bottom: 15px;
}

#presentation_presta {
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 800px) {
    #presentation_presta {
        flex-wrap: wrap;
        flex-direction: column;
    }
}

.imgTexte1 {
    display: none;
    position: absolute;
    text-align: center;
    height: 100%;
    width: 100%;
    top: 40%;
    left: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.imgTexte2 {
    display: none;
    position: absolute;
    text-align: center;
    height: 100%;
    width: 100%;
    top: 40%;
    left: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.imgTexte3 {
    display: none;
    position: absolute;
    text-align: center;
    height: 100%;
    width: 100%;
    top: 40%;
    left: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.textHover {
    font-size: 2em;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    transition: all 0.5s ease-in-out;
    color: gold;
}

#image1{
    position: relative;
}

#image2{
    position: relative;
}

#image3{
    position: relative;
}

#image1:hover .imgTexte1 {
    display: block;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#image2:hover .imgTexte2 {
    display: block;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#image3:hover .imgTexte3 {
    display: block;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.div_image {
    width: 30%;
    background-color: black;
}

.hover_present {
    display: block;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.hover_present:hover{
    opacity: 0.8;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#locations {
    margin: 0 auto;
    padding: 15px 0;
    width: 75%;
    text-align: left;
}

#presentation_location {
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.boutonMainPage {
    font-size: 1.2em;
    color: white;
    background-color: black;
    padding: 5px 10px;
    margin: 15px;
    border-radius: 5px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.boutonMainPage:hover {
    color: gold;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}