.blogs-title-container {
    z-index: 5;
}

.blogs-title {
    z-index: 5;
    text-align: center;
    font-family: var(--my-title-font);
    font-size: 40px;
    font-weight: 400;
}

.category-container {
    z-index: 5;
    margin: 50px 0;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-image-container {
    position: relative;
    padding: 6px;
    border-radius: 4px;
    background-color: white;
    border: 1px solid var(--my-border-color);
    cursor: pointer;
    transition: box-shadow .3s;
}

.category-image-container:hover {
    box-shadow: var(--my-shadow);
}

.category-image {
    width: 250px;
    height: 300px;
}

.category-title {
    font-size: 28px;
    font-family: var(--my-title-font);
    font-weight: 500;
    color: var(--my-text-color);
    position: absolute;
    top: 4px;
    left: 14px;
    text-transform: capitalize;
    z-index: 10;
    font-weight: 500;
    -webkit-text-stroke-width: .3px;
    -webkit-text-stroke-color: white;
}

.categories-container {
    position: relative;
    z-index: 5;
    margin-top: 130px;
}

@media (max-width: 768px) {
    .blogs-title {
        margin-top: 8px;
        margin-bottom: 30px;
    }
    .categories-container {
        margin: 60px 0;
        z-index: 5;
        padding: 0 4px;
    }
    .category-card {
        width: 100%;
    }
    .category-image-container {
        width: 100%;
    }
    .category-image {
        width: 45%;
        height: 50%;
    }
}