
.best-offer__items .swiper-wrapper{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.best-offers  .section-head{
    justify-content: space-between;
}
.best-offers .swiper-wrapper  .swiper-slide {
    transform: none;
}
@media screen and (max-width: 1300px){
    .best-offer__items .swiper-wrapper{
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}
@media screen and (max-width: 992px){
    .best-offers{
        overflow: hidden;
    }
    .best-offer__items .swiper-wrapper{
        display: flex;
        gap: 0;
    }
    .best-offer__item.swiper-slide{
        flex: none;
        width: 240px;
        height: auto;
        align-self: stretch;
        margin-right: 5px;
    }
    .best-offers .section-head{
        display: block;
        margin-bottom: 20px;
    }
    .best-offers__tab-anchors{
        margin-top: 20px;
    }
    .best-offers .item-card:hover .item-card__hover-content{
        display: none;
    }
}