main {
  padding: 0;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper .wrap {
  display: flex;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 10px 0 !important;
}

.swiper-pagination-bullet-active {
  background: #288299 !important;
}

@media screen and (max-width: 1200px) {
  .swiper-wrapper {
    flex-wrap: wrap;
    padding: 0 0 50px;
  }
}

@media screen and (max-width: 720px) {
  .swiper .wrap {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (min-width: 1201px) {
  main {
    height: 100vh;
  }
  footer {
    display: none;
  }
  body.scroll-end footer {
    display: block;
  }
}

@media screen and (max-height: 899px) and (min-width: 1201px) {
  main {
    height: unset !important;
  }
  .swiper-wrapper {
    flex-direction: column;
  }
  .swiper-slide {
    align-items: flex-start !important;
    padding: 0 0 100px;
  }
  footer {
    display: block !important;
  }
}