.hero-video{
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
top: 0;
left: 0;
}
.hero .material-icons{
font-size: 5rem;
color: white;
}.prestation{
margin-top: 5rem;
}
.prestation .container {
width: 72%;
display: grid;
grid-template-columns: 1fr;
grid-auto-rows: minmax(200px,auto);
min-width: 0;
min-height: 0;
row-gap: 20px;
}
.prestation img{
height: 100%;
width: 100%;
object-fit: contain;
object-position: center;
min-width: 0;
min-height: 0;
}
.prestation div.text{
margin: 0 !important;
border-bottom: 4px solid #2781BE;
display: flex;
align-items: center
}
.prestation .container{
width: 80vw;
}
.prestation .sub-grid{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(calc(40vw - 10px), 1fr));
grid-auto-rows: minmax(20vh,1fr);
column-gap: 20px;
}
@media (min-width: 1800px) {
.prestation .sub-grid{
grid-template-columns: repeat(auto-fit, minmax(750px, 1fr));
}
}.gallery2{
width: 100%;
display: flex;
justify-content: center;
}
.gallery2>.grid {
width: 80%;
max-width: 1500px;
display: grid;
min-width: 0;
min-height: 0;
grid-template-columns: repeat(2,1fr);
grid-auto-rows: 30vh;
row-gap: 20px;
column-gap: 20px;
}
.gallery2>.grid>.gallery2-img-1 {
grid-area: 1/1/2/2;
overflow: hidden; min-width: 0;
}
.gallery2>.grid>.gallery2-img-2 {
grid-area: 1/2/2/3;
overflow: hidden; min-width: 0;
}
.gallery2>.grid>div>img {
height: 100%;
width: 100%;
object-fit: cover;
object-position: center;
}
@media (max-width: 768px){
.gallery2 .grid{
grid-template-columns: 1fr;
}
.gallery2 .grid>div{
grid-area: auto!important;
}
}