section.form-section .gform_wrapper {
    background: rgba(255, 255, 255, .3);
    padding: clamp(30px, 2.604vw, 50px);
    border-radius: 20px;
}
#gform_wrapper_2 .gform_heading {
    text-align: center;
    margin-bottom: clamp(50px, 9.167vh, 99px);
}
#gform_wrapper_2 h2 {
    color: var(--color-secondary);
    text-transform: unset;
}
#gform_fields_2 .d-flex {
    column-gap: 56px;
    flex-direction: column;
}
.gform_heading {
    color: var(--color-main);
}
.form-section__content h2 {
    color: var(--color-secondary);
}
.form-section a:hover {
    opacity: .8;
}
section.form-section .contact-form h2 {
    font-family: var(--font-main);
    font-size: var(--fs-24);
    text-transform: uppercase;
    margin-bottom: clamp(30px, 2.604vw, 50px);
}
.gform_description {
/*    font-size: var(--fs-18);*/
    max-width: 80ch;
    margin-left: auto;
    margin-right: auto;
}
.gform_wrapper label, .gform-field-label, .gfield_required_text {
    width: 100%;
    font-size: var(--fs-24);
    margin-bottom: 10px;
    line-height: 1;
}
#gform_fields_2 label, #gform_fields_2 legend {
    text-transform: uppercase;
}
#gform_fields_2 legend {
    margin-bottom: 29px;
}
#gform_fields_2 .gchoice label {
    font-size: var(--fs-16);
}
.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;
    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_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="phone"],
.gform_wrapper textarea{
    width:100%;
    margin-bottom: 18px;    
    padding: 11px 23px;
    border: none;
    border-radius: 10px;
    color: var(--color-main);
    position: relative;
    font-size: var(--fs-16);
    background: var(--color-white);
    overflow: hidden;
}

#page-contact .gform_wrapper input[type="text"],
#page-contact .gform_wrapper input[type="email"],
#page-contact .gform_wrapper input[type="phone"],
#page-contact .gform_wrapper textarea {
    border: solid 1px #4E2D18;
    background: rgba(255, 255, 255, .5);
    margin-bottom: 36px;
}
.gform_wrapper textarea {
    margin-bottom: 26px;
    resize:none;
    height: 116px;
}
section#page-contact .gchoice {
    display: flex;
    align-items: center;
    margin-bottom: 13px;
}
#gform_wrapper_2 input[type=checkbox], #page-contact  input[type=radio]  {
    background: var(--color-white);
    width: 34px;
    height: 34px;
    border: solid 1px #4E2D18;
    border-radius: 10px;
    margin-right: 20px;
/*    -webkit-appearance: none;  */
    -moz-appearance: none;     /* Firefox */
    appearance: none;
    cursor: pointer;
    position: relative;
}
#gform_wrapper_2 input[type=checkbox]:checked::after,
#page-contact input[type=radio]:checked::after {
    content: '✓';
    position: absolute;
    font-size: var(--fs-24);
    top: 5px;
    left: 7px;
    text-align: center;
    margin: 0 auto ;
    width: 0;
    height: 0;
    background: var(--color-secondary);       
}


#gf_progressbar_wrapper_1, .gform_required_legend, .gfield--type-consent legend, .gfield--type-honeypot { display: none; }

.gform-footer {
    text-align: center;
}



@media only screen and (min-width: 767px) {
    #gform_fields_2 .d-flex {
        flex-direction: row;
    }
    #gform_fields_1.gform_fields {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 39px;
    }
    #gform_fields_1 .gfield {
        grid-column: span 2;
    }

    #gform_fields_1 #field_1_1,
    #gform_fields_1 #field_1_3 {
        grid-column: span 1;
    }

    .form-section__content p {
        max-width: 49ch;
        margin-bottom: 48px;
    }
    .gfield_checkbox  {
        column-count: 2;
    }
}
@media only screen and (max-width: 767px) {
    #field_submit {
        text-align: center;
    }
    .gform-footer {
        margin-top: 20px;
    }
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: rgba(78, 45, 24, .3);
    font-size: var(--fs-16);
    font-family: var(--font-main);
    opacity: 1;
}
::-moz-placeholder { /* Firefox 19+ */
    color: rgba(78, 45, 24, .3);
    font-size: var(--fs-16);
    font-family: var(--font-main);
    opacity: 1;
}
:-ms-input-placeholder { /* IE 10+ */
    color: rgba(78, 45, 24, .3);
    font-size: var(--fs-16);
    font-family: var(--font-main);
    opacity: 1;
}
:-moz-placeholder { /* Firefox 18- */
    color: rgba(78, 45, 24, .3);
    font-size: var(--fs-16);
    font-family: var(--font-main);
    opacity: 1;
}