.clearfix::after {
    content: '';
    display: table;
    clear: both
}

.clear::after {
    content: '';
    display: table;
    clear: both;
    height: 0;
    float: none
}
.recipe-cat {
    padding-top: 40px;
    padding-bottom: 40px;
}
.recipe-cat-title {
    text-align: center;
    margin-bottom: 40px;
    color: #000;
    font-size: 36px;
}
.recipe-cat-list {
    display: grid;
/*    grid-template-columns: repeat(9,minmax(0,1fr));*/
    grid-template-columns: repeat(7,minmax(0,1fr));
    gap: 10px;
    text-align: center;
}
.recipe-cat-name {
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    line-height: 1.2rem;
}
.recipe-cat-img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 100px;
    background-color: #f5f6ea;
    border: 4px dotted #eaedcd;
    margin-bottom: 10px;
    transition: all .2s ease-in-out;
}
.recipe-cat-more:hover .recipe-cat-img {
    transform: scale(1.1);
    border-color: #d2d79e;
}