main::before {
  top: 0;
  width: 394px;
  height: 641px;
  background: url(/static/svg/p-bg1.svg) no-repeat center;
  background-size: contain;
}

main::after {
  width: 463px;
  height: 253px;
  background: url(/static/svg/c-bg3.svg) no-repeat center;
  background-size: contain;
}

.bg {
  display: block;
  position: relative;
}

.bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(/static/svg/p-bg2.svg) no-repeat center;
  background-size: contain;
  width: 480px;
  height: 411px;
  z-index: -1;
  pointer-events: none;
}

.promotion__title {
  font-size: 24px;
  color: var(--green-dark);
  text-align: left;
}

.promotion__text {
  font-weight: 500;
  text-align: justify;
  font-size: 16px;
  line-height: 18px;
  margin-top: 15px;
  margin-bottom: 30px;
}

.promotion__text-bottom {
  font-size: 16px;
  line-height: 20px;
  max-width: 100%;
  color: var(--secondary-color);
  text-indent: 15px;
  margin: 30px 0;
  text-indent: 15px;
}

.promotion__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.promotion__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 2px;
  background: #FFF;
  box-shadow: 0px 0px 13.3875px 0px rgba(41, 80, 66, 0.20);
}

.promotion__img {
  width: 100%;
  height: 100%;
}

.promotion__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promotion__block:nth-child(2) img {
  object-position: 50% 25%;
}

.promotion__block:nth-child(3) img {
  object-position: 50% 80%;
}

.promotion__block:nth-child(4) img {
  object-position: 50% 40%;
}

.promotion__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  z-index: 2;
  padding: 20px 25px;
  gap: 15px;
  padding: 15px;
  background: var(--background-main);
}

.form__text-top {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--green-dark);
}

.form__text-bottom {
  color: #3D3725;
}

.promotion__form input {
  width: 100%;
  height: 35px;
  background: #fff;
  padding-left: 20px;
}

.promotion__form button {
  position: relative;
  font-weight: 600;
  line-height: 16px;
  color: #fff;
  border-radius: 10px;
  background: var(--horizontal-grad, linear-gradient(261deg, #33B7EF 13.79%, #6AE8D1 83.98%));
  box-shadow: 0px 4px 20px 6px rgba(127, 127, 127, 0.15);
  padding: 12px 0;
  text-align: center;
  width: 100%;
  transition: all .3s ease;
}

.promotion__form button:hover {
  background: var(--horizontal-grad, linear-gradient(-261deg, #33B7EF 13.79%, #6AE8D1 83.98%));
}

.promotion__form .form__check {
  margin: 0;
}

/* ----------------- @media --------------------- */

@media screen and (max-width: 1000px) {
  main::before {
    top: 50%;
    left: -90px;
    width: 316px;
    height: 325px;
    background: url(/static/svg/c-bg2.svg) no-repeat center;
    background-size: contain;
  }

  main::after {
    width: 263px;
    height: 145px;
    background: url(/static/svg/c-bg3.svg) no-repeat center;
    background-size: contain;
  }

  .bg::before {
    background: url(/static/svg/c-bg1.svg) no-repeat center;
    background-size: contain;
    width: 182px;
    height: 368px;
  }

  .promotion__row {
    gap: 15px;
    margin-bottom: 20px;
  }

  .promotion__block {
    flex-direction: column;
  }

  .promotion__img {
    height: 180px
  }

  .promotion__img img {
    object-position: 50% 0%;
  }
}

@media screen and (max-width: 575px) {
  .promotion__row {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 410px) {
  .promotion__form {
    display: flex;
  }
}