.cta:last-child .cta__container {
  padding-bottom: 6rem;
}
@media only screen and (max-width: 834px) {
  .cta:last-child .cta__container {
    padding-bottom: 3rem;
  }
}
.cta__container {
  background-color: #fff;
}
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 8rem 4rem 9rem;
  border-radius: 5.4rem;
  overflow: hidden;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .cta__inner {
    flex-direction: column;
  }
}
@media only screen and (max-width: 834px) {
  .cta__inner {
    padding: 6rem 3.2rem 8rem;
  }
}
@media only screen and (max-width: 576px) {
  .cta__inner {
    padding: 6rem 2rem 8rem;
  }
}
.cta__head {
  margin: 0;
  align-items: flex-start;
  text-align: left;
  max-width: 60rem;
  width: calc(60% - 2rem);
}
@media only screen and (max-width: 1024px) {
  .cta__head {
    width: 100%;
    max-width: none;
  }
}
.cta__head * {
  color: #FFFFFF;
}
.cta__subtitle {
  max-width: 36rem;
  font-size: 20px;
}
@media (max-width: 1356px) {
  .cta__subtitle {
    font-size: calc(16px + 4 * (100vw - 375px) / 981);
  }
}
.cta__form {
  padding: 3.2rem 4rem 4rem;
  max-width: 40rem;
  border-radius: 4rem;
  background-color: #fff;
}
@media only screen and (max-width: 1024px) {
  .cta__form {
    max-width: 50rem;
  }
}
@media only screen and (max-width: 834px) {
  .cta__form {
    padding: 3.2rem 2rem;
  }
}
.cta__form__wrapper {
  margin-top: 3.2rem;
}
@media only screen and (max-width: 576px) {
  .cta__form__wrapper {
    margin-top: 2rem;
  }
}
.cta__form_title {
  margin-bottom: 2rem;
  text-align: center;
}
.cta__form_list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media only screen and (max-width: 576px) {
  .cta__form_list {
    gap: 1rem;
  }
}
.cta__form_list_item {
  color: #454545;
  font-size: 1.8rem;
}
@media only screen and (max-width: 834px) {
  .cta__form_list_item {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 576px) {
  .cta__form_list_item {
    font-size: 1.4rem;
  }
}
.cta__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  border-radius: 6rem;
  overflow: hidden;
}
.cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta__image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  pointer-events: none;
  z-index: 1;
  transition: background-color 0.8s ease;
}
.cta__additional {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 40rem;
  padding: 1rem 2rem;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 3rem 0 0;
  background-color: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 834px) {
  .cta__additional {
    width: 33rem;
  }
}
@media only screen and (max-width: 576px) {
  .cta__additional {
    width: 100%;
    border-radius: 0;
    justify-content: center;
  }
}
.cta__additional_image {
  width: 5rem;
  height: 3.5rem;
  border-radius: 4rem;
  overflow: hidden;
  object-fit: cover;
}
.cta__additional * {
  color: #454545;
  font-weight: 500;
}
.cta__additional a {
  text-decoration: none;
  transition: all ease-in-out 0.35s;
}
.cta__additional a:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background-color: #2B535E;
  transition: all ease-in-out 0.35s;
}
@media only screen and (min-width: 1024px) {
  .cta__additional a:hover {
    color: #2B535E;
  }
  .cta__additional a:hover:before {
    left: 0;
    right: auto;
    width: 100%;
  }
}