.rugs-container{
    width: 100vw;
    max-width: 1200px;
    display: flex;
    margin: 0 auto;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: space-around;
}
.rugs-box{
    padding-bottom: 50px;
    width: 45%;
    & img{
        width: 100%;
    }
    & h2{
        margin-left: 0;
        margin-top: 15px;
        margin-bottom: 3px;
        font-size: 1rem;
        font-weight: 400;
        margin-bottom: 0;
        }
    & h3{
        margin-bottom: 30px;
        font-size: .85rem;
    }
    & h4{
        color: red;
        font-size: .75rem;
    }
}
@media only screen and (max-width:768px){  /*2 items at a time*/
.rugs-box{
    width: 45%;
}
}

@media only screen and (min-width:768px){  /*3 items at a time*/
    .rugs-box{
        width: 30%;
    }
   }

   @media only screen and (min-width:1024px){  /*4 items at a time */
    .rugs-box{
        width: 22.5%;

  }
}