.advancedformv3_vwzdu {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin: var(--margin_tb) 0;
  padding-top: var(--padding_tb);
  padding-bottom: var(--padding_tb);

  color: #10271d;
}

.advancedformv3_vwzdu * {
  box-sizing: border-box;
}

.advancedformv3_vwzdu__inner {
  width: 100%;
  max-width: var(--custom-content-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--padding_lr);
  padding-right: var(--padding_lr);
}

.advancedformv3_vwzdu__layout {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(80px, 9.4vw, 180px);
}

.advancedformv3_vwzdu__layout--form-only {
  justify-content: center;
}

.advancedformv3_vwzdu__contact {
  max-width: 100%;
  padding-top: 75px;
  color: #54655e;
}

.advancedformv3_vwzdu__eyebrow {
  display: block;
  margin: 0 0 17px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #10271d;
}

.advancedformv3_vwzdu__title {
  margin: 0 0 43px;
  color: #10271d;
  font-size: 52px;
  line-height: .88;
  font-weight: 700;
  letter-spacing: 0;
}

.advancedformv3_vwzdu__copy {
  margin: 0;
  color: #54655e;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}

.advancedformv3_vwzdu__copy + .advancedformv3_vwzdu__copy {
  margin-top: 39px;
}

.advancedformv3_vwzdu__details {
  display: grid;
  gap: 20px;
  margin-top: 95px;
  color: #001b17;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 700;
}

.advancedformv3_vwzdu__detail {
  width: max-content;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color .2s ease;
}

.advancedformv3_vwzdu__detail:hover,
.advancedformv3_vwzdu__detail:focus-visible {
  color: var(--theme_color);
}

.advancedformv3_vwzdu__panel {
  width: 610px;
  max-width: 100%;
  min-height: 670px;
  padding: 60px 70px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 34px rgba(0, 0, 0, .05);
}

.advancedformv3_vwzdu .form.adv-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  min-width: 0;
  margin: 0;
}

.advancedformv3_vwzdu .form-region,
.advancedformv3_vwzdu__fields {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  gap: 40px 0;
  min-width: 0;
  align-content: start;
}

