/* =========================================
   GET A QUOTE PAGE
========================================= */


/* HERO */

.quote-page-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.quote-page-hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-page-hero h1 {
    margin: 0;
    color: #fff;
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
}


/* CONTENT */

.quote-page-content {
    padding: 75px 0 95px;
}

.quote-page-wrap {
    max-width: 1200px;
}


/* HEADING */

.quote-page-heading h2 {
    margin: 0;
    color: #2b968b;
    font-size: 50px;
    line-height: 1.2;
    font-weight: 700;
}

.quote-heading-line {
    display: block;
    width: 105px;
    height: 4px;
    margin: 15px 0 20px;
    background: #2c9388;
}

.quote-page-heading p {
    max-width: 620px;
    margin: 0;
    color: #999;
    font-size: 16px;
    line-height: 1.7;
}


/* REQUIRED TEXT */

.quote-required {
    margin: 45px 0 35px;
    font-size: 14px;
    color: #888;
}

.quote-required span {
    color: red;
}


/* FORM */

.quote-page-form {
    width: 100%;
}

.quote-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 10px;
}

.quote-page-form label > span,
.field-title {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    color: #666;
}


/* INPUTS */

.quote-page-form input[type="text"],
.quote-page-form input[type="email"],
.quote-page-form input[type="number"],
.quote-page-form select,
.quote-page-form textarea {
    width: 100%;
    border: 1px solid #dce4e3;
    border-radius: 3px;
    background: #f2f7f7;
    color: #555;
    outline: none;
    font-size: 14px;
}

.quote-page-form input,
.quote-page-form select {
    height: 36px;
    padding: 0 10px;
}

.quote-page-form textarea {
    min-height: 80px;
    padding: 10px;
    resize: vertical;
}

.quote-page-form input:focus,
.quote-page-form select:focus,
.quote-page-form textarea:focus {
    border-color: #48a9a0;
}


/* FREIGHT TYPE */

.freight-type-field {
    align-self: start;
}

.freight-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 10px;
}

.freight-checkboxes label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #777;
}

.freight-checkboxes input {
    width: 11px;
    height: 11px;
}


/* SPECIAL INFO */

.special-info-field {
    display: block;
    width: calc((100% - 10px) * 2 / 3);
    margin-top: 22px;
}


/* CAPTCHA */

.captcha-placeholder {
    width: 200px;
    min-height: 55px;
    margin-top: 18px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid #ccc;
    background: #fafafa;
    font-size: 14px;
}

.captcha-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.captcha-box {
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid #777;
    background: #fff;
}

.captcha-right {
    font-size: 8px;
    color: #777;
}


/* SUBMIT */

.quote-page-submit {
    width: 300px;
    height: 55px;
    margin-top: 10px;
    border: 0;
    border-radius: 2px;
    background: #278f85;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.quote-page-submit:hover {
    background: #207b72;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .quote-page-hero {
        min-height: 260px;
    }

    .quote-page-hero h1 {
        font-size: 42px;
    }

    .quote-page-wrap {
        max-width: 100%;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .quote-page-hero {
        min-height: 210px;
    }

    .quote-page-hero h1 {
        font-size: 36px;
    }

    .quote-page-content {
        padding: 55px 0 65px;
    }

    .quote-page-heading h2 {
        font-size: 29px;
    }

    .quote-page-heading p,
    .quote-required {
        font-size: 12px;
    }

    .quote-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .freight-checkboxes {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .freight-checkboxes label {
        font-size: 12px;
    }

    .special-info-field {
        width: 100%;
    }

    .quote-page-form input[type="text"],
    .quote-page-form input[type="email"],
    .quote-page-form input[type="number"],
    .quote-page-form select {
        height: 42px;
        font-size: 13px;
    }

    .quote-page-form textarea {
        min-height: 110px;
        font-size: 13px;
    }

    .captcha-placeholder {
        width: 100%;
        max-width: 280px;
    }

    .quote-page-submit {
        width: 100%;
        max-width: 280px;
        height: 40px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .quote-page-hero {
        min-height: 180px;
    }

    .quote-page-hero h1 {
        font-size: 32px;
    }

    .quote-page-heading h2 {
        font-size: 26px;
    }
}