/** Grid Category **/
.cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
    align-items: end;
}
.cats-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    color: #444444;
    font-size: 26px;
    font-family: var(--title);
    transition: 0.4s;
    gap: 12px;
}
.cats-item .cats-img {
    max-width: 200px;
    max-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cats-item:hover a {
    color: var(--color1);
}
.cats-item h4 {
    font-size: clamp(18px, 2vw, 24px);
    font-family: var(--title);
}
@media only screen and (max-width: 768px) {
    .cats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}