.form-wrapper {
    max-width: clamp(320px, 31.563vw, 606px);
    width: 100%;
}
.gform_heading {
    color: var(--color-main);
    margin-bottom: 0;
}
h2.gform_title {
    font-size: var(--fs-85);
    text-transform: uppercase;
}
.gform_description {
    font-size: var(--fs-20);
}
.gform_wrapper label, .gform-field-label, .gfield_required_text {
    width: 100%;
    font-size: var(--fs-22);
    margin-bottom: 16px;
}
.gform_wrapper label {
    display: none;
}
.ginput_container_consent {
    display: flex;
    margin-bottom: 35px;
    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-20);
}
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 4.5px;*/
}

.gform_fields {
    margin-bottom: 40px;
}
.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: 7px;    
    height: 50px;
    padding: 17px 27px;
    border: none;
    color: var(--color-main);
    position: relative;
    font-size: var(--fs-20);
    background: var(--color-white);
    margin-bottom: 20px;
}
.gform_wrapper textarea {
    margin-bottom: 39px;
    resize:none;
    height: 124px;
}

#gf_progressbar_wrapper_1, .gform_required_legend, .gfield--type-consent legend, .gfield--type-honeypot { display: none; }

.gform-footer {
/*    text-align: right;*/
}


@media only screen and (min-width: 767px) {
    .gform_fields {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto;
        column-gap: 20px;
        margin: 0 auto;
    }
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #3F495F;
    font-family: var(--font-main);
    opacity: 1;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #3F495F;
    font-family: var(--font-main);
    opacity: 1;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #3F495F;
    font-family: var(--font-main);
    opacity: 1;
}
:-moz-placeholder { /* Firefox 18- */
    color: #3F495F;
    font-family: var(--font-main);
    opacity: 1;
}