/** Swiper styles **/
.swiper {
  user-select: none;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 0px 0px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  background-color: #333333;
  border-radius: 0px;
  overflow: hidden;
}

.swiper-slide-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding: 48px 48px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.swiper-slide-title {
  font-size: 21px;
  font-weight: bold;
  transform-origin: center;
  color: white;
}

.swiper-slide-image {
  border-radius: 0px;
  position: absolute;
  object-fit: cover;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  z-index: 0;
  scale: 1.2;
  transition: scale 15s ease-in;
}

.swiper-slide.swiper-slide-active .swiper-slide-image {
  scale: 1;
}

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