.products-box {
    flex-wrap: wrap;
    gap: 50px 0;
}

.product {
    width: 33%;
}

@media (max-width: 768px) {
    .product {
        width: 100%;
    }
}

.products .container .products-box .product .image {
    transform: rotate(-45deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.products .container .products-box .product .image img {
    max-width: 200px;
    max-height: 220px;
    background-size: contain;
    transform: rotate(45deg);
    width: auto;
    left: auto !important;
    top: auto !important;

}

.products .products-box .product:first-child img {
    margin-top: 0;
    transform: rotate(45deg) translate(0,0);
}

.products .products-box .product:first-child:hover img {
    transform: rotate(45deg) translate(0.0) scale(1);
}

.products .products-box .product:nth-child(2) img {
    margin-top: 0;
    transform: rotate(45deg) translate(0,0);
}

.products .products-box .product:nth-child(2):hover img {
    transform: rotate(45deg) translate(0.0) scale(1);
}

.products .products-box .product:last-child img {
    margin-top: 0;
    transform: rotate(45deg) translate(0,0);
}

.products .products-box .product:last-child:hover img {
    transform: rotate(45deg) translate(0.0) scale(1);
}

.products .products-box .product:last-child img {
    margin: 0;
}

.image-special {
    display: flex;
    background-color: white;
}

.section .box .image-special img {
    width: auto;
    height: 300px;
    margin: auto;
}

@media (max-width: 992px) {
    .section .box .image-special img {
        max-width: 100%;
        transition: 1s;
    }
}
