/* Frequently css */

.frequently__header--btn {
  width: 100%;
  display: block;
  text-align: left;
  position: relative;
  border: 0;
  background: #ffffff;
  padding: 2.2rem 5.5rem 2.2rem 0;
  font-size: 1.8rem;
  line-height: 3rem;
  font-weight: 600;
  border-radius: 1rem;
}
@media only screen and (min-width: 768px) {
  .frequently__header--btn {
    font-size: 2rem;
  }
}
.frequently__header--btn__icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.frequently__items {
  border: 1px solid #ebebeb;
  background: #ffffff;
  margin-bottom: 2.5rem;
  padding: 0 2.5rem;
  border-radius: 1rem;
}
.frequently__items:last-child {
  margin-bottom: 0;
}
.frequently__header--btn svg.plus {
  display: none;
}
.frequently__header--btn.collapsed svg.plus {
  display: block;
}

.frequently__header--btn.collapsed svg.minus {
  display: none;
}
.frequently__body {
  position: relative;
}
.frequently__body::before {
  position: absolute;
  content: "";
  height: 1px;
  background: #ebebeb;
  left: 0;
  right: 0;
  top: 0;
}
.frequently__body--desc {
  padding: 2rem 0;
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #000000;
  opacity: 0.7;
}

.frequently__answer__box {
  position: sticky;
  top: 10rem;
  margin-top: 3rem;
  border: 1px solid var(--border-color);
  background: var(--color-background-3);
  padding: 5rem 3rem;
  border-radius: 1rem;
}
@media only screen and (min-width: 992px) {
  .frequently__answer__box {
    margin-top: 18rem;
  }
}
@media only screen and (min-width: 1366px) {
  .frequently__answer__box {
    padding: 5rem;
  }
}
.frequently__answer--title {
  font-size: 2.5rem;
  line-height: 3.5rem;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .frequently__answer--title {
    font-size: 2.8rem;
    line-height: 4rem;
  }
}
@media only screen and (min-width: 1366px) {
  .frequently__answer--title {
    font-size: 3.2rem;
    line-height: 4.5rem;
  }
}
.frequently__answer--desc {
  font-size: 1.6rem;
  line-height: 3rem;
  color: var(--color-foreground-sub);
}
@media only screen and (min-width: 768px) {
  .frequently__answer--desc {
    font-size: 1.8rem;
    line-height: 3.2rem;
  }
}

/* Support section css */
.support__section {
  z-index: 8;
}
.support__content {
  text-align: left;
}
.support__card {
  border: 2px dashed #ebebeb;
  padding: 2.5rem;
  border-radius: 1.5rem;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}
.support__card:hover {
  transform: translateY(-15px) !important;
}
.support__content--title {
  margin-bottom: 1.5rem;
}
.support__content--desc {
  font-size: 1.6rem;
  color: #52525b;
  line-height: 2.8rem;
}
.support__link--btn {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.2rem 3rem;
  border: 1px solid #52525b;
  border-radius: 3rem;
}
.support__link--btn:hover {
  background: #f23b3b;
  border-color: #f23b3b;
  color: #ffffff;
}
.support__thumbnail {
  margin-bottom: 2rem;
}
.support__shape--img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.support__shape--img2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.support__link--btn {
  min-width: 25rem;
}
