
.category{
    display: flex;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 15px 0px rgba(88, 88, 88, 0.13);
    overflow: hidden;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: stretch;
}

.category__image{
    width: 100%;
    height: 120px;
    text-align: center;
    display: block;
    padding: 10px 20px;
}
.category__img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform .3s ease-in;
}

.category__bottom{
    flex: 1;
    background-color: #08C;
    color: #fff;
    font-size: 13px;
    line-height: 19px;
    padding: 10px 20px;
    text-align: center;
    transition: background-color .3s ease-in;
    display: flex;
    align-items: center;

}
.category:hover{
    text-decoration: none;

}
.category:hover .category__img{
    transform: scale(1.03);
}

.category:hover .category__bottom{
    background-color: #00a3f5;
}


.sectionList {
    margin-top: 40px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(210px, auto));
}

.sectionList .category{
    flex: 0 0 210px;
    min-width: 210px;
}
