.products {
    overflow: visible;
}

.flex-prod-cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 45px 38px;
    align-items: start;
}

.item-product {
    position: relative;
    max-width: 240px;
    margin: 0 auto;
    padding-top: 0;
    border-radius: 0;
}

.item-product .item-product-con {
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
}

.item-product .img-con {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.item-product .img-con img {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 240px;
    height: 190px;
    min-height: unset;
    object-fit: contain;
    padding: 20px;
    background: transparent;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.45));
    transition: transform .2s ease;
}

.item-product:hover .img-con img {
    transform: rotate(10deg);
}

.item-product .s2 {
    min-height: auto;
    display: block;
    padding: 0;
}

.item-product .title-con,
.item-product .title {
    font-family: 'Grandview', Sans-Serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.3;
    text-align: center;
    padding: 0;
    max-height: none;
    overflow: visible;
    display: block;
}

.item-product .excerpt,
.item-product .price,
.item-product .more-link,
.item-product .listings {
    display: none;
}

.elementor-slideshow__footer {
    bottom: 16vh !important;
}

@media (max-width: 1023px) {
    .flex-prod-cols {
        grid-template-columns: repeat(3, 1fr);
        gap: 38px;
    }
}

@media (max-width: 767px) {
    .flex-prod-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 25px;
    }

    .item-product {
        max-width: 180px;
    }

    .item-product .img-con {
        height: 160px;
    }

    .item-product .img-con img {
        max-width: 170px;
        height: 150px;
        padding: 10px;
        transform: none !important;
    }

    .item-product .title-con,
    .item-product .title {
        font-size: 16px;
    }
}

@media (max-width: 468px) {
    .flex-prod-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}