html,
body {
  padding: 0;
  margin: 0;
}

.swiper {
  /*width: 1200px;*/
  /*height: 380px;*/

  width: 100%;
  height: 100%;
}

#app {
  background-image: url("../bgg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  height: 584px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.swiper-slide-active {
  background: #ff6600;
  color: #fff;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  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: 300ms;
  transform: scale(0.77);
  position: relative;
}
.swiper-slide .item {
  height: 100%;
}
.swiper-slide .item .text {
  color: #fff;
  font-size: 16px;
}

.swiper-slide-active,
.swiper-slide-duplicate-active {
  transform: scale(1);
  background-color: #fff;
}
.swiper-slide-active .item,
.swiper-slide-duplicate-active .item {
  border-bottom: 20px solid #1dc1dd;
}
.swiper-slide-active .item .text,
.swiper-slide-duplicate-active .item .text {
  color: #1dc1dd;
  margin-top: -8px;
  display: inherit;
  font-size: 18px;
}

.swiper .img {
  /*height: calc(100% - 30px);*/
  width: 100%;
  object-fit: contain;
  margin-bottom: 2px;
}

.swiper-pagination {
  /*display: flex;*/
  align-items: center;
  margin-top: 10px;
  width: 100%;
  height: 2px;
  background: #9caeb2;
  display: block;
}

.swiper-pagination-bullet {
  display: none;
}

.wrapper {
  width: 100%;
  position: relative;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 32px;
  left: 0;
  width: 100%;
  z-index: 0;
}

.dot {
  position: absolute;
  bottom: -19.5px;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  display: block;
}

.title {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1em;
  text-align: center;
  margin-bottom: 40px;
}

