/*
    frequently css
*/
.faq--section {
  position: relative;
}
.faq__section--shape1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .faq__section--shape1 {
    max-width: 300px;
  }
}
.faq__section--shape2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .faq__section--shape2 {
    max-width: 300px;
  }
}
.faq__accordion--title {
  font-size: 2.5rem;
  line-height: 3rem;
}
@media only screen and (min-width: 576px) {
  .faq__accordion--title {
    font-size: 3rem;
    line-height: 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .faq__accordion--title {
    font-size: 4rem;
    line-height: 5rem;
  }
}
@media only screen and (min-width: 1366px) {
  .faq__accordion--title {
    font-size: 4.5rem;
    line-height: 5.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .faq__accordion--title {
    font-size: 5rem;
    line-height: 6rem;
  }
}
@media only screen and (max-width: 1199px) {
  .faq__accordion--title {
    margin-bottom: 3rem;
  }
}
.accordion__wrapper {
  width: 100%;
  padding-right: 0;
}
@media only screen and (min-width: 992px) {
  .accordion__wrapper {
    width: calc(100% - 40rem);
    padding-right: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .accordion__wrapper {
    width: calc(100% - 50rem);
    padding-right: 5rem;
  }
}
@media only screen and (min-width: 1366px) {
  .accordion__wrapper {
    width: calc(100% - 60rem);
    padding-right: 7rem;
  }
}
@media only screen and (min-width: 1600px) {
  .accordion__wrapper {
    width: calc(100% - 75rem);
    padding-right: 10rem;
  }
}
.faq__section--inner {
  position: relative;
}
@media only screen and (max-width: 991px) {
  .faq__section--inner {
    flex-direction: column;
  }
}
.frequently__answer__box--wrapper {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .frequently__answer__box--wrapper {
    width: 40rem;
  }
  .frequently__answer__box--wrapper {
    align-self: center;
  }
}
@media only screen and (min-width: 1200px) {
  .frequently__answer__box--wrapper {
    width: 50rem;
  }
}
@media only screen and (min-width: 1366px) {
  .frequently__answer__box--wrapper {
    width: 60rem;
  }
}
@media only screen and (min-width: 1600px) {
  .frequently__answer__box--wrapper {
    width: 75rem;
  }
}
.frequently__answer__box--wrapper {
  position: sticky;
  top: 10rem;
}
.frequently__answer__box {
  background: #0b182a;
  border: 1px solid #232e3e;
  padding: 3rem;
  border-radius: 1rem;
  margin-top: 4rem;
}
@media only screen and (min-width: 992px) {
  .frequently__answer__box--wrapper {
    margin-top: 12rem;
  }
}
@media only screen and (min-width: 1200px) {
  .frequently__answer__box {
    padding: 4rem;
  }
}
@media only screen and (min-width: 1366px) {
  .frequently__answer__box {
    padding: 6rem;
  }
}
.frequently__answer--title {
  font-size: 2.3rem;
  line-height: 3rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1200px) {
  .frequently__answer--title {
    font-size: 3rem;
    line-height: 4rem;
  }
}
@media only screen and (min-width: 1366px) {
  .frequently__answer--title {
    font-size: 3.5rem;
    line-height: 5rem;
  }
}
.frequently__answer--desc {
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 1200px) {
  .frequently__answer--desc {
    font-size: 1.8rem;
    line-height: 2.8rem;
    margin-bottom: 4rem;
  }
}
.frequently__answer--btn {
  background: rgb(255, 255, 255, 0.1);
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  border-radius: 1rem;
  position: relative;
  transition: 0.45s ease-in-out;
}
@media only screen and (min-width: 1200px) {
  .frequently__answer--btn {
    padding: 2rem 4rem;
    font-size: 1.8rem;
  }
}
.frequently__answer--btn:hover {
  background: linear-gradient(90deg, #2b79f6 0%, #d704ff 100%);
  transition: 0.35s ease-in-out;
  color: var(--white-color);
}
.faq__section--item {
  border: 1px solid #232e3e;
  padding: 0 2rem;
  border-radius: 0.5rem;
  margin-bottom: 2.5rem;
}
.faq__section--item:last-child {
  margin-bottom: 0;
}
.faq__section--item.active {
  background: #0b182a;
  border-color: #232e3e;
}
.faq__section--item.active .faq__section--button {
  opacity: 1;
}
.faq__section--item.active .faq__section--body p {
  opacity: 0.7;
}

.faq__section--button {
  border: 0;
  font-size: 1.7rem;
  line-height: 2.8rem;
  font-weight: 500;
  background: inherit;
  width: 100%;
  text-align: left;
  padding: 1.8rem 0;
  opacity: 0.7;
}

.faq__section--body {
  display: none;
}
.faq__section--body p {
  font-size: 1.5rem;
  line-height: 3rem;
  padding-bottom: 1.5rem;
}
.faq__section--body p.mb-15 {
  margin-bottom: 1.5rem;
}
.faq__section--body p a {
  font-weight: 700;
}
.faq__section--body p a:hover {
  text-decoration: underline;
}
.faq__section--body ol li {
  font-size: 1.5rem;
  line-height: 3rem;
  list-style: auto;
  margin-bottom: 1rem;
}
.faq__section--body ol.mb-15 {
  margin-bottom: 1.5rem;
}
.faq__section--body ol li:last-child {
  margin-bottom: 0;
}
.faq__arrow--btn {
  float: right;
  transition: 0.3s;
  transform: rotate(0);
  pointer-events: none;
}
.faq__section--item.active .faq__arrow--btn {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.faq__section--button.collapsed .faq__arrow--btn {
  transform: rotate(0);
}
