:root{--page-title-display:none;}/* FORM CONTAINER */
.quote-form {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 20px 22px 28px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* HEADER */
.quote-form-header {
    text-align: center;
    margin-bottom: 34px;
}

.quote-form-header h2 {
    margin: 0 0 14px;
    font-size: 31px;
    line-height: 1.2;
    font-weight: 700;
    color: #50674e;
}

.quote-form-header p {
    margin: 0;
    color: #4f5c70;
    font-size: 18px;
    line-height: 1.4;
}

/* FIELDS */
.quote-field {
    margin-bottom: 24px;
}

.quote-field p {
    margin: 0;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form textarea {
    width: 100%;
    box-sizing: border-box;

    background: #ffffff;
    color: #3c4658;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;

    border: 2px solid #d2d7dc;
    border-radius: 12px;
    outline: none;

    padding: 0 14px;

    transition: border-color 0.2s ease,
                box-shadow 0.2s ease;
}

/* INPUT HEIGHT */
.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"] {
    height: 60px;
}

/* TEXTAREA */
.quote-form textarea {
    height: 132px;
    min-height: 132px;
    resize: none;
    padding-top: 16px;
}

/* PLACEHOLDER */
.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #9ba5b7;
    opacity: 1;
}

/* FOCUS */
.quote-form input:focus,
.quote-form textarea:focus {
    border-color: #788f76;
    box-shadow: 0 0 0 2px rgba(120, 143, 118, 0.08);
}

/* SUBMIT AREA */
.quote-submit {
    margin-top: 38px;
}

/* SUBMIT BUTTON */
.quote-form input[type="submit"] {
    width: 100%;
    height: 60px;

    background: #6f8d70;
    color: #ffffff;

    border: none;
    border-radius: 12px;

    font-size: 18px;
    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 9px 16px rgba(0, 0, 0, 0.15);

    transition: transform 0.2s ease,
                background 0.2s ease,
                box-shadow 0.2s ease;
}

.quote-form input[type="submit"]:hover {
    background: #627e63;
    transform: translateY(-1px);
    box-shadow: 0 11px 18px rgba(0, 0, 0, 0.16);
}


/* CF7 VALIDATION */
.quote-form .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 6px;
}

.quote-form .wpcf7-response-output {
    margin: 20px 0 0 !important;
    border-radius: 8px;
    font-size: 14px;
}

/* REMOVE CF7 PARAGRAPH GAPS */
.quote-form p {
    margin-top: 0;
}

/* MOBILE */
@media (max-width: 600px) {

    .quote-form {
        padding: 20px 18px 25px;
    }

    .quote-form-header h2 {
        font-size: 28px;
    }

    .quote-form-header p {
        font-size: 16px;
    }

}

