/* hero */

.hero .carousel-inner .carousel-item img {
    height: 412px;
    object-fit: cover;
    width: 100%;
}

.hero .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
    list-style: none;
    position: absolute;
    left: 0;
    bottom: 2px;
}

.slider-btn-arrow.slider-icon {
    padding: 12px 12px;
}

.hero .carousel-indicators li {
    width: 30px;
    height: 8px;
    background-color: #8e8e8e;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    cursor: pointer;
}

.hero .carousel-indicators .active {
    background-color: #8000ff;
    width: 60px;
}

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

.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 .header {
    text-align: center;
}

.category .header h1 {
    font-weight: bold;
}

.category .header p {
    padding: 0 200px;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 15px;
}

.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;
}

.hero .carousel-item{
    filter: blur(0px) brightness(100%);
}

.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: #fff;
}

/* category */


