/* ==============================
		faq.scss
================================= */
.section-faq {
  position: relative;
  overflow: hidden;
}

.faq__inner {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 10;
  padding-top: 160px;
  padding-bottom: 160px;
}

@media screen and (max-width: 1620px) {
  .faq__inner {
    padding-right: 4vw;
    padding-left: 4vw;
  }
}

@media screen and (max-width: 810px) {
  .faq__inner {
    max-width: 810px;
    padding: 16vw 8vw 16vw;
  }
}

.faq__block {
  margin-bottom: 50px;
}

.faq__set {
  padding: 20px 15px;
  border-bottom: 1px solid #c5cedd;
}
.faq__set.border-top {
  border-top: 1px solid #c5cedd;
}

.faq__dt {
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  font-weight: 400;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.faq__dt::before {
  content: "Q";
  color: #1e59a8;
  font-family: poppins, sans-serif;
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
}
.faq__dt:hover {
  cursor: pointer;
  color: #1e59a8;
}
.faq__dt.open {
  color: #1e59a8;
}

.faq__dd {
  padding-left: 30px;
  position: relative;
  font-size: 14px;
  color: #566374;
  overflow: hidden;
  transition: all 0.1s;
  height: 0;
  line-height: 0;
}
.faq__dd::before {
  content: "A";
  color: #566374;
  font-family: poppins, sans-serif;
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
}
.faq__dd p {
  margin: 0 0 1em;
}
.faq__dd p:last-child {
  margin-bottom: 0;
}
.faq__dd.open {
  height: 100%;
  line-height: 1.6;
  padding-bottom: 10px;
}

.faq__btn {
  position: absolute;
  top: 5px;
  right: 0;
  width: 24px;
  height: 24px;
  margin: auto;
  outline: none;
  transition: all 0.2s ease-in-out;
}

.faq__btn__line {
  position: relative;
  background-color: #1e59a8;
  display: block;
  width: 24px;
  height: 1px;
}

.faq__btn__text {
  width: 1px;
  height: 1px;
  overflow: hidden;
  display: block;
}
.faq__btn__text::before {
  content: "";
  background-color: #1e59a8;
  display: block;
  width: 24px;
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.2s;
  transform: rotate(90deg);
}

.faq__dt.open .faq__btn__text::before {
  transform: rotate(0deg);
}

.faq__big-text .en {
  color: #e5e9f0;
}

/*# sourceMappingURL=maps/faq.css.map */
