@font-face {
    font-family: 'MarkOT-Bold';
    src: url('/css/MarkOT-Bold.woff') format('woff'), /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
    url('/css/MarkOT-Bold.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}

.row > * {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
h1, h2, h3, h4, h5, h6{
    font-family: "MarkOT-Bold", sans-serif;
    font-weight: normal;
    letter-spacing: -0.05em;
}

.product-img{
    width:100%;
    height:415px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.product-img:hover,
.product-title:hover ~ .product-img{
    transform: scale(1.2); /* Increase the scale to zoom in */
}

.product-img-container{
    overflow: hidden;
    height:415px;
    position: relative;
}

.product-title {
    border-radius:0;
    padding: 1rem 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center; /* Optional: Center the title within the container */
    background-color: #2D3091;
}
.product-title > h4{
    color:#fff;
}