.pop-cat-container {
    overflow: hidden;
}

.pop-cat-container .category-item {
    position: relative;
    display: block;
    text-align: center;
    color: #fff;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.pop-cat-container .category-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.pop-cat-container .category-item:hover img {
    transform: scale(1.05);
    transition: transform 1s ease;
}
.pop-cat-container .category-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
}
.pop-cat-container .category-item:hover::after {
    background-color: rgba(255, 255, 255, 0.1);
}

.pop-cat-container .category-link, .pop-cat-container .category-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 29px;
    font-weight: bold;
    text-align: center;
    width: max-content;
    max-width: 90%;
    line-height: 1.8rem;
    text-transform: uppercase;
}

.pop-cat-container .category-link {
    background-color: rgba(0, 0, 0, 0.418);
    padding: 20px;
    border-radius: 16px;
}

.pop-cat-container .category-text-top {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 29px;
    font-weight: bold;
    text-align: center;
    width: max-content;
    max-width: 90%;
    line-height: 1.8rem;
}

@media (max-width: 1024px) {    
    .pop-cat-container .category-link, .pop-cat-container .category-text {
        font-size: 20px;
    }

    #information-information .pop-cat-container .category-text p {
        font-size: 13px;
        line-height: 1.2rem;
        text-transform: none;
    }

    #information-information .pop-cat-container img {
        min-height: 200px;
    }
}