
.main-promo-slider {
    /*    width: 100%;*/
        margin: 10px 0 60px;
        display: flex;
        gap: 20px;
        min-width: max-content;
        justify-content: space-between;
    }
    
    .main-promo-slider-wrapper {
        overflow: auto;
        padding: 0 15px;
        margin: 0 -15px;
        scrollbar-width: none;
    }
    
    
    .npromo-item {
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 270px;
        border-radius: 20px;
        padding: 10px;
        max-width: 196px;
        width: 100%;
        
    }
    
    
    .npromo-item__bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .npromo-item__bg::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: #00000050;
    }
    
    .npromo-item__content {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .npromo-item__name {
        color: white;
    /*    font-size: 36px;*/
        font-size: 24px;
        font-weight: 700;
    /*    line-height: 38px;*/
        line-height: 28px;
        text-align: center;
    }
    
    .npromo-item__sub-text {
        color: white;
        text-align: center;
        font-size: 16px;
        font-weight: 400;
    }
    .main-promo-slider .slick-list  {margin: 0 -5px;}
    .main-promo-slider .slick-slide {padding: 0 5px;}
    
    @media (max-width: 980px) {
        .main-promo-slider {
            margin-bottom: 30px;
        }
    }
    @media (max-width: 480px) {
        .main-promo-slider {
            margin-bottom: 15px;
        }
        
        .npromo-item__name {
            font-size: 18px;
            line-height: 22px;
        }   
        .npromo-item__sub-text {
            font-size: 14px;
        }
        .npromo-item {
            max-width: 125px;
            height: 170px;
        }
    }
    