.home-cta {
  position: relative;
  z-index: 4;
}

.home-cta__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 170px var(--page-padding-x) 50px;
}

.home-cta__icon {
  width: auto;
  height: auto;
  flex-shrink: 0;
}

.home-cta__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.home-cta__title {
  margin: 0;
  color: #214793;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
}

.home-cta__description {
  margin: 0;
  color: #214793;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.home-cta__description strong {
  font-weight: 700;
}

@media (max-width: 900px) {
  .home-cta {
    z-index: 1;
  }

  .home-cta__container {
    flex-direction: column;
    padding: 24px;
    gap: 0;
  }

  .home-cta__title {
    font-size: 16px;
  }

  .home-cta__description {
    font-size: 14px;
  }
}
