/* Banners parts */
.wrap_top_bnr {
    width: 100%;
}

.bnr_row {
    /* display: flex; */
    justify-content: space-between;
    margin: 0 -10px;
}

.bnr_col {
    display: flex;
    float: left;
    width: 25%;
    padding: 0 10px;
}

.bnr_300_100 {
    display: block;
    width: 300px;
    height: 100px;
    background-color: #fff;
    overflow: hidden;
}

.bnr_300_250 {
    display: block;
    width: 300px;
    height: 250px;
    background-color: #fff;
    overflow: hidden;
}

.bnr_320_100 {
    display: block;
    width: 320px;
    height: 100px;
    background-color: #fff;
    overflow: hidden;
}

.bnr_425_100 {
    display: block;
    width: 425px;
    height: 100px;
    background-color: #ebebeb;
    overflow: hidden;
}

.bnr_468_60 {
    display: block;
    width: 468px;
    height: 60px;
    background-color: #fff;
    overflow: hidden;
}

.bnr_content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.bnr_inner {
    display: block;
    width: 100%;
    padding: 5px;
}

.bnr_head {
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'SFProDisplay';
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    color: #EC1F27;
    padding: 5px;
}

.bnr_info {
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'SFProDisplay';
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #111111;
    padding: 5px;
}

.bnr_logo {
    display: block;
    width: 50px;
    height: 11px;
    position: absolute;
    left: 2px;
    top: 2px;
}

.bnr_logo img {
    display: block;
    width: 100%;
    height: 100%;
}
.show_desktop_bnr{
    display: block;
}
.show_mobile_bnr{
    display: none !important;
}
/* Banners parts */

@media only screen and (min-width: 0px) and (max-width: 560px) {
    .show_desktop_bnr{
        display: none !important;
    }
    .show_mobile_bnr{
        display: flex !important;;
    }

}
@media only screen and (min-width: 561px) and (max-width: 767px) {
    .show_desktop_bnr{
        display: none !important;
    }
    .show_mobile_bnr{
        display: flex  !important;;
    }

}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .show_desktop_bnr{
        display: block;
    }
    .show_mobile_bnr{
        display: none !important;
    }

}