* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Poppins-Regular, sans-serif;
}

a {
	text-decoration: none
}

/* general  */
.pagesBanner {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
	z-index: 1; 
	height: 300px; 
	overflow: hidden;
	margin-top: 90px;
}

.pagesBannerHomepage {
	height: 500px;
}

.pagesBanner div {
	position: absolute;
	width: 100%; 
	text-align: center; 
	color: #FFF;
	display: block;
	color: #FFF;
}
.pagesBanner #title {
	top: 40%; 
	text-transform: uppercase; 
	font-size: 26px; 
	font-weight: 600;
}

.pagesBanner #descriptionOutter {
	width: 100%; 
	top: 40%; 
	display: flex; 
	justify-content: center;
}
.pagesBanner #description {
	font-size: 24px;
	font-weight: 500;
	width: 800px;
	background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px 15px;
}

.pagesBanner #breadcrumb {
	top: 60%;
	font-size: 18px;
}
.pagesBanner #breadcrumb a{
	text-transform: none;
	text-decoration: none;
	color: #65bd6a;
}
.contentMiddle {
	width: 1140px;
	margin: 0 auto; 
}
.paddingRight {
	padding-right: 10px;
}
.paddingLeft {
	padding-left: 10px;
}
.topMargin {
	margin-top: 100px;
}
.topMargin80px {
	margin-top: 80px;
}
.topMargin50px {
	margin-top: 50px;
}
.fontWeight {
	font-weight: 600;
}

/* Top header  */
.headerTopOuter {
	width: 100%;
	padding: 0 20px;
	background-color: #478803;
}

.headerTop {
	display: table; 
	height:50px;
	width: 1140px;
	margin: 0 auto;
	color: #FFF;
}
.headerTop #first {
	display: table-cell;
	vertical-align: middle; 
	font-weight: bold;
	font-size: 14px;
}
.headerTop #second {
	display: table-cell;
	vertical-align: middle; 
	text-align: right;
}
.headerTop #second a {
	padding: 5px;
	text-decoration: none;
	color: #FFF;
	font-size: 14px;
	transition: background-color 0.5s, border-radius 0.5s;
	font-weight: 600
}
.headerTop #second a:hover,
.headerTop #second a.active {
	background-color: rgba(255, 255, 255, 0.25);
	border-radius: 5px;
}

/* Menu container */
.mainHeaderOut {
	width: 100%; 
	position: fixed; 
	z-index: 101;
	background: #FFF;
	border-bottom: 1px solid #E5E5E5;
}
.mainHeader {
	z-index: 10;
	width: 1140px;
	margin: 0 auto;
	display: table;
	background-color: #FFF;
	height:90px;
}
.mainHeader #logoContainer {
	display: table-cell;
	vertical-align: middle;
}
.mainHeader #menuContainer {
	display: table-cell;
	vertical-align: middle;
	text-align: right;
}
#logo {
	max-width: 150px;
	vertical-align: middle;
}
/* Menu */
#hamburgerMenu {
	display: none;
}
#overlay {
	display: none;
}
#overlay #close {
	display: none;
}

.menuList {
	margin: 0;
	padding: 0;
	list-style: none;
}
.menuList li {
	display: inline-block;
}
.menuList li a {
	display: block;
	/* transition: 0.3s all; */
	text-decoration: none;
	text-transform: uppercase;
	font-size: 15px;
	padding: 10px 10px;
	color: #111111;
	border-bottom: 0;
}
.menuList li a::after {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background: #478803;
	transition: width .3s;
}
.menuList li a:hover {
	color: #478803;
}
.menuList li a:hover::after {
	width: 100%;
}
.menuList li .active {
	color: #478803;
	font-weight: 600;
}
.menuList li .active::after {
	display: block;
	height: 2px;
	background: #478803;
	transition: width .3s;
	width: 100%;
}

/* Homepage slider  */

.slideShowContainer {
	max-width: 100%;
	position: relative;
	height: calc(100% - 140px);
	margin-top: 90px;
}
.bannerImage {
	width: 100%;
	height: calc(100vh - 140px);
}
.imageOverlay {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, .2);
}
.prevImage, .nextImage {
	background: #transparent;
	border: 1px solid #FFF;
	border-radius: 0;
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	color: white;
	font-size: 32px;
	transition: 0.6s ease;
	left: 5%;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	transition: all 0.5s ease 0s;
	font-size: 18px;
}

