.home_products__category{
    position: relative;
    display: block;
    box-sizing: border-box;
}
@media screen and (min-width: 829px){
    .home_products__block{
        padding: 10px 50px 10px 10px;
        box-sizing: border-box;
    }

    .home_products__category{
        padding-left: 200px;
    }
    .home_products__category::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 160px;
        height: 100%;
        background-color: #c7000a;
        z-index: -1;
    }
    .home_products__headline{
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        width: 160px;
        height: 100%;
        justify-content: center;
        align-items: center;
        z-index: 1;
    }
    .home_products__column{
        flex: 1;
        display: grid;
        grid-template-columns: repeat(3,1fr);
        grid-template-rows: repeat(1,1fr);
        gap: 20px;
    }
}
.home_products__lead{
    color: #fff;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
}
.home_products__pic{
    aspect-ratio: 281/200;
    width: 100%;
    height: auto;
    overflow: clip;
}
.home_products__image{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.home_products__btn{
    position: relative;
    display: block;
    font-size: 1.6rem;
    text-decoration: none;
    text-align: center;
    border: 2px solid #666666;
    padding: .8em 0;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    margin: 20px auto 0;
}
.home_products__btn::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 19px;
    height: auto;
    background-image: url(../../../../uploads/2021/03/435ea5f16dd441ee6da5fc90e7679945.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    translate: 0 -50%;
}

@media screen and (max-width: 828px){
    .home_products__lead{
        padding: 0.5em;
        background-color: #c7000a;
        box-sizing: border-box;
        margin-bottom: 40px;
    }
    .home_products__item + .home_products__item{
        margin-top: 32px;
    }

    .home_products__pic{
        max-width: 400px;
        max-height: 250px;
        margin-left: auto;
        margin-right: auto;
    }
}