.aras_carsContainer{
    min-height: 80vh;
}

.product-grid {
    text-align: center;
}

.product-grid .product-image {
    overflow: hidden;
    position: relative;
}

.product-grid .product-image image {
    display: block;
}

.product-grid .product-image img {
    width: 100%;
    height: auto;
    transition: all 0.4s ease-out 0s;
}

.product-grid .product-image:hover img {
    transform: scale(1.15);
}

.product-grid .product-hot-label {
    color: #fff;
    background: #f4524d;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 27px;
    height: 27px;
    padding: 0 8px 0 15px;
    position: absolute;
    top: 10px;
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 0% 100%, 20% 50%, 0% 0%);
    transition: .5s ease;
    width: 70px;
}

.product-grid:hover .product-hot-label{
    width: 85px;
}

.product-grid .add-to-cart {
    color: #fff;
    background: #5cc0f4;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0px 0px 1px black;
    text-transform: uppercase;
    width: 100%;
    padding: 9px 0 7px;
    position: absolute;
    bottom: -50px;
    left: 0;
    transition: all 0.4s ease-out 0s;
}

.product-grid:hover .add-to-cart {
    bottom: 0;
}

.product-grid .product-content {
    background: white;
    /* padding: 15px 12px; */
}

.product-grid .product-content .title{
    display: block;
    color: var(--color-blue-dark);
    padding: 15px 0;
    margin: 0;
}

@media screen and (max-width: 990px) {
    .product-grid {
        margin: 0 0 30px;
    }
}
