.gallery {
  margin-bottom: 120px;
}

.gallery__title {
  margin-bottom: 40px;
}

.gallery__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
  max-width: 1530px;
}

.gallery__swiper {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.gallery__swiper img {
	cursor: zoom-in;
}

.gallery__swiper .swiper-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: 100%;
}

.gallery__swiper .swiper-pagination span {
  border-radius: 100% !important;
  fill: var(--colors-second) !important;
  height: 10px !important;
  width: 10px !important;
}

@media (max-width: 480px) {
	.gallery__list {
		gap: 10px;
	}
}