.prevImage i, .nextImage i {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.nextImage {
	left: unset;
	right: 5%;
}
.prevImage:hover, .nextImage:hover {
	color: #478803;
	border: 1px solid #478803;
}

.imageText {
	color: #f2f2f2;
	font-size: 24px;
	padding: 8px 12px;
	position: absolute;
	top: 40%;
	max-width: 50%;
	left: 25%;
	text-align: center;
	text-transform: uppercase;
}

.imageFade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* Homepage boxes  */
.boxesContainer {
	display: flex;
	justify-content:center;
	padding: 0 20px;
}
.boxesContainer div {
	background-color: #f6f6f6;
	padding: 40px;
	padding-top: 50px;
	color: #111111;
	font-size: 30px;
	/* width: 33.333%; */
	width: 380px;
	margin-top: -50px;
	z-index: 99;
	min-height: 350px;
	overflow: hidden;
}
.boxesContainer div i{
	display: flex; 
	justify-content: center;
	color: #478803;
	font-size: 52px;
}
.boxesContainer div h6 {
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	margin-top: 30px;
	font-family: inherit;
	font-weight: 600;
	font-size: 22px;
}
.boxesContainer div p {
	font-size: 17px;
	margin-top: 30px;
	text-align: center;
	line-height: 1.3;
}

.boxesContainer .innerDiv {
	background-color: #478803;
	margin-top: -65px;
	padding-top: 65px;
	-webkit-box-shadow: 0px 15px 51px -17px rgba(101,189,106);
	-moz-box-shadow: 0px 15px 51px -17px rgba(101,189,106);
	box-shadow: 0px 15px 51px -17px rgba(101,189,106);
	color: #FFF;
	margin-bottom: -15px;
}
.boxesContainer .innerDiv i{
	color: #FFF;
}

/* we are think ahead */
.thinkAhead .image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
	width: 570px; 
	height: 370px; 
	float: right;
	margin-left: 30px;
	margin-bottom: 30px;
}

.thinkAheadLeft .image {
	float: left;
	margin-left: 0;
	margin-right: 30px;
}

/* Right image border */
.thinkAhead .imageBorderTrng {
    position: absolute;
	top: -10px;
	right: -10px;
    width: 200px;
    height: 17px;
    border-right: 10px solid transparent;
    border-top: 10px solid #478803;
}
.thinkAhead .imageBorderTrng,
.thinkAhead .imageBorderTrng::before {
    display: block;
    box-sizing: border-box;
    border-left: 7px solid transparent;
}
.thinkAhead .imageBorderTrng::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 200px;
    border-right: 10px solid #478803;
    border-top: 10px solid transparent;
    transform: rotate(10deg) skew(10deg,10deg);
    right: -10px;
    top: -13px;
}

/* Left image border */
.thinkAheadLeft .imageBorderTrng {
    position: absolute;
	top: -10px;
	left: -10px;
    width: 200px;
    height: 17px;
    border-left: 10px solid transparent;
    border-top: 10px solid #478803;
}
.thinkAheadLeft .imageBorderTrng,
.thinkAheadLeft .imageBorderTrng::before {
    display: block;
    box-sizing: border-box;
    border-right: 10px solid transparent;
}
.thinkAheadLeft .imageBorderTrng::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 200px;
    border-left: 10px solid #478803;
    border-bottom: 10px solid transparent;
	border-top: 5px solid transparent;
    transform: rotate(10deg) skew(10deg,10deg);
    left: -10px;
    top: -5px;
}

.thinkAhead h1 {
	color: #478803; 
	text-transform: uppercase;
	font-weight: 600;
	font-size: 24px;
}
.thinkAhead .paragraph {
	color: #111111 !important; 
	margin-top: 30px;
}
.thinkAhead .p2 {
	word-spacing: 3px; 
	line-height: 1.5;
	font-weight: normal;
}

