.home-cta {
  color: #fff;
  background: #ae0a22;
  padding: clamp(60px, 6.25vw, 120px) 0;
  position: relative;
}
.home-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../assets/icons/cta-left.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
}
.home-cta::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../assets/icons/cta-right.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}

.home-cta h2 {
  font-size: 50px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.4;
}
.home-cta__wrapper {
  max-width: 850px;
  position: relative;
  z-index: 3;
  margin-left: auto;
  margin-right: auto;
}
.cta-list {
  margin-bottom: 47px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  gap: 33px;
}
.cta-list__item {
  margin: 0;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  font-family: "Merriweather", serif;
  line-height: 20px;
  letter-spacing: -0.35px;

  gap: 10px;
  list-style: none;
}
.home-cta__wrapper .paragraph__18 {
  margin-bottom: 25px;
}
.buttons-row {
  display: flex;
  gap: 22px;
  justify-content: center;
}
.buttons-row .white-arrow__button {
  padding: 15px 62px 15px 40px;
  border-radius: 5px;
}
.buttons-row .white-arrow__button::after {
  width: 16px;
  height: 16px;
  right: 40px;
}
@media only screen and (max-width: 575px) {
  .home-cta h2 {
    font-size: 40px !important;
  }
  .cta-list {
    flex-direction: column;
    gap: 10px;
  }
  .buttons-row {
    flex-direction: column;
    gap: 10px;
  }
  .buttons-row .white-arrow__button::after {
    right: 30%;
  }
}
