:root {
  --header-height: 80px;
}
@media screen and (max-width: 1000px) {
  :root {
    --header-height: 60px;
  }
}

@media screen and (max-width: 767px) {
  .mobileBg {
    display: none;
  }
}

.homepage {
  position: relative;
  width: 100%;
}
.homepage__container {
  position: relative;
  max-width: 1200px;
  width: 87.8477%;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
}
.homepage__container img {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .homepage__container {
    width: 100%;
    border-radius: 0px;
  }
}
.homepage__swiperPrev {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.homepage__swiperNext {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
.homepage__steps {
  width: 100%;
  display: grid;
  margin-top: 120px;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 35px;
}
@media screen and (max-width: 1000px) {
  .homepage__steps {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 0;
    margin-top: 40px;
  }
}
.homepage__step {
  position: relative;
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 5px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 10px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.homepage__step:nth-of-type(odd) {
  border: 5px solid #84cdf8;
}
.homepage__step:nth-of-type(odd) .homepage__circle {
  background-color: #008cd6;
  -webkit-box-shadow: 5px 5px 0px #84cdf8;
  box-shadow: 5px 5px 0px #84cdf8;
}
.homepage__step:nth-of-type(odd) .homepage__img p {
  color: #008cd6;
}
.homepage__step:nth-of-type(even) {
  border: 5px solid #97e6b2;
}
.homepage__step:nth-of-type(even) .homepage__circle {
  background-color: #00b347;
  -webkit-box-shadow: 5px 5px 0px #97e6b2;
  box-shadow: 5px 5px 0px #97e6b2;
}
.homepage__step:nth-of-type(even) .homepage__img p {
  color: #00b347;
}
@media screen and (min-width: 1000px) {
  .homepage__step:nth-of-type(2), .homepage__step:nth-of-type(5) {
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
}
.homepage__circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  top: -22px;
  left: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .homepage__circle {
    width: 70px;
    height: 70px;
    font-size: 2.75rem;
  }
}
.homepage__img img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.homepage__img p {
  text-align: center;
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .homepage__img p {
    font-size: 1.375rem;
  }
}
.homepage__stepText {
  margin-top: 20px;
  text-align: justify;
  font-size: 1.125rem;
  color: #2a2a2a;
}
@media screen and (max-width: 1000px) {
  .homepage__stepText {
    margin-top: 5px;
    font-size: 1rem;
  }
}
.homepage__progress {
  width: 85%;
  margin: 60px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .homepage__progress {
    width: 75%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px 0;
  }
}
.homepage__outer {
  width: 30%;
}
.homepage__outer > div {
  position: relative;
  width: 100%;
}
.homepage__outer > div::before {
  content: "";
  width: 100%;
  padding-bottom: 100%;
  display: block;
}
.homepage__outer:nth-of-type(1) svg circle:nth-of-type(2) {
  stroke-dashoffset: 620.00031;
}
.homepage__outer:nth-of-type(3) svg circle:nth-of-type(2) {
  stroke-dashoffset: 310.00062;
}
.homepage__outer:nth-of-type(5) svg circle:nth-of-type(2) {
  stroke-dashoffset: 0;
}
@media screen and (max-width: 1000px) {
  .homepage__outer {
    width: 100%;
  }
}
.homepage__progressInfo {
  position: absolute;
  width: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.homepage__number {
  font-size: 4rem;
  font-weight: 700;
  color: #00b347;
  text-align: center;
}
.homepage__line {
  width: 100%;
  height: 2px;
  background-color: #00b347;
  margin-bottom: 15px;
}
.homepage__progressText {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}
.homepage__percent {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(270deg);
  -ms-transform: translate(-50%, -50%) rotate(270deg);
  transform: translate(-50%, -50%) rotate(270deg);
}
.homepage__percent svg {
  position: relative;
  width: 100%;
  height: 100%;
}
.homepage__percent svg circle {
  width: 100%;
  height: 100%;
  fill: transparent;
  stroke-width: 8;
  stroke: #c7c7c7;
}
.homepage__percent svg circle:nth-child(2) {
  stroke: #84cdf8;
  stroke-dasharray: 930;
}
.homepage__arrow {
  max-width: 100%;
}
@media screen and (max-width: 1000px) {
  .homepage__arrow {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
.homepage__addBtn {
  display: block;
  margin: 50px auto 40px;
  max-width: 300px;
  background-color: #008cd6;
  -webkit-box-shadow: 3px 8px 0px #84cdf8;
  box-shadow: 3px 8px 0px #84cdf8;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 12px 0px;
}
.homepage__addBtn img {
  margin-left: 10px;
}
@media screen and (max-width: 1000px) {
  .homepage__addBtn {
    margin: 30px auto 40px;
    font-size: 1.25rem;
    padding: 15px 0;
  }
}
.homepage .swiper-pagination {
  position: static;
  margin-top: 20px;
}

.lightBox {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.lightBox__container {
  position: relative;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
.lightBox__container::before {
  content: "";
  width: 100%;
  padding-bottom: 56.25%;
  display: block;
}
.lightBox__close {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
}
.lightBox__close::before {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.lightBox__close::after {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.lightBox iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
}

.video {
  cursor: pointer;
  position: relative;
}
.video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.video::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background-image: url("../images/homepage/btn-play.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1000px) {
  .video::after {
    width: 60px;
    height: 60px;
  }
}

.defaultDot {
  cursor: pointer;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #1382c5;
  display: inline-block;
  margin: 0 6px;
}
.defaultDot--active {
  background-color: #1382c5;
}

.defaultHorizontal {
  width: 100%;
}