@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


/* @font-face {
    font-family: 'Proxima-Nova';
    src: url(../font/Proxima-Nova-Font.otf);
} */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none !important;
    /* font-family: "Proxima-Nova",sans-serif; */
    font-family: "Inter", sans-serif;
    /*  */
}
html{
    scroll-behavior: smooth;
}
body{
    overflow-x: hidden;
    font-size: 17px;
    background-color: #f5f5dc47;
    font-family: "Inter", sans-serif;
    /* font-family: "Proxima-Nova",sans-serif;  */
}
h1,h2,h3,h4,h5,h6,p{
    margin: 0;
    padding: 0;
}
ul{
    margin: 0;
    padding: 0;
}

/* Navbar Css */

.header-main{
    display: flex;
    width: 100%;
    padding: 8px 0;
}
.header-top-main{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.logo{
    width: 90px;
}
.logo a img{
    width: 100%;
}
.menu-nav{
    display: flex;
    position: relative;
    z-index: 99999;
}
.menu-nav>ul{
    display: flex;
}
.menu-nav>ul>li{
    padding: 0 16px;
}
.menu-nav>ul>li:first-child{
    padding-left: 0;
}
.menu-nav>ul>li:last-child{
    padding-right: 0;
}
.menu-nav>ul>li>a{
    padding: 32px 0;
    color: #2957A4;
    font-size: 19px;
    font-weight: 600;
    transition: 0.3s all ease;
    letter-spacing: 1px;
}
.menu-nav>ul>li:hover a{
    color: #388968;
}
.menu-nav>ul>li>a>i{
    transition: 0.3s ease;
    font-size: 17px;
}
.menu-nav>ul>li:hover>a>i{
    transform: rotate(180deg);
    color: #388968;
}
.drop-down-menu{
    position: relative;
}
.drop-down-nav{
    position: absolute;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    top: 70px;
    left: 0;
    background-color: #fff;
    width: 345px;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.drop-down-nav>li{
    border-bottom: 1px solid #d8dadc;
}
.drop-down-nav>li>a{
    color: #000 !important;
    position: relative;
    padding: 10px 20px;
    display: inline-block;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
}
.drop-down-nav>li:hover{
    background-color: #388968;
    transition: 0.3s;
}
.drop-down-nav>li:hover>a{
    color: #fff !important;
}
.drop-down-menu:hover .drop-down-nav{
    visibility: visible;
    overflow: visible;
    opacity: 1;
    top: 45px;
    transition: 0.5s;
}
.hamburger-menu{
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
.hamburger{
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: end;
    position: relative;
    z-index: 9;
    cursor: pointer;
    height: 100%;
    justify-content: center;
    width: 30px;
}
.bar{
    width: 30px;
    height: 2px;
    position: relative;
    background-color: #2957A4;
    transition: 0.3s;
}
.bar:nth-child(2){
    width: 15px;
}
.header-contact .bar:nth-child(2){
    transform: translateX(-40px);
    transition: 0.8s;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    background-color: #2957a4;
}
.header-contact .bar:nth-child(1){
    transform: rotate(135deg);
    top: 8px;
    position: relative;
    background-color: #2957a4;
}
.header-contact .bar:nth-child(3){
    transform: rotate(225deg);
    top: -6px;
    position: relative;
    background-color: #2957a4;
}


/* heading  */

.heading{
    font-family: "Ubuntu", sans-serif;
    position: relative;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    padding-top: 15px;
}

.text-start{
    padding: 120px 0px 120px 12px;
}



/* banner */

.banner .slick-prev{
    display: none !important;
}

.banner .slick-next{
    display: none !important;
}


/* About Us */

.about{
    padding: 60px 0 50px 0;
    position: relative;
}
.about-leaf{
    position: absolute;
    bottom: -10%;
    animation: dance 4s linear infinite;
}
.about-leaf img{
    width: 175px;
}
@keyframes dance {
    0%{
        transform: translateX(-50px);
    }
    50%{
        transform: translateX(-15px);
    }
    100%{
        transform: translateX(-50px);
    }
}
.matka{
    position: relative;
}
.about-content{
    padding-left: 20px;
}
.about-content h2{
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 10px;
    position: relative;
    color: #000;
}
.about-content h2::after{
    position: absolute;
    content: "";
    background-color: #000;
    width: 40px;
    height: 2px;
    top: 57%;
    left: 29%;
}
.about-content h1{
    font-size: 36px;
    font-weight: 700;
    color: #000;
    padding-bottom: 15px;
}
.about-content p{
    color: #656565;
    line-height: 28px;
    text-align: justify;
    padding-bottom: 16px;
    font-size: 16px;
}
.about-info{
    display: flex;
}
.about-info p{
    padding-left: 18px;
    padding-bottom: 10px;
}
.about-info i{
    position: relative;
    top: 4px;
    font-size: 18px;
    color: #18ba60;
}
.more-about a{
    color: #388968;
    border: 2px solid #388968;
    padding: 10px 30px;
    margin-top: 14px;
    display: inline-block;
    transition: 0.3s all ease;
    font-weight: 700;
}
.more-about a:hover{
    background-color: #388968;
    color: #fff;
}

/* Product */

.product{
    padding: 0px 0 50px 0;
}
.product h2{
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 65px;
    position: relative;
}
.product{
    position: relative;
}
.product h2::before{
    position: absolute;
    content: "";
    height: 2px;
    width: 120px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    top: 135%;
}
.product h2::after{
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #000;
    box-shadow: 0 0 0 5px #fff;
    left: 50%;
    transform: translateX(-50%);
    top: 126%;
}

/* Product-effect */

.box{
    background: linear-gradient(to right, #0eae57 0%, #0c7475 100% );
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #18ba60;
    margin: 0 8px;
}
.box:before,
.box:after,
.box .box-content:before,
.box .box-content:after{
    content: "";
    background: #fff;
    width: 0;
    height: 4px;
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 1;
    transition: all 600ms ease;
}
.box:after{
    top: auto;
    bottom: 30px;
    left: auto;
    right: 30px;
}
.box .box-content:before,
.box .box-content:after{
    width: 4px;
    height: 0;
}
.box .box-content:after{
    left: auto;
    right: 30px;
    top: auto;
    bottom: 30px;
}
.box:hover:before,
.box:hover:after{    
    width: calc(100% - 60px);
}
.box:hover .box-content:before,
.box:hover .box-content:after{
    height: calc(100% - 60px);
}
.box img{
    width: 100%;
    height: auto;
    transition: all 0.25s linear;
    
    
}
.box:hover img{
    opacity: 0.25;
    transform: scale(1.1);
}
.box .inner-content{
    color: #fff;
    text-align: center;
    width: 70%;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 70%;
    left: 50%;
    transition: all 600ms ease;
}
.box:hover .inner-content{
    opacity: 1;
    top: 50%;
}
.box .title{
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 35px;
    padding-bottom: 10px;
    color: #fff;
}
.box .titles{
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 30px;
    color: #fff;
    
}
.box .nt{
    padding-bottom: 0;
    font-size: 17px;
    
}
.box p a{
    color: #fff;
    transition: 0.3s all ease;
}
.box p a:hover{
    color: #2957a4;
}

.product .slick-prev{
    display: none !important;
}
.product .slick-next{
    display: none !important;
}

/* Counter Part Css */

.counter-time{
    /* background-image: url(../images/about-bg.jpg); */
    /* margin-top: 60px; */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0px 0 60px;
    position: relative;
    /* background-color: #FCF9F5; */
}
.counter-time h2{
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 65px;
    position: relative;
}
.counter-time h2 span{
    color: #18ba60;
    
}
.counter-time h2::before{
    position: absolute;
    content: "";
    height: 2px;
    width: 120px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    top: 145%;
}
.counter-time h2::after{
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #000;
    box-shadow: 0 0 0 5px #fff;
    left: 50%;
    transform: translateX(-50%);
    top: 58px;
}
.first-why{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.icon-box{
    padding: 30px 32px 30px;
    position: relative;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15)
}
.icon-box:before, .icon-box:after {content: '';position: absolute;width: calc(100% - 35px);height: calc(100% - 35px);border: 2px solid #83bf2c;pointer-events: none;transition: .33s all ease;}
.icon-box:before {top: 0; left: 0; border-width: 2px 0 0 2px;}
.icon-box:after {bottom: 0; right: 0; border-width: 0 2px 2px 0;}
.icon-box .box-top, .icon-box .box-body {position: relative; will-change: transform; transition: .33s all ease; filter: blur(0);}
.icon-box .box-top {top: 0;}
.icon-box .box-icon {display:block; margin-bottom:15px;}
.icon-box h5{line-height: 1.11111;font-size: 18px; padding-bottom:5px; font-family: open sans,Helvetica,Arial,sans-serif; font-weight: 700;color: #050521; margin:0 0 10px; position:relative;}
.text-gray-05 {color: rgba(0,0,0,.5); margin:0;}
.icon-box.hover:before, .icon-box.hover:after, .icon-box:hover:before, .icon-box:hover:after {width: 100%; height: 100%; border-color: #83bf2c;}
.btn-load{color: #fff; font-size: 17px; padding: 14px 35px;line-height: 1.5; background-color: #4854ed; border-color: #4854ed;}

.box-icon{
    display: block;
    margin-bottom: 15px;
    transition: 0.5s all ease;
}
/* .box-icon img{
    width: 100%;
} */
.icon-box:hover .box-icon{
    transform: translateY(-10px);
}
.box-top h5{
    font-size: 18px;
    line-height: 1.11111;
    padding-bottom: 5px;
    font-weight: 700;
    color: #050521; 
}
.box-top h5 a{
    color: #000;
}
.box-top p{
    color: #000;
    font-size: 14px;
    line-height: 24px;
}
.box-style img{
    width: 100%;
}
.view-ser{
    text-align: center;
}
.view-ser a{
    padding: 10px 20px;
    background-color: #18ba60;
    display: inline-block;
    color: #fff;
    margin-top: 10px;
}
.ser-view{
    color: #18ba60;
    padding-top: 10px;
    display: block;
    transition: 0.3s all ease;
}

#green-time{
    background-color: #F6F6EE;
    position: relative;
    z-index: 1;
    margin-top: -93px;
}
.process-thumb{
    position: relative;
    left: -12px;
}
.process-thumb img{
    width: 100%;
}


/* Footer part */

.new-enq{
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 66px 30px;
    margin-top: 6px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /* background-color: #FCF9F5; */
}
.footer{
    background-image: url(../images/footer-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px 0 0;
    position: relative;
}
.footer-social-address{
    border-radius: 5px;
}
.footer-social-address-content p{
    font-size: 17px;
    color: #fff;
    line-height: 27px;
    margin-bottom: 15px;
    font-weight: 400;
    display: block;
}
.footer-social-address-content h4{
    font-size: 31px;
    color: #000;
    font-weight: 700;
    line-height: 44px;
    padding-left: 50px;
}
.why-contacts{
    text-align: right;
}
.why-contacts a{
    display: inline-block;
    background-color: #388968;
    color: #fff;
    font-size: 17px;
    position: relative;
    z-index: 1;
    font-weight: 500;
    padding: 14px 50px 14px 25px;
    border-radius: 6px;
    transition: 0.3s;
}
.why-contacts:hover a{
    background-color: #0eae57;
    color: #fff;
}
.why-contacts:hover .two{
    filter: brightness(0) invert(1);
}
.add-footer-class{
    padding-top: 45px;
}
.foot-logo{
    width: 94%;
    /* width: 145px; */
    margin: auto;
    padding: 15px;
    background-color: #fff;
    border-radius: 6px;
    text-align: center;
}
.foot-logo img{
    width: 58%;
}
.foot-first p{
    width: 94%;
    margin: auto;
    color: #fff;
    text-align: justify;
    padding-top: 20px;
    line-height: 28px;
    font-size: 15px;
}
.foot-second h2{
    color: #fff;
    
    font-weight: 700;
    padding-bottom: 25px;
    font-size: 24px;
}
.foot-second{
    padding-left: 26px;
}
.qui a{
    color: #fff;
    display: inline-block;
    transition: 0.5s all ease;
    font-size: 15px;
    padding-bottom: 10px;
    line-height: 28px;
}
.qui a:hover{
    color: #83bf2c;
}
.qui a i{
    font-size: 14px;
    position: relative;
}
.foot-third{
    padding-left: 40px;
}
.foot-third h2{
    color: #fff;
    
    font-weight: 700;
    padding-bottom: 25px;
    font-size: 24px;
}
.foot-last h2{
    color: #fff;
    
    font-weight: 700;
    padding-bottom: 25px;
    font-size: 24px;
}
.foot-contact{
    display: flex;
}
.foot-contact address{
    margin-bottom: 0;
    color: #fff;
    line-height: 28px;
    font-size: 15px;
}
.foot-contact i{
    color: #fff;
    position: relative;
    padding-right: 14px;
    font-size: 15px;
}
.foot-contact p{
    color: #fff;
    font-size: 15px;
}
.foot-contact{
    margin-bottom: 10px;
}
.foot-contact a{
    color: #fff;
    font-size: 15px;
}
.footer-bottom-area{
    padding: 29px 0 25px 0;
}
.footer-bottom{
    border-top: 1px solid #ffffff79;
    padding-top: 18px;
    text-align: center;
    color: #fff;
}
.footer-bottom p{
    padding-top: 6px;
    font-size: 15px;
}
.footer-bottom p a{
    color: #fff;
    transition: 0.5s all ease;
    line-height: 28px;
}
.footer-bottom p a:hover{
    color: #83bf2c;
}

/* Mix-part  */

.mix-part{
    padding: 0px 0 0 0;
    /* background-color: #FCF9F5; */
}
.counter-part h3{
    color: #000;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
}
.count-icon{
    width: 95px;
    padding-top: 60px;
    margin: auto;
}
.count-icon img{
    width: 100%;
}
.count-num{
    text-align: center;
    padding-top: 5px;
}
.count-num span{
    font-size: 50px;
    
    color: #83bf2c;
    font-weight: 700;
}
.counter-part p{
    font-size: 25px;
    color: #000;
    text-align: center;
    font-weight: 700;
}



/* testi */

.testimonial{
    padding: 60px 30px 50px;
    margin: 70px 30px 40px;
    border: 2px solid #83bf2c;
    position: relative;
    background-color: #fff;
}
.testimonial .pic{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #83bf2c;
    overflow: hidden;
    margin: 0 auto;
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}
.testimonial .pic img{
    width: 48%;
    height: auto;
}
.testimonial .description{
    font-size: 15px;
    color: #5e595b;
    line-height: 27px;
    text-align: center;
    margin: 0;
    position: relative;
}
.testimonial .title{
    padding: 10px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #83bf2c;
    font-size: 1px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: absolute;
    bottom: -21px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}
.testimonial .post{
    font-size: 16px;
    color: #000;
}
.owl-theme .owl-controls{
    width: 100%;
    height: 50px;
    opacity: 1;
    position: absolute;
    top: 38%;
}
.owl-theme .owl-controls .owl-buttons div{
    width: 50px;
    height: 50px;
    line-height: 40px;
    border-radius: 0;
    background: transparent;
}
.owl-prev{
    display: none !important;
}
.owl-next{
    display: none !important;
}
.owl-prev:after,
.owl-next:after{
    content: "\f104";
    font-family: "Font Awesome 5 Free"; font-weight: 900;
    font-size: 30px;
    color: #c7373c;
    opacity: 1;
}
.owl-next:after{ content: "\f105"; }
 
@media only screen and (max-width: 479px){
    .testimonial{ padding: 70px 10px 30px; }
    .testimonial .description:before{ top: -20px }
    .testimonial .title{ font-size: 12px; }
    .testimonial .post{ font-size: 11px; }
}


.testi h3{
    color: #000;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
}
.two{
    position: relative;
    left: -40px;
    z-index: 1;
    transition: 0.3s;
}

/* Sticky-header */

.sticky header{
    position: fixed;
    top: 0;
    left: 0;
    animation: stickey-header 1s;
    z-index: 999999;
    box-shadow: 0 0 10px #ababab;
    width: 100%;
    background-color: #fcfcf5;
  }
  
  @keyframes stickey-header {
    0%{
      transform: translateY(-100px);
    }
    100%{
      transform: translateY(0px);
    }
  }

  .sticky-time{
    display: none;
  }
  .sticky header .logo{
    display: none;
  }
  .sticky header .sticky-time{
    display: block;
    width: 45px;
  }


  /* Product-page Css */

  .bread-crumb{
    position: relative;
    background-image: url(../images/bread-crumb.webp);
    background-size: cover;
    background-position: center;
  }
  
  .bread-crumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); 
}

  .bread-crumb h3{
    font-family: "Ubuntu", sans-serif;
    font-size: 35px;
    font-weight: 700;
    padding-bottom: 20px;
    position: relative;
    text-shadow: 2px 2px #939393;
  }
  .industry {
    position: relative;
    background-image: url(../images/industry.webp);
    background-size: cover;
    background-position: center;
}

.industry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
}
  .garbage{
    background-image: url(../images/garbage-breadcrumb.webp);
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .garbage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
}
  .compostable{
    background-image: url(../images/biohazard-new.webp);
    position: relative;
    background-size: cover;
    background-position: center;
  }
  
  .ldpe-time{
    background-image: url(../images/ldpe-films.webp);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .ldpe-time::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
}

  .biohazard{
    background-image: url(../images/biohazard-bags.webp);
  }
  .contact-bread{
    background-image: url(../images/contactus.webp);
    
  }
  .faqs{
    background-image: url(../images/faqs1.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .garbage h3{
    text-shadow: none;
  }
  .biohazard h3{
    text-shadow: none;
  }
  .compostable h3{
    text-shadow: none;
  }
  .contact-bread h3{
    text-shadow: none;
  }
  .bread-info p{
    font-size: 18px;
    padding-right: 10px;
    display: inline-block;
    position: relative;
    padding-top: 15px;
    /* text-shadow: 2px 2px #939393; */
  }
  .second-bread-info p{
    text-shadow: none;
  }
  .biohazard p{
    text-shadow: none;
  }
  .compostable p{
    text-shadow: none;
  }
  .contact-bread p{
    text-shadow: none;
  }
  .bread-info p a{
    color: #fff;
    transition: 0.3s all ease;
  }
  .bread-info p a:hover{
    color: #83bf2c;
  }
  .bread-info p i{
    position: relative;
    font-size: 14px;
  }
  .hdpe{
    padding: 50px 0 25px 0;
  }
  .hdpe table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ddd;
  }
  .hdpe table td {
    text-align: left;
    padding: 12px 20px;
    border-right: 1px solid #ddd;
    font-size: 16px;
    line-height: 28px;
  }
  .hdpe table tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  .hdpe table th{
    text-align: center;
    color: #fff;
    background-color: #83bf2c;
    padding: 12px 0;
    border: 1px solid #ddd;
    font-size: 18px;
  }
  .hdpe-cont{
    padding-bottom: 25px;
  }
  .hdpe-cont p{
    font-size: 16px;
    line-height: 28px;
    padding-bottom: 10px;
    text-align: justify;
    color: #000;
  }
  .hdpe-cont p:last-child{
    padding-bottom: 0;
  }
  .in-box{
    height: 246px;
  }
  .in-box img{
    height: 246px;
  }
  .types{
    padding: 0px 0 30px 0;
  }

  .hdpe-1{
    text-align: center;
  }


@media only screen and (max-width:990px){
    .boxx{ margin: 0 0 30px; }
}

  /* Applications */

  /* .app-time{
    padding-bottom: 50px;
    background-image: url(../images/about-bg.jpg);
  } */

.types h2 {
    
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 55px;
    position: relative;
}

.types h2::before{
    position: absolute;
    content: "";
    height: 2px;
    width: 90px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    top: 135%;
}
.types h2::after{
    position: absolute;
    content: "";
    height: 9px;
    width: 9px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #000;
    box-shadow: 0 0 0 5px #fff;
    left: 50%;
    transform: translateX(-50%);
    top: 127%;
}

/* About Us Page Css */

.about-us{
    padding: 50px 0;
}
.about-page-cont h2{
    color: #000;
    
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 15px;
    padding-top: 35px;
}
.about-page-cont p{
    color: #000;
    line-height: 30px;
    text-align: justify;
    padding-bottom: 10px;
    font-size: 16px;
}
.about-page-cont p:last-child{
    padding-bottom: 0;
}
.inabo{
    width: 100%;
    margin-bottom: 50px;
}
.inabo img{
    width: 100%;
}
.inner-about{
    width: 90%;
    margin: auto;
}
.about-page-cont{
    height: 495px;
}
.second-about{
    height: auto;
}
.second-about p{
    padding-left: 5%;
}
.second-info{
    margin-top: 70px;
}
.team-time{
    border-radius: 20px;
}
.team-time img{
    border-radius: 20px;
    width: 100%;
}
.inner-about h2{
    color: #000;
    
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 15px;
    text-align: center;
}

/* Mission Vision*/

/* :root{ --main-color: #83bf2c; } */
.serviceBox{
    color: #83bf2c;
    font-family: 'Inter', sans-serif;
    text-align: center;
    padding: 0 30px 30px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.serviceBox:before,
.serviceBox:after{
    content: "";
    background: #fff;
    border-radius: 20px;
    position: absolute;
    top: 38px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: -1;
    box-shadow: rgba(99, 99, 99, 0.4) 0px 2px 8px 0px;
    transition: 0.3s all ease;
}
.serviceBox:hover::before{
    background-color: #83bf2c;
}
.serviceBox:hover .description{
    color: #fff;
}
.serviceBox:hover .title{
    color: #fff;
}
.serviceBox:hover .service-icon:after{
    background-color: #fff;
}
.serviceBox:after{
    background-color: #83bf2c;
    border-radius: 30px;
    top: 55%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    transition: 0.3s all ease;
}
.serviceBox .service-icon{
    color: #fff;
    background: #83bf2c;
    font-size: 35px;
    line-height: 67px;
    width: 75px;
    height: 75px;
    margin: 0 auto 50px;
    border-radius: 50%;
    border: 5px solid #fff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.vision-time img{
    width: 37px;
}
.serviceBox .service-icon:before,
.serviceBox .service-icon:after{
    content: '';
    background-color: #83bf2c;
    height: 70px;
    width: 140px;
    border-radius: 0 0 100px 100px/0 0 100px 100px;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    transition: 0.3s all ease;
}
.serviceBox .service-icon:before{
    height: 10px;
    width: 170px;
    border-radius: 10px 10px 0 0;
    top: auto;
    bottom: 50%;
}
.serviceBox .title{
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    /* text-shadow: 0 4px rgba(0,0,0,0.05); */
    margin: 0 0 10px;
}
.serviceBox .description{
    color: #000;
    font-size: 15px;
    line-height: 26px;
    margin: 0;
    text-align: justify;
}
@media only screen and (max-width: 1199px){
    .serviceBox{ margin: 0 0 30px; }
}
.service-icon img{
    width: 32px;
}
.second-mission{
    margin-top: 20px;
}
/* .serve{
    background-image: url(../images/about-bg.jpg);
} */
.second-para{
    padding-top: 30px;
}
.second-para p{
    color: #656565;
    line-height: 28px;
    text-align: justify;
    padding-bottom: 16px;
}
.industry-serve{
    margin-top: 10px;
    margin-bottom: 50px;
}
.retail{
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 18px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 95%;
    margin: auto;
    transition: 0.3s all ease;
    border-radius: 10px;
}
.retail:hover{
    background-color: #83bf2c;
    cursor: pointer;
    color: #fff;
}
.retail img{
    width: 50px;
    transition: 0.3s all ease;
    padding-bottom: 7px;
}
.retail:hover img{
    filter: brightness(0) invert(1); 
}
.retail h3{
    font-weight: 700;
    font-size: 17px;
    text-align: center;
}
.retail p{
    text-align: center;
    font-size: 15px;
    line-height: 28px;
}
.retail-2{
    height: 220px;
}
.industry-serve h2 {
    
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 60px;
    position: relative;
}

.industry-serve h2::before{
    position: absolute;
    content: "";
    height: 2px;
    width: 140px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    top: 135%;
}
.industry-serve h2::after{
    position: absolute;
    content: "";
    height: 9px;
    width: 9px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #000;
    box-shadow: 0 0 0 5px #fff;
    left: 50%;
    transform: translateX(-50%);
    top: 127%;
}


.icon-boxs{
    padding: 5px;
    position: relative;
    background-color: #fff;
    text-align: center;
    cursor: pointer;
}
.icon-boxs:before, .icon-boxs:after {content: '';position: absolute;width: calc(100% - 35px);height: calc(100% - 35px);border: 2px solid #83bf2c;pointer-events: none;transition: .33s all ease;}
.icon-boxs:before {top: 0; left: 0; border-width: 2px 0 0 2px;}
.icon-boxs:after {bottom: 0; right: 0; border-width: 0 2px 2px 0;}
.icon-boxs .box-tops, .icon-boxs .box-body {position: relative; will-change: transform; transition: .33s all ease; filter: blur(0);}
.icon-boxs .box-tops {top: 0;}
.icon-boxs .box-icon {display:block; margin-bottom:10px;}
.icon-boxs h5{line-height: 1.11111;font-size: 18px; padding-bottom:5px; font-family: open sans,Helvetica,Arial,sans-serif; font-weight: 700;color: #050521; margin:0 0 10px; position:relative;}
.text-gray-05 {color: rgba(0,0,0,.5); margin:0;}
.icon-boxs.hover:before, .icon-boxs.hover:after, .icon-boxs:hover:before, .icon-boxs:hover:after {width: 100%; height: 100%; border-color: #83bf2c;}
.btn-load{color: #fff; font-size: 17px; padding: 14px 35px;line-height: 1.5; background-color: #4854ed; border-color: #4854ed;}

.box-icon{
    display: block;
    margin-bottom: 15px;
    transition: 0.5s all ease;
}
.box-tops h5{
    font-size: 18px;
    line-height: 1.11111;
    padding: 15px 0 15px 0;
    font-weight: 700;
    color: #000;
    background-color: #fff;
    margin-bottom: 0;
}
.box-tops h5 a{
    color: #000;
}
.box-tops p{
    color: #000;
    font-size: 14px;
    line-height: 24px;
}
.view-ser{
    text-align: center;
}
.view-ser a{
    padding: 10px 20px;
    background-color: #18ba60;
    display: inline-block;
    color: #fff;
    margin-top: 10px;
}
.ser-view{
    color: #18ba60;
    padding-top: 10px;
    display: block;
    transition: 0.3s all ease;
}

#green-time{
    background-color: #F6F6EE;
    position: relative;
    z-index: 1;
    margin-top: -93px;
}
.process-thumb{
    position: relative;
    left: -12px;
}
.process-thumb img{
    width: 100%;
}


/* Ldpe Page Css */

.features{
    padding: 10px 0 30px 0;
    margin-bottom: 30px;
    margin-top: 10px;
}
.features h2 {
    color: #000;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

.features h2::before{
    position: absolute;
    content: "";
    height: 2px;
    width: 90px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    top: 135%;
}
.features h2::after{
    position: absolute;
    content: "";
    height: 9px;
    width: 9px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #000;
    box-shadow: 0 0 0 5px #fff;
    left: 50%;
    transform: translateX(-50%);
    top: 127%;
}
.low{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 15px 0;
    text-align: center;
    border-radius: 50px;
    transition: 0.3s all ease-in-out;
    margin-top: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 16px;
}
.low:hover{
    background-color: #83bf2c;
    color: #fff;
    cursor: pointer;
}
.boxly{
    margin-top: 30px;
}

.color-time{
    position: relative;
    background-color: #83bf2c;
    border-radius: 10px;
    padding: 25px 0;
    margin-bottom: 20px;

}
.color-time::before{
    position: absolute;
    content: "";
    background-image: url(../images/bg-special.webp);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    top: 0;
}
.color-time h4{
    position: relative;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 30px;
    
}
.color-time p{
    text-align: center;
    color: #fff;
    font-size: 18px;
    padding-top: 8px;
}
.new-feat{
    padding-top: 0px;
}

/* Biohazard Bags */

.biohazar{
    padding-top: 50px;
}
.color-bio p{
    padding: 0 12px;
    font-size: 15px;
    line-height: 28px;
    text-align: center;
}
.height-box{
    height: 495px;
}
.height-box img{
    transition: 0.3s all ease;
}
.height-box:hover img{
    transform: scale(1.05);
}
.last-last{
    margin-bottom: 1.5rem;
}


/* Contact Us Page Css */

.contact-page{
    padding: 50px 0 25px 0;
}
.map-time{
    height: 400px;
}
.first-add{
    box-shadow: none !important;
    padding: 0 !important;
}
.first-add:hover{
    background-color: #fff !important;
}
.first-add:hover p{
    color: #303030 !important;
}
.first-add:hover p a{
    color: #303030 !important;
}
.new-first{
    width: 100% !important;
}
.address-time{
    display: flex;
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15);
    background-color: #fff;
    padding: 16px;
    /* margin-bottom: 18px; */
    border-radius: 5px;
    transition: 0.3s all ease;
}
.address-time:hover{
    background-color: #83bf2c;
    cursor: pointer;
}
.address-time:hover h3{
    color: #fff;
}
.address-time:hover p{
    color: #fff;
}
.address-time:hover p a{
    color: #fff;
}
.address-time:last-child{
    margin-bottom: 0;
}
/* .location-icon{
    width: 70px;
    height: 70px;
} */
.add-detail{
    width: calc(100% - 70px);
    padding-left: 25px;
}
.add-detail h3{
    
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
    transition: 0.3s all ease;
}
.add-detail p{
    font-size: 15px;
    color: #303030;
    line-height: 28px;
    transition: 0.3s all ease;
    text-align: left;
}
.add-detail p a{
    color: #000;
    transition: 0.3s all ease;
}
.form-time{
    padding: 35px;
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15);
    background-color: #fff;
    border-radius: 5px;
}
.form-size{
    margin-bottom: 25px;
}
.form-control{
    height: 54px;
    border: 1px solid transparent;
    padding-left: 15px;
    background-color: #f2f2f4;
    border-radius: unset;
    color: #666666;
}
.form-control:focus{
    border: 1px solid #83bf2c;
    box-shadow: none;
}
textarea{
    height: auto !important;
}
.send-btn{
    background-color: #83bf2c;
    border-radius: unset;
    position: relative;
    width: 150px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s all ease;
    height: 44px;
    color: #fff;
    border-radius: 5px;
    margin-top: 23px;
}
.send-btn:hover{
    background-color: #0eae57;
    color: #fff;
}
::placeholder{
    color: #000 !important;
}
input:focus::placeholder{
    color: transparent !important;
    transition: 0.3s all ease;
}
textarea:focus::placeholder{
    color: transparent !important;
    transition: 0.3s all ease;
}
.num::-webkit-inner-spin-button {
    -webkit-appearance: none;
     margin: 0;
}
.fill {
    font-size: 18px;
    font-weight: 500;
}
.get {
    font-size: 28px;
    color: #000;
}
.contact-page h2 {
    
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 70px;
    position: relative;
}

.contact-page h2::before{
    position: absolute;
    content: "";
    height: 2px;
    width: 140px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    top: 135%;
}
.contact-page h2::after{
    position: absolute;
    content: "";
    height: 9px;
    width: 9px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #000;
    box-shadow: 0 0 0 5px #fff;
    left: 50%;
    transform: translateX(-50%);
    top: 126%;
}
.new-add{
    display: block;
}

.rupesh{
    font-weight: 600;
    padding-right: 10px;
}
.top-rupesh{
    padding-top: 10px;
}
.again-newadd{
    padding: 50px 0 15px 0 !important;
}
.internation{
    font-weight: 700;
    text-align: center;
    padding-bottom: 30px;
    padding-top: 10px;
}
.add-height{
    height: 160px;
}
.our-time{
    text-align: center;
    font-weight: 700;
    padding-bottom: 13px;
    font-size: 20px;
}
.boldmail{
    padding-top: 7px;
}
.manage:hover p{
    color: #fff !important;
}
.manage:hover p a{
    color: #fff !important;
}
.partner{
    display: flex;
    align-items: center;
}
.partner img{
    width: 50px;
}
.suraj{
    width: calc(100%-60px);
    padding-left: 25px;
}
.suraj h4{
    font-weight: 600;
    font-size: 18px;
    text-align: left;
    padding-bottom: 3px;
    padding-top: 2px;
}
.suraj h4 span{
    font-size: 16px;
}
.suraj h4 span a{
    color: #000;
}
.suraj-call{
    text-align: left;
}
.suraj-call a{
    color: #000;
    font-size: 15px;
    font-weight: 500;
}
.cont-icon-box{
    padding: 24px 32px 24px;
}
.final-cont{
    padding: 32px 32px 32px;
}
.last-det p{
    font-size: 17px;
}
.afric-add{
    padding: 20px 32px 17px !important;
}


/* Certificates part Start */

.certificate{
    padding: 40px 0 40px 0;
}

.certificate h2{
    
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 60px;
    position: relative;
}
.certificate{
    position: relative;
    /* background-color: #FCF9F5; */
}
.certificate h2::before{
    position: absolute;
    content: "";
    height: 2px;
    width: 120px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    top: 135%;
}
.certificate h2::after{
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #000;
    box-shadow: 0 0 0 5px #fff;
    left: 50%;
    transform: translateX(-50%);
    top: 126%;
}
.msme{
    width: 90%;
    background-color: #fff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 25px 0;
    margin: 10px 7px;
}
.msme img{
    width: 70%;
}
.certificate .slick-prev{
    display: none !important;
}
.certificate .slick-next{
    display: none !important;
}

/* Certificates part End */

.second-info .slick-prev{
    display: none !important;
}
.second-info .slick-next{
    display: none !important;
}
.garbage-bag-type{
    text-align: center;
}
.garbage-bag-type img{
    width: 75%;
}

/* Faqs Page Css */

.faqs-time{
    padding: 50px 0;
}
.faq h3{
    text-shadow: none;
}
.faq p{
    text-shadow: none;
}
.accordion {
    color: #000;
    cursor: pointer;
    padding: 18px 18px 18px 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: background-color 0.4s ease;
    position: relative; /* Added for positioning the icon */
    font-size: 20px;
    font-weight: 600;
    background-color: #ddd;
}
.green-box{
    position: absolute;
    background-color: #83bf2c;
    width: 80px;
    height: 80px;
    top: -7px;
    right: -25px;
    border: 3px solid #fff;
    border-radius: 50%;
}

.active, .accordion:hover {
    background-color: #ddd;
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    /* transition: max-height 0.3s ease-out; */
}
.panel p{
    font-size: 16px;
    padding: 25px 0 0 0;
    line-height: 28px;
}

.panel.active {
    max-height: 500px; /* Adjust according to your content height */
}

.icon {
    position: absolute;
    top: 47%;
    right: 1px;
    transform: translateY(-50%);
    transition: transform 0.4s ease;
    z-index: 1;
    font-size: 45px;
    color: #fff;
    font-weight: 400;
}

.accordion.active .icon {
    transform: translateY(-50%) rotate(-45deg);
}
.accordion.active{
    background-color: #000;
    color: #fff;
}
.acco{
    margin-bottom: 40px;
}
.acco:last-child{
    margin-bottom: 0;
}



/* Media Queries Start */

@media only screen and (max-width: 3000px){

    .add-box{
        
        margin-bottom: 24px;
    }

}

@media only screen and (max-width: 2400px){

    .add-box{
        height: 216px;
    }
    .add-box{
        
        margin-bottom: 24px;
    }

}

@media only screen and (max-width: 1399px) {

    .icon-box{
        height: 230px;
    }
    .cont-icon-box{
        height: auto;
    }
    .about-content h2::after{
        left: 33%;
    }
    .add-box{
        height: auto;
        margin-bottom: 24px;
    }

  }

@media only screen and (max-width: 1199px){
    
    .about-content h2::after{
        left: 40%;
    }
    .about-content h1{
        font-size: 32px;
    }
    .foot-second{
        padding-left: 53px;
    }
    .foot-logo{
        width: 80%;
        margin-left: inherit;
    }
    .foot-first p{
        width: 100%;
        margin-left: inherit;
    }
    .foot-last{
        margin-top: 25px;
    }
    .footer-social-address-content h4{
        padding-left: 0;
    }
    .about-page-cont h2{
        font-size: 34px;
    }
    .second-info {
        margin-top: 75px;
    }
    .retail h3{
        line-height: 28px;
        text-align: center;
    }
    .industry-serve h2::after{
        top: 128%;
    }
    .text-start {
        padding: 100px 0px 100px 12px;
    }
    .box .title{
        line-height: 30px;
        padding: 0px 5px 6px 5px;
        font-size: 16px;
    }
    .last-last{
        height: 320px !important;
    }
    
    

}

@media only screen and (max-width: 991px){

    .about-content{
        margin-top: 0px;
        padding-left: 0;
        margin-bottom: 40px;
    }
    .matka{
        margin-bottom: 50px;
    }
    .about-content h2::after{
        left: 25%;
    }
    .counter-time h2{
        font-size: 32px;
    }
    .counter-time h2::after{
        top: 52px;
    }
    .third-icon-box{
        margin-top: 28px;
        height: auto;
    }
    .footer-social-address-content h4{
        padding-left: 0;
    }
    .about-leaf{
        left: 2%;
    }
    .foot-second{
        padding-left: 14px;
    }
    .foot-first p{
        padding-right: 23px;
    }
    .footer-bottom p{
        line-height: 28px;
    }
    .foot-logo{
        width: 90%;
    }
    .foot-third{
        padding-left: 23px;
    }
    .qui a span{
        padding-left: 18px;
    }
    .inner-about{
        width: 100%;
    }
    .serviceBox .description{
        text-align: center;
    }
    .second-info{
        margin-top: 30px;
    }
    .about-page-cont h2{
        padding-top: 0;
    }
    .second-about p{
        padding-left: 0;
    }
    .second-about{
        padding-top: 20px;
    }
    .box .title{
        padding-bottom: 2px;
    }
    .height-box{
        height: 515px;
    }
    .hamburger-menu{
        display: block;
    }
    .menu-nav>ul{
        display: none;
    }
    .menu-nav>ul{
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        width: 345px;
        background-color: #fff;
        height: 100vh;
        box-shadow: rgb(17 12 46 / .15) 0 48px 100px 0;
        transform: translateX(-100%);
        transition: 0.5s;
        overflow-y: auto;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        overflow-y: auto;
    }
    .header-contact .menu-nav>ul {
        transform: translateX(0);
    }
    .menu-nav>ul>li>a{
        padding: 12px 0;
        display: block;
        padding-left: 15px;
        font-size: 18px;
    }
    .menu-nav>ul>li{
        border-bottom: 1px solid #d4d4d4;
        padding: 0;
    }
    .menu-nav>ul>li>a>i{
        display: none !important;
    }
    .menu-nav>ul>li.drop-down-menu{
        padding-right: 60px;
        overflow: hidden;
        position: relative;
    }
    .menu-nav>ul>li.drop-down-menu::after{
        position: absolute;
        top: 3px;
        right: 22px;
        content: "+";
        font-size: 28px;
    }
    li.drop-down-menu.responsive-header::after {
        content: "-" !important
    }
    .drop-down-nav{
        position: initial;
        overflow: visible;
        visibility: visible;
        opacity: 1;
        top: 0;
        left: 0;
        background-color: #fff;
        z-index: 9;
        height: 0;
        padding: 0;
        transition: none !important;
    }
    .responsive-header .drop-down-nav{
        height: 100%;
        overflow-y: scroll !important;
    }
    .drop-down-nav>li:last-child{
        border-bottom: none;
    }
    .bread-crumb{
        height: auto;
    }
    .text-start {
        padding: 60px 0px 60px 12px;
    }
    .about-page-cont{
        height: auto;
    }
    .accordion{
        font-size: 19px;
    }
    .new-ret{
        height: 250px;
    }
    .features h2::after{
        top: 129%;
    }
    .second-mission{
        margin-top: 0;
    }
    .about-us{
        padding: 40px 0 30px 0;
    }
    .features{
        margin-bottom: 15px;
    }
    .box .titles{
        font-size: 16px;
        padding: 0 10px;
        letter-spacing: 0.5px;
    }
    .features h2{
        font-size: 32px;
    }
    .broch>a{
        border-radius: 0 !important;
    }
    .send-mes button{
        margin-bottom: 24px;
    }
    .tt{
        margin-top: 24px;
    }
    .gg{
        margin-top: 0;
    }
    .front-abo{
        display: flex;
        flex-direction: column-reverse;
    }
    .last-last{
        height: auto !important;
    }
    .tt{
        margin-top: 0;
    }
    .about{
        padding-bottom: 0;
    }
    .industry-serve h2::before{
        top: 133%;
    }

}

@media only screen and (max-width: 767px){
    .counter-time{
        padding: 0px 0 50px 0;
    }
    .about-content h2::after{
        left: 34%;
    }
    .counter-time h2{
        font-size: 26px;
        margin-bottom: 62px;
    }
    .counter-time h2::before{
        top: 181%;
    }
    .icon-box{
        height: 265px;
    }
    .footer-social-address-content h4{
        font-size: 26px;
        line-height: 40px;
    }
    .foot-first p{
        padding-right: 0;
        text-align: center;
    }
    .foot-second{
        padding-left: 0px;
        margin-top: 30px;
    }
    .foot-third{
        margin-top: 30px;
        padding-left: 34px;
    }
    .qui a span{
        padding-left: 0;
    }
    .foot-logo{
        width: 50%;
        margin: auto;
    }
    .foot-second h2{
        padding-bottom: 18px;
    }
    .foot-third h2{
        padding-bottom: 18px;
    }
    .foot-last h2{
        padding-bottom: 18px;
    }
    .footer-bottom-area {
        padding: 20px 0 20px 0;
    }
    .footer-social-address-content h4 br{
        display: none;
    }
    .why-contacts {
        text-align: center;
    }
    .footer-social-address-content h4{
        font-size: 23px;
        text-align: center;
        padding-bottom: 15px;
    }
    .why-contacts a{
        padding: 12px 44px 12px 19px;
    }
    .two{
        left: -36px;
    }
    .count-icon{
        padding-top: 20px;
    }
    .mix-time{
        display: flex;
        flex-direction: column-reverse;
    }
    .counter-part{
        padding-top: 20px;
    }
    .testimonial{
        margin: 65px 0px 40px;
    }
    .icon-box{
        height: auto;
    }
    .about{
        padding-top: 50px;
    }
    .inner-about{
        margin-top: 30px;
    }
    .features h2{
        font-size: 30px;
    }
    .green-box{
        top: 4px;
        right: 5px;
        width: 55px;
        height: 55px;
    }
    .accordion{
        padding: 18px 70px 18px 18px;
        font-size: 17px;
    }
    .icon{
        font-size: 31px;
        right: 23px;
        top: 48%;
    }
    .green-box-bda{
        top: 16px;
    }
    .text-start{
        padding: 45px 0 45px 0;
    }
    .box-tops h5{
        font-size: 17px;
    }
    .retail-2{
        height: auto;
    }
    .industry-serve h2{
        font-size: 32px;
        padding-bottom: 5px;
    }
    .industry-serve h2::after{
        top: 125%;
    }
    .gg{
        margin-top: 28px;
    }
    .types h2{
        font-size: 35px;
    }
    .height-box {
        height: 530px;
    }
    .industry-serve h2::before {
        top: 130%;
    }
    .features h2::after {
        top: 128%;
    }

}

@media only screen and (max-width: 576px){

    .foot-logo{
        width: 40%;
        margin: auto;
    }
    .foot-first p{
        text-align: center;
    }
    .foot-second{
        padding-left: 0;
        margin-top: 25px;
    }
    .foot-third{
        padding-left: 0;
        margin-top: 15px;
    }
    .new-enq{
        padding: 30px 0px 30px;
    }
    .msme{
        margin: 10px auto;
        width: 90%;
    }
    .certificate h2{
        font-size: 34px;
        margin-bottom: 50px;
    }
    .foot-last{
        margin-top: 15px;
    }
    .certificate{
        padding-top: 40px;
    }
    .testimonial{
        padding: 60px 15px 50px;
        margin: 60px 5px 40px;
    }
    .counter-time h2{
        font-size: 24px;
    }
    .counter-time h2::after{
        top: 48px;
    }
    .about-content h2::after{
        left: 33%;
    }
    .about-leaf{
        left: 6%;
    }
    .height-box{
        height: auto;
    }
    .color-bio p{
        padding-bottom: 15px;
    }
    .low{
        margin-top: 0;
    }
    .accordion {
        padding: 18px 100px 18px 18px;
        font-size: 16px;
    }
    .do-green{
        top: 17px;
    }
    .text-start{
        padding: 40px 0 40px 0;
    }
    .small-box{
        margin: 0 !important;
    }
    .features h2{
        margin-bottom: 55px;
    }
    .pro-av{
        margin-bottom: 30px !important;
    }
    .height-box{
        width: 400px;
        margin: auto;
    }
    .about-us{
        padding-top: 30px;
    }
    .biohazar{
        padding-top: 30px;
    }
    .features{
        margin-top: 0;
        margin-bottom: 0;
    }
    .color-time{
        margin-bottom: 35px;
    }
    .color-time h4{
        font-size: 26px;
    }
    .color-time p{
        font-size: 16px;
    }
    .more-about{
        text-align: center;
    }
    .counter-part{
        padding-top: 0;
    }
    .industry-serve h2::after{
        top: 126%;
    }
    .icon-boxs .box-tops {
        top: 10px;
    }

}

@media only screen and (max-width: 500px){

    .foot-logo{
        width: 50%;
    }
    .foot-first p{
        text-align: justify;
    }
    .counter-time h2{
        font-size: 24px;
        line-height: 35px;
    }
    .counter-time h2::before{
        top: 124%;
    }
    .counter-time h2::after{
        top: 83px;
    }
    .about-content h2::after{
        display: none;
    }
    .about-leaf img {
        width: 150px;
    }
    .do-greens{
        top: 17px;
    }
    .text-start{
        padding: 30px 0 30px 0;
        font-size: 22px;
    }
    .industry-serve h2::after{
        top: 131%;
    }
    .product h2{
        font-size: 30px;
        margin-bottom: 60px;
    }
    .product h2::before{
        top: 142%;
    }
    .product h2::after{
        top: 131%;
    }
    .certificate h2 {
        font-size: 30px;
        margin-bottom: 50px;
    }
    .certificate h2::before{
        top: 155%;
    }
    .certificate h2::after{
        top: 142%;
    }
    .form-time{
        padding: 20px ;
    }
    .form-size{
        margin-bottom: 20px;
    }
    .small-box:hover:before{
        width: 0;
    }
    .small-box:hover .box-content:before, .small-box:hover .box-content:after{
        height: 0;
    }
    .small-box .titles{
        font-size: 17px;
    }
    .color-code h2::after{
        top: 127%;
    }
    .ppro h2::after{
        top: 129%;
    }


}

@media only screen and (max-width: 450px){

    .certificate h2{
        font-size: 30px;
    }
    /* .counter-time{
        padding-top: 35px;
    } */
    .box{
        margin: 0 20px;
    }
    .about-leaf{
        left: 8%;
    }
    .about-content h1{
        font-size: 28px;
        text-align: center;
    }
    .about-content h2{
        font-size: 28px;
        text-align: center;
    }
    .product h2{
        font-size: 35px;
        margin-bottom: 50px;
    }
    .product{
        padding-top: 0px;
    }
    .msme{
        width: 70%;
    }
    .about-page-cont h2{
        font-size: 28px;
        text-align: center;
    }
    .do-greenst{
        top: 27px;
    }
    .last-green{
        top: 12px;
    }
    .faqs-time{
        padding: 40px 0;
    }
    .hdpe{
        padding-top: 40px;
    }
    .features h2{
        font-size: 28px;
    }
    .industry-serve h2{
        font-size: 28px;
    }
    .low{
        padding: 15px 13px;
    }
    .height-box{
        width: 100%;
    }
    .certificate h2::after{
        top: 143%;
    }
    .color-time p{
        padding-left: 10px;
        padding-right: 10px;
    }
    .address-time{
        display: flex;
        align-items: center;
    }
    .address-time{
        display: flex;
        flex-direction: column;
        gap: 17px;
        padding: 0 !important;
    }
    .add-detail{
        padding-left: 0;
    }
    .cont-icon-box{
        padding: 24px 0 24px;
    }
    .partner{
        display: flex;
        flex-direction: column;
        gap: 17px;
        align-items: center;
    }
    .suraj{
        padding-left: 0;
    }
    .suraj h4{
        text-align: center;
        padding-bottom: 10px;
    }
    .suraj-call{
        text-align: center;
    }
    .last-det p{
        text-align: center;
        width: 100%;
    }
    .box .title{
        padding-bottom: 15px;
    }
    .add-detail p br{
        display: none;
    }
    .first-why h3{
        font-size: 20px;
    }
    .end-part{
        display: flex !important;
        flex-direction: row;
    }
    .box .title {
        line-height: 35px;
        font-size: 20px;
    }

}

@media only screen and (max-width: 400px){

    .foot-logo{
        width: 60%;
    }
    .footer{
        padding: 0;
    }
    .certificate h2{
        font-size: 24px;
    }
    .counter-time h2{
        font-size: 22px;
    }
    .certificate h2::after{
        top: 139%;
    }
    .about-leaf{
        left: 10%;
    }
    .drop-down-nav>li>a{
        width: 88%;
    }
    .menu-nav>ul{
        width: 305px;
    }
    .logo{
        width: 80px;
    }
    .about-content h1{
        font-size: 25px;
    }
    .about-content h2{
        font-size: 22px;
    }
    /* .about-content{
        margin-top: 65px;
    } */
    .about-page-cont h2{
        font-size: 25px;
    }
    .last-green-time{
        top: 25px;
    }
    .box-tops h5{
        font-size: 16px;
    }
    .product h2{
        font-size: 30px;
    }
    .product{
        padding-bottom: 30px;
    }
    .counter-time h2{
        margin-bottom: 55px;
    }
    .counter-time h2::after{
        top: 82px;
    }
    .counter-time{
        padding-bottom: 40px;
    }
    .contact-page{
        padding-top: 40px;
    }
    .color-time h4 {
        font-size: 23px;
        padding: 0 10px;
    }
    .color-time p {
        padding-left: 15px;
        padding-right: 15px;
    }
    .cans{
        top: 26px;
    }

}

@media only screen and (max-width: 385px){

    .last-green-times{
        top: 25px;
    }
    .what{
        top: 26px;
    }

}

@media only screen and (max-width: 375px){

    .last-green-timess{
        top: 25px;
    }
    .color-time p{
        padding-left: 7px;
        padding-right: 7px;
    }
    .color-time h4{
        font-size: 26px;
    }
    /* .box:hover:before, .box:hover:after{
        width: 0;
    }
    .box:hover .box-content:before, .box:hover .box-content:after{
        height: 0;
    } */
    .isthere{
        top: 15px;
    }

}

@media only screen and (max-width: 350px){

    .counter-time h2{
        font-size: 21px;
    }
    .about-leaf img{
        width: 130px;
    }
    .drop-down-nav>li>a{
        width: 80%;
    }
    .menu-nav>ul{
        width: 270px;
    }
    .about-content h1{
        font-size: 23px;
    }
    .about-content h2{
        font-size: 19px;
    }
    .about-page-cont h2{
        font-size: 23px;
    }
    .accordion {
        font-size: 16px;
        padding: 18px 70px 18px 18px;
    }
    .green-box {
        position: absolute;
        background-color: #83bf2c;
        width: 60px;
        height: 60px;
        top: 11px;
        right: 7px;
        border: 3px solid #fff;
        border-radius: 50%;
    }
    .icon{
        top: 48%;
        right: 26px;
        font-size: 36px;
    }
    .last-green-new{
        top: 26px;
    }
    .text-start {
        padding: 25px 0 25px 0;
        font-size: 20px;
    }
    .new-text{
        font-size: 18px;
    }
    .testi h3{
        font-size: 28px;
    }
    .isthere{
        top: 13px;
    }



}

@media only screen and (max-width: 330px){
    .green-box {
        position: absolute;
        background-color: #83bf2c;
        width: 60px;
        height: 60px;
        top: 11px;
        right: 7px;
        border: 3px solid #fff;
        border-radius: 50%;
    }
    .icon{
        top: 48%;
        right: 26px;
        font-size: 36px;
    }
    .green-box-bda{
        top: 22px;
    }
    .certificate h2{
        font-size: 23px;
    }
}

.broch>a{
    background-color: #2957A4;
    padding: 10px 15px !important;
    color: #fff !important;
    border-radius: 6px;
    font-size: 17px !important;
}
.broch:hover>a>i{
    transform: rotate(0) !important;
    color: #fff !important;
}
.last-last{
    padding: 23px 15px 22px;
    height: 265px;
}
.final-cont{
    padding: 25px 32px 26px
}
.new-add{
    width: 100%;
    padding-left: 15px;
}
.ainn{
    font-size: 14px;
}