.oneStopContainer {
	margin-top: 50px;
	background: #478803; 
	height: 100px;
	width: 100%;
}
.oneStopContainerInner {
	display: table;
	width: 1140px;
	margin: 0 auto;
	height: 100%;
}
.oneStopContainerNoTopMargin {
	margin-top: 0; 
}
.oneStopContainerInner p {
	display: table-cell;
	vertical-align: middle;
	font-size: 24px;
	font-weight: normal;
	text-transform: none;
	text-decoration: none;
	color: #FFF;
}
.oneStopContainerInner #button {
	display: table-cell;
	text-align: right;
	vertical-align: middle;
}
.oneStopContainerInner #button a {
	padding: 10px 20px;
	background-color: #FFF;
	text-decoration:none;
	color: #478803;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 15px;
	white-space: nowrap;
}

.projectGallery {
	margin-right: 20px;
	position: relative;
	float: left;
	width: 360px;
	background-color: #FFF;
	border: 1px solid #E5E5E5;
	-webkit-box-shadow: 0px 14px 48px -15px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 14px 48px -15px rgba(0,0,0,0.5);
	box-shadow: 0px 14px 48px -15px rgba(0,0,0,0.5);
	margin-bottom: 40px;
}
.projectGallery a:hover {
	text-decoration: none;
}

.projectGallery:hover .title {
	color: #478803;
}

.projectGallery .img {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: 250px;
}
.shineEffect figure {
	overflow: hidden;
	position: relative;
	margin: 0;
}
.shineEffect figure::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.shineEffect figure:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.project-image:hover, .project-image:hover .title {
	cursor: pointer;
	color: #478803;
}
.projectGallery .title, .project-image .title {
	color: #000;
	font-size: 18px;
	text-align: center;
	word-break: break-word;
	text-transform: uppercase;
	opacity: 0.9;
	padding: 30px 10px 10px 10px;
}
.projectGallery .desc, .project-image .desc {
	text-align: center;
	padding: 0px 10px 20px 10px;
	color:#111111;
	font-size: 15px;
	line-height: 1.5;
}

/* Our services */
.titleContainer {
	display: flex; 
	justify-content:center; 
	flex-direction: column; 
	background: #f7f8fa;
	align-items:center; 
	padding-top: 50px;
}
.titleContainer h2 {
	text-transform:uppercase; 
	color: #111111;
	font-weight: 600;
	font-size: 24px;
}
.titleContainer p {
	padding-top: 15px;
	text-align:center; 
	padding-bottom: 15px;
	text-transform:none;
	font-size: 15px; 
	color: #111111;
	max-width: 550px;
	word-spacing: 3px;
	line-height: 1.5;
}
.servicesContainer {
	background: #f7f8fa; width: 100%; padding: 0 20px; display: flex; justify-content:center; flex-direction: row; flex-wrap: wrap;
}
.width1140px {
	width: 1140px;
}

/* Carousel homepage owl */
.project-carousel-2.owl-carousel.owl-theme .owl-controls .owl-nav div {
	background: #transparent;
	border: 1px solid #111111;
	border-radius: 0;
	color: #111111;
	display: inline-block;
	font-size: 18px;
	height: 40px;
	line-height: 38px;
	position: relative;
	text-align: center;
	transition: all 0.5s ease 0s;
	width: 40px;
	border-radius: 50%;
}
.project-carousel-2.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-prev {
	top: 50%;
	position: absolute;
	left: -10%;
	margin-top: -30px;
}
.project-carousel-2.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-prev:hover,
.project-carousel-2.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-next:hover{
	border: 1px solid #478803;
	color: #478803;
	transition: all 0.5s ease 0s;
}
.project-carousel-2.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-next {
	margin-top: -30px;
	position: absolute;
	right: -10%;
	top: 50%;
}
.project-carousel-2.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-next i,
.project-carousel-2.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-prev i {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

/* Differences */
.differencesContainer {
	background: #f7f8fa; 
	width: 100%; 
	padding-bottom: 50px;
}
.mainContainerAuto {
	width: 1140px; 
	margin: 0 auto;
}
.imageBorder {
	background: #FFF; 
	border:1px solid #E5E5E5;
}

/* Contact top information data */
.contactInformation {
	width: 100%; 
	display: flex; 
	justify-content: center;
}
.contactInformation div{
	width: 285px; 
}
.contactInformation div #title{
	color: #478803;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 20px;
}
.contactInformation div #text { 
	font-size: 16px;
	color: #111111;
	font-weight: 400;
}
.contactForm {
	display: block;
	width: 1140px;
	margin: 0 auto;
	margin-top: 100px;
	margin-bottom: 70px;
}

