.oneapp-faq {
  width: 95%;
  margin: auto;
  display: flex;
  gap: 7rem;
  align-items: center;
  flex-direction: column;
  margin-bottom: 15rem;
  max-width: 159rem;
}

.oneapp-faq > h4 {
  font-size: 4rem;
  line-height: 4.3rem;
  color: var(--secondary);
  font-weight: 400;
}

.oneapp-faq-columns {
  display: flex;
  gap: 1.8rem;
  width: 100%;
}

.oneapp-faq-columns > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.oneapp-faq-box {
  background: #f6f6f6;
  border-radius: 15px;
  padding: 3rem;
  width: 100%;
  cursor: pointer;
}

.oneapp-faq-box--question {
  font-size: 2.2rem;
  line-height: 2.9rem;
  color: #000000;
  font-weight: 400;
  font-family: "Roboto";
  display: flex;
  justify-content: space-between;
  position: relative;
}

.oneapp-faq-box--question > img {
  position: absolute;
  right: 0;
}

.oneapp-faq-box.active .oneapp-faq-box--default-icon {
  opacity: 0;
  transform: rotate(-90deg);
}

.oneapp-faq-box--default-icon {
  transition: all 1s ease;
}

.oneapp-faq-box--toggle-icon {
  opacity: 0;
  transform: rotate(90deg);
  transition: all 1s ease;
}

.oneapp-faq-box.active .oneapp-faq-box--toggle-icon {
  opacity: 1;
  transform: rotate(0);
}

.oneapp-faq-box--answer {
  font-size: 1.8rem;
  line-height: 2.2rem;
  font-family: "Roboto";
  font-weight: normal;
  color: #112439;
  max-height: 0;
  transition: all 1s ease;
  overflow: hidden;
  font-weight: 300;
}

.oneapp-faq-box.active .oneapp-faq-box--answer {
  max-height: 30rem;
  padding-top: 3rem;
}

.oneapp-faq-box--question > div {
  margin-right: 3rem;
  line-height: 2rem;
}

@media (max-width: 1700px) {
  .oneapp-faq {
    max-width: 133rem;
  }
}

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
  .oneapp-faq {
    max-width: 113rem;
  }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199px) {
  .oneapp-faq {
    max-width: 93rem;
  }

  .oneapp-faq-box--question {
    font-size: 1.8rem;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .oneapp-faq {
    max-width: 75rem;
    margin-bottom: 7.5rem;
  }

  .oneapp-faq > h4 {
    font-size: 3rem;
    line-height: 3.3rem;
    margin: 0;
  }

  .oneapp-faq-box {
    padding: 2rem 1.5rem;
  }

  .oneapp-faq-box--question {
    font-size: 1.4rem;
  }

  .oneapp-faq-box--answer {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .oneapp-faq > h4 {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }

  .oneapp-faq-columns {
    flex-direction: column;
  }
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}
