﻿.HomeCat {
    .items-holder {
        padding: 6rem 0;

        .cat-item {
            margin: 1rem 2rem;

            .img-box {
                width: 74px;
                height: 74px;
                margin: auto;

                img {
                    width: 100%;
                    height: 100%;
                }
            }

            .title {
                font-size: 1rem;
                color: #000;
                margin-top: 1rem;
            }
        }
    }

    @media(max-width: 480px) {
        .items-holder {
            .cat-item {
                min-width: 6.5rem;
                margin: 1rem 0.5rem;
                white-space: normal;
                text-align: center;
            }
        }
    }
}