.products-range-section{
  width:100%;
  background:#f5f5f5;
  padding:28px 45px 50px;
  border-bottom:4px solid #5b9ccc;
  font-family:Arial, sans-serif;
}

.products-range-heading{
  text-align:center;
  margin-bottom:22px;
}

.products-range-heading h2{
  font-size:30px;
  font-weight:700;
  color:#000;
  margin:0 0 8px;
}

.products-range-heading span{
  width:170px;
  height:2px;
  background:#2d8ec8;
  display:block;
  margin:0 auto 9px;
}

.products-range-heading p{
  max-width:520px;
  margin:0 auto;
  font-size:14px;
  line-height:1.6;
  color:#000;
}

.products-range-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.product-range-card{
  background:#fff;
  border:1px solid #d1d1d1;
  box-shadow:0 2px 8px rgba(0,0,0,.22);
  padding:10px 10px 19px;
  text-align:center;
  min-height:236px;
}

.product-range-img{
  width:100%;
  height:166px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:15px;
  background:#fff;
}

.product-range-img img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  transition: 0.3s;
}

.product-range-img img:hover {
    transform: scale(1.1);
}

.product-range-card h3{
  font-size:16px;
  line-height:1.25;
  font-weight:700;
  color:#000;
  margin:0;
}

@media(max-width:1100px){
  .products-range-grid{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media(max-width:768px){
  .products-range-section{
    padding:35px 20px 45px;
  }

  .products-range-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:520px){
  .products-range-grid{
    grid-template-columns:1fr;
  }

  .products-range-heading h2{
    font-size:26px;
  }
}