@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0px;
  padding: 0px;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Poppins";
}
body{
    background-color: rgb(251,223,159,0.4);
}

/* Gallery Started */
.gallery{
    margin: 50px 80px;
    background-color: white;
    box-shadow:0px 2px 8px rgba(0,0,0,0.4);
    padding: 0px 30px;
    
}
.gallery h3{
    text-align: center;
    font-size: 50px;
    padding-top: 50px;
    margin-bottom: 50px;
    color: #ce2144;
}
.gallery h4{
    margin-bottom: 5px;    
    font-size: 30px;
    margin-left: 18px;
    opacity: 0.9;
}
.gallery p{
    margin-left: 30px;
    max-width: 1500px;
    font-weight: 600;
    opacity: 0.8;
}
.gallery b{
    font-size: 18px;
}
.gallery span{
    display: inline-block;
    font-size: 20px;

    text-align: center;
    margin-right: 5px;
    
}
.gallery .style{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.gallery .style .img-container{
    border-radius: 50px;
    width: 300px;
    height: 250px;
   margin-top: 20px;
   margin-bottom: 100px;
}
.gallery .style .img-container img{
    width: 100%;
    height: 100%;
    border-radius: 50px;
    
}
.gallery .offset-printing .img-container img{
    object-fit: cover;
}
.gallery .style .img-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 50px;
    margin: 50px 0px 100px;
}
.gallery .style .img-container{
    margin-bottom: 0;
}
.gallery .latest .img-container img{
   object-fit: fill;
}


@media only  screen and (max-width:720px) {
    .gallery{
        margin: 50px 40px 0px;
        padding: 0px 20px;
        
    }
    .style .img-wrapper{
        margin: 10px 0px 100px;
    }
    .gallery h3{
        font-size: 30px;
    }
    .gallery h4{
        font-size:19px ;
    }
    .gallery p{
        font-size: 12px;
       
    }
    b{
        font-size: 12px;
    }
}

@media only  screen and (max-width:500px) {
    .gallery{
        margin: 50px 10px 10px;
        padding: 0px 10px;
        
    }
    .style .img-wrapper{
        margin: 10px 0px 50px;
    }
    
    .style .img-container{
        width: 250px;
        height: 200px;
    }
    b{
        font-size: 13px;
    }

}
/* Gallery Ended */