.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));
}
}.gallery {
height: 125vh;
display: grid;
min-width: 0;
min-height: 0;
margin-top: 5rem;
grid-template-columns: repeat(2,1fr);
grid-template-rows: repeat(4,1fr);
row-gap: 20px;
column-gap: 20px;
}
.gallery>.gallery-img-1 {
grid-area: 1/1/2/2;
overflow: hidden; min-width: 0;
}
.gallery>.gallery-img-2 {
grid-area: 1/2/3/5;
overflow: hidden; min-width: 0;
}
.gallery>.gallery-img-3 {
grid-area: 2/1/2/2;
overflow: hidden; min-width: 0;
}
.gallery>.gallery-img-4 {
grid-area: 3/1/5/5;
overflow: hidden; min-width: 0;
}
.gallery>div>img {
height: 100%;
width: 100%;
object-fit: cover;
object-position: center;
}
@media (max-width: 768px){
.gallery{
grid-template-columns: 1fr;
}
.gallery>div{
grid-area: auto!important;
}
}