body{
    font-family: colibri, sans-serif;
    padding:0px;
    margin:0px;
    font-size: large;
    background: linear-gradient(rgb(86, 113, 112),rgb(63, 69, 81));
    color: white;
}
.transitionStyle{
    animation-name: transitionStyle;
    animation-duration: 2s;
}
@keyframes transitionStyle{
    from{
        transform: translateY(-100px);
    }
    to{
        transform: translateY(0px);
    }
}
header{
    background: linear-gradient(rgb(215, 255, 253),rgb(220, 230, 255));
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:space-between;
    border-bottom: 2px rgb(0, 0, 0) solid;
    margin-top: -95px;
    max-height: 100px;
    z-index: 1;
}
header img{
    width: 100px;
    height: auto;
    margin: 10px;
}
nav{
    margin-right: 40px;
}
nav a{
    margin-right: 30px;
    text-decoration: none;
    color: black;
    position: relative;
}
nav a:hover{
    transition: 100ms;
    color: rgba(0, 0, 0, 0.644);
}
nav a::after{
    content: "";
    position: absolute;
    left: 0px;
    bottom: -10px;
    width: 0;
    height: 3px;
    background-color: black;
    transition: 0.3s ease-in-out;
}

nav a:hover::after
{
    width: 100%;
    background-color: rgba(0, 0, 0, 0.644);
}
.ham-menu1,.ham-menu2{
    height: 50px;
    width: 50px;
    margin-left: auto;
    display: none;
}
.ham-menu1 img,.ham-menu2 img{
    height: 50px;
    width: 50px;  
}
.selectedPage::after
{
    width: 100%;
}

@media screen and (max-width: 1100px) {
    .nav{
        background: linear-gradient(rgb(215, 255, 253),rgb(220, 230, 255));
        height: 100vh;
        border-left: 2px rgb(0, 0, 0) solid;;
        margin-right: 0px;
        margin-top: 90vh;
        transform:translateX(200%);
        flex-direction: column;
        padding: 20px;
        transition: .3s ease;
        display: flex;
    }
    .nav.active{
        
        transform:translateX(0%);
        max-width: 70%;
        width: auto;
    }
    nav a {
        margin-top:15px;
    }
    .ham-menu2{
        display: block;
        position: absolute;
        right: 0px;
        top: 20px;
        margin-right: 30px;
    }
    .ham-menu2.active{
        visibility: none;
    }
    .ham-menu1{
        display: block;
        visibility: none;
    }
    .ham-menu1.active{
        display: block;
    }
}


.acceuil {
    height: calc(100vh - 95px);
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(PhotosSite/Accueil.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color: rgb(255, 255, 255);
    background-position: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation-name: apparitionFadeIn;
    animation-duration: 3s;
}
.acceuil div{
    text-align: right;
    padding: 20px;

    
}
.acceuil a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.178);
    padding: 13px;
    border-radius: 5px;
    animation-name: UpAndDown;
    animation-duration: 3s;
    animation-iteration-count: infinite;

}
.acceuil a:hover{
    transition: 100ms;
    background-color: rgba(133, 133, 133, 0.377);
}
@keyframes apparitionFadeIn{
    from{
        filter: blur(4px);
    }
    to{
        filter: blur(0);
    }
}
@keyframes UpAndDown{
    0%{
        transform: translateY(-10px);
    }
    50%{
        transform: translateY(10px);
    }
    100%{
        transform: translateY(-10px);
    }
}
main{
    margin-top: 95px;
}
footer{
    background-color: rgb(44, 44, 44);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
    border-top: rgb(255, 255, 255) solid;;
}


footer p, footer a{
    margin-top: 15px;
    color: white;
}

.separateur{
    background-color: rgb(255, 255, 255);
    width: 2px;
    height: 200px;
}

footer img{
    height: 200px;
}
.coteAcote{
    display: flex;
    flex-direction: row;
    margin: 20px;
    justify-content: space-around;
}
.coteAcote div{
    margin: 10px;
    width: 45%;
}

.coteAcote img{
    max-width: 45vw;
    border-radius: 20px;
    border: 2px rgb(255, 255, 255) solid;;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 14px 28px, rgba(255, 255, 255, 0.22) 0px 10px 10px;
    
}
.coteAcote a{
    color: white;
}
#Inverser{
    flex-direction: row-reverse;    
}

@media screen and (max-width: 900px) {
    .coteAcote{
        flex-direction: column;
        justify-content: center;
    }
    .coteAcote img{
        max-width: 90vw;
    }
    .coteAcote div{
        width: 90%;
    }
    #Inverser{
        flex-direction: column;  
        justify-content: center;
    }
}
.title{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px rgb(255, 255, 255) solid;;
    background-color: rgba(0, 0, 0, 0.156);
    
}

@media screen and (max-width: 1100px) {
    .separateur{
        display: none;
    }
}

.zoneDeTexte{
    padding-left : 3vw;
    padding-right :3vw;
}

.zoneDeTexte img{
    max-width: 45vw;
    border-radius: 20px;
    border: 2px rgb(255, 255, 255) solid;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 14px 28px, rgba(255, 255, 255, 0.22) 0px 10px 10px;
}

@media screen and (max-width: 900px) {
    .zoneDeTexte img{
        max-width: 85vw;
    }
}

.tarif{
    display: flex;
    justify-content:space-around;
    margin: 20px;
}
.tarif div{
    background-color: rgba(255, 255, 255, 0.146);
    padding: 20px;
    border-radius: 20px;
    border: 2px rgb(255, 255, 255) solid;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 14px 28px, rgba(255, 255, 255, 0.22) 0px 10px 10px;
    max-width: 25vw;
}

.tarif h3{
    border-bottom: 2px rgb(255, 255, 255) solid;
}

.price strong{
    font-size: xx-large;
}

@media screen and (max-width: 900px) {

    .tarif{
        flex-direction: column;
    }
    .tarif div{
        max-width: 100vw;
        margin-top: 30px;
    }

}

.temoignage{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.temoignage div{
    background-color: rgba(255, 255, 255, 0.146);
    padding: 20px;
    border-radius: 20px;
    border: 2px rgb(255, 255, 255) solid;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 14px 28px, rgba(255, 255, 255, 0.22) 0px 10px 10px;
    margin: 20px;
    max-width: 27vw;
}

@media screen and (max-width: 900px) {

    .temoignage{
        flex-direction: column;
    }
    .temoignage div{
        max-width: 100vw;
        margin-top: 30px;
    }

}

label,input,textarea{
    margin-bottom: 15px;
}

textarea, input{
    width: 50%;
    padding: 8px;
    border-radius: 5px;
    border: 2px rgb(255, 255, 255) solid;
    font-family: colibri, sans-serif;
    font-size: large;
}

form button{
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    border: 2px rgb(255, 255, 255) solid;
    background-color: rgba(255, 255, 255, 0.146);
    color: white;
    font-family: colibri, sans-serif;
    font-size: large;
}

form button:hover{
    transition: 300ms;
    background-color: rgba(133, 133, 133, 0.377);
    border: 2px rgba(255, 255, 255, 0.712) solid;
}

@media screen and (max-width: 900px) {

    textarea, input{
        width: 90%;
    }
}