.gallery-block {
  overflow: hidden;
}

.gallery-block .image-holder {
  box-sizing: border-box;
  display: flex;
  position: relative;
  outline: none;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-block .image-holder:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity .3s ease-in;
}

.gallery-block .image-holder.swiper-slide-active:before {
  opacity: 0;
}

.gallery-block .image-holder.swiper-slide-active:hover:before {
  opacity: 0.6;
}

/* Иконка лупы */
.gallery-block .image-holder.swiper-slide-active:hover:after {
  content: url(../gallery-block/loupe.svg);
  position: absolute;
  font-size: 32px;
  /* Размер иконки */
  color: white;
  /* Цвет иконки */
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery-block .image {
  width: 100%;
  object-fit: cover;
  height: auto;
  aspect-ratio: 2 / 1;
}

@media (max-width: 1600px) {
  .gallery-block .gallery {
    padding: 0 60px;
  }
}

@media (max-width: 769px) {
  .gallery-block .gallery {
    padding: 0 20px;
  }
}

@media (max-width: 498px) {
  .gallery-block .gallery-pagination {
    display: none;
  }
}

/*# sourceMappingURL=block.css.map */