/*Custom Css*/
/* Force every product image to have the same height */
.cbp-caption-defaultWrap .item {
    height: 550px;
    width: 100%;
    overflow: hidden;
}

/* Make every image fill that height */
.cbp-caption-defaultWrap .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* crops instead of stretching */
    object-position: center top; /* keeps the important top part visible */
}
