.cat-list-big {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    padding: 10px 0 0 0
}

.cat-list-big__title {
    font-family: "InformaPro-Bold";
    font-size: 16px;
    margin: 0 0 5px 0;
    color: #4a4a4a;
    line-height: 120%;
}

.cat-list-big span {
    color: #2b7bb1;
    font-weight: 700
}

.cat-list-big__btn {
    display: none;
}

.cat-list-big a {
    display: grid;
    gap: 15px;
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    color: var(--color-text-light);
    text-decoration: none;
    text-align: center;
}

.cat-list-big a img {
    margin: 0 auto;
    border-radius: 50%;
}

@media (min-width: 768px) {
    .cat-list-big a {
        grid-template-columns: 90px 1fr;
        text-align: left;
        gap: 20px;
    }

    .cat-list-big {
        grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
        gap: 20px;
        padding: 20px 0 0 0
    }
}

@media (min-width: 992px) {
    .cat-list-big__btn {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        bottom: -100%;
        text-align: center;
        transition: .3s;
        background-color: rgba(255, 255, 255, .81);
        color: var(--color1);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0 0 10px 10px;
    }

    .cat-list-big a:hover .cat-list-big__btn {
        bottom: 0;
    }

    .cat-list-big__title {
        font-size: 20px;
    }
}

.cat-list-small {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cat-list-small a, .search__cats a {
    display: inline-block;
    color: var(--color-text-dark);
    background-color: var(--color-light);
    padding: 0 15px 0 0;
    border-radius: 40px;
    transition: .3s;
    font-size: 15px;
}

.cat-list-small a img, .search__cats a img {
    border-radius: 40px;
}

.search__cats a img {
    margin-right: 5px
}

.cat-list-small a:hover, .search__cats a:hover {
    background-color: var(--color2);
    color: #fff
}

.cat-list-small_white a {
    background-color: #fff
}

.cat-list-small_white a:hover {
    background-color: var(--color2);
}

.cat-list-small__show-all {
    font-size: 15px;
}

.cat-list-small__show-all div {
    background: var(--color2);
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    padding: 6px 15px;
    transition: .3s;
    display: flex;
    gap: 10px;
    align-items: center;
}

.cat-list-small__show-all div img {
    width: 17px;
    height: 17px;
}

.cat-list-small__show-all div:hover {
    background-color: var(--color2-hover);
}

.cat-list-big__show-all {
    background: var(--color2);
    color: #fff;
    font-size: 18px;
    padding: 10px;
    margin: 20px auto 0 auto;
    max-width: 270px;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: .3s;
}

.cat-list-big__show-all:hover {
    background: var(--color2-hover);
}



