.form_new {
  display: flex;
  flex-direction: column;
  gap: 20px
}
.form__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -20px -20px 0
}
.form__row .form__btn,
.form__row .form__label {
  flex: 0 0 calc(25% - 40px);
  margin: 0 20px
}
.form__row_2 {
  display: flex;
  align-items: center;
  gap: 20px
}
.form__row_2 .form__btn,
.form__row_2 .form__label,
.form__row_2 .form__select,
.form__row_2 .form__textarea {
  flex: 0 0 calc(50% - 10px);
  width: 100%;
  max-width: unset!important;
  margin-bottom: 0!important
}
.form__row_2 input {
  padding: 17px 20px
}
.form__row_3 {
  display: flex;
  align-items: center;
  gap: 20px
}
.form__row_3 .form__btn,
.form__row_3 .form__label,
.form__row_3 .form__select,
.form__row_3 .form__textarea {
  flex: 0 0 calc(100% / 3 - 13px);
  width: 100%;
  max-width: unset!important;
  margin-bottom: 0!important
}
.form__row_3 input {
  padding: 17px 20px
}
.form__label {
  height: 59px;
  position: relative;
  display: block
}
.form__input {
  font-family: FuturaPT,Arial,sans-serif;
  font-size: 18px;
  line-height: 23px;
  border: 1px solid #202020;
  background-color: #fff;
  padding: 17px 20px;
  width: 100%;
  height: auto
}
.form__input::-moz-placeholder {
  color: #9d9d9d
}
.form__input::placeholder {
  color: #9d9d9d
}
.form__input.is-error {
  border-color: #e4002b
}
.form__input.is-error ~ .form__error {
  display: block
}
.form__select .select2__wrap.has-value .select2__wrap-title {
  top: 10px;
  font-size: 0
}
.form__select .select2__wrap-title {
  position: absolute;
  top: 18px;
  left: 20px;
  letter-spacing: 0
}
.form__select .select2-selection__rendered {
  padding-left: 0!important
}
.form__textarea {
  height: 59px;
  min-height: 59px;
  max-width: 100%;
  padding: 17px 20px;
  border: 1px solid #b5b5b5;
  background-color: #fff
}
.form__textarea::-moz-placeholder {
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  text-align: left;
  color: #9d9d9d
}
.form__textarea::placeholder {
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  text-align: left;
  color: #9d9d9d
}
.form__textarea:focus {
  margin-top: 0!important
}
.form__btn_fill {
  max-width: 100%!important
}
.form__error {
  position: absolute;
  bottom: -16px;
  left: 0;
  color: #e4002b;
  font-size: 12px;
  display: none
}
.form__policy {
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  margin-top: 32px
}
.form__policy a {
  color: #039a9f
}
.form__policy a:not(:hover) {
  text-decoration: underline
}
.form__wrap {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 32px
}
.form__col {
  display: flex;
  flex-direction: column;
  gap: 20px
}
.form__col:nth-child(2) {
  gap: 16px
}
.form__info {
  position: absolute;
  bottom: 12px;
  right: 20px;
  font-family: FuturaPT,Arial,sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #999
}
.form_dark .form__label {
  height: auto
}
.form_dark .form__input {
  height: 64px;
  padding: 20px;
  font-family: FuturaPT,Arial,sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
  border: 1px solid #3e3f41;
  border-radius: 12px;
  background-color: transparent
}
.form_dark .form__input::-moz-placeholder {
  color: #acadaf
}
.form_dark .form__input::placeholder {
  color: #acadaf
}
.form_dark .form__textarea {
  width: 100%;
  height: 94px;
  padding: 22px 20px;
  font-family: FuturaPT,Arial,sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
  border: 1px solid #3e3f41;
  border-radius: 12px;
  background-color: transparent;
  resize: none
}
.form_dark .form__textarea::-moz-placeholder {
  color: #acadaf
}
.form_dark .form__textarea::placeholder {
  color: #acadaf
}
.form_dark .form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  font-size: 18px;
  border-radius: 12px
}
@media (max-width:1200px) {
  .form__row {
    margin: -20px -10px 0
  }
  .form__row .form__btn,
  .form__row .form__label {
    flex: 0 0 calc(25% - 20px);
    margin: 20px 10px 0
  }
}
@media (max-width:1024px) {
  .form__row .form__btn,
  .form__row .form__label {
    flex: 0 0 calc(50% - 20px)
  }
  .form__wrap {
    gap: 20px
  }
}
@media (max-width:800px) {
  .form__error {
    bottom: -14px
  }
  .form__wrap {
    grid-template-columns: repeat(1,1fr);
    gap: 16px
  }
  .form__col {
    gap: 16px
  }
  .form__info {
    right: 12px
  }
  .form_dark .form__input {
    height: 48px;
    padding: 14px 15px
  }
  .form_dark .form__textarea {
    height: 120px;
    padding: 14px 15px
  }
  .form_dark .form__btn {
    margin-bottom: 16px;
    height: 48px;
    font-size: 16px
  }
  .form_dark .form__checkbox {
    order: 5
  }
}
@media (max-width:768px) {
  .form_new {
    gap: 10px
  }
  .form__row {
    margin: -20px 0 0
  }
  .form__row .form__btn,
  .form__row .form__label {
    flex: 0 0 100%;
    margin: 20px 0 0
  }
  .form__row_2 {
    flex-direction: column;
    gap: 10px
  }
  .form__row_2 .form__btn,
  .form__row_2 .form__label,
  .form__row_2 .form__select,
  .form__row_2 .form__textarea {
    flex: 0 0 100%
  }
  .form__row_3 {
    flex-direction: column;
    gap: 10px
  }
  .form__row_3 .form__btn,
  .form__row_3 .form__label,
  .form__row_3 .form__select,
  .form__row_3 .form__textarea {
    flex: 0 0 100%
  }
  .form__label {
    height: 45px
  }
  .form__input {
    padding: 6px 20px
  }
  .form__btn_fill {
    height: 59px;
    flex: unset
  }
}