.main_content {
    padding: .92rem 0 .1rem;
}

.topBanner {
    width: 100%;
    height: 4rem;
    margin: 0 auto;
    padding: .3rem 0;
    background: url(../img/contactUs-banner.jpg) no-repeat center center;
    background-size: cover;
}

.contactUs_content {
    width: 15rem;
    margin: 0 auto;
    padding: .3rem 0 0;
}

.contactUs_content .contactUs_map {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contactUs_content .contactUs_L {
    width: 40%;
    background-color: #053e98;
    padding: .3rem;
    color: #fff;
    padding-bottom: 1rem;
}

.contactUs_content .titleH {
    text-align: left;
    margin-bottom: .1rem;
}

.contactUs_content .msgH {
    color: #fff;
    text-align: left;
    font-size: .2rem;
    margin-bottom: .3rem;
}

.contactUs_content .contactUs_LItem {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-bottom: .4rem;
}

.contactUs_content .contactUs_LItem img {
    width: .4rem;
    height: .4rem;
    object-fit: cover;
}

.contactUs_content .contactUs_LItem p {
    font-size: .2rem;
    line-height: 1.8;
    margin-left: .5rem;
}

.contactUs_content .contactUs_email img {
    width: .3rem;
    height: .3rem;
}

.contactUs_content .contactUs_adress img {
    width: .45rem;
    height: .45rem;
    margin-left: -.08rem;
}

.contactUs_content .contactUs_phone p,
.contactUs_content .contactUs_whatsapp p,
.contactUs_content .contactUs_adress p {
    margin-left: .4rem;
}

.contactUs_content .contactUs_R {
    width: 58%;
    height: 6rem;
}

.contactUs_onLine {
    width: 100%;
}

.contactUs_onLine .online_content {
    width: 12rem;
    margin: .8rem auto 0;
}

.contactUs_onLine .titleH,
.contactUs_onLine .msgH {
    text-align: center;
}

.contactUs_onLine .msgH {
    color: #666;
    margin-bottom: .4rem;
}

.contactUs_onLine .contact_form {
    margin-top: .3rem;
}

.contactUs_onLine .form_row {
    display: flex;
    gap: .2rem;
    margin-bottom: .4rem;
}

.contactUs_onLine .form_input_wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: .25rem;
    padding: .15rem .15rem;
    transition: border-color 0.3s;
}

.contactUs_onLine .form_input_wrapper:hover {
    border-color: #f88e04;
}

.contactUs_onLine .form_input_wrapper:focus-within {
    border-color: #f88e04;
}

.contactUs_onLine .form_input_wrapper.full_width {
    width: 100%;
}

.contactUs_onLine .form_icon {
    width: .3rem;
    height: .3rem;
    margin-right: .1rem;
    flex-shrink: 0;
}

.contactUs_onLine .form_icon_textarea {
    margin-top: -.8rem;
}

.contactUs_onLine .form_input_wrapper input,
.contactUs_onLine .form_input_wrapper textarea {
    flex: 1;
    border: none;
    outline: none;
    font-size: .2rem;
    color: #333;
    background: transparent;
    padding: 0;
}

.contactUs_onLine .form_input_wrapper input::placeholder,
.contactUs_onLine .form_input_wrapper textarea::placeholder {
    color: #999;
}

.contactUs_onLine .form_input_wrapper textarea {
    resize: vertical;
    min-height: 1.2rem;
    font-family: inherit;
}

.contactUs_onLine .submit_btn {
    width: 2.5rem;
    height: .6rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f88e04 100%);
    color: #fff;
    border: none;
    border-radius: .1rem;
    font-size: .24rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin: .2rem 0 0 4.5rem;
}

.contactUs_onLine .submit_btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}