/* ? Form */
.callback_form_container .cb2-section {
  padding: 0;
  font-family: var(--font-family, sans-serif);
}

.callback_form_container .cb2-section * {
  box-sizing: border-box;
  font-family: inherit;
}

.callback_form_container .cb2-section .cb2-container {
  max-height: unset;
}

.callback_form_container .cb2-section .cb2-form-block {
  min-height: 473px;
  width: 50%;
  background-color: #539e67;
  padding: 40px 20px;
  place-content: center;
  place-items: center;
}

.callback_form_container .cb2-section .cb2-title {
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--white-color);
  font-size: clamp(24px, 5vw, 32px);
}

.callback_form_container .cb2-section .cb2-form {
  max-width: 456px;
  width: 100%;
  place-items: stretch;
  gap: 0;
}

.callback_form_container .cb2-section .cb2-input {
  line-height: 1.15;
  border: none;
  border-radius: 0 !important;
  background-color: #fff;
  display: block;
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  color: var(--black-color);
  outline: none;
}

.callback_form_container .cb2-section .cb2-input:not(:first-child) {
  margin-top: 10px;
}

.callback_form_container .cb2-section .cb2-button {
  margin-top: 24px;
  display: inline-flex;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--white-color);
  align-items: center;
  text-align: center;
  border: 1px solid var(--white-color);
  border-radius: 0;
  width: 100%;
  transition: all ease 0.3s;
}

.callback_form_container .cb2-section .cb2-button:hover {
  color: var(--brand-color);
  background-color: var(--white-color);
}