section.form-section form {
    /*max-width: 711px;
    margin: 0 auto;*/
}
.gform_heading {
    color: var(--color-main);
    padding: clamp(30px, 4.259vh, 46px) clamp(20px, 2.292vw, 44px) clamp(20px, 3.889vh, 42px);
}
.gform_heading h2 {
    margin-bottom: 2px;
    font-size: var(--fs-31);
}
.gform_description {
    font-size: var(--fs-20);
    margin-bottom: 0;
    font-weight: 300;
}
.gform_wrapper label, .gform-field-label, .gfield_required_text {
    width: 100%;
    font-size: var(--fs-18);
    margin-bottom: 9px;
    display: none;
}
.ginput_container_consent {
    display: flex;
    margin-bottom: 0;
    align-items: center;
}
.ginput_container_consent input {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    background: rgba(217, 217, 217, 1);
}
.ginput_container_consent label {
    margin-bottom: 0;
    margin-left: 19px;
    line-height: 1.5;
}

label.gfield_consent_label {
    display: inline-block;
    font-size: var(--fs-16);
}
label.gfield_consent_label a {
    color: var(--color-highlight);
    text-decoration: underline;
}
.gform_wrapper ul{
    list-style-type:none;
    margin:0 -15px;
    padding:0;
    overflow: hidden;
}
.gform_wrapper ul li{
    padding:0 15px;
}
.gform_wrapper .validation_error{
    background: #FFE1E1 none repeat scroll 0 0;
    padding: 10px;
    border: solid 2px #9A6262;
    color: #9A6262;
    margin-bottom:10px;
}
.gform_submission_error {
    color: #f6283b!important;
    font-size: 20px;
}
.gform_wrapper .validation_message{
/*    color: #ffcfcf;*/
    font-size: 11px;
    line-height: 11px;
    margin-bottom: 10px;
    color: #f6283b;
}
.gform_confirmation_wrapper{
    background: #DFFFDE none repeat scroll 0 0;
    color: #276F26;
    border: solid 2px #276F26;
    padding: 10px;
}
.gform_wrapper .gf_left_half,
.gform_wrapper .gf_right_half{
    float:left;
    width:50%;
}
.gform_wrapper .gf_left_third,
.gform_wrapper .gf_middle_third,
.gform_wrapper .gf_right_third
{
    float:left;
    width:33.33333%;
}
.gfield {
    flex:  1 1 auto;
    margin: 0;
}

.gform_fields {}
.gfield--type-textarea {
    grid-column: 1 / -1; 
}
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="phone"],
.gform_wrapper textarea {
    width:100%;
    margin-bottom: 0;    
    padding: 29px clamp(20px, 2.396vw, 46px);
    border: none;
    color: var(--color-main);
    position: relative;
    font-size: var(--fs-16);
    background: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    border-top: solid 1px #D0D0D0;
}
.gform_wrapper textarea {
    margin-bottom: 52px;
    resize:none;
    height: 76px;
}

#gform_wrapper_3 .gform_heading {
    padding: 0;
}
#gform_fields_3 input[type="text"],
#gform_fields_3 input[type="email"],
#gform_fields_3 input[type="phone"],
#gform_fields_3 textarea {
    padding: 18.5px 25px;
}
#gform_fields_3 textarea {
    min-height: 121px;
}
#gform_fields_3 .gfield {
    margin-bottom: 20px;
}

#gf_progressbar_wrapper_1, .gform_required_legend, .gfield--type-consent legend, .gfield--type-honeypot { display: none; }
.gform-footer {
    padding: 0 clamp(20px, 2.396vw, 46px) clamp(30px, 5.833vh, 63px);
}
#gform_wrapper_3 .gform-footer {
    padding: 0;
    text-align: right;
}
.form-section h2 {
    margin-bottom: clamp(50px, 8.426vh, 91px);
}
.gform-footer button {
    border: 0;
}

#gform_fields_3 label {
    display: block;
    margin-bottom: 7px;
    line-height: 1.66;
}
#gform_wrapper_3 .gfield_consent_label {
    margin-bottom: 0;
}
@media only screen and (min-width: 767px) {
    #gform_fields_3.gform_fields {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto;
        column-gap: 22px;
        margin: 0 auto;
    }
}
@media only screen and (max-width: 767px) {
    .form-section h2 br {
        display: none;
    }
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #A7A7A7;
    font-size: 1rem;
    font-family: var(--font-main);
    opacity: 1;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #A7A7A7;
    font-size: 1rem;
    font-family: var(--font-main);
    opacity: 1;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #A7A7A7;
    font-size: 1rem;
    font-family: var(--font-main);
    opacity: 1;
}
:-moz-placeholder { /* Firefox 18- */
    color: #A7A7A7;
    font-size: 1rem;
    font-family: var(--font-main);
    opacity: 1;
}