/* Screenshot Section - Original Design */
.screenshot_section {
  padding-top: 120px;
  padding-bottom: 50px;
}

.screen_wrap {
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  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;
  width: 100%;
  max-width: 1200px;
}

.screen_wrap .swiper-container {
  padding-bottom: 60px;
  width: 100%;
  height: 500px;
}

.screen_wrap .swiper-wrapper {
  height: 100%;
}

.screen_wrap .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen_wrap .swiper-pagination-bullets {
  width: 100%;
  display: block;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
}

.screen_wrap .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #662DE2;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

.screen_wrap .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #E62FF1;
  width: 15px;
  border-radius: 30px;
  transition: all 0.2s ease-in-out;
}

.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: none;
}

.swiper-slide img {
  border-radius: 40px;
  box-shadow: 0px 10px 32px rgba(0, 0, 0, 0.1);
  width: 280px;
  height: 500px;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .screen_wrap {
    width: 650px;
  }

  .screen_wrap .swiper-container {
    height: 400px;
  }

  .swiper-slide img {
    width: 220px;
    height: 400px;
  }
}

@media all and (max-width: 767px) {
  .screen_wrap {
    width: 95%;
  }

  .screen_wrap .swiper-container {
    height: 350px;
  }

  .swiper-slide img {
    width: 180px;
    height: 350px;
  }
}
