.index-card{
    display: flex;
    justify-content: center;
    gap:20px;
    margin-top: -40px;
    margin-bottom: -40px;
    transform: translateY(-50%);
    position: relative;
    z-index: 111;
}

.index-card .item{
    width: 240px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding:15px;
    gap:15px;
    transition: all 0.3s ease-in-out;
}

.index-card .item:hover{
    opacity: 1;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.index-card .item .icon{
    width: 50px;
    height: 50px;
}

.index-card .item .icon svg{
    width: 100%;
    height: 100%;
}

.index-card .item .right{
    flex:1;
}
.index-card .item .name{
    font-size: 20px;
    font-weight: bold;
}

.index-card .item .text{
    font-size: 16px;
    margin-top: 10px;
    color: #999;
}

@media (max-width: 768px){
    .home-filter--content{
        padding-bottom: 50px;
    }

    .index-card{
        margin-top: -30px;
        gap: 10px;
    }
    .index-card .item{
        padding:10px;
    }
    .index-card .item .icon{
        width: 40px;
        height: 40px;
    }
    .index-card .item .name{
        font-size: 18px;
    }

    .index-card .item .text{
        font-size: 14px;
        margin-top: 5px;
    }
}
