.subcategories-block-content p {
    font-size: 13px;
    color: #363636;
    line-height: 22px;
}

.subcategories-block-content__title {
    font-size: 15px;
    color: #7d7d7d;
    font-weight: 600;
    margin-bottom: 15px;
}

.subcategories-block-content__categories-list {
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.subcategories-block-content__categories-list .owl-carousel .owl-stage {
    display: flex;
}

.subcategories-block-content__categories-list__category img {
    max-width: 100%;
    width: auto !important;
}

.subcategories-block-content__categories-list__category {
    border: 1px solid #e1e1e1;
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.subcategories-block-content__categories-list__category:hover {
    border-color: #363636;
}

.subcategories-block-content__categories-list__category a {
    text-decoration: none;
    font-size: 13px;
    color: #363636;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.subcategories-block-content__categories-list__category span {
    text-align: center;
}

.subcategories-block-content__categories-list .owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: bootstrap-icons !important;
    font-size: 18px !important;
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: #ebebeb !important;
    border-radius: 0;
    margin: 0;
    color: #363636;
}

.subcategories-block-content__categories-list .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: bootstrap-icons !important;
    font-size: 18px !important;
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: #ebebeb !important;
    border-radius: 0;
    margin: 0;
    color: #363636;
}

.subcategories-block-content__categories-list .owl-carousel .owl-nav .owl-prev:hover, .subcategories-block-content__categories-list .owl-carousel .owl-nav .owl-next:hover {
    color: #363636;
}

@media(max-width: 1199.5px) {
    .subcategories-block-content__categories-list {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }
}

@media(max-width: 991.5px) {
    .subcategories-block-content__categories-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

@media(max-width: 767.5px) {
    .subcategories-block-content__categories-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media(max-width: 575.5px) {
    .subcategories-block-content__categories-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .subcategories-block-content__categories-list__category span {
        font-size: 12px;
        line-height: 14px;
    }

    .subcategories-block-content__categories-list__category {
        padding: 5px;
    }
}