/* aboutus section */

.wrapper {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}

.wrapper {
  margin-top: 1.875rem;
}

.left-img {
  width: 30%;
  aspect-ratio: 16/9;
  height: auto;
  background-image: url(../img/AboutUs.png);
  background-size: cover;
  background-position: center;
}

.right-desc {
  width: 70%;
  height: auto
}


.right-desc {
  background: rgba(255, 255, 255, 0.75);
  border-radius: .75rem;
  padding: .625rem;
}

.right-desc h2 {
  font-size: 1.375rem;
  letter-spacing: .2px;
  text-align: center;
}

.right-desc p {
  margin: 0 0 .875rem;
  line-height: 1.75;
  font-size: .9688rem;
  color: #111;
}

.right-desc .changecolor {
  color: #2e3192;
  font-size: 1.4rem;
  font-weight: 700;
}

.right-desc .highlight {
  margin-top: .375rem;
  font-weight: 600;
}

.right-desc h3 {
  margin: 1.125rem 0 .625rem;
  font-size: 1rem;
}

.commitment {
  margin: 0;
  padding-left: 1.125rem;
  display: grid;
  gap: 0.7rem;
  list-style: circle;
}

.commitment li {
  font-weight: 700;
  margin-right: .5rem;
}

.commitment li span {
  font-weight: 400;
  color: #333333;
}

/* FAQS section */
.faqs-title {
  text-align: center;
  margin-top: 4rem;
}

.faqs-title h2 {
  font-size: 2rem;
  letter-spacing: .2px;
  color: #007eb1;
}

.faqs-title h4 {
  font-size: 1rem;
  letter-spacing: .2px;
  margin-top: .625rem;
}

.faqs-wrapper {
  margin-top: 2.5rem;
}

.faq-section .faq-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: .625rem;
  padding: 1.4rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  border-radius: .625rem;
  outline: none;
  cursor: pointer;
  background: #8d97c6;
  color: #fff;
}

.faq-section-header:hover {
  border-color: rgba(109, 125, 244, 0.45);
  box-shadow: 0 10px 26px rgba(109, 125, 244, 0.18);
  color: #c2c9ff;
  transform: translateY(-1px);
  transition: 0.5s ease;
}

.faq-section-header img {
  width: 3%;
  height: 3%;
  transform: rotateX(180deg);
  transition: all .7s ease-in-out;
}


.faq-section-body .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.4rem 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: .225rem;
  background: #ffffff;
  color: #0f172a;
  transition: all 0.6s ease;

}

.faq-section-body .question:hover {
  background: #eef1ff;
  border-color: rgba(109, 125, 244, .45);
  color: #26c9fe;
  transform: translateY(-1px);
}

.question img {
  width: 2%;
  height: 2%;
  transform: rotateX(180deg);
  transition: all .7s ease-in-out;
}

.faq-section-body .answer {
  width: 100%;
  overflow: hidden;
  opacity: 0;
  height: 0;
  transition: height 0.8s ease, opacity 0.8s ease;
  border-radius: .75rem;
  background: #f7f8ff;
  color: #334155;
}

.faq-section-body.is-open {
  height: auto;
  opacity: 1;
}

.answer.is-open {
  height: auto;
  opacity: 1;
}

.faq-section-body .answer p {
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.4;
  padding: 0.5rem .825rem;
  text-align: left;
}

/* faqs transition section */
.faq-section-body {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
}

@media (max-width: 850px) and (min-width: 300px) {
  .wrapper {
    flex-direction: column;
  }

  .left-img {
    background-image: url(../img/AboutUsMobile.png);
    width: 100%;
    background-size: cover;
    background-position: center;
  }

  .right-desc {
    width: 100%;
    height: auto;
  }

  .faq-section .faq-section-header {
    padding: 1rem 1rem;
  }

  .faq-section .faq-section-header h2 {
    font-size: 1.4rem;
  }

  .faq-section-body .question h3 {
    font-size: 1.1rem;
    text-align: left;
  }
}