@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f5f5f5;
}

.pricing-section{
width:100%;
margin:auto;
padding:0vw 0vw 2vw 2vw;
}

.filter-buttons{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:10px;
margin-bottom:40px;
}

.filter-buttons button{
border:none;
padding:14px 28px;
background:#e4e4e4;
cursor:pointer;
font-size:14px;
text-transform:uppercase;
letter-spacing:1px;
transition:.3s;
}

.filter-buttons button.active,
.filter-buttons button:hover{
background:#000;
color:#fff;
}

.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.service-card{
background:#fff;
padding:18px;
display:flex;
width:30vw;
align-items:center;
justify-content:space-between;
box-shadow:0 5px 15px rgba(0,0,0,.08);
transition:.3s;
}

.service-card:hover{
transform:translateY(-5px);
}

.service-card img{
width:90px;
height:90px;
object-fit:cover;
margin-right:20px;
}

.service-content{
flex:1;
}

.service-content h3{
font-size:1.2vw;
font-weight:600;
margin-bottom:8px;
color:#222;
}

.service-content p{
color:#777;
font-size:1vw;
margin-bottom:10px;
}

.service-content span{
font-size:.8vw;
font-weight:600;
text-transform:uppercase;
color:#ff5b3f;
}

.price{
font-size:2vw;
font-weight:700;
color:#0f172a;
}

.hidden{
display:none;
}

/* Tablet */

@media(max-width:992px){

.service-grid{
grid-template-columns:1fr;
}

}

/* Mobile */

@media(max-width:576px){

.pricing-section{
padding:40px 15px;
}

.service-card{
flex-direction:column;
text-align:center;
}

.service-card img{
margin:0 0 15px;
width:80px;
height:80px;
}

.service-content h3{
font-size:18px;
}

.price{
margin-top:15px;
font-size:28px;
}

.filter-buttons button{
padding:12px 18px;
font-size:12px;
}

}