.contactForm #map {
	height: 520px;
	width: 570px; 
	float:right;
}
.contactForm form {
	width: 530px;
}
.contactForm #title {
	color: #478803; 
	font-size: 32px; 
	margin-bottom: 10px;
}

.contactForm .formInput {
	width: 100%; 
	padding-left: 10px;
	margin-top: 10px;
	height: 50px;
	font-size: 16px;
	color:#111111;
	border-radius: 5px;
	outline: none;
	border: 1px solid #E5E5E5;
}
.contactForm .textArea {
	resize: none; 
	padding-top:10px;
	height: unset;
}
.contactForm #submit, 
.contentMiddleJobs #submit, 
.interviewSlotBttn {
	margin-top: 10px;
	background: #478803;
	border-radius: 5px;
	border: none;
	height: 50px;
	width: 100%;
	outline: none;
	font-size: 18px;
	color: #FFF;
	text-transform: uppercase;
	border: 1px solid #478803;
	transition: 0.3s all;
}
.interviewSlotBttn {
	padding: 0 24px;
}
.contactForm #submit:hover, .contentMiddleJobs #submit:hover {
	background: #FFF;
	color: #478803;
	cursor: pointer;
}
.contactFormPseudo::-webkit-input-placeholder {
    color: #CC0000;
}
.carouselImageHeight {
	height: 250px;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}
@media all and (max-width: 1400px) and (min-width: 1240px) {
	.project-carousel-2.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-next {
		right: -45px;
	}
	.project-carousel-2.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-prev {
		left: -45px;
	}
}

@media all and (max-width: 1240px) and (min-width: 800px) {
	.carouselImageHeight {
		height: 200px;
	}
	
	.bannerImage {
		height: unset;
	}
	.headerTop {
		width: 770px;
	}
	.mainHeader {
		width: 770px;
	}
	#logo {
		width: 120px;
	}
	.headerTopOuter {
		padding: 0 10px;
	}
	.contentMiddle {
		width: 770px;
	}
	.thinkAhead .image {
		width: 390px;
		height: 250px
	}
	.contactForm {
		width: 770px;
	}
	.contactForm form {
		width: 350px;
	}
	.contactForm #map {
		width: 400px;
	}
	.boxesContainer div {
		padding: 20px;
	}
	.boxesContainer .innerDiv {
		padding-top: 35px;
	}
	.mainContainerAuto {
		width: 770px;
	}
	.project-carousel-2.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-next {
		right: 2%;
	}
	.project-carousel-2.owl-carousel.owl-theme .owl-controls .owl-nav div.owl-prev {
		left: 2%;
	}
	.width1140px {
		width: 770px;
	}
	.oneStopContainerInner {
		width: 770px;
	}
	.pagesBanner #description {
		font-size: 22px;
		width: 90%;
	}
}

/* Jobs application */

.contentMiddleJobs {
	margin: 15px auto;
	width: 450px;
	background: #F9F9F9;
	border-radius: 3px;
	border: 1px solid #e5e5e5;
	padding: 20px;
	-webkit-box-shadow: 10px 10px 26px 4px rgba(0,0,0,0.10);
	-moz-box-shadow: 10px 10px 26px 4px rgba(0,0,0,0.10);
	box-shadow: 10px 10px 26px 4px rgba(0,0,0,0.10);
	margin-bottom: 50px;
}

.contentMiddleJobsLbl {
	margin: 0 auto;
	width: 450px;
	background: #e2f2da;
	border-color: #e2f2da; 
	font-size:14px; 
	padding: 8px 10px; 
	margin-top: 150px;
}

