#catalogSections {
    background: #F6F6F6;
}
.catalog-sections-item {
    background: #FFF;
    border-radius: 15px;
    display: block;
    padding: 10px;
    margin-bottom: 24px;
    text-decoration: none;
    cursor: pointer;
}
.catalog-sections-item:hover {
    box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.15);
    transition: 300ms ease all;
    cursor: pointer;
}
.catalog-sections-image {
    height: 170px;
    display: flex;
    justify-content: center;
}
.catalog-sections-image img {
    display: block;
    max-width: 100%;
    height: 100%;
}
.catalog-sections-name {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    color: #333;
    text-decoration: none;
    padding: 12px 0;
}