.newbrand{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 256px;
    grid-template-columns: 1fr 256px;
    grid-gap: 30px;
    margin-bottom: 40px;
}
.newbrand__title{
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    text-transform: uppercase;
    color: #333333;
    margin: 0 0 43px;
}
.newbrand__content{
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #333333;
}
.newbrand__figure{
    margin: 0;
}
@media (max-width: 767px){
    .newbrand{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
        margin-bottom: 27px;
    }
    .newbrand__content {
        order: 2;
    }
    .newbrand__title{
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 13px;
    }
    .newbrand__figure{
        /*display: none;*/
        order: 1;
    }
}