.app-swiper-container {
  max-width: 1140px;
  padding: 60px 20px 60px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.app-swiper-container .app-swiper-wrapper {
  width: 45%;
  overflow: hidden;
  padding: 0 50px 30px;
  position: relative;
}
.app-swiper-container .app-swiper-wrapper .app-swiper {
  overflow: hidden;
}
.app-swiper-container .app-swiper-wrapper .app-swiper .swiper-slide {
  text-align: center;
}
.app-swiper-container .app-swiper-wrapper .app-swiper .swiper-pagination {
  left: 50%;
  transform: translateX(-50%);
}
.app-swiper-container .app-swiper-wrapper .app-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.3);
  margin: 0 8px;
}
.app-swiper-container .app-swiper-wrapper .app-swiper .swiper-pagination-bullet-active {
  background: #0e4b42;
}
.app-swiper-container .app-swiper-wrapper .app-swiper .swiper-button-prev {
  width: 24px;
  height: 42px;
  left: 0;
  color: #0e4b42;
  background: url(../images/arrow-L-on.png) no-repeat;
}
.app-swiper-container .app-swiper-wrapper .app-swiper .swiper-button-next {
  width: 24px;
  height: 42px;
  right: 0;
  color: #0e4b42;
  background: url(../images/arrow-R-on.png) no-repeat;
}
@media (max-width: 970px) {
  .app-swiper-container {
    padding: 30px 20px;
  }
  .app-swiper-container .app-swiper-wrapper {
    width: 100%;
    padding: 0 30px 30px;
  }
  .app-swiper-container .app-swiper-wrapper .app-swiper .swiper-button-prev:after,
  .app-swiper-container .app-swiper-wrapper .app-swiper .swiper-button-next:after {
    font-size: 30px;
    font-weight: bold;
  }
}

.app-step-container {
  width: 55%;
  padding-left: 50px;
}
.app-step-container .app-step {
  display: flex;
  cursor: pointer;
}
.app-step-container .app-step .app-step__icon {
  display: flex;
  font-size: 24px;
  font-weight: bold;
  background-color: #c4dfc9;
  color: #0e4b42;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  margin-right: 30px;
  transition: all 0.2s ease-out;
  align-items: center;
  justify-content: center;
}
.app-step-container .app-step .app-step__content {
  width: calc(100% - 80px);
  position: relative;
}
.app-step-container .app-step .app-step__content .app-step__title {
  font-weight: bold;
  color: #288777;
  font-size: 24px;
  line-height: 28px;
}
.app-step-container .app-step .app-step__content .app-step__title span {
  font-size: 28px;
}
.app-step-container .app-step .app-step__content .app-step__desc {
  padding: 10px 0 20px;
  font-size: 22px;
  line-height: 34px;
  color: #0e4b42;
}
.app-step-container .app-step:not(:last-child) .app-step__content:before {
  content: "";
  position: absolute;
  left: -55px;
  top: 66px;
  width: 1px;
  height: calc(100% - 82px);
  background-color: #a1c2bb;
}
.app-step-container .app-step.active .app-step__icon {
  background-color: #0e4b42;
  color: #fff;
}
.app-step-container .app-step.active .app-step__desc {
  font-weight: bold;
  color: #0e4b42 !important;
}
.app-step-container .app-step.active .app-step__inner-content {
  display: block;
}
@media (max-width: 970px) {
  .app-step-container {
    width: 100%;
    padding-left: 0;
  }
  .app-step-container .app-step .app-step__icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    margin-right: 20px;
  }
  .app-step-container .app-step .app-step__content {
    width: calc(100% - 80px);
    position: relative;
    color: #222222;
  }
  .app-step-container .app-step .app-step__content .app-step__title {
    font-size: 18px;
    line-height: 28px;
  }
  .app-step-container .app-step .app-step__content .app-step__title span {
    font-size: 24px;
  }
  .app-step-container .app-step .app-step__content .app-step__desc {
    font-size: 20px;
    line-height: 28px;
    color: #222222;
  }
  .app-step-container .app-step:not(:last-child) .app-step__content:before {
    left: -40px;
    top: 52px;
    height: calc(100% - 64px);
  }
}/*# sourceMappingURL=step.css.map */