.b-choose-form {}

:is(header, main, footer, .modal) .b-choose-form h2,
:is(header, main, footer, .modal) .b-choose-form .h2,
.b-choose-form h2 {
  margin-bottom: 23px;
  font-weight: 600;
  font-size: 36px;
  line-height: 79%;
  color: #000;
}

.b-choose-form .choose-form__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 178%;
  color: #000;
  margin-bottom: 28px;
}

.b-choose-form.light-gray-bg {
  border-radius: 20px;
  background: rgba(215, 227, 241, 0.3);
  padding: 30px;
}

.b-choose-form .feedback-form__main {
  max-width: 100%;
  width: 100%;
}

.b-choose-form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.b-choose-form .form__inputholder {
  flex: 0 0 calc(100% / 3 - 15px);
  margin-bottom: 20px;
}

.b-choose-form form .inputholder__input--textareawr,
.b-choose-form form .form__policy.policy,
.b-choose-form form .form__buttonholder {
  flex: 0 0 100%;
}

.b-choose-form .inputholder__label {
  color: #1A1A1A;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.b-choose-form form .form__buttonholder {
  display: flex;
  justify-content: end;
  margin-top: 20px;
  order: 100;
}

.b-choose-form form .form__buttonholder button {
  display: flex;
  width: 240px;
  height: 45px;
  padding: 13px 29px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #005FCB;
}

.b-choose-form form .form__policy.policy {
  order: 99;
  color: #717483;
  font-family: "Roboto Flex";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-top: 0;
}

.b-choose-form form input,
.b-choose-form form textarea {
  background: #fff;
}

.b-choose-form .inputholder__input:not(.error):not(:focus):hover {
  border-color: #e5e8f4;
  background-color: #e5e8f4;
}
.b-choose-form .form-thanks,
.b-choose-form .form-thanks--white{
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .b-choose-form.light-gray-bg {
    padding: 20px;
  }

  .b-choose-form .form__inputholder {
    flex: 0 0 100%;
  }

  .b-choose-form form .form__buttonholder {
    justify-content: center;
  }
}

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

  :is(header, main, footer, .modal) .b-choose-form h2,
  :is(header, main, footer, .modal) .b-choose-form .h2,
  .b-choose-form h2 {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .b-choose-form .choose-form__description {
    line-height: 1.3;
  }
}