/*=================
  CTA SINGLE
=================*/

.cta-single {
  background: url('../../../../img/cta-single-bg.jpg') center center no-repeat;
  background-size: cover;
  padding: var(--space-7) 0px;
}

.cta-single .container {
  display: grid;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  align-items: end;
  gap: var(--space-6);
}
.cta-single .container strong {
  color: var(--color-n-white);
}

@media only screen and (max-width: 992px) {
  .cta-single {
    padding: var(--space-6) 0px;
  }
  .cta-single .container {
    grid-template-columns: 1fr;
  }
  .cta-single .container a {
    margin-left: 0px;
    margin-right: auto;
  }
}

@media only screen and (max-width: 578px) {
  .cta-single .container {
    gap: var(--space-5);
  }
  .cta-single .container strong {
    font-size: 4rem;
  }
}
