.promo {
  position: relative;
  background: #46C6FF;
  color: #ffffff;
  overflow: hidden;
  z-index: 0;
}
.promo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: center/cover no-repeat url("../img/promo/bg-promo.svg");
  z-index: -1;
}
@media (max-width: 1550px) {
  .promo::after {
    background-size: cover;
  }
}
.promo__wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 64px 0;
}
.promo__content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 736px;
  height: auto;
}
.promo__title {
  line-height: 0;
}
.promo__title img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.promo__desc {
  position: relative;
  width: 600px;
  font-size: 24px;
  line-height: 31px;
  margin-top: 15px;
  margin-bottom: 20px;
}
.promo__note {
  margin-top: auto;
  font-size: 12px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.67);
  display: none;
}
.promo__lead-form {
  display: flex;
  flex-direction: column;
  width: 490px;
  padding: 40px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 20px;
}
.promo__pic {
  display: none;
}

@media (max-width: 435px) {
  .promo {
    padding: 0;
  }
  .promo::before {
    background: right top/cover no-repeat url("../img/promo/bg-promo-m.svg");
  }
  .promo__wrapper {
    flex-direction: column;
    padding-bottom: 0;
    line-height: 0;
  }
  .promo__content {
    position: static;
    width: auto;
    height: auto;
  }
  .promo__title {
    width: auto;
    right: 0;
  }
  .promo__desc {
    width: auto;
    margin-top: 15px;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 0;
  }
  .promo__note {
    margin-top: 20px;
  }
  .promo__lead-form {
    width: auto;
    margin-top: 30px;
    padding: 20px;
  }
  .promo__pic {
    display: block;
    margin-top: 20px;
  }
}
