section.gallery_block {
  display: grid;
  margin: 80px 0;
}

.gallery_row {
  width: 100%;
  padding: 0 0 30px;
}
@media screen and (max-width: 768px) {
  .gallery_row {
    padding: 0;
  }
}
.gallery_row .item {
  border-radius: 35px;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .gallery_row .item {
    width: 225px;
  }
}
.gallery_row .swiper-pagination {
  top: auto;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .gallery_row .swiper-pagination {
    display: none;
  }
}
.gallery_row .swiper-pagination-bullet {
  border-radius: 4px;
  width: 34px;
  height: 0px;
  background: #E3E3E3;
  border: 3px solid #E3E3E3;
  opacity: 1;
}
.gallery_row .swiper-pagination-bullet-active {
  border-radius: 4px;
  background: #38D430;
  border: 3px solid #95C11F;
  width: 34px;
  height: 0px;
}