.products-page .item-wrapper {
    display: flex;
    justify-content: center;
}

.products-page .item {
    background: #1976d2;
    text-align: center;
    padding: 5.5rem 2.2rem;
    margin-bottom: 15px;
    border-radius: 50%;
    width: 280px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.products-page .item img {
    height: 70px;
    margin-bottom: 16px;
}

.products-page .item .title h4 {
    min-height: 55px;
    color: #fff;
    font-size: 1.8rem;
    line-height: 2.7rem;
    margin: 18px 0 28px;
    display: block;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform: scale(1);
}

.products-page .item .image img {
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform: scale(1);
    display: block;
   
}

.products-page .item .title h4:hover {
    transform: scale(1.05);
    display: block;
}

.products-page .item .image img:hover {
    transform: scale(1.05);
    display: block;
}

.products-page .item .lgx-btn-sm {
    padding: .2rem 2rem;
    font-size: 12px;
}

.products-page .products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    padding: 20px 0;
}

@media (min-width: 576px) {
    .products-page .products-grid {
        gap: 30px;
    }
}

@media (min-width: 768px) {
    .products-page .products-grid {
        gap: 40px;
    }
}

@media (min-width: 992px) {
    .products-page .item {
        width: 330px;
        height: 330px;
        padding: 6.2rem 2.6rem;
    }

    .products-page .item img {
        height: 80px;
        margin-bottom: 20px;
    }

    .products-page .item .title h4 {
        min-height: 70px;
        margin: 22px 0 32px;
    }
}

@media (min-width: 1200px) {
    .products-page .products-grid {
        gap: 50px;
    }
}