.banner{
    background: #353334;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.banner:after{
    content: '';
    display: block;
    position: absolute;
    background: center / cover no-repeat url("/wp-content/uploads/2022/11/road.svg");
    top: 0;
    height: 100%;
    width: 194px;
}
.banner .solid_button{
    border-radius: 20px;
}
.banner_content,
.banner_button{
    position: relative;
    z-index: 9;
}
.banner_title{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media screen and (max-width: 768px) {
    .banner_title br{
        display: none;
    }
    body .banner:after{
        width: 130px;
        height: 146px;
        right: 0;
        top: 0;
    }
    .banner{
        padding: 20px;
        padding-bottom: 150px;
    }
    .banner_button{
        position: absolute;
        bottom: 0;
        right: 0;
        height: 130px;
        width: 100%;
    }
}
@media screen and (min-width: 768px) {
    .banner{
        min-height: 218px;
        padding-left: 50px;
        padding-right: 230px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .banner.left{
        overflow: hidden;
    }
    .banner.left:after{
        transform: scale(-1, 1);
        left: 0;
    }
    .banner.right:after{
        right: 208px;
    }
    .banner_button{
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
    }
}
.banner_text{
    color: #E0DEE8;
}

.banner_title{
    color: #fff;
}
.banner_title:before{
    content: '';
    background: #EC3235;
    width: 38px;
    height: 2px;
    display: inline-block;
}