.banner-item {
    display: flex;
    background: #FCFAF6;
}

.banner-item_title {
    font-family: 'Square721', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    text-transform: uppercase;
    color: #362D2E;
    margin-bottom: 14px;
}

.banner-item_image {
    height: auto;
    flex: 50%;
    background-size: cover;
    background-position: center;
}

.banner-item_content {
    padding: 80px 100px;
    flex: 50%;
}

.banner-item_description {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    color: #362D2E;
}

.banner-item_button .btn {
    display: inline-flex;
}

@media screen and (max-width: 767px) {
    .banner-item_button .btn {
        display: flex;
    }
    .banner-item_title {
        margin-bottom: 8px;
    }
}