.advancedformv3_vwzdu .adv-form__field {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.advancedformv3_vwzdu .adv-form__field--normal-row {
  grid-column: auto;
}

.advancedformv3_vwzdu .adv-form__field--full-row {
  grid-column: 1 / -1;
}

.advancedformv3_vwzdu .adv-form__field--textarea {
  min-height: 90px;
}

.advancedformv3_vwzdu .adv-form__field > label:first-child {
  display: var(--label-display);
  margin: 0;
  padding-bottom: 8px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}

.advancedformv3_vwzdu .adv-form__field > label:first-child em {
  margin-left: 2px;
  color: inherit;
  font-style: normal;
}

.advancedformv3_vwzdu .advancedformv3_vwzdu__required {
  position: absolute;
  top: 15px;
  right: 0;
  z-index: 1;
  color: #e11900;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  pointer-events: none;
}


.advancedformv3_vwzdu [data-component="em-textarea"] .advancedformv3_vwzdu__field-icon{
  top: 15%;
}

.advancedformv3_vwzdu .advancedformv3_vwzdu__field-icon {
  position: absolute;
  left: 0;
  top: 50%;
    
    transform: translateY(-50%);
 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  font-size: 25px;
  line-height: 1;
  pointer-events: none;
  transition: color .2s ease;
}

.advancedformv3_vwzdu .adv-form__field input:not([type="radio"]):not([type="checkbox"]),
.advancedformv3_vwzdu .adv-form__field select,
.advancedformv3_vwzdu .adv-form__field textarea {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0 0 0 35px;
  border: 0;
  border-bottom: 1px solid #cbd6ce;
  border-radius: 0;
  background: transparent;

  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  outline: none;
  transition: border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.advancedformv3_vwzdu .adv-form__field input:not([type="radio"]):not([type="checkbox"]),
.advancedformv3_vwzdu .adv-form__field select {
  height: 50px;
}

.advancedformv3_vwzdu .adv-form__field textarea {
  height: 90px;
  resize: vertical;
  padding-top: 0;
}

.advancedformv3_vwzdu .adv-form__field input::placeholder,
.advancedformv3_vwzdu .adv-form__field textarea::placeholder {

  opacity: 1;
}

.advancedformv3_vwzdu .adv-form__field:focus-within .advancedformv3_vwzdu__field-icon,
.advancedformv3_vwzdu .adv-form__field:hover .advancedformv3_vwzdu__field-icon {
  color: var(--theme_color);
}

.advancedformv3_vwzdu .adv-form__field input:not([type="radio"]):not([type="checkbox"]):focus,
.advancedformv3_vwzdu .adv-form__field select:focus,
.advancedformv3_vwzdu .adv-form__field textarea:focus {
  border-bottom-color: var(--theme_color);
  color: #10271d;
  box-shadow: 0 1px 0 var(--theme_color);
}

.advancedformv3_vwzdu .adv-form__phone {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 10px;
  width: 100%;
}

.advancedformv3_vwzdu .adv-form__choices {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 28px;
}

.advancedformv3_vwzdu .adv-form__field[data-component="em-checkbox"]:has(> .advancedformv3_vwzdu__field-icon) > .adv-form__choices,
.advancedformv3_vwzdu .adv-form__field[data-component="em-radio"]:has(> .advancedformv3_vwzdu__field-icon) > .adv-form__choices,
.advancedformv3_vwzdu .adv-form__field[data-item-type="checkbox"]:has(> .advancedformv3_vwzdu__field-icon) > .adv-form__choices,
.advancedformv3_vwzdu .adv-form__field[data-item-type="radio"]:has(> .advancedformv3_vwzdu__field-icon) > .adv-form__choices,
.advancedformv3_vwzdu .adv-form__field[data-input-type="checkbox"]:has(> .advancedformv3_vwzdu__field-icon) > .adv-form__choices,
.advancedformv3_vwzdu .adv-form__field[data-input-type="radio"]:has(> .advancedformv3_vwzdu__field-icon) > .adv-form__choices {
  box-sizing: border-box;
  width: 100%;
  padding-left: 35px;
}

.advancedformv3_vwzdu .adv-form__choice,
.advancedformv3_vwzdu .adv-form__field label:has(input[type="radio"]),
.advancedformv3_vwzdu .adv-form__field label:has(input[type="checkbox"]) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  margin: 0;
  color: #1d2129;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  cursor: pointer;
}

.advancedformv3_vwzdu .adv-form__field input[type="radio"],
.advancedformv3_vwzdu .adv-form__field input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  display: inline-grid;
  place-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  border: 1px solid #c9d1dc;
  background: #fff;
  cursor: pointer;
  vertical-align: -4px;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.advancedformv3_vwzdu .adv-form__field input[type="radio"] {
  border-radius: 50%;
}

.advancedformv3_vwzdu .adv-form__field input[type="radio"]:checked,
.advancedformv3_vwzdu .adv-form__field input[type="checkbox"]:checked {
  border-color: var(--theme_color);
  background: var(--theme_color);
}

.advancedformv3_vwzdu .adv-form__field input[type="radio"]:checked {
  box-shadow: inset 0 0 0 4px #fff;
}

.advancedformv3_vwzdu .adv-form__field input[type="checkbox"]::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px) scale(0);
  transition: transform .2s ease;
}

.advancedformv3_vwzdu .adv-form__field input[type="checkbox"]:checked::before {
  transform: rotate(-45deg) translateY(-1px) scale(1);
}

.advancedformv3_vwzdu .adv-form__field[data-component="em-attachment"]:has(> .advancedformv3_vwzdu__field-icon),
.advancedformv3_vwzdu .adv-form__field[data-item-type="attachment"]:has(> .advancedformv3_vwzdu__field-icon),
.advancedformv3_vwzdu .adv-form__field[data-input-type="em-attachment"]:has(> .advancedformv3_vwzdu__field-icon) {
  box-sizing: border-box;
  padding-left: 35px;
}

.advancedformv3_vwzdu .adv-form__field[data-component="em-attachment"]:has(> .advancedformv3_vwzdu__field-icon) input[type="file"],
.advancedformv3_vwzdu .adv-form__field[data-item-type="attachment"]:has(> .advancedformv3_vwzdu__field-icon) input[type="file"],
.advancedformv3_vwzdu .adv-form__field[data-input-type="em-attachment"]:has(> .advancedformv3_vwzdu__field-icon) input[type="file"] {
  padding-left: 0;
}

.advancedformv3_vwzdu .adv-form__ganged {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.advancedformv3_vwzdu textarea{
  font-family: '';

}
.advancedformv3_vwzdu textarea::placeholder{
  font-size: 15px;

}

.advancedformv3_vwzdu .form-actions {
  width: 100%;
  margin: 0;
}

.advancedformv3_vwzdu .btnCont.advancedformv3_vwzdu__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 200px;
  padding-block: 20px;

  border: 0;
  border-radius: 50px;
  background: var(--theme_color);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.advancedformv3_vwzdu .advancedformv3_vwzdu__submit-icon {
 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  
}

.advancedformv3_vwzdu .btnCont.advancedformv3_vwzdu__submit:hover,
.advancedformv3_vwzdu .btnCont.advancedformv3_vwzdu__submit:focus-visible {
  background: color-mix(in srgb, var(--theme_color) 88%, #000);
  transform: translateY(-1px);
}

.advancedformv3_vwzdu .btnCont.advancedformv3_vwzdu__submit:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--theme_color) 38%, transparent);
  outline-offset: 3px;
}

