/*============= FUNCTIONS ===============*/
/*============= MIXINS ===============*/
.gallery-block {
  padding: 40px 0;
}
.gallery-block .title {
  text-align: center;
}
.gallery-block .swiper-slide {
  width: 25%;
  transition: width 0.6s ease-out;
}
.gallery-block .swiper-slide-next {
  width: 50%;
}
.gallery-item {
  width: 100%;
  height: 397px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.gallery-theme {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 160px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .gallery-block {
    padding: 20px 0;
  }
  .gallery-block .swiper-slide {
    width: unset;
  }
  .gallery-block .swiper-slide-active {
    width: unset;
  }
  .gallery-item {
    height: 297px;
  }
  .gallery-theme {
    margin-top: 20px;
    gap: 20px;
  }
  .gallery-theme .theme-pagination {
    order: 3;
    margin-left: auto;
  }
}
@media (max-width: 720px) {
  .gallery-item {
    height: 197px;
  }
}
@media (max-width: 520px) {
  .gallery-item {
    height: 107px;
  }
}/*# sourceMappingURL=block.css.map */