body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 100%;
  height: 100vh;
  background-color: #262626;
}

.Box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
}

.swiperBox {
  width: 100%;
  margin-top: 3%;
  height: 60%;
  overflow: hidden;
}

.page1Slide {
  text-align: center;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transition: all 1s ease;

  transform: translateX(0) scale(0.8);
}

.page1Slide.swiper-slide-prev {
  transform: translateX(-50%) scale(0.8);
}

.page1Slide.swiper-slide-next {
  transform: translateX(50%) scale(0.8);
}

.page1Slide.swiper-slide-active {
  transform: scale(1);
}

.page1Slide>img {
  width: 80%;
  height: 100%;
}

.icon {
  width: 20%;
  height: 20%;
  transition: fill 0.3s ease;
  fill: #939393;
}

.icon:hover {
  fill: #fff;
}

.icon_right {
  transform: rotate(180deg);
}

.swiperButton {
  width: 50%;
  height: 20%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5%;
  bottom: 0;
}

.swiper2 {
  width: auto !important;
  /* height: 80%; */
  overflow: hidden;
}

.page2Wrapper {
  height: auto !important;
  justify-content: center;
}

.page2Slide {
  width: 10% !important;
  height: 10% !important;
  border-radius: 10px;
  margin-right: 5% !important;
}

.page2Slide>img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  
}

/* page2Slide swiper-slide-next swiper-slide-thumb-active */
.page2Slide.swiper-slide-thumb-active {
  border: 4px solid #fff;
}