.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));
}
}