.heading-title {
    background-color: #e6e6e6;
    text-align: center;
    color: #0F4796;
    padding: 30px 0;
}

.banner-container {
    width: 100%;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* CONTACT SECTION */
.contact-area {
    padding: 100px 0;
    background: #fff;
}

.contact-label {
    color: #0F4796;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.contact-title {
    font-size: 40px;
    font-weight: 600;
    margin: 15px 0;
    color: #0b1c2d;
}

.contact-desc {
    color: #6c757d;
    margin-bottom: 40px;
}

.contact-box .contact-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.contact-item .icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #5E8CD21A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F4796;
    font-size: 20px;
}

.contact-item h6 {
    margin: 0;
    font-weight: 700;
    color: #0b1c2d;
}

.contact-item p {
    margin: 5px 0 0;
    /* color: #6c757d; */
}

/* FORM */
.contact-form label {
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form .form-control {
    padding: 14px;
    border-radius: 0;
    border: 1px solid #ddd;
}

.contact-btn {
    background: #0F4796;

    color: #fff;
    padding: 14px 40px;
    font-weight: 600;
    border-radius: 0;
    border: none;
}

.contact-btn:hover {
    background: #0F4796;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-title {
        font-size: 34px;
    }

    .contact-area {
        padding: 70px 0;
    }

    .banner-img {
        height: 250px;
    }
}