.banner {

}

.burger-menu .banners {
    display: none;
}


.banner.position_1 {
    background-color: rgba(245, 245, 245, 0.73);
    background-size: cover;
    background-repeat: repeat-x;
}

.banner.position_2 .item {
    background-color: rgba(245, 245, 245, 0.73);
}

.banner .item {
    display: flex;
    flex-flow: row wrap;
    padding: 11px 10px;
    background-size: cover;
    background-repeat: repeat-x;
    font-size: 14px;
    //line-height: 30px;
    line-height: 20px;
}


.banner .item.with-button > div:nth-child(1),
.banner .item.with-button > span:nth-child(1) {
    max-width: 80%;
}

.banner.position_1 .item {
    padding: 11px 0;
}

.banner .item > img {
    margin-top: -4px;
}

.banner .item > span,
.banner .item > div {
    display: inline-block;
    text-transform: uppercase;
    margin-top: 8px;
    position: relative;
}

.banner .item .button {
    text-transform: uppercase;
    order: 999;
    margin-left: auto;
}

.banner .item .button a {
    font-size: 14px;
}

.banner .item .button a.big {
    position: relative;
    padding: 7px 15px;
    border-radius: 5px;
    margin-top: -8px;
    display: inline-block;
    background-color: #6FC727;
    color: #fff;
}

.banner .item .button a.big:hover {
    background-color: #0A2734;
}

.banner .item .button a.mobile {
    display: none;
    color: #442C22;
    text-decoration: underline;
}

.banner .item .button a.mobile:hover {
    text-decoration: none;
}

@media (max-width: 896px) {
    .banner .item > span,
    .banner .item > div {
        width: 90%;
    }

    .banner .item.with-button > div:nth-child(1),
    .banner .item.with-button > span:nth-child(1) {
        max-width: 100%;
    }

    .banner .item,
    .banner .item .button a {
        font-size: 11px;
    }

    .banner .item .button {
        width: 100%;
    }

    .banner .item .button a.big {
        display: none;
    }

    .banner .item .button a.mobile {
        display: inline-block;
        margin-top: 10px;
    }
}