/* Section titles */

h3.gsection_title { color: var(--brand-1); font-weight: 400; border-bottom: 1px solid var(--brand-2); font-size: 2.75rem; margin: 4rem 0 2rem; }

/* Select */
.gfield select { font-size: inherit; font-family: inherit; color: var(--brand-1); }

/* Gravity DIVs */
.gsection { margin-bottom: 3rem; }


body .gform_wrapper .gform_body .gform_fields .gfield .gchoice {
    position: relative;
}

/* Checkboxes */
.gfield_checkbox .gfield-choice-input {
    position: absolute;
    opacity: 0;
}

.gfield_checkbox .gfield-choice-input + label {
    position: relative;
    cursor: pointer;
    padding-left: 3rem;
}

.gfield_checkbox .gfield-choice-input + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    border: .2rem solid var(--brand-1);
    background: #fff;
    border-radius: .3rem;
}

.gfield_checkbox .gfield-choice-input:checked + label:before {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: var(--brand-1);
    font-size: 1.4rem;
}

.gfield_radio .gfield-choice-input {
    position: absolute;
    opacity: 0;
}

.gfield_radio .gfield-choice-input + label {
    position: relative;
    cursor: pointer;
    padding-left: 2.5rem;
}

.gfield_radio .gfield-choice-input + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    border: .2rem solid var(--brand-1);
    background: #fff;
    border-radius: 2rem;
}

.gfield_radio .gfield-choice-input:checked + label:before {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: var(--brand-1);
    font-size: 1rem;
    border-radius: 10rem;
}

.gfield input, .gfield textarea, .gfield span input{border: none; border-radius: 1rem;}

#gform_wrapper_1 .gfield .ginput_complex span{padding-right: 0; padding-left: 0;}

.gform_wrapper.gravity-theme .gfield_required, .gform_wrapper.gravity-theme .gform_required_legend{display: none !important;}