.banner_bottom_wrap {
    padding: 2rem;
    border-radius: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner_bottom_title {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    padding: 0 2rem;
    z-index: 2;
}

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

.banner_bottom_qr_block {
    display: -webkit-flex;
    display: flex;
    width: 30%;
    padding: 1rem;
    border-radius: 8px;
}

.banner_bottom_qr_block.qr_1 {
    background: #C3CCEB;
}

.banner_bottom_qr_block.qr_2 {
    background: #566496;
}

.banner_bottom_qr_block_icon {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    color: white;
    padding: 7px;
    margin-right: 15px;
    border-radius: 4px;
}

.banner_bottom_qr_block.qr_1 .banner_bottom_qr_block_icon {
    background: #3C4978;
}

.banner_bottom_qr_block.qr_2 .banner_bottom_qr_block_icon {
    background: #7989BB;
}

.banner_bottom_qr_block_icon svg {
    width: 15px;
    height: 15px;
}

.banner_bottom_qr_block_img img {
    width: 100%;
}

.banner_bottom_qr_block_text {
    font-size: 12px;
    line-height: 1.2;
    margin-top: 5px;
}

.banner_bottom_qr_block.qr_2 .banner_bottom_qr_block_text {
    color: #fff;
}

.banner_bottom_big_img {
    width: 40%;
    position: absolute;
    left: 50%;
    bottom: -2rem;
    transform: translateX(-50%);
}

.banner_bottom_big_img img {
    width: 100%;
}


@media all and (max-width: 992px){
    .banner_bottom_wrap {
        background-image: none !important;
        background-color: var(--color2);
    }

    .banner_bottom_title {
        padding: 0 0 5rem;
    }
}

@media all and (max-width: 768px){
    .banner_bottom_title {
        font-size: 28px;
        padding: 0 0 2rem;
    }

    .banner_bottom_content {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .banner_bottom_qr_block {
        width: 100%;
    }

    .banner_bottom_qr_block_icon svg {
        width: 25px;
        height: 25px;
    }

    .banner_bottom_qr_block_text {
        font-size: 18px;
    }

    .banner_bottom_big_img {
        width: 100%;
        position: relative;
        margin: 1rem auto;
        left: auto;
        bottom: auto;
        transform: none;
    }

}