.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/slide-2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

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


/* Product Portion Styling */
#product{
    margin: var(--mt50) 0px;
}
#product> .container > h2{
    text-align: center;
    margin: var(--m50);
}
#product > .container > p{
    text-align: center;
    margin: var(--m50);
    margin-top: -20px;
}
/* Product Card */

.item{
    border: 1px solid var(--lightgray);
}
.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;
    
}
.item:hover .productbutton,
.item:hover span.icon{
    display: flex;
    
}


/* Info Section */
.info{
    margin: 20px 0px;
}
.info > i{
    font-size: 30px;
    display: flex;
    justify-content: space-around;
    margin: 20px 0px;
}
.info > h3{
    color: var(--darkgray) !important;
    font-weight: bold !important;
    text-align: center;
}
.info > p{
    text-align: center;
}

ul{
    list-style-type: none;
    padding-left: 0px;
}




/* Product Detail Item Styling */

/* Product Image Styling */

/* Product Detail Portion Styling */
.pd-item-text > h3{
    color: var(--green) !important;
    font-weight: bold !important;
    margin: 20px 0px;
}

.price{
    font-weight: normal !important;
    color: var(--darkgray) !important;
}

.p-discription{
    text-align: justify;
}

form > label{
    font-weight: bold;
    margin-right: 20px;
}

form > select{
    padding: 5px;
    font-size: 1rem;
    outline: none;
}

.input-group{
    margin: 20px 0px;
}
.input-group > p{
    font-weight: bold;
    margin-right: 20px;
}
.input-group > #quantity{
    width: 100px;
    text-align: center;
    border-left: none !important;
    border-right: none !important;
}

.buttondiv{
    display: flex;
    justify-content: space-between;
    margin: 20px 0px;
}
.buttondiv > .wish{
    margin: auto;
}
.buttondiv > .wish:hover > a, .buttondiv > .wish:hover > a > i{
    color: var(--green) !important;
}

.Catagorytitle{
    font-weight: bold;
}

.Catagorytitle > span{
    font-weight: normal;
}

.teamicon{
    display: flex;
}
.teamicon > p{
    font-weight: bold;
    margin-top: 7px;
    margin-right: 20px;
    
}
.teamicon > a{
    margin: 0px 5px;
}

/* Discription Styling */
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
    color: var(--green) !important;
    font-weight: bold !important;
    border-bottom: .2rem solid var(--green) !important;
}
.tab-content h3{
    color: var(--green) !important;
    font-weight: bold !important;
    margin: 20px 0px;
}
.tab-content ul{
    list-style-type: circle !important;
}

section{
    margin: var(--m50) 0px;
}
