@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&display=swap');

.onexway-section-title {
  --section-title-max-width: 1200px;
  --section-title-padding: 0;
  --section-title-title-color: #41AAFF;
  --section-title-desc-color: #111111;
  --section-title-accent-color: #ff2e2e;
  --section-title-underline-color: #0b66b8;
  --section-title-title-size: 32px;
  --section-title-title-weight: 700;
  --section-title-title-line-height: 1.15;
  --section-title-desc-size: 24px;
  --section-title-desc-weight: 400;
  --section-title-desc-line-height: 1.35;
  --section-title-title-gap: 14px;

  width: 100%;
  max-width: var(--section-title-max-width);
  padding: var(--section-title-padding);
  margin: 0 auto;
  text-align: center;
  font-family: 'Afacad Flux', Arial, sans-serif;
}

.onexway-section-title--left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.onexway-section-title--right {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}

.onexway-section-title__title {
  display: inline-block;
  width: fit-content;
  margin: 0 0 var(--section-title-title-gap);
  padding-bottom: 2px;
  font-size: var(--section-title-title-size);
  font-weight: var(--section-title-title-weight);
  line-height: var(--section-title-title-line-height);
  color: var(--section-title-title-color);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.onexway-section-title__title .onexway-section-title__accent {
  color: var(--section-title-accent-color);
}

.onexway-section-title__description {
  margin: 0;
  font-size: var(--section-title-desc-size);
  font-weight: var(--section-title-desc-weight);
  line-height: var(--section-title-desc-line-height);
  color: var(--section-title-desc-color);
  text-transform: none;
  letter-spacing: 0;
}

.onexway-section-title__description p {
  margin: 0;
}

@media (max-width: 768px) {
  .onexway-section-title__title {
    font-size: clamp(24px, 5.2vw, 32px);
  }

  .onexway-section-title__description {
    font-size: clamp(18px, 4.5vw, 24px);
  }
}
