/* =========================================================
   MODAL
========================================================= */

.hw-enquiry-modal {
    border: 0;

    border-radius: 18px;

    overflow: hidden;

    background: #fff;

    box-shadow:
        0 25px 70px rgba(15, 38, 70, .25);
}


/* =========================================================
   HEADER
========================================================= */

.hw-enquiry-header {
    position: relative;

    padding: 30px 35px 27px;

    background:
        linear-gradient(
            135deg,
            #142d54 0%,
            #183b6b 100%
        );

    color: #fff;
}

.hw-enquiry-eyebrow {
    display: block;

    margin-bottom: 7px;

    color: #12acd7;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.hw-enquiry-header h3 {
    margin: 0 0 7px;

    color: #fff;

    font-size: 28px;

    font-weight: 700;
}

.hw-enquiry-header p {
    margin: 0;

    max-width: 600px;

    color: rgba(255, 255, 255, .78);

    font-size: 14px;

    line-height: 1.6;
}


/* Close */

.hw-enquiry-close {
    position: absolute;

    top: 18px;
    right: 20px;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 14px;

    cursor: pointer;

    transition: .2s ease;
}

.hw-enquiry-close:hover {
    background: #fff;

    color: #173258;
}


/* =========================================================
   BODY
========================================================= */

.hw-enquiry-body {
    padding: 32px 35px 35px;

    background: #fff;
}


/* Labels */

.hw-enquiry-label {
    display: block;

    margin-bottom: 8px;

    color: #122b50;

    font-size: 14px;

    font-weight: 700;
}

.hw-enquiry-label span {
    color: #e63946;
}


/* Inputs */

.hw-enquiry-input {
    min-height: 52px;

    border: 1px solid #d7e0ea;

    border-radius: 8px;

    padding: 12px 15px;

    color: #24364f;

    font-size: 14px;

    background: #fff;

    box-shadow: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.hw-enquiry-input::placeholder {
    color: #9aa8b9;
}

.hw-enquiry-input:focus {
    border-color: #11a9d5;

    box-shadow:
        0 0 0 3px rgba(17, 169, 213, .10);
}

textarea.hw-enquiry-input {
    min-height: 120px;

    resize: vertical;
}


/* Select */

select.hw-enquiry-input {
    cursor: pointer;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.hw-enquiry-submit {
    min-width: 170px;

    min-height: 50px;

    border: 0;

    border-radius: 8px;

    padding: 12px 22px;

    background: #162f58;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.hw-enquiry-submit:hover {
    background: #09a8d4;

    transform: translateY(-2px);

    box-shadow:
        0 7px 20px rgba(9, 168, 212, .22);
}

.hw-enquiry-submit i {
    font-size: 16px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    .hw-enquire-btn {
        padding: 17px 9px;

        min-height: 110px;

        font-size: 13px;
    }

    .hw-enquiry-header {
        padding: 25px 22px 23px;
    }

    .hw-enquiry-header h3 {
        font-size: 23px;

        padding-right: 30px;
    }

    .hw-enquiry-body {
        padding: 25px 22px 28px;
    }

    .hw-enquiry-modal {
        margin: 10px;
    }

}