<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.block.block-gallery {
  margin: 65px 0;
}

.gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.gallery-image {
  width: 16.66%;
  display: block;
  position: relative;
  margin: 0 0 30px 0;
  padding: 0 15px;
}

.gallery-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  left: 15px;
  bottom: 0;
  background: rgba(241, 196, 14, 0.9) url(../../images/zoom.svg) no-repeat center/40px;
  opacity: 0;
}

.gallery-image:hover::after {
  opacity: 1;
}

@media(max-width: 1199px) {
  .block.block-gallery {
    margin: 35px 0;
  }

  .gallery-image {
    width: 25%;
  }
}

@media(max-width: 992px) {
  .gallery-image {
    width: 33.33%;
  }
}

@media(max-width: 768px) {
  .gallery-image {
    width: 50%;
  }
}

@media(max-width: 578px) {
  .gallery-image {
    width: 100%;
  }
}</pre></body></html>