.selection__help h1 {
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  text-align: center;
  padding-bottom: 20px;
}

.selection__help-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.selection__form {
  max-width: 390px;
  width: 100%;
  padding-bottom: 20px;
}

.selection__form h1,
.selection__form h2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: var(--black-color);
  text-align: left;
  padding-bottom: 10px;
  padding-top: 20px;
}

.selection__form button {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: var(--white-color);
  background: -webkit-gradient(linear, left top, left bottom, from(#c09ef7), to(#b289f5));
  background: -o-linear-gradient(top, #c09ef7 0%, #b289f5 100%);
  background: linear-gradient(180deg, #c09ef7 0%, #b289f5 100%);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 30px;
  padding: 15px;
  display: block;
  margin-left: auto;
  margin-top: 20px;
  max-width: 186px;
  width: 100%;
}

.selection__img {
  max-width: 690px;
  width: 100%;
  height: inherit;
}

.selection__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.selection__text {
  max-width: 900px;
  width: 100%;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  margin-top: 40px;
  color: var(--black-color);
}

.selection__text:last-child {
  padding-bottom: 20px;
}

/* ----------------------------- offers ------------------------- */
.offers__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  padding-top: 40px;
}

.offers__card a {
  width: 100%;
  height: 100%;
}

.offers__card {
  width: 300px;
  height: 175px;
  background: var(--white-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  border-top: 2px solid var(--bg-color);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.offers__card:hover {
  -webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2) inset;
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2) inset;
}

.offers__card h2 {
  position: absolute;
  top: 20px;
  left: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
}

.offers__card p {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  padding-right: 70px;
  background: initial;
}

.offers__card img {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
}

.offers__card span:nth-child(1),
.offers__card span:nth-child(2),
.offers__card span:nth-child(3) {
  position: absolute;
  border-radius: 50%;
}

.offers__card span:nth-child(1) {
  width: 288px;
  height: 288px;
  background: #e8dbff;
  top: 50px;
  right: 75px;
}

.offers__card2 span:nth-child(1) {
  background: #eeffdb;
}

.offers__card3 span:nth-child(1) {
  background: #ffdbdb;
}

.offers__card4 span:nth-child(1) {
  background: #dbfff4;
}

.offers__card span:nth-child(2) {
  width: 247px;
  height: 247px;
  background: #dcc7ff;
  top: 72px;
  right: 85px;
}

.offers__card2 span:nth-child(2) {
  background: #d4ffae;
}

.offers__card3 span:nth-child(2) {
  background: #ffc7c7;
}

.offers__card4 span:nth-child(2) {
  background: #baffe4;
}

.offers__card span:nth-child(3) {
  width: 206px;
  height: 206px;
  background: #d0b4ff;
  top: 98px;
  right: 95px;
}

.offers__card2 span:nth-child(3) {
  background: #c1f592;
}

.offers__card3 span:nth-child(3) {
  background: #ffb4b4;
}

.offers__card4 span:nth-child(3) {
  background: #99fbdf;
}

/* ------------------- end of offers --------------------- */

.selection__params-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  margin: 30px 0 10px;
}

.selection__params-wrap {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  margin-top: 40px;
  padding: 10px;
}

.selection__params-list {
  display: block;
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  border-radius: 10px;
  padding: 30px 70px;
}

.selection__params-list li {
  position: relative;
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  color: var(--black-color);
  margin-bottom: 15px;
  padding-left: 42px;
}

.selection__params-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(/img/svg/selection-ok.svg) no-repeat center;
  background-size: contain;
  width: 22px;
  height: 22px;
}

.selection__digits {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  padding: 10px;
}

.selection__digits-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 30px 40px;
}

.selection__digits-col {
  position: relative;
  max-width: 314px;
  width: 100%;
  height: 230px;
}

.selection__digits-col h3 {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  color: var(--black-color);
}

.selection__digits-col span {
  position: absolute;
  bottom: 0;
  right: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: var(--black-color);
}

.selection__digits-col p,
.selection__digits-col .selection__digit,
.selection__digits-col em,
.selection__digits-col b {
  position: absolute;
  top: 30%;
  font-weight: 600;
  font-size: 120px;
  line-height: 120px;
  color: #999999;
}

.selection__digits-col p {
  right: 8%;
}

.selection__digits-col .selection__digit {
  right: 46%;
}

.selection__digits-col em {
  right: 8%;
}

.selection__digits-col b {
  left: 0;
  font-size: 16px;
  line-height: 16px;
  color: var(--black-color);
}

.main__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 10px 0 30px;
}

