.question-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  background: var(--q-form-background);
  height: 268px;
  border: 1px solid var(--q-form-border);
  border-radius: 24px;
  padding: 0 60px;
}
@media (max-width: 991px) {
  .question-form {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    padding: 24px;
  }
}
.question-form__info {
  width: 390px;
}
@media (max-width: 991px) {
  .question-form__info {
    width: 100%;
  }
}
.question-form__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 42px;
  color: var(--subtitle-color);
}
@media (max-width: 991px) {
  .question-form__title {
    font-size: 16px;
    line-height: 24px;
  }
}
.question-form__description {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-color-gray);
}
@media (max-width: 991px) {
  .question-form__description {
    margin-top: 8px;
    font-size: 12px;
    line-height: 16px;
  }
}
.question-form__btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .question-form__btns {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 8px;
    margin-top: 24px;
    width: 100%;
  }
}
.question-form__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 148px;
  color: #FFFFFF;
  background: #243C4E;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: 0.3s all ease-in-out 0s;
  margin-right: 24px;
}
@media (max-width: 991px) {
  .question-form__btn {
    flex-direction: row;
    width: 100%;
    height: 44px;
    margin: 0;
    column-gap: 10px;
  }
}
.question-form__btn_call {
  background: #243C4E;
}
.question-form__btn_tg {
  background: #56CCF2;
}
.question-form__btn_whats {
  background: #27AE60;
}
.question-form__btn:last-child {
  margin-right: 0;
}
.question-form__btn:hover {
  transform: translate(0, -2px);
}
.question-form__btn:active {
  opacity: 0.7;
}
.question-form__btn svg {
  display: block;
}
@media (max-width: 991px) {
  .question-form__btn svg {
    width: 24px;
    height: auto;
  }
}
.question-form__btn span {
  margin-top: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .question-form__btn span {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
  }
  .question-form__btn span br {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
