* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
}

img {
    max-width: 100%;
}


.product-card {
    background: #fff;
    border-color: #e6e6e6;
    border-radius: 4px;
    box-shadow: 0 0 4px #e6e6e6;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.product-card .product-image a {
    position: relative;
    display: block;
    padding-top: 50.847457627118644%;
}

.product-card .product-image a img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.product-desc {
    padding: 16px;
}

.product-desc h3 {
    font-size: 16px;
    max-height: calc(18px * 2 + 4px);
    max-width: 100%;
    font-weight: 700;
}

.product-desc h3 a {
    color: #4d4d4d;
    cursor: pointer;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap;
}
.product-desc p{
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}
.product-desc p:not(:last-of-type) {
    margin-bottom:1rem;
}

.product-desc .pro-price {
    font-size: 18px;
    font-weight: 700;
}

.live-btn {
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    border: 1px solid #087096;
    border-radius: 2px;
    color: #087096;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    height: 40px;
    line-height: 38px;
    margin: 0 4px;
    padding: 0 16px;
    text-decoration: none;
    transition: all 0.6s ease;
}

.live-btn:hover {
    background-color: #087096;
    color: #fff;
}

.container-fluid{
    padding: 0 40px;
}
main{
    min-height: 100vh;
}

.site-footer .footer-bottom {
    padding: 25px 0;
    background: #FFFFFF;
    box-shadow: 0 0 4px #e6e6e6;
}
.site-footer .footer-bottom p{
    margin: 0;
}

@media screen and (max-width:575px) {
    .section-title{
        display: block !important;
        text-align: center;
        margin-bottom: 25px !important
    }
    .section-title h1{
        margin-bottom: 20px;
    }
}