﻿.MainCate .edn_category_menu_wrapper {
    list-style:none;
    text-align:center;
    margin:100px 0;
}
.MainCate .edn_category_menu_wrapper li {
    display:inline-block;
    margin:10px;
    background-color:#20273a;
}
.MainCate .edn_category_menu_wrapper li .edn_category {
    display:block;
    background-color:#20273a;
    padding:30px 10px;
    color:#fff;
    text-align:center;
    font-size:16px;
    position:relative;
    transition:all 0.3s ease-out;
}
.MainCate .edn_category_menu_wrapper li .edn_image img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
    position:relative;
}
.MainCate .edn_category_menu_wrapper li .edn_image {
    overflow: hidden;
    display: block;
    position:relative;
}
.MainCate .edn_category_menu_wrapper li:hover .edn_image img{
    opacity: 0.5;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.MainCate .edn_category_menu_wrapper li .edn_category::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    background: url(images/cate-box-btn.png) no-repeat 0 0;
    width: 121px;
    height: 16px;
    margin: 0 auto;
    bottom: -4px;
}
.MainCate .edn_category_menu_wrapper li .edn_category::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    background: url(images/cate-icon1.png) no-repeat center 0;
    width: 55px;
    height: 43px;
    bottom: -45px;
    margin: auto;
    filter:invert(1) brightness(0);
    transition:all 0.3s ease;
}
.MainCate .edn_category_menu_wrapper li:nth-child(2) .edn_category::after {
    background: url(images/cate-icon2.png) no-repeat center 0;
}
.MainCate .edn_category_menu_wrapper li:nth-child(3) .edn_category::after {
    background: url(images/cate-icon3.png) no-repeat center 0;
}
.MainCate .edn_category_menu_wrapper li:hover .edn_category {
    background-color:#6fa750;
}
.MainCate .edn_category_menu_wrapper li:hover .edn_category::after {
   filter:none;
}
span.mask {
    position:absolute;
    background:url(images/logo-hover.png) no-repeat center center;
    width:100%;
    height:100%;
    padding: 20px 2.5em;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0,20px,0);
    transform: translate3d(0,20px,0);
    top:0;
    left:0;
}
.MainCate .edn_category_menu_wrapper li:hover span.mask {
        opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);

}
@media all and (min-width:1024px) and (max-width:1199px) {
.MainCate .edn_category_menu_wrapper li {
    width: 302px;
}
}
@media all and (min-width:768px) and (max-width:1023px) {
    .MainCate .edn_category_menu_wrapper li {
        width: 230px;
    }
}
@media all and (max-width:767px) {
    .MainCate .edn_category_menu_wrapper li {
        display: inline-block;
        margin: 20px 10px 49px;
        background-color: #20273a;
    }
    .MainCate .edn_category_menu_wrapper {
        margin: 50px 0;
    }
}