19 lines
451 B
CSS
19 lines
451 B
CSS
body#index .page-home > .row {
|
|
display: grid;
|
|
gap:10px;
|
|
grid-template-columns: 1fr 1fr 1fr 1fr;
|
|
justify-content: center;
|
|
}
|
|
@media (max-width: 767px ) {
|
|
body#index .page-home > .row {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
}
|
|
body#index .page-home > .row .an_banner {
|
|
width: 100% !important;
|
|
position: relative;
|
|
}
|
|
body#index .page-home > .row .an_banner img.b-loaded {
|
|
transition: 0s !important;
|
|
transform: unset !important;
|
|
} |