.hero {
    z-index: 1;
    position: relative;
    height: 337px;
}

.hero .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    filter: brightness(50%);
}

.hero .card-hero {
    display: flex;
    height: 100%;
    justify-content: start;
    align-items: end;
}
.hero .card-hero .card-hero-img {
    position: relative;
}

.hero .card-hero img.img-item {
    width: 190px;
    height: 260px;
    box-shadow: 0 2px 31px rgba(247, 239, 208, 0.65);
    position: relative;
    bottom: -52px;
}

.hero .card-hero .card-hero-body {
    padding: 200px 0 0 33px;
    z-index: 2;
}

.hero .card-hero h3 {
    font-weight: 600;
}

.hero .card-hero h6 .icon {
    color: #fff;
    margin-right: 10px;
    background: var(--default-color);
    padding: 3px 4px;
    font-size: 11px;
    border-radius: 56px;
}

.hero .card-hero p {
    color: rgba(255, 255, 255, 0.75);
}

.hero .card-hero p .icon {
    margin-right: 10px;
}

/* hero */
/* category */
.category {
    position: relative;
    margin-top: 130px;
}

.category::before {
    content: "";
    position: absolute;
    top: 61px;
    right: 174px;
    border-radius: 735px;
    background: #7F00FF6B;
    filter: blur(198px) brightness(25%);
    width: 1330px;
    flex-shrink: 0;
    z-index: -4;
    height: 100%;
}
.category .cat-card-card {
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid transparent;
    background-image: linear-gradient(#000000, #0a0a0a), linear-gradient(to top left, #7f00ff, black);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 0;
    margin-top: 40px;
    box-shadow: 0 10px 20px rgba(127, 0, 255, 0.2);
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
    cursor: pointer;
    margin-bottom: 40px;
}

.category .cat-card-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(127, 0, 255, 0.3);
}
.category .cat-card-card img {
    width: 100%;
    height: 247px;
    object-fit: cover;
}

.category .cat-card-card h4 {
    padding: 25px 0 14px 0;
    font-weight: 500;
    font-size: 23px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: center;
    background: linear-gradient( to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.77) 50%, rgba(0, 0, 0, 0.03) 100% );
    margin: 0;
    color: #FFFFFF;
}

/* category */

