.magene-slider{
    padding:40px 20px;
}

.product-item{
    background:#fff;
    text-align:center;
    padding:30px 20px;
    border-radius:6px;
    transition:all .3s ease;
    display: flex;
    flex-direction: column;
}

.product-item:hover{
    transform:translateY(-5px);
}

.product-item h3{
    font-size:22px;
    font-weight:700;
    color:#ff4a00;
    margin-bottom:10px;
}

.product-item p{
    font-size:14px;
    color:#777;
    margin-bottom:20px;
}

.product-item .product-btn{
    display:inline-block;
    background:#ff4a00;
    color:#fff;
    padding:10px 22px;
    font-size:14px;
    font-weight:600;
    border-radius:3px;
}

.product-item img{
    width:100%;
    max-width:320px;
    margin-top:30px;
}

.swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#ccc;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:#000;
}