.form {
    width: 100%;
    max-width: 826px;
    margin: 0 auto;
}

.form .form-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 25px 0;
}

.form .form-row--textarea {
    margin: 0;
}

.form .form-group {
    width: 50%;
    max-width: 356px;
}

.form .form-row--full .form-group {
    width: 100%;
    max-width: 100%;
}

.form .form-group input {
    width: 100%;
    line-height: 40px;
    box-shadow: none;
    outline: none;
    border: none;
    border-bottom: 2px solid var(--color-red);
    border-radius: 0;
    appearance: none;
    font-size:16px;

    font-family: "Futura", sans-serif;
    font-weight: 400;
}

.form .wpcf7-form-control-wrap {
    display: block;
}

.form .form-files {
    width: 100%;
    border-bottom: 2px solid var(--color-red);
}

.form .form-files label {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    font-size: 18px;
    cursor:pointer;
}

.form .field-display {
    display: none;
}

.form .field-display .wpcf7-form-control-wrap {
    display: none;
}

.form .form-group textarea {
    width: 100%;
    box-shadow: none;
    outline: none;
    resize: none;
    border: none;
    border-bottom: 2px solid var(--color-red);
    border-radius: 0;
    appearance: none;
    font-size:16px;
    padding: 10px 0;

    font-family: "Futura", sans-serif;
    font-weight: 400;
}

.form .form-group label {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 40px;
    font-size: 18px;
    transition: ease-in-out .15s;
pointer-events: none;
}

.form .form-group .wpcf7-not-valid-tip {
    width: 100%;
    text-align: right;
    font-size: 14Px;
    position: absolute;
    bottom: -18px;
}

.form .form-group label.focused {
    font-size: 12px;
    line-height: 18px;
    top: -8px;
}

.form .form-row--controls {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 25px 0 25px 0;
}

.wpcf7-form.invalid .wpcf7-response-output {
    width: 100%;
    text-align: center;
    color: var(--color-red);
    font-size: 18px;
    line-height: 27px;
    border: none;
    padding: 0;
    margin: 0 auto 25px auto;
}
.wpcf7-form.sent .wpcf7-response-output {
    width: 100%;
    text-align: center;
    color: var(--color-grey);
    font-size: 18px;
    line-height: 27px;
    border: none;
    padding: 0;
    margin: 0 auto 25px auto;
}

.wpcf7-spinner {
    display: none!important;
}
.form-copyrights {
    width: 100%;
    max-width: 824px;
    margin: 0 auto 66px auto;
    text-align: center;
    font-size: 12px;
    line-height: 17px;
}
.wpcf7-form .wpcf7-submit {
    display: block;
}
.wpcf7-form.submitting .wpcf7-submit {
    display: none;
}

.wpcf7-form .form-loader {
display: none;
}
.wpcf7-form.submitting .form-loader {
    display: block;
    font-size:18px;
    line-height: 27px;
    width: 100%;
    text-align: center;
}
@media all and (max-width: 800px) {
    .form .form-row {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .form .form-group{
        width: 100%;
        max-width: 100%;
    }

    .form .form-group:nth-child(2){
        margin-top:25px;
    }
}
