.content_woocategories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.page_image {
    position: relative;
    line-height: 0;
}

.overlay_image {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #caa9c6;
    z-index: 0;
    transition: all ease-in 0.3s;
    -webkit-transition: all ease-in 0.3s;
    -moz-transition: all ease-in 0.3s;
    -ms-transition: all ease-in 0.3s;
    -o-transition: all ease-in 0.3s;
}

.page_link {
    opacity: 1;
    color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    z-index: 2;
}

.linkmore {
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    margin-bottom: 0px;
    transition: all ease-in 0.5s;
    -webkit-transition: all ease-in 0.5s;
    -moz-transition: all ease-in 0.5s;
    -ms-transition: all ease-in 0.5s;
    -o-transition: all ease-in 0.5s;
}

.linkmore i {
    font-size: 36px;
}

.page_title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.page_title h3 {
    margin-bottom: 0;
    background-color: #44522d;
    color: #fffaf5;
    font-size: 18px;
    padding: 11px 20px;
    max-width: 280px;
    width: 100%;
    text-align: center;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: all ease-in 0.3s;
    -webkit-transition: all ease-in 0.3s;
    -moz-transition: all ease-in 0.3s;
    -ms-transition: all ease-in 0.3s;
    -o-transition: all ease-in 0.3s;
}

.woo_category a:hover .overlay_image {
    opacity: 0.85;
}

.woo_category a:hover .page_title h3 {
    background-color: #efddc5;
    color: #f18fb8;
}

.woo_category a:hover .linkmore {
    opacity: 1;
    margin-bottom: 70px;
}

@media (max-width: 1024px) {
    .content_woocategories {
        gap: 25px;
    }
}

@media (max-width: 778px) {
    .content_woocategories {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .content_woocategories {
        grid-template-columns: repeat(1, 1fr);
    }
}