html,body{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    height: 100%;
}

header{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background:black;
    padding: 10px;
}

.container-logo{
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
}

.container-logo img{
    max-width: 300px;
}

main{
    display: flex;
    flex-direction: column;
    overflow: hidden;
    
}

.container-video{
    position: relative;
    width: 100%;
    height: 100vh; /* 100% de la hauteur de la fenêtre */
    overflow: hidden;  

}

.content{
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
   padding-top: 150px;

}

.content h1{
   
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;

}

.content p{
    font-size: 1.5rem;
}

.background-clip{
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    /*Prendaumoins100%delalargeur*/min-height: 100%;
    /*Prendaumoins100%delahauteur*/width: 100%;
    /*height: auto;
    */transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
    /*Assurequelavidéocouvretoutelazone,sansdistorsion*/
    filter: brightness(70%);
    -webkit-filter: brightness(70%);
}

.warning{
    
    background: rgb(235, 235, 56);
    padding: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: black;
    margin-left: 5px;
    margin-right: 5px;
}


.container-img{
    padding-top:20px;
    padding-bottom: 20px;
    background: rgb(25, 25, 25);
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}
.container-h2{
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(25, 25, 25);
}
h2{
    
    color: white;
}

.container-img img{
    width: 300px;
}

.container-img img:hover{
    transform: scale(1.5);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
}

footer{
    background:black;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px;
    color:white;
    flex-direction: column;
    
}

.footer-img{
    display: flex;
    justify-content: center;
    align-items: center;

}


footer a{
    text-decoration: none;
    color: white;
    padding: 5px;
}

.footer-contact{
    display: flex;
    flex-direction: column;
   justify-content: center;
}
.container-imgandp{
    display: flex;
    align-items: center;
    padding: 5px;
}
.footer-contact img{
    width: 30px;
    background: white;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    padding: 5px;
    margin-right: 10px;

}

.footer-top{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 40px;
}

.juridique{
    display: flex;
    padding-top: 10px;
    padding-bottom: 10px;
}

iframe{
    width: 95vw;
}

.containerbgimage{
    display: none;

}
@media all and (max-width: 767px){

.background-clip{
    display: none;
}

.containerbgimage{
    display: flex;

}
.imgbg{
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
    filter: brightness(70%);
    -webkit-filter: brightness(70%);
}

}