/* =========================================
   LAL MIRI CONTACT
========================================= */

.lalmiri-contact {
    padding: 40px 0;
    background: #fff;
}
/* Contact Info */
.contact-info-box {
    height: 100%;
    padding: 20px;
    background: #fff8f8;
    border: 1px solid #f1dddd;
    position: relative;
    overflow: hidden;
}
.contact-info-box::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    bottom: -80px;
    border: 1px solid #e8caca;
    border-radius: 50%;
}

.contact-small-title {
    color: #d40000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.contact-info-box h3 {
    margin: 12px 0;
    color: #251a1b;
    font-family: "Times New Roman", serif;
    font-size: 38px;
    font-weight: 500;
}

.contact-info-box h3 span {
    color: #d40000;
}

.contact-info-box > p {
    margin-bottom: 30px;
    color: #75686a;
    font-size: 14px;
    line-height: 1.7;
}


/* Info Item */

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.contact-icon {
    min-width: 46px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d40000;
    color: #fff;
    border-radius: 50%;
}

.contact-info-item small {
    display: block;
    margin-bottom: 4px;
    color: #a38d8f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.contact-info-item h4 {
    margin: 0 0 3px;
    color: #302526;
    font-size: 15px;
}

.contact-info-item h4 a {
    color: #302526;
    text-decoration: none;
}

.contact-info-item h4 a:hover {
    color: #d40000;
}

.contact-info-item p {
    margin: 0;
    color: #75686a;
    font-size: 15px;
    line-height: 1.6;
}

/* Direction */
.contact-direction-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 20px;
    background: #d40000;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: .3s ease;
    border-radius: 10px;
}
.contact-direction-btn i:last-child {
    transition: .3s ease;
}

.contact-direction-btn:hover {
    background: #8d0010;
    color: #fff;
}

.contact-direction-btn:hover i:last-child {
    transform: translateX(5px);
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form-box {
    height: 100%;
    padding: 22px;
    background: #fff;
    border: 1px solid #eee1e2;
    box-shadow: 0 20px 50px rgba(80, 0, 0, .07);
}

.form-heading > span {
    color: #d40000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.form-heading h3 {
    margin: 8px 0;
    color: #251a1b;
    font-family: "Times New Roman", serif;
    font-size: 36px;
    font-weight: 500;
}

.form-heading h3 em {
    color: #d40000;
    font-style: normal;
}

.form-heading p {
    margin-bottom: 25px;
    color: #75686a;
    font-size: 13px;
}


/* Inputs */

.contact-form-box label {
    display: block;
    margin-bottom: 7px;
    color: #332728;
    font-size: 12px;
    font-weight: 600;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    height: 48px;
    border: 1px solid #eadcdd;
    border-radius: 3px;
    padding: 10px 14px;
    color: #332728;
    background: #fff;
    font-size: 13px;
}

.contact-form-box textarea.form-control {
    height: auto;
    resize: none;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: #d40000;
    box-shadow: 0 0 0 3px rgba(212, 0, 0, .07);
}


/* Submit */
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 8px 24px;
    border: 0;
    background: #d40000;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: .3s ease;
    border-radius: 10px;
}
.contact-submit-btn i {
    transition: .3s ease;
}

.contact-submit-btn:hover {
    background: #8d0010;
}

.contact-submit-btn:hover i {
    transform: translateX(5px);
}


/* Map */

.lalmiri-map {
    padding-bottom: 80px;
}

.map-wrapper {
    overflow: hidden;
    border-top: 4px solid #d40000;
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(15%);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .lalmiri-contact {
        padding: 60px 0;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 30px;
    }

}

@media (max-width: 767px) {

    .lalmiri-contact {
        padding: 45px 0;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 25px 20px;
    }

    .contact-info-box h3 {
        font-size: 30px;
    }

    .form-heading h3 {
        font-size: 30px;
    }

    .contact-info-item {
        gap: 12px;
    }

    .contact-icon {
        min-width: 40px;
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .lalmiri-map {
        padding-bottom: 50px;
    }

    .map-wrapper iframe {
        height: 350px;
    }

}