:root {
  box-sizing: border-box;
  font-size: 62.5%;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
}
.swiper-container {
  width: 100%;
  height: 100%;
  margin: 50px auto 0;
}
@media screen and (min-width: 800px) {
  .swiper-container {
    width: 70%;
    margin-left: 15%;
  }
}
.swiper-slide {
  background: #fff;
  color: #333;
  font-size: 1.8rem;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-container-horizontal > .swiper-pagination {
  top: 50px;
  bottom: auto;
  position: fixed;
}
.swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
}
.active-mark {
  background: #f2ec00;
  width: 50%;
  height: 5px;
  position: absolute;
  left: 0;
  top: 52px;
  transition: left 0.2s ease-out;
}
.swiper-pagination-bullet {
  background-color: #fff;
  border-radius: 0;
  box-sizing: border-box;
  color: #babbba;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: normal;
  opacity: 1;
  height: 56px;
  width: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: font-weight 0.22s ease;
}
.swiper-pagination-bullet:nth-of-type(1).swiper-pagination-bullet-active ~ .active-mark {
  left: 0%;
}
.swiper-pagination-bullet:nth-of-type(2).swiper-pagination-bullet-active ~ .active-mark {
  left: 50%;
}
.swiper-pagination-bullet:first-of-type.swiper-pagination-bullet-active ~ .active-mark {
  left: 0;
}
.swiper-pagination-bullet-active {
  font-weight: 700;
  color: #222;
}