.cta-section {
  padding-bottom: 10px;
}
.cta-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  background-color: #000;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 690px;
}
.cta-section__card {
  position: relative;
  max-width: 648px;
  margin: 0 auto;
  padding: 72px 96px 64px;
  text-align: center;
}
.cta-section__card::after {
  content: "";
  position: absolute;
  height: 50%;
  width: 100%;
  left: 0;
  right: 0;
  top: 2px;
  background-color: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.cta-section__card::before {
  content: "";
  position: absolute;
  height: 50%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 2px;
  background-color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.cta-section__title {
  margin: 0 0 36px;
  color: var(--black-100, #000);
  text-align: center;
  font-family: "e-Ukraine", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.96px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.cta-section__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 485px;
  max-width: 100%;
  padding: 14px 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  background: var(--black-100, #000);
  color: var(--white-100, #fff);
  font-family: "e-Ukraine", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  -webkit-transition: color 0.2s ease, background 0.2s ease;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}
.cta-section__btn:hover, .cta-section__btn:focus-visible {
  outline: none;
  color: #A8CFC0;
  background: var(--black-100, #000);
}
@media (max-width: 1024px) {
  .cta-section__card {
    padding: 56px 40px 48px;
  }
}
@media (max-width: 768px) {
  .cta-section {
    padding-bottom: 0px;
  }
  .cta-section__inner {
    min-height: 560px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 16px;
  }
  .cta-section__card {
    padding: 40px 20px 32px;
    border-radius: 8px;
  }
  .cta-section__title {
    font-size: 32px;
    letter-spacing: -0.64px;
    margin-bottom: 24px;
  }
  .cta-section__btn {
    width: 100%;
  }
}