.contact-us {
    margin: 0% 0% 5% 0;
}

.contact-us .main-map-class {
    width: 100%;
    height: 500px;
}

.contact-us .white-bggg {
    background: #FFFFFF;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px;
    padding: 40px 60px;
    margin-top: -6%;
    position: relative;
}

.contact-us .white-bggg .title-contact {
    font-size: 28px;
    font-weight: 600;
}

.contact-us .white-bggg .contact-txttt {
    font-size: 14px;
    text-align: justify;
    width: 70%;
}

.contact-us .white-bggg .contact-font-icon {
    /* font-size: 30px; */
    background: #F5F5F5;
    border: 1px solid #C9C6C6;
    border-radius: 5px;
    padding: 10px;
    margin-right: 20px;
    margin-top: 10px;
    width: 40px;
    height: 40px;
}

.contact-us .white-bggg .contact-txtt-sub {
    font-size: 16px;
    margin-top: 20px;
}

.contact-us .form-control {
    background: #F5F5F5;
    border: 1px solid #C9C6C6;
    border-radius: 5px;
    height: 40px;
}

.contact-us .form-label {
    font-size: 14px;
    font-weight: 600;
}

.contact-us .send-message {
    padding: 8px;
    width: 100%;
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    position: relative;
}

.contact-us .send-message:hover span {
    color: #fff;
    position: relative;
    z-index: 99;
}

.contact-us .send-message::after {
    content: "";
    position: absolute;
    height: 50%;
    width: 0%;
    top: 0px;
    left: 0px;
    background-color: #000;
    transition: 0.4s;
}

.contact-us .send-message:hover::after {
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    top: 0px;
    left: 0px;
    background-color: #000;
    transition: 0.4s;
}

.contact-us .send-message::before {
    content: "";
    position: absolute;
    height: 50%;
    width: 0%;
    bottom: 0px;
    right: 0px;
    background-color: #000;
    transition: 0.4s;
}

.contact-us .send-message:hover::before {
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    bottom: 0px;
    right: 0px;
    background-color: #000;
    transition: 0.4s;
}



@media(min-width:0px) and (max-width:576px) {
    .contact-us .white-bggg {
        padding: 20px;
    }

    .contact-us .white-bggg .title-contact {
        font-size: 25px;
        text-align: center;
    }

    .contact-us .white-bggg .contact-txttt {
        width: 100%;
    }

    .contact-us .white-bggg .contact-txtt-sub {
        font-size: 14px;
        margin-top: 10px;
    }

}

@media(min-width:577px) and (max-width:768px) {
    .contact-us .white-bggg {
        padding: 30px;
    }

    .contact-us .white-bggg .title-contact {
        font-size: 25px;
    }

    .contact-us .white-bggg .contact-txttt {
        width: 90%;
    }

    .contact-us .white-bggg .contact-txtt-sub {
        font-size: 14px;
    }

}