.wrapperPage.homeCategorySlider {
    position: relative;
}
.homeTopListCategory {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-bottom: 50px;
    grid-gap: 20px;
}
@media(max-width:  1024px) {
    .homeTopListCategory {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media(max-width:  600px) {
    .homeTopListCategory {
        grid-template-columns: repeat(4, 1fr);
		grid-gap: 5px;
    }
}
@media(max-width:  500px) {
    .homeTopListCategory {
        grid-template-columns: repeat(3, 1fr);
    }
}

.homeCategorySlider .headingPage_center {
    margin: 0;
    text-align: left;
    margin-bottom: 10px;
}
.homeCategorySlider a.viewMore {
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    z-index: 9;
    font-weight: 500;
}
.categorySection {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    cursor: pointer;
    text-align: center;
}
.categorySection img.bannerImage {
    width: 200px;
}
.categorySection .imageBlock {
    position: relative;
}
.categorySection .nameCategory {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}
.swiper.homeTopListCategory {
    padding: 0 45px;
}
@media(max-width: 768px) {
    .categorySection img.bannerImage {
        width: 100%;
    }
}
@media(max-width: 500px) {
    .swiper.homeTopListCategory .sliderButNav {
        display: none;
    }
    .swiper.homeTopListCategory {
        padding: 0;
    }
    .categorySection .nameCategory {
        font-size: 12px;
        line-height: 1.3;
    }
}

