.form-bg, .form-bg video, section.form:after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    height: 100%;
    object-fit: cover;
}
.form-bg video {
    width: 100%;
}
section.form:after {
    background: rgba(37, 146, 234, 0.27);
    backdrop-filter: blur(13.75px);
}
section.form .border-line-bottom {
    margin-bottom: 62px;
    margin-top: 47px;
}
/*.gform_heading {
    color: var(--color-main);
    margin-bottom: 55px;
    text-align: center;
}
.gform_heading h2 {
    margin-bottom: 12px;
}
.gform_description {
    font-size: var(--fs-18);
    max-width: 64ch;
    margin-left: auto;
    margin-right: auto;
}*/
.gform_confirmation_message {
	color: var(--color-main)!important;
}
.gform_wrapper label, .gform-field-label, .gfield_required_text {
    width: 100%;
    font-size: var(--fs-18);
    margin-bottom: 6px;
    font-weight: 500;
    line-height: 1.67;
}
.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 {
    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: 12px;    
    padding: 10.5px 14px;
    border: none;
    color: var(--color-main);
    position: relative;
    font-size: var(--fs-18);
    background: var(--color-white);
    border-radius: 0;
    overflow: hidden;
}
.gform_wrapper textarea {
    margin-bottom: 37px;
    resize:none;
    height: 138px;
}

#gf_progressbar_wrapper_1, .gform_required_legend, .gfield--type-consent legend, .gfield--type-honeypot { display: none; }

#field_submit {
    text-align: center;
}
.button.gform_button {
    position: relative;
    overflow: hidden;
}
.button.gform_button:after {
    content: '';
    position: absolute;
    top: 0; right: 0; left: 0; bottom: 0;
    border: solid 1px transparent;
    border-radius: 100px;
    overflow: hidden
}
.gform_button:hover::after {
    border: solid 1px var(--color-white);
}
.gfield--type-captcha label {
	display: none;
}
@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: 22px;
        margin: 0 auto;
    }
    .gform-footer {
        text-align: right;
        margin-top: -50px;
    }
}
@media only screen and (max-width: 767px) {}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #A4A4A4;
    font-size: 1rem;
    font-family: var(--font-main);
    opacity: 1;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #A4A4A4;
    font-size: 1rem;
    font-family: var(--font-main);
    opacity: 1;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #A4A4A4;
    font-size: 1rem;
    font-family: var(--font-main);
    opacity: 1;
}
:-moz-placeholder { /* Firefox 18- */
    color: #A4A4A4;
    font-size: 1rem;
    font-family: var(--font-main);
    opacity: 1;
}