@charset "utf-8";

/* ==============================================
   Feature
============================================== */
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 2.5rem 1.6rem;
  margin-bottom: 8rem;
  align-items: flex-start;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-item__text {
  width: 100%;
  color: var(--color-black);
  text-align: left;
}

.feature-item__title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: clamp(1.6rem, 0.643rem + 1.29vw, 2.2rem);
  padding-top: clamp(0rem, -3.861rem + 8.348vw, 2.4rem);
  line-height: 1.4;
}

.feature-item__body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
}

.feature-item__image {
  width: 100%;
  max-width: 100%;
  text-align: center;
  flex-shrink: 0;
}

.feature-item__image img {
  max-width: 100%;
  width: clamp(240px, calc(35.29vw + 98.82px), 360px);
  margin-inline: auto;
  height: auto;
  display: block;
}

@media screen and (min-width: 741px) {
  .feature-item {
    flex-direction: row-reverse;;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(1.6rem, -8.7rem + 13.91vw, 8.0rem);
  }

  .feature-item:nth-of-type(odd) {
    flex-direction: row
  }

  .feature-item__text {
    flex: 1;
  }

  .feature-item__image {
    max-width: 360px;
    min-width: 200px;
  }
}

/* ==============================================
   Common Inquiries
============================================== */
#CommonInquiries .c-section-heading {
  margin-bottom: clamp(7rem, 5.625rem + 1.875vw, 9rem);
}

#CommonInquiries .c-section-footer {
  padding-block: clamp(3rem, 4.304rem - 2.174vw, 3.5rem) clamp(2.4rem, 6.783rem - 7.826vw, 4rem);
}

.faq-list {
  list-style: none;
  padding: 0;
  counter-reset: faq-counter;
}

.faq-list__item {
  counter-increment: faq-counter;
  border-bottom: 1px solid #ccc;
  padding: clamp(2.8rem, 1.513rem + 1.74vw, 3.6rem) 0;

  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-q, .faq-a {
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.faq-q::before {
  content: "Q." counter(faq-counter);
  flex-shrink: 0;
  width: 7.0rem;
  font-family: var(--font-primary);
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1;
}

.faq-q__text {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1;
}

.faq-a {
  padding-left: 7.0rem;
}

.faq-a__label {
  display: none;
}

.faq-a__text {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-black);
  line-height: 2;
}

/* ==============================================
   Key Markets
============================================== */
#keyMarkets .c-section-heading {
  margin-bottom: clamp(3.6rem, 0.383rem + 6.957vw, 5.6rem);
}

.keymarket-item__details {
  text-align: left;
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: clamp(4.6rem, 3.583rem + 1.087vw, 5.6rem);
}

.keymarket-item__image img {
  width: 100%;
  height: auto;
}

/* ==============================================
   Our Clients
============================================== */
#OurClients .c-section-heading {
  margin-bottom: clamp(3.2rem, -0.339rem + 7.696vw, 5.4rem);
}

#OurClients .c-section-footer {
  padding-block: clamp(6rem, 8.104rem - 3.043vw, 6.8rem) clamp(2rem, -11.522rem + 29.565vw, 10.4rem);
}

.clients-item {
  display:     flex;
  justify-content: space-between;
  align-items: center;
  gap:         4.0rem;
}

.clients-item__details {
  flex:        1;
  max-width: 50%;
  padding-right: 2.4rem;
  margin:      0;
  font-size:   1.6rem;
  font-weight: 400;
  line-height: 2;
  color:       #000;
  text-align:  left;
}

.clients-item__image {
  flex-shrink: 0;
  width:       50%;
  max-width:   40rem;
}

.clients-item__image img {
  display:       block;
  width:         100%;
  height:        auto;
}

@media (max-width: 740px) {
  .clients-item {
    flex-direction: column;
    align-items:    center;
  }

  .clients-item__details {
    width:         100%;
    max-width: 100%;
    padding-right: 0;
  }

  .clients-item__image {
    width:     100%;
    max-width: 100%;
  }
}
