.cta-block {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  position: relative;
  padding: 15px 22px;
  align-items: center;
  margin: 15px 0;
}
.cta-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #0006;
  background-color: #00000087;
  border-radius: 5px 5px 0 0;
}
.cta-block__text {
  position: relative;
  color: #fff;
  padding-right: 30px;
  font-size: 16px;
}
.cta-block__text strong {
  color: #fdd71c;
}
.cta-block__text p {
  padding: 0;
  line-height: 22px;
}
.cta-block__buttons {
  display: flex;
  flex: none;
  box-sizing: border-box;
  justify-content: flex-end;
}
.cta-block__link {
  position: relative;
  width: 100px;
  height: 30px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 7px;
  text-transform: none;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .cta-block__buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-block__link {
    max-width: 100%;
    margin: 7px;
  }
}
@media screen and (max-width: 650px) {
  .cta-block {
    padding: 15px;
  }
}
@media screen and (max-width: 650px) and (min-width: 351px) {
  .cta-block__buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-block__link {
    max-width: 100%;
    margin: 7px;
  }
}
@media screen and (max-width: 450px) {
  .cta-block__text {
    font-size: 14px;
    padding-right: 5px;
  }
}
@media screen and (max-width: 350px) {
  .cta-block {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cta-block__text {
    padding-right: 0;
    width: 100%;
    text-align: center;
  }
  .cta-block__buttons {
    justify-content: center;
  }
}
