/***faq***/
.faq-page {
  padding: 140px 0 80px 0;
  background: url("../img/page-top-bg/bg-all.webp") repeat;
  background-size: cover;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#501755', endColorstr='#2d1854', GradientType=1);
  border-bottom: 20px solid transparent; /* Adjust thickness */
  border-image-source: url(../img/border-2.webp);
  border-image-slice: 0 0 100% 0; /* Show only the bottom part */
  border-image-repeat: stretch;
}
.show-text .question {
  font-weight: 700;
  color: #e1b470;
}
.show-text .question::after {
  display: none;
}
.show-text .answer {
  display: block;
  margin-top: 1.2rem;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.show-text .container__btn {
  transform: rotate(180deg);
  transition: 0.4s;
}
.faq-text {
  background-color: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid #fff;
  margin: 2px 0;
}
.show-text {
  border-radius: 20px;
}

.title {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 4rem;
  color: var(--very-dark-desaturated-blue);
  margin-bottom: 3.8rem;
}
@media (min-width: 1024px) {
  .title {
    text-align: start;
    margin-bottom: 3.3rem;
  }
}
ul.text-list li {
  position: relative;
  color: #fff;
  font-family: "Bainsley";
  margin-left: 20px;
}
ul.text-nolist li {
  position: relative;
  color: #fff;
  font-family: "Bainsley";
  list-style: lower-alpha;
  margin-left: 20px;
}
.question {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.6rem;
  color: #fff;
  cursor: pointer;
  font-family: "Bainsley_bold";
}
.question:hover {
  color: #e1b470;
  transition: 0.4s;
}

.answer {
  display: none;
  position: relative;
  color: #fff;
  font-family: "Bainsley";
}

.card {
  background-color: inherit;
}

/***.card::before {
    content: "";
    width: 23.7rem;
    height: 18rem;
    background: url("https://assets.codepen.io/6554922/illustration-woman-online-mobile.svg") no-repeat;
    position: absolute;
    top: -10.8rem;
    left: 4.5rem;
  }
  @media (min-width: 1024px) {
    .card::before {
      content: "";
      background-image: url("https://assets.codepen.io/6554922/illustration-box-desktop.svg");
      width: 14rem;
      height: 19rem;
      position: absolute;
      top: 31rem;
      left: -1.6%;
      transform: translate(-55%, -55%);
      animation: boxHop 2s ease-in-out;
      animation-iteration-count: infinite;
    }
  }
  .card::after {
    content: "";
    width: 24rem;
    height: 14.5rem;
    background: url("https://assets.codepen.io/6554922/bg-pattern-mobile.svg") no-repeat;
    position: absolute;
    top: 0;
    left: 4.4rem;
  }
  **/
@media (min-width: 1024px) {
  .card::after {
    display: none;
  }
}

.card .container__up {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  cursor: pointer;
  padding-top: 15px;
}

.card .container__btn {
  border: none;
  background: none;
  cursor: pointer;
}
.card .container__divider {
  margin: 1.8rem 0 1.7rem 0;
  width: 100%;
  max-height: 0.1rem;
  border: 0.05rem solid var(--divider);
  background: var(--divider);
}

i.fa.fa-chevron-down {
  padding: 0;
  color: #fff;
}

@keyframes boxHop {
  from {
    transform: translate(-55%, -55%);
  }
  50% {
    transform: translate(-55%, -57.5%);
  }
  to {
    transform: translate(-55%, -55%);
  }
}

ul.text-tick li:before {
  content: "✓";
  color: green;
  background: #fff;
  padding: 0 5px;
}
ul.text-tick li {
  list-style: none;
}

.faq-container {
    column-gap: 4rem;
}

@media (min-width: 576px) and (max-width: 767px) {
    .page-info h2 {
      font-size: 32px;
    }
  }
  
  @media (min-width: 768px) {
    .page-info h2 {
      font-size: 36px;
    }
  }
  
  @media (min-width: 992px) {
    .page-info h2 {
      font-size: 42px;
    }
  }