.contentMiddleJobs input {
	width: 100%; 
	padding-left: 10px;
	margin-top: 10px;
	height: 50px;
	font-size: 16px;
	color:#111111;
	border-radius: 5px;
	outline: none;
	border: 1px solid #E5E5E5;
	margin: 20px 0;
}

.contentMiddleJobs h1 {
	border-left: 3px solid green; 
	border-bottom: 1px solid green; 
	padding-left: 5px;
	margin-top: 20px; 
	font-weight: 500; 
	color: #478803; 
	font-size: 24px; 
	margin-bottom: 10px;
}

.contentMiddleJobs .qry {
	background: #e2f2da;
	border-color: #e2f2da; 
	font-size:14px; 
	padding: 8px 10px; 
	margin-top: 15px;
}

/** jobs */

.submitBtnJobs {
	margin-top: 10px;
    background: #478803;
    border-radius: 5px;
    border: none;
    padding: 8px 20px;
    outline: none;
    font-size: 18px;
    color: #FFF;
    text-transform: uppercase;
    border: 1px solid #478803;
    transition: 0.3s all;
	float: right;
}

.submitBtnJobs:hover {
	border: 1px solid #478803;
	color: #478803;
	background: #FFF;
}

/* about us */

.tabContainer {
	padding: 15px 25px;
	font-size: 14px; 
	color: #111111; 
	line-height: 20px; 
	opacity: 0.8;
	border: 1px solid #e0e0e0;
	background: #fff;
	min-height: 400px;
	box-shadow: 0px 15px 51px -13px rgba(101,189,106,0.4);
}

.csTabs {
	float:left;
	width:100%;
	display: flex;
	flex-direction: column;
	max-width: 250px;
}

.Tabs {
	padding:10px 15px;
	font-size:14px;
	background:#f6f6f6;
	font-weight:bold;
	color:#111111;
	float:left;
	cursor:pointer;
	border-left: 1px solid #e0e0e0;
	border-top:	1px solid #e0e0e0;
}

.Tabs:last-child {
	border-bottom: 1px solid #e0e0e0;
}
.Tabs:focus {
	border-color: none;
	outline: none;
}
.Tabs:hover,.Tabs.active{
	text-decoration: none;
	background:#FFF;
	color:#478803;
	background:#fff;
	margin-right: -1px;
	position:relative;
	z-index: 1;
}

.displayFlex {
	display: flex
}

@media only screen and (max-width:768px) {
	.contactMargin {
		margin-top: 20px;
	}
	.csTabs {
		overflow-x: scroll;
		display: flex; 
		overflow-y: hidden;
		max-width: 100%;
		flex-direction: row;
	}
	.shadowOvr {
		position: relative;
	}
	.shadowOvr:after {
		content:"";
		position:absolute;
		right:0; /* FF3.6+ */ /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(left, rgba(0,0,0,0) 1%, rgba(149,0,0,0) 59%, rgba(255,0,0,0.71) 100%);
		background: -moz-linear-gradient(left, rgba(0,0,0,0) 1%, rgba(149,0,0,0) 59%, rgba(255,0,0,0.71) 100%);
		background: -o-linear-gradient(left, rgba(0,0,0,0) 1%, rgba(149,0,0,0) 59%, rgba(255,0,0,0.71) 100%);
		background: linear-gradient(to right, rgba(0,0,0,0) 1%, rgba(149,0,0,0) 20%, #E3E3E3 100%); /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */ /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#b5ff0000',GradientType=1 ); /* IE6-9 */
		width: 25%;
		top:0;
		bottom:0;
		-webkit-transition: width 2s; /* For Safari 3.1 to 6.0 */
		transition: width 1s;
		pointer-events:none; 
		touch-action:none;
	}
	
	.Tabs{
		padding:10px 15px;
		font-size:12px; 
		float: none; 
		display: block;
		white-space: nowrap;
	}
	.Tabs.active{
		margin-right: 0;
	}
	.Tabs:last-child {
		border-bottom: none;
		border-right: 1px solid #e0e0e0;
	}
	.displayFlex {
		display: block;
	}
}

.certificates li {
	display: inline-block;
	list-style: bullet;
	list-style: none;
}
.certificates li:before {
	content: '\ffed';
	margin-right: 0.5em;
}

/*shine effect*/