
.blog-list {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
}
.blog-list__cont {
    width: calc(100% + 16px);
    margin: -8px;
    display: flex;
    align-items: initial;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.blog-list__helper {
    padding: 8px;
    width: calc(100% / 4);
}
.blog-list__item {
    background: #FFFFFF;
    box-shadow: 0 10px 20px rgba(13, 37, 60, 0.2);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}
.blog-list__img {
    display: block;
    width: 100%;
    height: 185px;
    background-size: cover;
    background-position: center;
}
.blog-list__item-block {
    padding: 16px 20px 20px;
}
.blog-list__date {
    width: 100%;
    text-align: right;
    font-weight: 500;
    margin-bottom: 16px;
}
.blog-list__title {
    color: #32B14B;
    display: block;
    transition: .5s;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 20px;
}
.blog-list__text {
    color: #3E3E47;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.blog-list__text a {
    color: var(--green);
}
.blog-list__more {
    width: 100%;
    display: flex;
    justify-content: center;
}
.blog-list__more-link {

}
.blog-list__more {
    margin-top: 32px;
}
.blog-list__more .category__main-bottom {
    margin-top: 0;
}

.blog-list__filter {
    margin: 0 -7px;
}
.blog-list__filter-cont {
    display: flex;
    flex-wrap: wrap;
    align-items: initial;
    justify-content: flex-start;
    margin: -7px;
}
/*.blog-list__filter-scroll {*/
/*    width: 100%;*/
/*    padding: 15px 0;*/
/*    overflow-y: auto;*/
/*    overflow-x: scroll;*/
/*}*/
/*.blog-list__filter-scroll {*/
/*    overflow: -moz-scrollbars-none;*/
/*}*/
:root {
     scrollbar-width: none !important
}
.blog-list__filter-scroll::-webkit-scrollbar { /* Webkit */
    width      : 0;  /* ширина scrollbar'a */
    background : transparent  /* опционально */
}

.blog-list__filter-scroll {
    -ms-overflow-style : none;  /* IE 10+ */
    scrollbar-width    : none /* Firefox */
}
.blog-list__filter-scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
    scrollbar-width: none;
    display: none;
    scrollbar-color: white;
}
.blog-list__filter-scroll::-moz-scrollbar {
    width: 0;
    height: 0;
    display: none;
    background: white;
}
.blog-list__filter-scroll::-webkit-scrollbar {
    width: 0;               /* width of the entire scrollbar */
}

.blog-list__filter-scroll::-webkit-scrollbar-track {
    background: white;        /* color of the tracking area */
}

.blog-list__filter-scroll::-webkit-scrollbar-thumb {
    background-color: white;
}
.blog-list__filter-helper {
    padding: 7px;
}
.blog-list__filter-item {
    padding: 9px 21px;
    color: #3E3E47;
    display: inline-block;
    background: #E4E9E7;
    border-radius: 5px;
    transition: .5s;
    white-space: nowrap;
}
.blog-list__filter-helper.active .blog-list__filter-item {
    background: #32B14B;
    color: var(--white);
    box-shadow: -4.83355px -4.83355px 9.66711px #FFFFFF, 4.83355px 4.83355px 9.66711px rgba(170, 170, 170, 0.5);
}
@media (min-width: 1399px) {
    .blog-list__filter-item:hover {
        background: #32B14B;
        color: var(--white);
        transition: .3s;
        box-shadow: -4.83355px -4.83355px 9.66711px #FFFFFF, 4.83355px 4.83355px 9.66711px rgba(170, 170, 170, 0.5);
    }
    .blog-list__title:hover {
        color: var(--green-header);
        transition: .3s;
    }
}
@media (max-width: 1399px) {
    .blog-list__helper {
        width: calc(332px + 20px);
        padding: 10px;
    }
    .blog-list__cont {
        width: calc(100% + 20px);
        margin: -10px;
    }
    .blog-list__title {
        margin-bottom: 11px;
    }
    .blog-list__date {
        margin-bottom: 18px;
    }
    .blog-list__item-block {
        padding: 20px;
        padding-right: 10px;
        padding-top: 16px;
    }
    .blog-list__more {
        margin-top: 47px;
    }
    .blog-list {
        width: calc(332px + 332px + 20px);
        padding-bottom: 90px;
    }
}
@media (max-width: 799px) {
    .blog-list__helper {
        width: 332px;
        padding: 10px 0;
    }
    .blog-list {
        width: 100%;
        padding-bottom: 60px;
    }

    .blog-list__cont {
        width: 100%;
        margin: -10px 0;
        flex-direction: column;
        align-items: center;
    }
}