.b_form {
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
}

.b_form .b_row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.b_form .b_row .b_w48 {
    width: 48%;
}

.b_form p {
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 5px;
}

.b_form p span {
    margin-left: 2px;
}


.b_form input {
    width: 100%;
    height: 40px;
    line-height: 38px;
    padding: 0 20px !important;
    font-size: 14px;
    font-weight: normal;
    color: #33475b;
    border: 1px solid #cbd6e2;
    border-radius: 3px;
    margin: 0 !important;
    background-color: #f5f8fa;
}

.b_form .b_w100 {
    width: 100%;
    margin-bottom: 20px;
}

.b_form textarea {
    width: 100%;
    height: 110px;
    font-size: 14px;
    font-weight: normal;
    line-height: 22px;
    color: #33475b;
    border: 1px solid #cbd6e2;
    border-radius: 3px;
    background-color: #f5f8fa;
}

.b_form .b_Submit {
    margin: 0;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    position: relative;
    text-align: center;
    transition: all .15s linear;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    background: #DD0E0E;
    border-color: #DD0E0E;
    color: #ffffff;
    font-size: 12px;
    line-height: 12px;
    padding: 12px 24px;
}





.x_mb {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgb(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.x_mb.active {
    display: flex;
}

.x_mb .mb_content {
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    overflow-y: auto;
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.x_mb .mb_content h2 {
    font-family: Proxima Nova W01 Bold;
    font-style: normal;
    font-weight: 700;
    font-size: 3.875rem;
    margin: 0 0 3rem;
}

.x_mb .mb_content h2,
.x_mb .mb_content a,
.x_mb .mb_content p {
    color: #091347;
    text-align: left;
    width: 100%;
}

.x_mb .mb_content .mb_but {
    margin-top: 4rem;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.375;
    padding: 14px 48px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    background: #091347;
    border: none;
    transition: .5s;
}

.x_mb .mb_content .mb_but:hover {
    background: rgb(12, 25, 94)
}

.x_mb .mb_content .g_gb {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.x_mb .mb_content .g_gb img {
    width: 35px;
    height: 35px;
}

@media screen and (min-width: 1200px) {
    .contact-form.b-contact-form {
        padding-top: 340px;
        padding-bottom: 840px;
    }





}

@media(max-width:1200px) {
    .x_mb .mb_content h2 {
        font-size: 2.875rem;
    }

    .x_mb .mb_content .g_gb img {
        width: 30px;
        height: 30px;
    }
}

@media(max-width:600px) {
    .b_form {
        width: 100%;
    }

    .b_form .b_row {
        margin-bottom: 0;
        flex-wrap: wrap;
    }

    .b_form .b_row .b_w48 {
        width: 100%;
        margin-bottom: 20px;
    }

    .x_mb .mb_content {
        padding: 30px;
    }

    .x_mb .mb_content h2 {
        font-size: 2rem;
        margin: 0 0 2rem;
    }

    .x_mb .mb_content .g_gb img {
        width: 24px;
        height: 24px;
    }

    .x_mb .mb_content .mb_but {
        margin-top: 3rem;
        font-size: 12px;
        padding: 10px 28px;
    }
}