.jtech-slider-wrapper{
overflow:hidden;
width:100%;
margin:30px 0;
position:relative;
}

.jtech-slider-track{
display:flex;
gap:20px;
width:max-content;
animation:jtechSlide 30s linear infinite;
}

.jtech-slider-wrapper:hover .jtech-slider-track{
animation-play-state:paused;
}

.jtech-slide{
min-width:240px;
background:#fff;
border-radius:18px;
padding:20px;
text-align:center;
box-shadow:0 8px 25px rgba(0,0,0,.08);
border:1px solid #eee;
transition:.3s;
}

.jtech-slide:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.jtech-avatar img{
width:70px;
height:70px;
border-radius:50%;
border:3px solid #ff3b30;
}

.jtech-name{
margin:12px 0 5px;
font-size:18px;
font-weight:700;
}

.jtech-pack{
color:#666;
margin-bottom:15px;
font-size:14px;
}

.jtech-progress{
height:10px;
background:#ececec;
border-radius:20px;
overflow:hidden;
margin:15px 0;
}

.jtech-progress-fill{
height:100%;
background:#ff3b30;
border-radius:20px;
transition:width .5s;
}

.jtech-orders{
font-weight:700;
margin-top:10px;
}

.jtech-percent{
margin-top:8px;
color:#ff3b30;
font-size:22px;
font-weight:700;
}

@keyframes jtechSlide{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

@media(max-width:768px){

.jtech-slide{
min-width:200px;
}

}