

/*for the image with same size*/
.image-container {        
    width: 180px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items:  center;
    overflow: hidden;  
    margin-bottom:5px;    
    
}

@media screen and (max-width: 768px) {
    .image-container {
        height: 220px;
    }
}

.image-container :hover{
box-shadow: 0 0 0 0 #FF6600;
transition: .2s ease;
} 

.scaled-image {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom:5px; 
   
}
/*-for the image with same size*/