.home-category-container {
    background: #fff5f5;
    padding: 40px 0;
}

.home-category-title {
    font-size: 72px;
    line-height: 69.84px;
    letter-spacing: -0.03em;
    font-weight: 200;
    margin-bottom: 40px;
}

@media (min-width: 1280px) {
    .home-category-title {
        font-weight: 100;
    }
}


@media (max-width: 899.98px) {
    .home-category-container {
        padding: 40px 0;
    }
    .home-category-title {
        font-size: 40px;
        line-height: 42px;
    }
}

.category-col {
    scrollbar-width: none;
    gap: 12px;
}
@media (max-width: 1200px) {
    .category-col {
        flex-wrap: nowrap;
        justify-content: flex-start !important;
        overflow-x: auto;
    }
}
.category-col::-webkit-scrollbar {
    display: none;
}
.category-img-group-link h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    line-height: 120%;
    text-transform: uppercase;
}
.category-img-group {
    position: relative;
    aspect-ratio: 1;
    width: 144px;
}
.category-img-group:hover {
    cursor: pointer;
}
.category-col-img-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    color: transparent;
    object-fit: cover;
}
.category-col-img {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    color: transparent;
    object-fit: cover;
}
@media (min-width: 900px) {
    .col-max-width{
        max-width: 200px;
    }
    .category-img-group {
        width: 200px;
    }
}
.category-col-img-bg {
    transition: transform 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform: scale(0.85);
    width: 100%;
}
.category-col-img-bg:hover {
    transform: scale(1);
}
