.maincatgory{

    width: 100%;
    height: 400px;
    margin-top: var(--m50);
    margin-bottom: 20px;
}
.maincatgory1{
    background: linear-gradient( to left, rgba(0, 0, 50, .3), rgba( 0, 0, 50,.3)), url("../asset/images/img/bg5.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.maincatgory > div{
    width: 100%;
    height: inherit;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.maincatgory > div >h1, .maincatgory > div >p{
    text-align: center;
}

/* Products Styling */

/* Filter Div Code */
.filterDiv {
    display: none;
}

.show {
    display: block;
}

.filterlink > li{
    cursor: pointer;
}
.filterlink > li:hover{
    color: var(--green);
}

/* Product Card */
.productitem{
    position: relative;
    border: 1px solid var(--lightgray);
    margin: 20px 0px;
}
.productcard{
    position: relative;
    
}
.image-back{
    position: absolute;
    opacity: 0;
    z-index: 5;
    top: 0;
    left: 0;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}
.productcard:hover .image-back {
    opacity: 1;
}

.productcarddetail{
    width: inherit;
    text-align: center;
}
.productcarddetail a > h3,
.productcarddetail h3{
    margin-top: 20px;
    color: var(--darkgray) !important;
    font-weight: 400 !important;
}
.productcarddetail a > h3:hover,
.productcarddetail h3{
    color: var(--green) !important;
}

/* Product Heading and Icon Styling */

.productiocn > span.ptitle{
    position: absolute;
    top: 20px;
    background-color: var(--green);
    padding: 10px 20px;
    text-align: center;
    font-weight: bold;
    color: var(--white);
    z-index: 10;
}

.productiocn > a > span.icon{
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--lightgray) !important;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    display: none;
}

.productiocn > a > span.icon:hover > i{
    color: var(--green);
}

/* Product Button Styling */
.productbutton{
    width: inherit;
    display: flex;
    display: none;
}
.productbutton a.button{
    margin: 20px auto;
    
}
.productitem:hover .productbutton,
.productitem:hover span.icon{
    display: flex;
}
/* Filter Section Code */
.filter{
    color: var(--green) !important;
    font-weight: bold !important;
}
ul{
    list-style-type: none;
    padding-left: 0px;
}

ul li{
    height: 30px;
}
ul > li > a:hover{
    color: var(--green) !important;
}

label{
    margin-left: 10px;
}


