/*=========================
	FORM WITH HEADING BLOCK
=========================*/

.block-form-with-heading {
    margin: 0;
}

.block-form-with-heading .title-col {
    display: flex;
    gap: var(--space-3);
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.block-form-with-heading .text {
    text-align: center;
    font-weight: bold;
    max-width: 900px;
    margin: auto;
    margin-bottom: 80px;
    font-size: 19px;
}

.block-form-with-heading .important {
    margin-bottom: var(--space-3);
    font-size: 22px;
}

.block-form-with-heading .content {
    max-width: 417px;
    margin: auto;
}

.block-form-with-heading .title-col .title {
    margin-bottom: unset;
}

.block-form-with-heading .gform_heading {
    display: none;
}

.block-form-with-heading .gform_wrapper.gravity-theme input[type=color], 
.block-form-with-heading .gform_wrapper.gravity-theme input[type=date], 
.block-form-with-heading .gform_wrapper.gravity-theme input[type=datetime-local], 
.block-form-with-heading .gform_wrapper.gravity-theme input[type=datetime], 
.block-form-with-heading .gform_wrapper.gravity-theme input[type=email], 
.block-form-with-heading .gform_wrapper.gravity-theme input[type=month], 
.block-form-with-heading .gform_wrapper.gravity-theme input[type=number], 
.block-form-with-heading .gform_wrapper.gravity-theme input[type=password], 
.block-form-with-heading .gform_wrapper.gravity-theme input[type=search], 
.block-form-with-heading .gform_wrapper.gravity-theme input[type=tel], 
.block-form-with-heading .gform_wrapper.gravity-theme input[type=text], 
.block-form-with-heading .gform_wrapper.gravity-theme input[type=time], 
.block-form-with-heading .gform_wrapper.gravity-theme input[type=url], 
.block-form-with-heading .gform_wrapper.gravity-theme input[type=week], 
.block-form-with-heading .gform_wrapper.gravity-theme select, 
.block-form-with-heading .gform_wrapper.gravity-theme textarea {
    border: 1px solid #00B2A9;
    font-size: 18px;
}

.block-form-with-heading .gform_wrapper.gravity-theme .gfield_label {
    font-size: 18px;
}

.block-form-with-heading .gform_wrapper.gravity-theme .gfield textarea.small,
.block-form-with-heading .gform_wrapper.gravity-theme .gfield textarea.medium,
.block-form-with-heading .gform_wrapper.gravity-theme .gfield textarea.large {
    height: auto;
}

.block-form-with-heading fieldset#field_1_4 .gfield_label {
    margin-bottom: var(--space-3);
}

.block-form-with-heading .gfield-choice-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #00B2A9;
    outline: none;
    cursor: pointer;
    position: relative;
    margin-right: 10px;
}

.block-form-with-heading .gfield-choice-input:checked::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 6px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.block-form-with-heading .gfield-choice-input:checked {
    background-color: #00B2A9;
}

.block-form-with-heading .gform_wrapper.gravity-theme .gfield_checkbox label, .gform_wrapper.gravity-theme .gfield_radio label {
    font-size: 18px;
}

.block-form-with-heading .gchoice {
    display: flex;
    margin-bottom: var(--space-4);
}

.block-form-with-heading .gfield_required {
    display: none !important;
}

.block-form-with-heading fieldset#field_1_4 {
    grid-row: span 7;
    margin-left: var(--space-8);
}
.block-form-with-heading .gfield--type-html .link {
    color: var(--color-p);
    display: inline-block;
}

.block-form-with-heading form [type="submit"] {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    background: #00B2A9;
    color: #fff;
    padding: 8px 12px;
}

.block-form-with-heading input[type="file"]::file-selector-button {
    background-color: #00B2A9;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-right: 10px;
}

.block-form-with-heading .ginput_container select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    padding-right: 40px;
}

.block-form-with-heading .gfield--type-select .ginput_container {
    position: relative;
}

.block-form-with-heading .gfield--type-select .ginput_container::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 24px;
    height: 25px;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.9992 17.8077L6.69141 12.5L7.39916 11.7923L11.4992 15.8923V6H12.4992V15.8923L16.5992 11.7923L17.3069 12.5L11.9992 17.8077Z' fill='%2300B2A9'/%3E%3C/svg%3E%0A");
}

  @media only screen and (max-width: 992px) {
    .block-form-with-heading fieldset#field_1_4 {
        margin-left: var(--space-3);
    }
  }
  
  @media only screen and (max-width: 578px) {
    .block-form-with-heading fieldset#field_1_4 {
        margin-left: unset;
        grid-row: 5;
    }
  }
  