.catalog-page .catalog-category {
    background-color: rgb(245, 245, 245);
    padding: 10px;
    margin-bottom: 10px;
}
.catalog-page .catalog-category .category-menu{
    list-style: none;
    font-size: 16px;
    font-weight: bold;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}
.catalog-page .catalog-category .category-menu li a{
    color: #000000;
    text-decoration: none;
    padding: 5px 10px;
    position: relative;
}
.catalog-page .catalog-category .category-menu > li.active > a{
    pointer-events: none;
}
.catalog-page .catalog-category .category-menu > li.active > a,
.catalog-page .catalog-category .category-menu > li:hover > a{
    color: #A2D10B;
}
.catalog-page .catalog-category .category-menu > li > a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    background: #000000;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}
.catalog-page .catalog-category .category-menu > li.active > a:after,
.catalog-page .catalog-category .category-menu > li:hover > a:after {
    width: 100%;
    left: 0;
}
.catalog-page .catalog-category .category-menu > li > a:after,
.catalog-page .catalog-category .category-menu > li > a:before {
    transition: all .3s ease;
}

.catalog-page .container {
    position: relative;
}
.catalog-page .catalog-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.catalog-page .catalog-item {
    padding: 5px;
    width: 100%;
    max-width: 170px;
}
.catalog-page .catalog-wrap {
    background-color: #FFFFFF;
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.catalog-title {
    font-size: 12px;
    padding: 5px 0px;
    margin: 0 10px;
    border-radius: 2px;
    color: #000000;
}
.catalog-content {
    position: relative;
    overflow: hidden;
}
.catalog-img {
    width: 100%;
    height: 210px;
    transition: all .2s linear;
}
.catalog-item:hover .catalog-img {
    transform: scale(1.1);
}
.catalog-footer {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 35px;
    font-size: 12px;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(209, 209, 209, 0.5);
    opacity: 0;
    transition: all .3s linear;
}
.catalog-item:hover .catalog-footer {
    transition-delay: .2s;
    opacity: 1;
}
.download a {
    text-decoration: none;
    padding: 5px 10px;
    background-color: #00469C;
    color: #FFFFFF;
    border-radius: 5px;
    box-shadow: 1px 1px 3px -1px rgb(0, 0, 0 , 0.8);
}
.download {
    margin-left: 10px;
    font-size: 14px;
}

.view {
    font-size: 14px;
}