.text__content {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(71, 79, 160, 0.05);
  margin-top: 25px;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.text__content-wrap {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(71, 79, 160, 0.05);
  margin: 10px;
  padding: 35px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.redemption__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: var(--black-color);
}

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

@media screen and (max-width: 1200px) {
  .offers__row {
    display: block;
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    max-width: 900px;
    margin: 0 auto;
  }

  .offers__card {
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1199px) {
  .selection__digits-col {
    max-width: 250px;
    height: 140px;
    margin: 10px;
  }

  .selection__digits-col h3 {
    font-size: 16px;
    line-height: 16px;
  }

  .selection__digits-col p,
  .selection__digits-col .selection__digit,
  .selection__digits-col em {
    font-size: 80px;
    line-height: 80px;
  }

  .selection__digits-col:first-child {
    max-width: 200px;
  }
}

@media screen and (max-width: 1024px) {
  .selection__params-title {
    font-size: 24px;
    line-height: 24px;
  }

  .selection__params-list {
    padding: 30px;
  }

  .selection__params-list li {
    font-size: 18px;
  }

  .text__content {
    margin-top: 0;
  }

  .text__content-wrap {
    padding: 20px;
    gap: 10px;
  }

  .redemption__text {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (max-width: 1023px) {
  .redemption__form {
    max-width: 100%;
    width: 54%;
    padding: 0;
  }
}

@media screen and (max-width: 840px) {
  .selection__digits-row {
    padding: 20px 0;
    background: none;
  }
}

@media screen and (max-width: 768px) {
  .selection__help h1 {
    font-size: 24px;
    line-height: 24px;
  }

  .selection__help-main {
    position: relative;
    margin-right: -20px;
  }

  .selection__form h1,
  .selection__form h2 {
    display: none;
  }

  .selection__form button {
    position: absolute;
    bottom: 0;
    right: 80px;
    margin-left: 0;
  }

  .selection__img {
    position: relative;
    overflow: hidden;
    height: 400px;
    top: 10px;
  }

  .selection__img img {
    position: absolute;
    top: calc(50% - 130px);
    right: -40px;
  }

  .selection__text {
    font-size: 16px;
    line-height: 19px;
    margin-top: 30px;
  }

  .selection__params-wrap {
    padding: 0;
    background: none;
    margin-top: 30px;
  }

  .selection__params-list {
    padding: 0;
    background: none;
  }

  .selection__params-list li {
    font-size: 14px;
    line-height: 16px;
    padding-left: 20px;
    margin-bottom: 10px;
  }

  .selection__params-list li::before {
    width: 16px;
    height: 16px;
  }

  .redemption__form h2 {
    display: block;
  }

  .redemption__form button {
    position: initial;
    margin-left: auto;
  }
}

@media screen and (max-width: 767px) {
  .main__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 0 20px;
  }

  .redemption__form {
    width: 100%;
  }

  .selection__params-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 760px) {
  .label {
    max-width: 100%;
  }

  .selection__help-main {
    margin-right: 0;
  }

  .selection__form {
    max-width: 600px;
    margin: 0 auto;
  }

  .selection__form input {
    margin-bottom: 10px;
  }

  .selection__form button {
    position: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px auto 0;
    margin-right: initial;
  }

  .selection__img {
    display: none;
  }

  .selection__text {
    font-size: 15px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 740px) {
  .selection__digits {
    padding: 10px 0;
  }

  .selection__digits-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .selection__digits-col {
    height: auto;
    min-height: 200px;
    max-width: 340px;
  }

  .selection__digits-col:first-child {
    max-width: 300px;
  }

  .selection__digits-col h3 {
    font-size: 23px;
    line-height: 24px;
  }

  .selection__digits-col p,
  .selection__digits-col .selection__digit,
  .selection__digits-col em {
    font-size: 120px;
    line-height: 120px;
  }

  .selection__digits-col p {
    right: 10%;
  }
}

@media screen and (max-width: 670px) {
  .offers__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
  }

  .offers__card {
    max-width: 480px;
    width: 100%;
    height: 140px;
    margin: 0;
  }

  .offers__card h2 {
    top: 15px;
  }

  .offers__card p {
    bottom: 15px;
  }
}

@media screen and (max-width: 520px) {
  .selection__digits {
    padding: 0;
    background: none;
  }

  .selection__digits-col {
    min-height: 150px;
  }

  .selection__digits-col p,
  .selection__digits-col .selection__digit,
  .selection__digits-col em {
    font-size: 100px;
    line-height: 70px;
  }
}

@media screen and (max-width: 460px) {
  .selection__params-title {
    font-size: 20px;
    line-height: 20px;
    margin: 20px 0 10px;
  }

  .selection__params-wrap {
    padding: 0;
    background: none;
    margin-top: 15px;
  }
}

@media screen and (max-width: 425px) {
  .redemption__form button {
    max-width: 100%;
    border-radius: 10px;
  }
}

@media screen and (max-width: 414px) {
  .selection__help h1 {
    font-size: 19px;
    line-height: 20px;
  }
}

@media screen and (max-width: 375px) {

  .text__content,
  .text__content-wrap {
    background: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }

  .redemption__text {
    text-indent: 20px;
  }
}