/*==================================================
    OUR PRODUCTS
==================================================*/

.our-products{
    padding:100px 0;
    background:#ffffff;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.product-item{
    position:relative;
    background:#fff;
    border-radius:25px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    overflow:hidden;
}

.product-item:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.product-img{
    height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.product-img img{
    max-width:170px;
    max-height:200px;
    transition:.4s;
}

.product-item:hover img{
    transform:scale(1.08);
}

.product-item h3{
    font-size:24px;
    margin-bottom:12px;
    color:#222;
}

.product-item p{
    font-size:15px;
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.badge{
    position:absolute;
    top:20px;
    right:-35px;
    background:#ff9800;
    color:#fff;
    padding:8px 40px;
    font-size:12px;
    transform:rotate(45deg);
    font-weight:600;
    letter-spacing:.5px;
}

@media(max-width:1200px){

.products-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.our-products{

padding:70px 0;

}

.products-grid{

grid-template-columns:1fr;

}

.product-img{

height:180px;

}

.product-img img{

max-width:140px;

}

}