.b-catalog-sections {
    margin-bottom: 70px;
}
ul:not([id*="bx_"]) > li:before {
    display: none;
}

@media only screen and (max-width: 767px) {
    .b-catalog-sections {
        margin-bottom: 40px;
    }
}

.b-catalog-sections__items,
.b-catalog-sections__item,
.b-catalog-sections__sub-sections,
.b-catalog-sections__sub-section {
    padding: 0;
    margin: 0;
    list-style: none;
}

.b-catalog-sections__items {
    display: grid;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 32px;
    grid-row-gap: 32px;
}

@media only screen and (max-width: 991px) {
    .b-catalog-sections__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 600px) {
    .b-catalog-sections__items {
        grid-template-columns: repeat(1, 1fr);
    }
}

.b-catalog-sections__item {
    background: #F8F9FC;
    border: 1px solid #E8EDF4;
    border-radius: 12px;
    box-sizing: border-box;
}

ul.b-catalog-sections__items > li:before {
    content: "";
    margin: 0;
}

.b-catalog-sections__item .b-catalog-sections__image {
    width: 100%;
    height: 214px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 12px 12px 0 0;
}

.b-catalog-sections__item .b-catalog-sections__content {
    padding: 32px 52px 52px 52px;
}

@media only screen and (max-width: 767px) {
    .b-catalog-sections__item .b-catalog-sections__content {
        padding: 32px;
    }
}

.b-catalog-sections__title {
    margin-bottom: 32px;
    font: 28px/36px Montserrat,Arial,sans-serif;
    font-weight: 400;
    color: #333333;
}
.b-catalog-sections__title a {
    color: #333333;
}
.b-catalog-sections__title a:hover {
    color: #6375C2;
}

@media only screen and (max-width: 767px) {
    .b-catalog-sections__title {
        font: 24px/32px Montserrat,Arial,sans-serif;
    }
}

.b-catalog-sections__sub-sections {
    margin-bottom: 32px;
}

.b-catalog-sections__sub-section {
    padding: 20px 0;
    border-bottom: 1px solid #E3E8F1;
}

ul.b-catalog-sections__sub-sections > li:before {
    content: "";
    margin: 0;
}

.b-catalog-sections__sub-section:first-child {
    padding-top: 0;
}

.b-catalog-sections__sub-section:last-child {
    padding-bottom: 0;
    border: none;
}

.b-catalog-sections__sub-section-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font: 16px/20px Montserrat,Arial,sans-serif;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.b-catalog-sections__sub-section-link:hover {
    color: #6375C2;
}

.b-catalog-sections__sub-section .svg-icon__arrow {
    position: relative;
    left: 0;
    margin-left: 12px;
    fill: #333333;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.b-catalog-sections__sub-section:hover .svg-icon__arrow {
    position: relative;
    left: -8px;
    fill: #6375C2;
}

.b-catalog-sections__show-all {
    font: 14px/20px Montserrat,Arial,sans-serif;
    font-weight: 500;
    color: #6375C2;
    text-decoration: none;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.b-catalog-sections__show-all:hover {
    color: #4d5eb6;
}