.rtlAr .advancedformv3_vwzdu {
  text-align: right;
}

.rtlAr .advancedformv3_vwzdu .advancedformv3_vwzdu__field-icon {
  left: auto;
  right: 0;
}

.rtlAr .advancedformv3_vwzdu .advancedformv3_vwzdu__required {
  right: auto;
  left: 0;
}

.rtlAr .advancedformv3_vwzdu .adv-form__field input:not([type="radio"]):not([type="checkbox"]),
.rtlAr .advancedformv3_vwzdu .adv-form__field select,
.rtlAr .advancedformv3_vwzdu .adv-form__field textarea {
  padding-left: 0;
  padding-right: 35px;
}

.rtlAr .advancedformv3_vwzdu .adv-form__field[data-component="em-checkbox"]:has(> .advancedformv3_vwzdu__field-icon) > .adv-form__choices,
.rtlAr .advancedformv3_vwzdu .adv-form__field[data-component="em-radio"]:has(> .advancedformv3_vwzdu__field-icon) > .adv-form__choices,
.rtlAr .advancedformv3_vwzdu .adv-form__field[data-item-type="checkbox"]:has(> .advancedformv3_vwzdu__field-icon) > .adv-form__choices,
.rtlAr .advancedformv3_vwzdu .adv-form__field[data-item-type="radio"]:has(> .advancedformv3_vwzdu__field-icon) > .adv-form__choices,
.rtlAr .advancedformv3_vwzdu .adv-form__field[data-input-type="checkbox"]:has(> .advancedformv3_vwzdu__field-icon) > .adv-form__choices,
.rtlAr .advancedformv3_vwzdu .adv-form__field[data-input-type="radio"]:has(> .advancedformv3_vwzdu__field-icon) > .adv-form__choices {
  padding-left: 0;
  padding-right: 35px;
}

.rtlAr .advancedformv3_vwzdu .adv-form__field[data-component="em-attachment"]:has(> .advancedformv3_vwzdu__field-icon),
.rtlAr .advancedformv3_vwzdu .adv-form__field[data-item-type="attachment"]:has(> .advancedformv3_vwzdu__field-icon),
.rtlAr .advancedformv3_vwzdu .adv-form__field[data-input-type="em-attachment"]:has(> .advancedformv3_vwzdu__field-icon) {
  padding-left: 0;
  padding-right: 35px;
}

.rtlAr .advancedformv3_vwzdu .adv-form__field[data-component="em-attachment"]:has(> .advancedformv3_vwzdu__field-icon) input[type="file"],
.rtlAr .advancedformv3_vwzdu .adv-form__field[data-item-type="attachment"]:has(> .advancedformv3_vwzdu__field-icon) input[type="file"],
.rtlAr .advancedformv3_vwzdu .adv-form__field[data-input-type="em-attachment"]:has(> .advancedformv3_vwzdu__field-icon) input[type="file"] {
  padding-right: 0;
}

.rtlAr .advancedformv3_vwzdu .advancedformv3_vwzdu__submit-icon {
  transform: rotate(152deg);
}

@media (max-width: 1199px) {
  .advancedformv3_vwzdu__layout {
    flex-direction: column;
    gap: 50px;
  }

  .advancedformv3_vwzdu__contact {
    width: 100%;
    padding-top: 0;
  }

  .advancedformv3_vwzdu__panel {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .advancedformv3_vwzdu__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .advancedformv3_vwzdu__layout {
    gap: 50px;
  }

  .advancedformv3_vwzdu__title {
    margin-bottom: 25px;
    font-size: 36px;
    line-height: 1.02;
  }

  .advancedformv3_vwzdu__details {
    margin-top: 95px;
  }

  .advancedformv3_vwzdu__panel {
    min-height: 670px;
    padding: 60px 40px;
  }

  .advancedformv3_vwzdu .form-region,
  .advancedformv3_vwzdu__fields {
    grid-template-columns: 1fr;
  }

  .advancedformv3_vwzdu .adv-form__phone,
  .advancedformv3_vwzdu .adv-form__ganged {
    grid-template-columns: 1fr;
    flex-wrap: wrap;
  }
}
