.section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide, .swiper-slide img {
  width: 350px;
  height: 350px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
}

.swiper-pagination-bullet, .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-slide-active img:hover {
  transform: scale(1.1);
}

.transition-hover {
  transition: transform 0.5s ease;
}

.transition-hover:hover {
  transform: scale(1.1);
}

