.beilaide_home_contact {
    position: relative;
    padding: var(--component-gap) 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.beilaide_home_contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 18, 18, 0.60);
    z-index: 0;
}

.beilaide_home_contact_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.beilaide_home_contact .title-box {
    width: 47%;
}

.beilaide_home_contact .title-box h2 {
    font-size: var(--font-64);
    font-weight: 700;
    color: #FFF;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.beilaide_home_contact .title-box p {
    font-size: var(--font-24);
    font-weight: 500;
    color: #FFF;
}

.beilaide_home_contact .form-box {
    width: 48%;
    background-color: #FFF;
    border-radius: 16px;
}

.beilaide_home_contact .form-box .inqury_title_box h2 {
    font-weight: 600;
    text-transform: capitalize;
    font-size: var(--font-36);
}

.beilaide_home_contact .form-box .input-wrap .input-label {
    display: none;
}

.beilaide_home_contact .form-box .input-wrap .inqury_submit {
    width: 100%;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: var(--font-24);
    font-weight: 700;
}

@media (max-width: 1200px) {
    .beilaide_home_contact .form-box {
        width: 51%;
    }
}

@media (max-width: 992px) {
    .beilaide_home_contact .title-box {
        width: 100%;
    }

    .beilaide_home_contact .form-box {
        width: 100%;
    }

    .beilaide_home_contact_container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .beilaide_home_contact .title-box h2 {
        margin-bottom: 4px;
    }

    .beilaide_home_contact_container {
        gap: 14px;
    }
}

@media (max-width: 576px) {}