/*---
    Green Color - #7FE953

----*/

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600&display=swap');
body.hidden-scrolling{
    overflow-y: hidden;
}
*{
    margin:0;
    box-sizing: border-box;
}
.container.header-container{
    max-width: 1170px;
    margin:auto;
}
ul{
    list-style: none;
    margin:0;
    padding:0;
}
a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}
#top-header{
    background-color: #7FE953;
    padding: 10px 0;
}
.contact-info a{
    color: #fff;
    margin-left: 10px;
}
@media(max-width: 552px){
    .contact-info a{
        display: grid;
        margin-bottom: 5px;
    }
    .social-icon{
        display: none;
    }
    .become-dealer{
        margin-top: 15px;
    }
}
.social-icon a span{
    color: #ffff;
    margin-left: 10px;
}
.become-dealer a{
    background-color: #000;
    padding: 10px 5px;
    color: #fff;
    text-decoration: none;
}


/*header*/
.header{
    position: sticky;
    width: 100%;
    left:0;
    top:0;
    z-index: 99;
    padding: 5px;
    background-color: #fff;
    box-shadow: 3px 0 10px #eee;
}

.header-main{
    background-color: #ffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0;
    border-radius: 4px;
}
.header .logo{
    padding: 0 15px;
}
.header .logo img{
   height: 60px;
   width: auto;
}
.header .nav-menu{
    padding: 0 15px;
}
.header .menu > .menu-item{
    display: inline-block;
    margin-left: 30px;
    position: relative;
}
.header .menu > .menu-item > a{
    display: block;
    padding: 12px 0;
    font-size: 16px;
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
    transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus{
    display: inline-block;
    height: 12px;
    width: 12px;
    position: relative;
    margin-left:5px; 
    pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
    content:'';
    position: absolute;
    box-sizing: border-box;
    left: 50%;
    top:50%;
    background-color: #000;
    height: 2px;
    width: 100%;
    transform: translate(-50%,-50%);
    transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
   background-color: #e91e63;
}
.header .menu > .menu-item > a .plus:after{
   transform: translate(-50%,-50%) rotate(-90deg);  
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
    color: #e91e63;
}
.header .menu > .menu-item > .sub-menu{
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    width: 220px;
    position: absolute;
    left:0;
    top:100%;
    background-color: #fff;
    padding: 10px 0;
    border-top: 3px solid #e91e63;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity:0;
    visibility: hidden;
}
@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
 }
 .header .menu > .menu-item-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);       
 }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
    display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
    text-transform: capitalize;
}
.header .open-nav-menu{
    height: 34px;
    width: 40px;
    margin-right: 15px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.header .open-nav-menu span{
    display: block;
    height: 3px;
    width: 24px;
    background-color: #000000;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
    content: '';
    position: absolute;
    left:0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    box-sizing: border-box;
}
.header .open-nav-menu span:before{
    top:-7px;
}
.header .open-nav-menu span:after{
    top:7px;
}
.header .close-nav-menu{
    height: 40px;
    width: 40px;
    background-color: #000;
    margin:0 0 15px 15px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}
.header .close-nav-menu img{
    width: 16px;
}
.header .menu-overlay{
    position: fixed;
    z-index: 999;
    background-color: rgba(0,0,0,0.5);
    left:0;
    top:0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity:0;
    transition: all 0.3s ease;
}

/*home section*/
.home-section{
    width: 100%;
    display: block;
    min-height: 100vh;
    background-image: url('../img/home.jpg');
    background-position: center top;
    background-size: cover;
}


/* responsive */

@media(max-width: 991px){
    .header .menu-overlay.active{
    visibility: visible;
    opacity: 1;
}
    .header .nav-menu{
        position: fixed;
        right: -280px;
        visibility: hidden;
        width: 280px;
        height: 100%;
        top:0;
        overflow-y: auto;
        background-color: #222222;
        z-index: 1000;
        padding: 15px 0;
        transition: all 0.5s ease;
    }
    .header .nav-menu.open{
        visibility: visible;
        right: 0px;
    }
    .header .menu > .menu-item{
        display: block;
        margin:0;
    }
    .header .menu > .menu-item-has-children > a{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header .menu > .menu-item > a{
        color: #ffffff;
        padding: 12px 15px;
        border-bottom: 1px solid #333333;
    }
    .header .menu > .menu-item:first-child > a{
        border-top: 1px solid #333333;  
    }
    .header .menu > .menu-item > a .plus:before, 
    .header .menu > .menu-item > a .plus:after{
        background-color: #ffffff;
    }
    .header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
    }
    .header .menu > .menu-item > .sub-menu{
        width: 100%;
        position: relative;
        opacity: 1;
        visibility: visible;
        border:none;
        background-color: transparent;
        box-shadow: none;
        transform: translateY(0px);
        padding: 0px;
        left: auto;
        top:auto;
        max-height: 0;
        overflow: hidden;
    }
    .header .menu > .menu-item > .sub-menu > .menu-item > a{
        padding: 12px 45px;
        color: #ffffff;
        border-bottom: 1px solid #333333;
    }
    .header .close-nav-menu,
    .header .open-nav-menu{
        display: flex;
    }
}
.owl-carousel.slider .item img{
    width: 100%;
    height: auto;
}

@media(max-width: 552px){
    .product-heading h2{
        font-size: 22px;
        text-transform: uppercase;
    }
}
.story-head h4,
.story-head h2{
    color: #5CC92E;
    font-weight: 600;
}
.story-head h4{
    font-size: 18px;
}
.story-desc p{
    font-size: 14px;
    text-align: justify;
}
.owl-carousel.category .category-box img{
    height: 100px;
    width: auto;
}
.owl-carousel.category .category-box p{
    color: #000;
    font-weight: 600;
    margin-top: 15px;
}
/*--------Display Products---------*/
.products{
    overflow: hidden;
    width: 100%;
    height: 390px;
    box-shadow: 0 0 20px #C7C7C7;
    padding: 15px;
}
.products img{
    width: 100%;
    height: 180px;
}
.products:hover img{
    transform: scale(1.07);
    transition: all 0.5s;
    overflow: hidden;
}

@media(max-width: 552px){
    .products{
        overflow: hidden;
        width: 100%;
        height: 400px;
    }
    .products img{
        width: 100%;
        height: 220px;
    }
}
.products .products-tag{
    margin-top: 20px;
}
.products .products-tag h3{
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
.products .products-tag p{
    color: #858585;
}
.products .view-more{
    position: absolute;
    bottom: 10px;
    color: #7FE953;
}
.product-heading button{
   background-color: #7FE953;
   color: #fff;
   outline: none;
   border: 1px solid #23AF34;
   margin-top: 25px;
   height: 40px;
   width: 140px;
}
.product-heading button a{
    color: #128F21;
}
.product-banner img{
    width: 100%;
    height: 200px;
}

.product-banner img{
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
}


.product-banner .banner-details{
  position: absolute;
  bottom: 20px;
  left: 0;
  padding: 0 30px;
}
.product-banner .banner-details h2,
.product-banner .banner-details p{
  text-transform: uppercase;
  color: #fff;
  z-index: 100;
}
.product-banner .banner-details button{
  outline: none;
  border: none;
  border: 2px solid #fff;
  background: transparent;
  height: 40px;
  width: 150px;
}
.product-banner .banner-details button:hover{
  background: #7FE953;
  transition: 0.5s all;
}
.product-banner .banner-details button a{
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

h2.main-heading {
  margin: 30px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  color: #fff;
}


#enquiry-form form input,
 #enquiry-form form textarea{
  width: 100%;
  height: 40px;
  margin-bottom: 15px;
  padding-left: 10px;
  border: none;
  outline: none;
  border: 1px solid #eee;
}
#enquiry-form form textarea{
  height: 150px;
}
#enquiry-form form input[type="submit"]{
  background: #13B226;
  color: #fff;
  font-weight: bold;
  border: 1px solid #0FA420;
}
footer{
  background: #3AC249;
  padding: 15px 0;
}
.footer-content p{
  color: #fff;
  text-align: justify;
}
.footer-content h3{
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.footer-content a{
  display: grid;
  color: #fff;
  margin-bottom: 6px;
}
.footer-content a:hover{
  margin-left: 3px;
  color: #046D0F;
  font-weight: 600;
}
.footer-content ul li{
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
}
#footer-bottom{
  background: #252525;
  padding: 10px 0;
}
#footer-bottom .footer-bottom-content p{
  color: #fff;

}
#footer-bottom .footer-bottom-content p a{
  color: #11AAD7;
  font-weight: 600;
}
.footer-social-media{
  margin-bottom: 10px;
}
.footer-social-media span{
  color: #fff;
  padding: 10px;
  border: 2px solid #fff;
  border-radius: 10px;
}
.story-img img{
  width: 100%;
  height: auto;
}
.top-banner img{
    width: 100%;
    height: auto;
}