.oxton-cta_section {
  margin: 4rem 0;
}

.oxton-cta_wrapper {
  padding: var(--oxton-cta-padding, 40px 54px);
  background-color: var(--oxton-cta-bg, #fbeff7);
  color: var(--oxton-cta-color, #000000);
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 6px;
}

.oxton-cta_content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.oxton-cta_wrapper p {
  margin: 0;
  color: var(--oxton-cta-color, #000000);
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.oxton-cta_wrapper p.cta-subtitle {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  color: var(--oxton-cta-color, #000000);
}

.oxton-cta_wrapper h2.cta-title {
  margin: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: var(--oxton-cta-color, #000000);
  text-transform: uppercase;
}

.oxton-cta_wrapper a.cta-button {
  padding: 12px 34px;
  background: var(--oxton-cta-button-bg, #000000);
  color: var(--oxton-cta-button-color, #ffffff);
  font-family: 'League Spartan', sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  text-align: center;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
    gap: 21px;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    text-transform: none;
}

.oxton-cta_wrapper a.cta-button span,
.oxton-cta_wrapper a.cta-button i {
  color: inherit;
}

.oxton-cta_wrapper a.cta-button:hover {
  background: var(--oxton-cta-button-bg, #000000);
  filter: brightness(0.9);
  color: var(--oxton-cta-button-color, #ffffff);
}

.oxton-cta_wrapper a.cta-button svg {
  display: block;
}

@media (max-width: 991px) {
.oxton-cta_wrapper {
        padding: 32px;
}
.oxton-cta_wrapper p.cta-subtitle {
    font-size: 18px;
    line-height: 24px;
}
.oxton-cta_wrapper h2.cta-title {
    font-size: 20px;
    line-height: 30px;
}
.oxton-cta_wrapper a.cta-button {
    padding: 10px 26px;
    font-size: 20px;
    line-height: 30px;
    gap: 18px;
}
.oxton-cta_wrapper a.cta-button svg {
    width: 28px;
}
}

@media (max-width: 768px) {
  .oxton-cta_section {
    margin: 2.5rem 0;
  }
    .oxton-cta_wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
        gap: 20px;
    }
  .oxton-cta_wrapper {
    padding: 32px;
  }
.oxton-cta_wrapper a.cta-button {
    font-size: 18px;    
}
}
@media (max-width: 576px) {
    .oxton-cta_section {
        margin: 1.5rem 0;
    }
    
        .oxton-cta_wrapper p.cta-subtitle {
        font-size: 17px;
        line-height: 24px;
    }
    .oxton-cta_wrapper h2.cta-title {
        font-size: 18px;
        line-height: 30px;
    }
  }
@media (max-width: 480px) {
     .oxton-cta_wrapper a.cta-button {
        width: 100%;
    }
    .oxton-cta_wrapper {
        padding: 24px;
    }
        .oxton-cta_wrapper p.cta-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    .oxton-cta_wrapper h2.cta-title {
        font-size: 17px;
        line-height: 28px;
    }
  }