.manager-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  background: var(--q-form-background);
  border-radius: 24px;
  padding: 40px 72px;
  margin-top: 64px;
}
@media (max-width: 991px) {
  .manager-form {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px;
    margin-top: 40px;
  }
}
.manager-form__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: var(--subtitle-color);
  width: 360px;
}
@media (max-width: 991px) {
  .manager-form__title {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }
}
.manager-form__formbox {
  width: calc(100% - 400px);
}
@media (max-width: 991px) {
  .manager-form__formbox {
    width: 100%;
  }
}
.manager-form__formbox br, .manager-form__formbox .ajax-loader, .manager-form__formbox .wpcf7-spinner {
  display: none !important;
}
.manager-form__formbox .wpcf7 {
  display: block;
  margin-top: -20px;
}
@media (max-width: 991px) {
  .manager-form__formbox .wpcf7 {
    margin-top: 0;
  }
}
.manager-form__cols {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.manager-form__col {
  display: block;
  width: calc(50% - 8px);
}
@media (max-width: 991px) {
  .manager-form__col {
    width: 100%;
  }
}
.manager-form .offset__24 {
  margin-top: 24px;
}
.manager-form span.wpcf7-list-item {
  display: block;
  margin: 0;
}
.manager-form label {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  line-height: 20px;
  color: var(--link-color);
}
.manager-form .wpcf7-form-control-wrap {
  display: block;
  position: relative;
  margin: 0;
  max-width: 100%;
}
.manager-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  box-sizing: border-box;
  left: 1px;
  top: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  color: #f44336;
  font-size: 12px;
  line-height: 18px;
  background-color: #ffffff;
  padding: 0 18px;
  border-radius: 8px;
}
.manager-form input[type=text], .manager-form input[type=tel], .manager-form input[type=email], .manager-form input[type=number], .manager-form input[type=password] {
  display: block;
  box-sizing: border-box;
  margin: 8px auto 0;
  width: 100%;
  height: 46px;
  background-color: var(--filter-input-background);
  padding: 0 20px;
  border: 1px solid var(--filter-border);
  color: var(--subtitle-color);
  font-size: 14px;
  border-radius: 8px;
}
.manager-form input[type=text]::placeholder, .manager-form input[type=tel]::placeholder, .manager-form input[type=email]::placeholder, .manager-form input[type=number]::placeholder, .manager-form input[type=password]::placeholder {
  color: var(--text-color-gray);
}
.manager-form input[type=text]:focus, .manager-form input[type=tel]:focus, .manager-form input[type=email]:focus, .manager-form input[type=number]:focus, .manager-form input[type=password]:focus {
  outline: none;
  border: 1px solid var(--link-color);
}
.manager-form input[type=text].wpcf7-not-valid, .manager-form input[type=tel].wpcf7-not-valid, .manager-form input[type=email].wpcf7-not-valid, .manager-form input[type=number].wpcf7-not-valid, .manager-form input[type=password].wpcf7-not-valid {
  border: 1px solid #f44336;
}
.manager-form textarea {
  display: block;
  box-sizing: border-box;
  margin: 8px auto 0;
  width: 100%;
  height: 150px;
  background-color: var(--filter-input-background);
  padding: 12px 20px;
  border: 1px solid var(--filter-border);
  color: var(--subtitle-color);
  resize: none;
  font-size: 14px;
  border-radius: 8px;
}
.manager-form textarea::placeholder {
  color: var(--text-color-gray);
}
.manager-form textarea:focus {
  outline: none;
  border: 1px solid var(--link-color);
}
.manager-form textarea.wpcf7-not-valid {
  border: 1px solid #f44336;
}
.manager-form .wpcf7-checkbox input {
  display: none;
}
.manager-form .wpcf7-checkbox label {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-color-gray);
  padding-left: 40px;
}
.manager-form .wpcf7-checkbox label a {
  color: var(--link-color) !important;
}
.manager-form .wpcf7-checkbox label .wpcf7-list-item-label {
  display: block;
}
.manager-form .wpcf7-checkbox label .wpcf7-list-item-label:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border: 1px solid #DDE6ED;
  border-radius: 6px;
  background-position: center;
  transition: 0.3s all ease 0s;
}
.manager-form .wpcf7-checkbox label input {
  display: none;
}
.manager-form .wpcf7-checkbox label input:checked + .wpcf7-list-item-label:before {
  background: #ffffff url("../../images/desktop/icon-check.svg") no-repeat center;
}
.manager-form .wpcf7-checkbox.wpcf7-not-valid label .wpcf7-list-item-label:before {
  border-color: #f44336;
}
.manager-form .wpcf7-checkbox.wpcf7-not-valid + .wpcf7-not-valid-tip {
  display: none !important;
}
.manager-form .wpcf7-submit {
  margin: 20px auto 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 46px;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  border-radius: 8px;
  transition: 0.3s all cubic-bezier(0.35, 0, 0, 1) 0s;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid var(--btn-background-2);
  background: var(--btn-background-2);
  color: var(--btn-color-2);
}
.manager-form .wpcf7-submit:not(.disabled):hover {
  border-color: var(--btn-background-2-hover);
  background: var(--btn-background-2-hover);
}
.manager-form .wpcf7-submit:not(.disabled):active {
  border-color: var(--btn-background-2-active);
  background: var(--btn-background-2-active);
}
.manager-form .wpcf7-response-output {
  display: none !important;
}
.manager-form .privacy-message {
  display: block;
  padding-top: 12px;
}

.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 */
