

body{
	line-height: 1.5;
	font-weight: 400;
}
body.hidden-scrolling{
	overflow-y: hidden;
}
*{
	margin:0;
	box-sizing: border-box;
}
.container{
	max-width: 1170px;
	margin:auto;
}
.sec-123
{
	padding: 1em 0;
	border-top: 1px solid #ccc;
	    margin-top: 3em;
}
@font-face {
  font-family: NexaBold;
  src: url(../css/fonts/Nexa-Bold.woff);
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
/*header*/
.about-img-1
{
	height: 400px;
}
.mt-mob-1em
{
	padding-left: 4em;
}
.pha-div-1 {
    padding: 3em 0 3em 0;
}
.footer-link li p{
    font-size: 16px;
    color: #008200;
    line-height: 1.5em;
    letter-spacing: 0.6px;
    font-weight: normal;
    transition: 0.5s all;
    margin: 0px 0 10px 0;
    font-family: 'Poppins', sans-serif;
}
.header{
	position: absolute;
	width: 100%;
	left:0;
	top:0;
	z-index: 99;
	padding: 0px;
	transition: 0.6s;transition: 0.6s;
}
header.sticky
{
	position: fixed;
	transition: 0.6s;
	background-color: #fff;
	box-shadow: 0 2px 40px hsl(0deg 0% 6% / 5%);
}
.header.sticky .logo img {
    width: 180px;
    transition: 0.6s;
}
.header-main{
	/*background-color: #ffffff;*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-radius: 4px;
}
.header .logo{
	padding: 0px;
}
.header .logo img
{
	width: 200px;
	transition: 0.6s;
}
.header .logo a{
	font-size: 30px;
	text-transform: capitalize;
	color: #015636;
	font-weight: 600;
}
.header .nav-menu{
	padding: 0 15px;
}
.header .menu > .menu-item{
	display: inline-block;
	margin-left: 20px;
	position: relative;
}
.header .menu > .menu-item > a{
	display: block;
	padding: 12px 0;
	font-size: 16px;
	color:#015636;
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;
}
.header .menu > .menu-item > a:before {
    content: '';
    position: absolute;
    left: 0;
    background-color:#e39a07;
    width: 100%;
    bottom: -3px;
    height: 4px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 650ms;
}
.header .menu > .menu-item > a:hover::before
{
  transform: scaleX(1);
}
.header .menu > .menu-item > a.active::before{
     transform: scaleX(1);
	}
.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: #005635;
	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: #015636;
}
.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: #015636;
}
.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: #ffffff;
	padding: 10px 0;
	border-top: 3px solid #015636;
	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: 16px;
	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: #ffffff;
	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: #fff;
		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: #015636;
    padding: 12px 15px;
    border-bottom: 1px solid #d4d4d4;
	}
	.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:#015636;
	}
	.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: #015636;
		border-bottom: 1px solid #333333;
	}
	.header .close-nav-menu,
	.header .open-nav-menu{
		display: flex;
	}
}
/*banner*/

.banner .carousel-item
{

}

.banner .carousel {
    position: relative;
    background-image: url(../images/banner-bg.png);
    object-fit: cover;
    background-position: center;
    background-size: cover;
}
.cnt-txt
{
	display: flex;
	justify-content: center;
	align-items: center;
}
.banner-left
{
	    padding: 0 2em 0 8em;
}
.ban-txt-info
{
	font-family: 'Poppins', sans-serif;
	color: #000000;
	font-size: 15px;
	margin: 0;
	padding: 0;
}
.ban-txt
{
	
    font-family: 'Poppins', sans-serif;
    color: #015d3a;
    font-weight: 500;
    font-size: 40px;
    line-height: 55px;
    letter-spacing: 1px;
    margin: 15px 0;
}
.tag-bx
{
	padding: 15px;
}
/**/

.sigma_btn-custom-submit {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    position: relative;
    background-color: #008200;
    border: 1px solid #d9251c;
    border: 0;
    color: #ffdf61;
    font-size: 16px;
    text-transform: capitalize;
    padding: 12px 7px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 0;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    top: 22px;
    font-family: 'Poppins', sans-serif;
    /* left: -14px; */
}

.sigma_btn-custom-submit::before{

  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0px;
  background-color: #ffdf61;
  transform: scaleY(0);
  transform-origin: 50%;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  border: 1px solid #ffdf61;
}

.sigma_btn-custom-submit:focus::before,
.sigma_btn-custom-submit:hover::before{
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

.sigma_btn-custom-submit:hover,
.sigma_btn-custom-submit:focus {
    color:#008200;
    background-color: #ffdf61;
    outline: none;
}
.sigma_btn-custom-submit .ar-icon {
    font-size: 22px;
    padding-left: 20px;
}
/**/
.ser-in
{
	padding: 3em 0 3em 0;
}
.s1 p
{
	 color: #282728;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    margin: 14px 0;
    padding: 10px 0 0 0;
    font-weight: 500;
    line-height: 29px;
}
.s1 h2
{
	color: #000000;
    font-size: 22px;
    font-weight: 550;
    position: relative;
    margin: 20px 0;
    font-family: 'NexaBold';
    padding-bottom: 10px;
}
.s1 h2:after
{

    content: '';
    position: absolute;
    width: 100%;
    display: block;
    background-image: linear-gradient(-272deg, #015636 22%, #ffed4b 16%);
    -webkit- background-image: linear-gradient(-272deg, #015636 22%, #ffed4b 16%);
    -moz- background-image: linear-gradient(-272deg, #015636 22%, #ffed4b 16%);
    -o- background-image: linear-gradient(-272deg, #015636 22%, #ffed4b 16%);
    bottom: -12px;
    height: 3px;
    /* top: 10px; */

}
.about-us
{
	background-color: #ddfef4;
	padding:3em 0;
}
.about-right
{
	padding: 0em;
}
.about-left
{
	padding-right: 2em;
}


.link-read-more
{
	color: #282728;
	display: block;
	margin-top: 1em;
	position: relative;
	color: #008200;
	font-family: 'Poppins', sans-serif;
}
.link-read-more:before
{
	content: '';
	display: block;
    position: absolute;
    left: 0;
    background-color: #e39a07;
    width: 171px;
    bottom: -10px;
    margin: 20px 45% 0 43%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 650ms;
}
.link-read-more:hover::before
{
  transform: scaleX(1);
}
.link-read-more:hover
{
  color:#008200;
}
.link-read-more-rm
{
	color: #282728;
	display: block;
	margin-top: 1em;
	position: relative;
	color: #008200;
	font-family: 'Poppins', sans-serif;
}
.link-read-more-rm:before
{
	content: '';
	display: block;
    position: absolute;
    left: 0;
    background-color: #e39a07;
    width: 171px;
    bottom: -10px;
    margin: 0;
    height: 4px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 650ms;
}
.link-read-more-rm:hover::before
{
  transform: scaleX(1);
}
.link-read-more-rm:hover
{
  color:#008200;
}
.title-2
{
		margin-bottom: 16px;
    	font-family: 'NexaBold';
   	font-size: 2rem;
}
.title-21
{
	margin: 20px 0;
   	font-family: 'NexaBold';
   	font-size: 20px;
   	height: 65px;
	padding: 0 15px 0 10px;
}
.info
{
	font-family: 'Montserrat', sans-serif;
	color: #1e1e1e;
	font-size: 15px;
	font-weight: 500;
	line-height: 30px;
}
.sub-title
{
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	color: #181817;
	letter-spacing: 2px;
	margin-bottom: 1em;
}
.project
{
	background-color: #ddfef4;
}
.project-in
{
	background-color: #fff;
	padding:2em 2em 2em 0;
}
.project
{

}
.cnt-1
{

    color: #ffff;
    font-weight: 600;
    font-size: 38px;
    margin: 14px 0;
    padding: 0;

}
.prj-img img
{
	 border-radius: 15px;
}
.s1
{
	padding-right: 0px;
	position: relative;
    z-index: 1;
}
.div-counter
{
	background-image: url('../images/bg-2.png');
	background-position: top;
	background-size: cover;
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
}
.counters
{
	padding: 0 4em;
}
.c1
{
	padding: 4em 0 0 0;
}
.nm-1
{
	
    color: #9ecf9e;
    font-size: 30px;
    margin: 0;
    padding: 0;
    font-family: 'NexaBold';
}
.counter-value
{
	font-family: 'NexaBold';
	    font-size: 50px;
    position: relative;
   
}
.count-text
{
	font-family: 'NexaBold';
	font-size: 20px;
	color: #fff;
}
.box-cnt {
padding-left: 6em;
padding-right: 4em;
}
.pha-text
{
	font-family: 'NexaBold';
    font-size: 25px;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
}
.pha-div
{
	padding: 4em 0 0em 0;
}
.footer
{
	padding: 2em 0;
	background-color: #ffffff;
}
.footer-bottom
{
	background-color: #ffdf61;
	padding: 1em 0;
}
.text-sm-right 
{
	text-align: right;
}
.footer-link li a {
    font-size: 16px;
    color: #008200;
    line-height: 1.5em;
    letter-spacing: 0.6px;
    font-weight: normal;
    transition: 0.5s all;
    font-family: 'Poppins', sans-serif;
}
.ft-head
{
	    color: #008200;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 18px;
}
.footer-link li .fa {
    color:  #008200;
    font-size: 20px;
    text-align: center;
    padding: 0 10px;
    transition: 0.5s all;
    margin-top: 2px;

}
.footer-link {
    color: #008200;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;

}

 #proj-slide .owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
 #proj-slide .owl-nav button.owl-prev {
    right:90px;
    top: -43px;
    color: #bfd7bf;
}
 #proj-slide .owl-nav button.owl-next {
  right: 9px;
  top: -43px;
  color: #008200;
}

 #proj-slide .owl-dots {
  text-align: center;
  padding-top: 15px;
}
 #proj-slide .owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 3px;
}
 #proj-slide .owl-dots button.owl-dot.active {
  background-color: #000;
}
 #proj-slide .owl-dots button.owl-dot:focus {
  outline: none;
}
 #proj-slide .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
}
#proj-slide span {
       font-size: 40px;
    position: relative;
    top: 15px;
}
 #proj-slide .owl-nav button:focus {
    outline: none;
}
 #proj-slide .owl-dots .owl-dot {
  margin: 0px 5px;
}
 #proj-slide .owl-dots .owl-dot button {
  background: none;
  border: none;
  padding: 0;
  color: #bbd5bb;
  font-size: 18px;
  font-weight:600;
  margin-right: 6px;
  cursor: pointer;
      font-family: 'Poppins', sans-serif;
}
 #proj-slide .owl-dots .owl-dot button:focus {
  outline: none;
}
 #proj-slide .owl-dots .owl-dot.active button {
  color: #181817;
}
 #proj-slide .owl-dots {
   text-align: center;
    padding-top: 15px;
    display: flex;
    position: absolute;
    top: -52px;
    right: 29px;

}
.prj-img
{
	padding-left: 2em;
}
.pha-div-12 {
    padding: 0em 0 0em 0;
}
 #proj-slide .owl-carousel {
    display: none;
    width: 100%;
    margin-top: 19px;
    z-index: 1;
}
.p-2em
{
	    padding: 0 2em;
}
span.active {
 content:  counter(slides-num) ; /* Use the same counter to get current item. */
        display: inline-block;
        vertical-align: middle;
        font-size: 20px;
        position: absolute;
        left: 0;
        top: 0;
      }
      span:before {
        content:  counter(slides-num) 1 ; /* Use the same counter to get current item. */
        display: inline-block;
        vertical-align: middle;
        font-size: 20px;
        position: absolute;
        left: 0;
        top: 0;
      }
      .lin-t1
      {
      	margin-bottom: 2em;
      }

      .iq-style-one-services {
    padding: 10px;
    background:#ffffff;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
      .iq-style-one-services img.hover-img {
    position: absolute;
    top: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    opacity: 0;
    left: 0;
    right: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.iq-style-one-services:before {
    height: 4px;
    right: 0;
    position: absolute;
    bottom: 0;
    content: "";
    width: 0;
    background: var(--primary-color);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    z-index: 2;
}
.iq-style-one-services:hover {
    -webkit-box-shadow: 0px 0px 30px 2px rgb(20 44 75 / 10%);
    -moz-box-shadow: 0px 0px 30px 2px rgba(20, 44, 75, 0.1);
    box-shadow: 0px 0px 30px 2px rgb(20 44 75 / 10%);
}
.iq-style-one-services:hover img.hover-img {
    z-index: 0;
    opacity: 1;
    top: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}
.iq-style-one-services:hover:before {
    width: 100%;
    height: 4px;
    left: 0;
}
.iq-style-one-services:after {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    top: 0%;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
}
.iq-style-one-services:hover.iq-style-one-services:after {
    opacity: 1;
}
.iq-style-one-services:hover .s1 h2
{
	color: #fff;
}

.iq-style-one-services:hover .s1 p
{
	color: #fff;
}
.iq-style-one-services:hover .link-read-more
{
	    color: #ffec4b;
}

.iq-style-one-services .link-read-more:before {
    content: '';
    position: absolute;
    left: 0;
    background-color: #e39a07;
    width: 171px;
    bottom: -10px;
    margin:4px 0;
    display: block;
    height: 4px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 650ms;
}
.iq-style-one-services:hover .link-read-more:before
{
	       transform: scaleX(1);
}
.iq-style-one-services:hover .s1 h2:after
{

    content: '';
    position: absolute;
    width: 100%;
    display: block;
    background-image: linear-gradient(-272deg, #fff 22%, #fff 16%);
    -webkit- background-image: linear-gradient(-272deg, #fff 22%, #fff 16%);
    -moz- background-image: linear-gradient(-272deg, #fff 22%, #fff 16%);
    -o- background-image: linear-gradient(-272deg, #fff 22%, #fff 16%);
    bottom: -12px;
    height: 3px;
    /* top: 10px; */

}
.about-right
{
	position: relative;
}
.tag-bx
{
    background-color: #ffdf61;
    width: 187px;
    height: 178px;
    border-radius: 15px;
    position: absolute;
    bottom: -27px;
    left: -74px;
}
.tag-bx h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    line-height: 33px;
    margin-top: 8px;
}
.tag-bx p
{
	color: #181817;
	font-size: 18px;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
}
.cr-log
{
	margin-top: -31px;
margin-bottom: 10px;
display: flex;
justify-content: center;
margin-left: 27px;
}
.banner-inside
{
	background-image: url('../images/lightbulb-2631864_1920-min.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position:center;
   	height:360px;
   	/*background-attachment: fixed;*/
    margin-bottom: 0px;
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
}
.banner-inside:after {
       content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #29390696;
    opacity: 0.8;
    top: 0;
    left: 0;
}
/**/
.banner-inside-n3 {
    background-image: url('../images/14.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 360px;
    /* background-attachment: fixed; */
    margin-bottom: 0px;
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
}
.banner-inside-n3:after {
       content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #29390696;
    opacity: 0.8;
    top: 0;
    left: 0;
}
.banner-inside-n3 h2 {
    color: #fff;
    text-align: center;
    z-index: 1;
    margin-top: 3em;
    font-family: 'Poppins', sans-serif;
}
.banner-inside-n3 {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
/**/
.banner-inside-n2 {
    background-image: url('../images/banner-enispect.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 360px;
    /* background-attachment: fixed; */
    margin-bottom: 0px;
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
}
.banner-inside-n2:after {
       content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #29390696;
    opacity: 0.8;
    top: 0;
    left: 0;
}
.banner-inside-n2 h2 {
    color: #fff;
    text-align: center;
    z-index: 1;
    margin-top: 3em;
    font-family: 'Poppins', sans-serif;
}
.banner-inside-n2 {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
/**/

.banner-inside-2 {
    background-image: url('../images/banner-2.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 360px;
    /* background-attachment: fixed; */
    margin-bottom: 0px;
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
}
.banner-inside-2:after {
       content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #29390696;
    opacity: 0.8;
    top: 0;
    left: 0;
}
.banner-inside-2 h2 {
    color: #fff;
    text-align: center;
    z-index: 1;
    margin-top: 3em;
    font-family: 'Poppins', sans-serif;
}
.banner-inside-2 {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
/**/
/**/

.banner-inside-c {
    background-image: url('../images/job.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 360px;
    /* background-attachment: fixed; */
    margin-bottom: 0px;
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
}
.banner-inside-c:after {
       content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #29390696;
    opacity: 0.8;
    top: 0;
    left: 0;
}
.banner-inside-c h2 {
    color: #fff;
    text-align: center;
    z-index: 1;
    margin-top: 3em;
    font-family: 'Poppins', sans-serif;
}
.banner-inside-c {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
/**/
/**/

.banner-inside-2sr {
    background-image: url('../images/Energy-Management-Systems.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 360px;
    /* background-attachment: fixed; */
    margin-bottom: 0px;
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
}
.banner-inside-2sr:after {
       content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #29390696;
    opacity: 0.8;
    top: 0;
    left: 0;
}
.banner-inside-2sr h2 {
    color: #fff;
    text-align: center;
    z-index: 1;
    margin-top: 3em;
    font-family: 'Poppins', sans-serif;
}
.banner-inside-2sr {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
/**/
/**/

.banner-inside-b {
    background-image: url('../images/bio-fuel.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 360px;
    /* background-attachment: fixed; */
    margin-bottom: 0px;
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
}
.banner-inside-b:after {
       content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #29390696;
    opacity: 0.8;
    top: 0;
    left: 0;
}
.banner-inside-b h2 {
    color: #fff;
    text-align: center;
    z-index: 1;
    margin-top: 3em;
    font-family: 'Poppins', sans-serif;
}
.banner-inside-b {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
/**/
/**/

.banner-inside-w {
    background-image: url('../images/water-en.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 360px;
    /* background-attachment: fixed; */
    margin-bottom: 0px;
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
}
.banner-inside-w:after {
       content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #29390696;
    opacity: 0.8;
    top: 0;
    left: 0;
}
.banner-inside-w h2 {
    color: #fff;
    text-align: center;
    z-index: 1;
    margin-top: 3em;
    font-family: 'Poppins', sans-serif;
}
.banner-inside-w {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
/**/
.banner-inside-2sr1 {
    background-image: url('../images/renewable-energy.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 360px;
    /* background-attachment: fixed; */
    margin-bottom: 0px;
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
}
.banner-inside-2sr1:after {
       content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #29390696;
    opacity: 0.8;
    top: 0;
    left: 0;
}
.banner-inside-2sr1 h2 {
    color: #fff;
    text-align: center;
    z-index: 1;
    margin-top: 3em;
    font-family: 'Poppins', sans-serif;
}
.banner-inside-2sr1 {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
/**/
.banner-inside-3 {
    background-image: url('../images/about-t-hero_d.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 360px;
    /* background-attachment: fixed; */
    margin-bottom: 0px;
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
}
.banner-inside-3:after {
       content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #29390696;
    opacity: 0.8;
    top: 0;
    left: 0;
}
.banner-inside-3 {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.banner-inside-3 h2 {
    color: #fff;
    text-align: center;
    z-index: 1;
    margin-top: 3em;
    font-family: 'Poppins', sans-serif;
}
/**/
.banner-inside-4 {
    background-image: url('../images/contact-us.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 360px;
    /* background-attachment: fixed; */
    margin-bottom: 0px;
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
}
.banner-inside-4:after {
       content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #29390696;
    opacity: 0.8;
    top: 0;
    left: 0;
}
.banner-inside-4 {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.banner-inside-4 h2 {
    color: #fff;
    text-align: center;
    z-index: 1;
    margin-top: 3em;
    font-family: 'Poppins', sans-serif;
}




.banner-inside-1
{
	background-image: url('../images/14.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position:center;
   	height: 360px;
   	/*background-attachment: fixed;*/
    margin-bottom: 0px;
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
}

.banner-inside-1:after {
       content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #29390696;
    opacity: 0.8;
    top: 0;
    left: 0;
}

.abt-right
{
	position: relative;
}
.bg-wh-2em
{
	background-color: #fff;
	padding: 2em;
}
.abt-right img
{
	border-radius: 20px;
}
.about-us-in
{
	background-color: #fff;
	padding: 0 0 4em 0;
	background-image: url('../images/bg-in.png');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.about-us-in-1
{
padding: 3em 0 0 0;
}
.sub-title3
{
	font-family: 'Poppins', sans-serif;
color: #015d3a;
font-weight: 500;
font-size: 25px;
line-height: 64px;
letter-spacing: 1px;
margin:0;
}
.banner-inside
{
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}
.banner-inside h2
{
color: #fff;
text-align: center;
z-index: 1;
margin-top: 3em;
font-family: 'Poppins', sans-serif;
}
.banner-inside-1
{
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

.banner-inside-1 h2
{
color: #fff;
text-align: center;
z-index: 1;
margin-top: 3em;
font-family: 'Poppins', sans-serif;
}
.bt-1
{
	margin-top: 3em;
}
.nm-11 {
    color: #fff;
    font-size: 22px;
    margin: -45px 0 10px 0;
    padding: 0;
    background-color: #9ecf9e;
    font-family: 'NexaBold';
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 5px 0 0 0;
    line-height: 0;
}
.pr--l1
{
	margin-bottom: 2em;
}
.pro-2
{
    background-color: #fff;
    height: 100%;
    margin-bottom: 0em;
    border-bottom: 4px solid #9ecf9e;
    padding: 2em;
    box-shadow: 0 5px 83px 0 rgb(40 40 40 / 11%);
}
.info23
{
	font-family: 'Montserrat', sans-serif;
    color: #1e1e1e;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    line-height: 26px;
}
.info24 {
    font-family: 'Montserrat', sans-serif;
    color: #1e1e1e;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 26px;
}
.icon-fa
{
	    color: #e39a07;
    font-size: 26px;
    margin-right: 16px;
}
.lis-pl
{
	    margin-left: 27px;
    margin-top: 10px;

}
.lis-pl li 
{
	list-style-type:none;
	    font-family: 'Montserrat', sans-serif;
    color: #1e1e1e;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    line-height: 26px;
    margin-bottom: 10px;
}
.lis-pl li::before
{
    content: "\2022";
    color: #005e3a;
    font-weight: bold;
    display: inline-block;
    width: 23px;
    font-size: 26px;
    margin-left: -1em;
}
.pr-mob-0
{
	padding-right: 0;
}
.pl-mob-0
{
	padding-left: 0;
}
.c2
{
	margin-bottom: 1em;
}
.img-height
{
	height: 200px;
}
.client-logo
{
	border: 1px solid #e9e9e9;
    padding: 1em;
}
.log-img
{
	height: 86px;
}
.s1-logo {
    color:#015636;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    margin: 14px 0;
    padding: 10px 0 0 0;
    font-weight: 500;
    line-height: 22px;
}
.cl-2
{
	margin-bottom: 2em;
}

.form-control {
    font-family: var(--global--font-body);
    color: var(--global--color-body);
    font-size: 14px;
    font-weight: 400;
    height: 50px;
    line-height: 1px;
    border-radius: 4px;
    border: 1px solid #c8c8c8;
    background-color: var(--global--color-white);
    padding-left: 20px;
    margin-bottom: 25px;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.text-form-control
{
	 font-family: var(--global--font-body);
    color: var(--global--color-body);
    font-size: 14px;
    font-weight: 400;
 	line-height: 1px;
    border-radius: 4px;
    border: 1px solid #c8c8c8;
    background-color: var(--global--color-white);
    padding-left: 20px;
    margin-bottom: 25px;
    width: 100%;
    height: 100px;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
        padding-top: 20px;
   	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.s1-h2 {
    color: #000000;
    font-size: 25px;
    font-weight: 550;
    position: relative;
    margin: 20px 0;
    font-family: 'NexaBold';
    padding-bottom: 10px;
}
.br-15
{
	border-radius: 15px;
}
.bul-bx
{
	display: flex;
}
.info-abt
{
	margin-left: 2em;
}
.info-abt li
{
list-style-type: none;
width: 50%;
float: left;

    font-family: 'Montserrat', sans-serif;
    color: #1e1e1e;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    line-height: 26px;
    margin-bottom: 10px;
}
.info-abt li::before {
    content: "\2022";
    color: #005e3a;
    font-weight: bold;
    display: inline-block;
    width: 23px;
    font-size: 26px;
    margin-left: -1em;
}

.icon-fa-1 {
    color: #015636;
    font-size: 22px;
    margin-right: 16px;
}
.info-34
{
	font-size: 15px;
    color: #008200;
    line-height: 1.5em;
    letter-spacing: 0.6px;
    font-weight: normal;
    margin-top: 1em;
    padding-right: 1em;
    font-family: 'Poppins', sans-serif;
}
.breadcrumb-item
{
	    z-index: 1;
	        display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 14px;
     color: #fff;
}
.main-bg
{
	display: flex;
	justify-content: center;
	align-items: center;
}
.breadcrumb-item a
{
color: #fff;
}
.breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    color: #fff;
    font-family: "FontAwesome";
}
.breadcrumb-item+.breadcrumb-item::before {
    padding-right: 1rem;
}
.breadcrumb-item.active, .iq-breadcrumb-one ol li a:hover {
    color:#ffdf60;
    position: relative;
}
.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #6c757d;
    font-family: "FontAwesome";
    content: "\f105";
    color: #fff;
}
.effect
    {
    -webkit-animation: fadeInDown 3s ease forwards;
  animation: fadeInDown 3s ease forwards;

    }
     @keyframes fadeInDown {
   from {
    opacity: 0;
    transform: translateX(-300px);
  }
  to {
    opacity: 1;
  }
}
.for-effect
    {
    -webkit-animation: fadeInDown 2s ease forwards;
  animation: fadeInDown 2s ease forwards;

    }
     @keyframes fadeInDown {
   from {
    opacity: 0;
    transform: translateX(-300px);
  }
  to {
    opacity: 1;
  }
}

.list-sercvice
{
	    border-left: 1px solid #000;
    
}
.list-sercvice li
{
	margin-bottom: 1em;
 	padding: 0 1em;
 	height: 30px;
}
.srv-right
{
	    padding-left: 2em;
}
.list-sercvice li a
{
	    color: #4a4a4a;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    line-height: 28px;
    font-size: 15px;
}
.inf-srv
{
	padding-left: 2em;
}
.bul-pn
{
	width: 4%;
	float: left;
}
.bul-pn-info
{
	width: 85%;
	float: left;
}
.col-00
{
	color: #008200;
}
.info-ntag
{
	font-family: 'Montserrat', sans-serif;
    color: #1e1e1e;
    font-size: 25px;
    font-weight: 560;
    line-height: 42px;
    text-align: center;
    padding: 10px 6em;
}
.padding-14
{
	padding: 0 14em 0 0;
}
.bul-bx
{
	margin-bottom: 14px;
}
.sub-title4 {
    font-family: 'Poppins', sans-serif;
    color: #015d3a;
    font-weight: 500;
    font-size: 25px;
    line-height:normal;
    letter-spacing: 1px;
    margin: 0 0 16px 0;
    padding: 0;
}
.sub-title-23
{
	margin-bottom: 16px;
font-family: 'NexaBold';
font-size: 20px;
font-weight: 600;
}
.g1
{
	padding-left: 2em;
}
.pa-3
{
	padding-left: 13px;
}

@media(max-width: 992px)
{
.banner-left {
    padding: 0;
}
}
@media(max-width: 768px)
{

	.iq-style-one-services {
    padding: 10px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin: 10px 0 0 0;
}
.counter-value {
    font-family: 'NexaBold';
    font-size: 40px;
    position: relative;
}
.box-cnt {
    padding-left: 10px;
    padding-right: 10px;
}

.about-left {
    padding-right: 0;
}
.banner-left {
    padding: 3em 0em 0 1em;
}
.ban-txt {
    font-family: 'Poppins', sans-serif;
    color: #015d3a;
    font-weight: 500;
    font-size: 33px;
    line-height: 41px;
    letter-spacing: 1px;
    margin: 0;
}
.mt-mob-1em {
    padding-left: 10px;
}
.div-counter .owl-carousel {
    display: none;
    width: 100%;
    z-index: 1;
    height: 320px;
}
.br-15 {
    border-radius: 15px;
    width: 400px;
    display: block;
    margin: 0 auto;
}
.tag-bx {
    background-color: #ffdf61;
    width: 187px;
    height: 178px;
    border-radius: 15px;
    position: absolute;
    bottom: -31px;
    left: 48px;
}
.about-us {
    background-color: #ddfef4;
    padding: 3em 0 4em 0;
}
.abt-right {
    position: relative;
    margin-bottom: 3em;
}
.about-img-1
{
	 height: 320px;
    display: block;
    margin: 0 auto;
}
.abt-img-1
{
	width: 430px;
	display: block;
	margin: 0 auto;
}
.about-us-in {
    background-color:#fff;
    padding: 0 0 4em 0;
    background-image: url(../images/bg-in.png);
    /* background-position: top; */
    background-size: cover;
    background-repeat: no-repeat;
}
.cnter-img
{
display: block;
margin: 0 auto;
}
}

@media(max-width: 600px)
{

.rev-row 
{
  display: flex;
      flex-direction: column-reverse;
}
.ser-in {
    padding: 1em 0 1em 0;
}
.link-read-more {
    color: #282728;
    display: block;
    margin-top: -10px;
    margin-bottom: 10px;
    color: #008200;
    font-family: 'Poppins', sans-serif;
}
.prj-img {
    padding-left: 0;
}
.banner-right
{
	    margin-top: 73px;
}
.banner-left {
    padding: 1em 0em 3em 1em;
}
.div-counter .owl-carousel {
    display: none;
    width: 100%;
    z-index: 1;
    height: 200px;
}
.project-in {
    background-color: #fff;
    padding: 2em 1em 2em 1em;
}
.title-21 {
    margin: 10px 0;
    font-family: 'NexaBold';
    font-size: 14px;
    height: auto;
    padding: 0 0px 0 10px;
}
.counters {
    padding: 0 0;
}
.counter-value {
    font-family: 'NexaBold';
    font-size: 32px;
    position: relative;
}
.mt-mob-1em
{
	margin-top: 10px;
}
.pha-div {
    padding: 3em 0 0em 0;
}
.about-us-in-1 {
    padding: 2em 0 0 0;
}
.sub-title3 {
    font-family: 'Poppins', sans-serif;
    color: #015d3a;
    font-weight: 500;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 1px;
    margin: 0;
}
.txt-cnt{
    color: #008200;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-align: center;
}
.s1-h2 {
    color: #000000;
    font-size: 25px;
    font-weight: 550;
    position: relative;
    margin: 0px 0 10px 0;
    font-family: 'NexaBold';
    padding-bottom: 0;
}
.mob-hide
{
	display: none;
}
}



