
.category-content-section {
    min-height: 100vh;
    margin-top: 70px;
    margin-left: 50px;
    margin-right: 50px;
}

.category-content-cover {
    display: flex;
    gap: 40px;
    padding-left: 20px;
}

.first-letter {
    text-transform: capitalize;
}

.category-content-subcategories-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.category-content-title {
    font-size: 30px;
}

.category-content-subcategories-subcategories {
    /* display: flex;
    flex-wrap: wrap;
    gap: 20px; */
    display: grid;
    gap: 20px;
}

.category-content-subcategories-subcategory-cover {
    /* display: inline-block;
    height: 280px;
    width: 280px;
    box-shadow: 0px 2px 6px rgba(0, 76, 199, 0.4);
    position: relative; */
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #000;
}

.category-content-subcategories-subcategory {
    /* width: 280px;
    height: 280px; */
    object-fit: contain;
    width: 100%;
    height: 300px;
}

.category-content-subcategories-subcategory-title-cover {
    /* display: flex;
    justify-content: space-between;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.25);
    box-shadow: 0px 2px 6px rgb(0 0 0 / 25%);
    border-radius: 0px 0px 10px 10px;
    padding: 11px 10px;
    flex-direction: column; */
    text-align: center;
}

.category-content-subcategories-subcategory-title {
    /* font-weight: 800;
    font-size: 14px;
    line-height: 162.52%;
    margin: 0px;
    display: contents; */
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 700;
    font-size: 1em;
    color: #555;
}

.category-content-subcategories-subcategory-title-amount {
    font-size: .7em;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 400;
    color: #ff8f01;
}

.category-content-subcategories-subcategory-title-amount:hover {
    color: #555;
}

.category-content-breadcrumbs {
    font-size: 1.2em;
    font-weight: 700;
    color: #555;
    margin: 0;
    text-transform: uppercase;
}

.category-content-breadcrumbs a {
    text-decoration: none;
    color: inherit;
}

.category-content-breadcrumbs-current {
    color: #000;
    font-weight: 700;
}


.category-content-breadcrumbs-cover {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-content-grid-cover {
    display: flex;
    gap: 5px;
    align-items: center;
}

.category-content-grid {
    width: 48px;
    height: 30px;
    border: 2px solid #4f9de5;
    border-radius: 3px;
    padding-left: 3px;
    font-weight: 500;
    font-size: 16px;
    line-height: 146.52%;
    letter-spacing: 0.025em;
    background: #FFF;
    color: #000;
}

.category-content-grid-img {
    width: 25px;
    height: 25px;
}

@media(max-width: 768px) {
    .category-content-section {
        margin-left: 10px;
        margin-right: 10px;
    }

    .category-content-bar {
        display: none;
    }

    .category-content-grid-cover {
        display: none;
    }

    .category-content-subcategories-subcategories {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .category-content-title {
        text-align: center;
    }

    .category-content-breadcrumbs-cover {
        justify-content: center;
        padding-top: 75px;
    }
}