.contactUs-section{
    /* margin-top: 89px; */
    padding: 10px 0px 10px 0px;
}


/* LEFT PANEL */
.left-contactUs {
    background: #f8f9fb;
    padding: 35px 30px;
    height: 100%;
}

/* CONTACT BOX */
.contactUs-box {
    margin-top: 30px;
}

/* ICON */
.contactUs-icon i {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXT */
.contactUs-title {
    font-weight: 600;
    font-size: 14px;
}

.contactUs-text {
    font-size: 13px;
    color: #666;
}

.contactUs-detail {
    font-size: 13px;
    color: #383737;
    word-break: break-word;
}

/* SOCIAL */
.contactUs-social-icons a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contactUs-social-icons a:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

/* RIGHT PANEL */
.right-contactUs {
    background: #2B3F86;
    padding: 50px;
    color: #fff;
    height: 100%;
}
.right-contactUs .right-contact-form{
    width: 100%;    
}

.right-contactUs .right-contact-form .contactUS-title {
    font-size: 32px;
    font-weight: 700;
}

.right-contactUs .right-contact-form .sub-text {
    font-size: 14px;
}

/* INPUT */
.contactUS-input {
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.7);
    border-radius: 0;
    background: transparent !important;
    color: #fff !important;
    font-size: 14px;    
    margin-top: 30px;
}

.contactUS-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.contactUS-input:focus {
    box-shadow: none;
    border-bottom: 2px solid #fff;
}

/* BUTTON */
.cont-submit-btn {
    background: #fff;
    color: #2B3F86;
    padding: 12px;
    border: none;
    width: 100%;
    border-radius: 6px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .right-contactUs {
        padding: 25px 20px;
    }
    .left-contactUs {
        padding: 20px;
    }
}