
/* ==========================
   		  Global
   ========================== */

a.btn,
#request-btn {
	letter-spacing: 0.04em;
	border-radius: 0;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}

a.btn {
	display: inline-block;
	background-color: #66A38C;
	padding: 10px 25px;
	font-family: 'Roboto Bold', sans-serif;
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	border: 3px solid #66A38C;
	text-transform: uppercase;
	text-align: center;
}

	a.btn:hover {
		background-color: #676f82;
		border: 3px solid #676f82;
	}

		a.btn.outline {
			background-color: transparent;
		}

			a.btn.outline:hover {
				background-color: rgba(255,255,255,0.1);
			}


#page-header {
	background-color: #1F232A;
	padding: 60px 0;
}

	#page-header h1 {
		font-family: 'Titillium Web Bold', sans-serif;
		color: #fff;
		font-size: 50px;
		line-height: 1.1em;
		margin: 0;
	}


#just-text-content {
	padding: 60px 0;
}

	#just-text-content h2 {
		font-family: 'Roboto Bold', sans-serif;
		font-size: 18px;
		letter-spacing: 0.04em;
		margin: 0 0 10px;
		padding-top: 15px;
		display: block;
	}

	#just-text-content p {
		font-family: 'Roboto', sans-serif;
		font-size: 16px;
		color: #000;
		line-height: 1.6em;
		margin: 0 0 30px;
		letter-spacing: 0.02em;
	}


	#just-text-content a {
		color: #66a38b;
		-webkit-transition: all 0.15s ease-in-out;
		-moz-transition: all 0.15s ease-in-out;
		-o-transition: all 0.15s ease-in-out;
		transition: all 0.15s ease-in-out;
	}

	#just-text-content a:hover {
		opacity: 0.85;
	}



.video-container {
	width: 100%;
	height: 0;
	padding-bottom: 56.4%;
	position: relative;
}

.video-container > iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



/* ==========================
   		  NAVIGATION
   ========================== */


#second-border .container {
	width: 100%;
	max-width: 1100px;
	display: flex;
	justify-content: space-between;
}

#second-border .container > .clear { display: none; }
#second-border .container .grid_9 { width: auto; }


#navigation {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

	#navigation ul#menu {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-content: stretch;
		align-items: center;
		margin-top: 23px;
	}

		#navigation ul#menu li {
			margin: 0 25px 0 0;
			padding: 0;
		}

		#navigation ul#menu li:last-of-type {
			margin: 0;
		}

			#navigation ul#menu li a {
				position: relative;
				text-transform: uppercase;
				font-size: 13px;
				padding: 10px 0;
				-webkit-transition: all 0.15s ease-in-out;
				-moz-transition: all 0.15s ease-in-out;
				-o-transition: all 0.15s ease-in-out;
				transition: all 0.15s ease-in-out;
			}

			#navigation ul#menu li a:not(.btn):hover,
			#navigation ul#menu li a:not(.btn):hover::after {
				color: #66a38b;
				-webkit-transition: none;
				-moz-transition: none;
				-o-transition: none;
				transition: none;
			}

			#navigation ul#menu li a:not(.btn)::after {
				content: "";
				display: inline-block;
				position: absolute;
				left: 0;
				width: 100%;
				bottom: 6px;
				height: 5px;
				background-color: #ffffff;
				opacity: 0;
				-webkit-transition: all 0.15s ease-in-out;
				-moz-transition: all 0.15s ease-in-out;
				-o-transition: all 0.15s ease-in-out;
				transition: all 0.15s ease-in-out;
			}

			#navigation ul#menu li a:not(.btn):hover::after {
				bottom: 3px;
				height: 2px;
				background-color: #66a38b;
				opacity: 1;
			}

				#navigation ul#menu li a.btn { padding: 10px 15px; }
				#navigation ul#menu li a.btn:hover { color: #ffffff; }





/* ==========================
   		  FOOTER
   ========================== */


section#footer * { box-sizing: border-box; }

section#footer { 
	padding: 0; 
	background-color: #30323A;
}

	section#footer .footer-main {
		padding: 0 3%;
		margin: 0;
		background-color: #30323A;
	}

		section#footer .main-content {
			display: flex;
			flex-direction: row;
			flex-wrap: nowrap;
			justify-content: space-between;
			background-color: transparent;
		}

			section#footer .main-content .the-logo { 
				flex-basis: 33.333%;
				position: relative;
				display: flex;
				padding: 0 10% 0 0;
				flex-wrap: wrap;
				justify-content: center;
				align-items: center;
				align-content: center;
			}

				section#footer .main-content .the-logo::before {
					content: "";
					position: absolute;
					top: 0;
					right: 0;
					width: 100vw;
					height: 100%;
					background: #1F232A;
					z-index: 1;
				}

					section#footer .main-content .the-logo * { 
						z-index: 2; 
						position: relative;
					}


					section#footer .main-content .the-logo .the-image { 
						height: 0;
						padding-bottom: 35%;
						flex-basis: 100%;
						position: relative;
					}

						section#footer .main-content .the-logo .the-image img {
							position: absolute;
							top: 0;
							left: 0;
							width: 100%;
							height: 100%;
							object-fit: contain;
							object-position: center;
						}

					section#footer .main-content .the-logo p { 
						font-family: 'Roboto', sans-serif;
						color: #fff;
						font-size: 12px;
						text-align: center;
						margin-top: 15px;
						width: 100%;
					}

			section#footer .main-content .the-links { 
				flex-basis: 66.666%; 
				padding: 0;
				display: flex;
				flex-flow: row nowrap;
				justify-content: flex-start;
				align-items: flex-start;
				align-content: center;
			}

				section#footer .main-content .the-links > div { 
					flex-basis: 45%; 
					padding: 60px 40px; 
				}

				section#footer .main-content .the-links > div:nth-of-type(2) {
					padding-left: 0;
					padding-right: 0;
				}

					section#footer .main-content .the-links ul,
					section#footer .main-content .the-links ul li {
						list-style-type: none;
						padding: 0;
						margin: 0;
					}

						section#footer .main-content .the-links ul li {
							margin-bottom: 15px;
						}

						section#footer .main-content .the-links ul li:last-of-type {
							margin-bottom: 0;
						}

							section#footer .main-content .the-links a {
								padding: 5px;
							}

							section#footer .main-content .the-links a:not(.contact) {
								color: #fff;
								text-transform: uppercase;
								font-size: 14px;
								text-decoration: none;
								position: relative;
								display: inline-block;
								letter-spacing: 0.03em;
								font-weight: 400;
								font-family: 'Roboto', sans-serif;
							}

							section#footer .main-content .the-links a:not(.contact):after {
								content: "";
								display: inline-block;
								position: absolute;
								left: 0;
								width: 100%;
								bottom: 2px;
								height: 5px;
								background-color: #66a38b;
								opacity: 0;
								-webkit-transition: all 0.15s ease-in-out;
								-moz-transition: all 0.15s ease-in-out;
								-o-transition: all 0.15s ease-in-out;
								transition: all 0.15s ease-in-out;
							}

							section#footer .main-content .the-links a:not(.contact):hover {
								color: #66a38b;
							}

							section#footer .main-content .the-links a:not(.contact):hover::after {
								bottom: -1px;
								height: 2px;
								opacity: 1;
							}

							section#footer .main-content .the-links a.contact {
								color: #fff;
								font-size: 14px;
								text-decoration: none;
								position: relative;
								display: inline-block;
								letter-spacing: 0.03em;
								font-weight: 300;
								font-family: 'Roboto', sans-serif;
								-webkit-transition: all 0.15s ease-in-out;
								-moz-transition: all 0.15s ease-in-out;
								-o-transition: all 0.15s ease-in-out;
								transition: all 0.15s ease-in-out;
							}

							section#footer .main-content .the-links a.contact:hover {
								color: #66a38b;
							}

							section#footer .main-content .the-links p {
								font-size: 14px;
								margin-bottom: 20px;
							}




	section#footer .footer-bottom {
		background-color: #1F232A;
		padding: 10px 3%;
	}

		section#footer .footer-bottom .bottom-content {
			display: flex;
			flex-flow: row nowrap;
			justify-content: space-between;
		}


			section#footer .footer-bottom p {
				font-family: 'Roboto Light', sans-serif;
				font-size: 12px;
				letter-spacing: 0.03em;
				color: #fff;
				width: 100%;
			}

				section#footer .footer-bottom p a {
					font-family: 'Roboto Light', sans-serif;
					color: #fff;
					text-decoration: none;
				}

				section#footer .footer-bottom p a:hover {
					text-decoration: underline; 
				}

section#ready-to-start-cta .start-project {
	text-align: center;
}

section#ready-to-start-cta .start-project .btn {
	margin-top: 20px;
}

section#ready-to-start-cta #project-title {
	font-family: 'Titillium Web Bold';
}



/* ==========================
   		  Templates
   ========================== */

section.blocks,
section.blocks * { box-sizing: border-box; }

section.blocks {
	padding: 60px 5%;
	position: relative;
}

	section.blocks .the-image {
		position: absolute;
		top: 0;
		left: 0;
		width: 50%;
		height: 100%;
	}

	section.blocks.img-right .the-image {
		right: 0;
		left: unset;
	}

		section.blocks .the-image img {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
			object-position: center;
		}

	section.blocks .container {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-end;
		width: 100%;
		max-width: 996px;
	}

	section.blocks.img-right .container {
		justify-content: flex-start;
	}

		section.blocks .container .content {
			flex-basis: 50%;
			padding: 60px 0 60px 60px;
		}

		section.blocks.img-right .container .content {
			padding: 60px 60px 60px 0;
		}


			section.blocks .container .content h2 {
				font-family: 'Roboto Bold', sans-serif;
				font-size: 28px;
				text-transform: uppercase;
				letter-spacing: 0.04em;
				margin: 0 0 20px;
			}

			section.blocks .container .content p {
				font-family: 'Roboto', sans-serif;
				font-size: 18px;
				color: #000;
				line-height: 1.6em;
				margin: 0 0 30px;
			}



section#industry-grid-cta,
section#industry-grid-cta * {
	box-sizing: border-box;
}

section#industry-grid-cta {
	background-color: #f2f2f2;
	padding: 60px 5%;
}

	section#industry-grid-cta .container {
		width: 100%;
		max-width: 996px;
	}

		section#industry-grid-cta .content { text-align: center; }

			section#industry-grid-cta .content h2 {
				font-family: 'Roboto Bold', sans-serif;
				text-align: left;
				color: #000;
				text-transform: uppercase;
			}

			section#industry-grid-cta .content p {
				font-family: 'Roboto', sans-serif;
				font-size: 16px;
				text-align: left;
				color: #000;
				margin-bottom: 25px;
				width: 100%;
				max-width: 550px;
			}

				section#industry-grid-cta .industry-grid {
					display: flex;
					flex-wrap: wrap;
					flex-direction: row;
					justify-content: space-between;
					margin-bottom: 15px;
				}

					section#industry-grid-cta .industry-grid > div {
						position: relative;
						margin-bottom: 30px;
					}

					section#industry-grid-cta .industry-grid > div::after {
						content: "";
						position: absolute;
						top: 0;
						left: 0;
						width: 100%;
						height: 100%;
						background: rgb(255,255,255);
						background: linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(0,0,0,0.8) 100%);
						z-index: 1;
					}

					section#industry-grid-cta .industry-grid > div::before {
						content: "";
						position: relative;
						width: 100%;
						height: 0;
						padding-bottom: 100%;
						display: block;
						background-color: #ffffff;
					}

					section#industry-grid-cta .industry-grid > div.half::before { padding-bottom: 60%; }
					section#industry-grid-cta .industry-grid > div.third { flex-basis: 30.5%; }
					section#industry-grid-cta .industry-grid > div.half { flex-basis: 48%; }

					section#industry-grid-cta .industry-grid > div .the-image,
					section#industry-grid-cta .industry-grid > div .the-image img { 
						position: absolute;
						top: 0;
						left: 0;
						width: 100%;
						height: 100%;
						object-fit: cover;
						object-position: center;
					}

					section#industry-grid-cta .industry-grid > div h3 { 
						font-family: 'Roboto', sans-serif;
						color: #fff;
						position: absolute;
						bottom: 0;
						left: 0;
						text-align: left;
						text-transform: uppercase;
						margin: 0;
						padding: 20px;
						width: 100%;
						letter-spacing: 0.04em;
						font-size: 24px;
						text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
						z-index: 2;
					}






/* ==========================
   		  Home Page
   ========================== */



.aim-hero, .aim-hero * { box-sizing: border-box; }

.aim-hero {
	background-color: #1F232A;
	position: relative;
	padding: 0 3%;
}

	.aim-hero .container {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-content: stretch;
		align-items: center;
		min-height: 70vh;
	}

		.aim-hero .container .the-info {
			flex-basis: 50%;
			padding: 50px 50px 50px 0;
		}

			.aim-hero .container .the-info h1 {
				font-family: 'Titillium Web Bold', sans-serif;
				color: #fff;
				font-size: 60px;
				line-height: 1.1em;
				margin: 0 0 30px;
			}

			.aim-hero .container .the-info p {
				font-family: 'Roboto', sans-serif;
				font-size: 24px;
				font-weight: 300;
				color: #ffffff;
				line-height: 1.4em;
				margin: 0 0 30px;
			}

			.aim-hero .container .the-info a.btn { 
				text-transform: none; 
				margin-bottom: 20px;
			}

			.aim-hero .container .the-info a.btn.outline {
				margin-left: 15px;
			}

	.aim-hero .the-image,
	.aim-hero .the-image img {
		position: absolute;
		top: 0;
		right: 0;
		width: 50%;
		height: 100%;
	}

		.aim-hero .the-image img { 
			width: 100%; 
			object-fit: cover;
			object-position: center;
		}


#aim-benefits { padding: 60px 0; }

	#aim-benefits #benefit-title { margin-top: 0; }

	#aim-benefits .quality-text { text-align: center; }




#aim-quality .homepage-ctas .med-banner:nth-child(1n+2) {
	margin-top: 30px;
}


#aim-quality .the-button {
	text-align: left;
	margin-top: 40px;
}


#mission-text {
	font-family: 'Roboto', sans-serif;
}




/* ==========================
   		 Process Page
   ========================== */


#process-steps {
	padding: 60px 0;
}

#process-steps .section-header {
	padding: 0 0 60px 0;
}

	#process-steps .section-header h2 {
		font-family: 'Roboto Bold', sans-serif;
		text-transform: uppercase;
		color: #fff;
		margin: 0 0 15px;
		letter-spacing: 0.04em;
	}

	#process-steps .section-header p {
		font-family: 'Roboto', sans-serif;
		color: #fff;
		letter-spacing: 0.03em;
		width: 100%;
		max-width: 550px;
		font-weight: 300;
		margin: 0;
	}

.bottom-line {
	border-bottom: 1px solid #707070;
}






/* =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
   ------------------------------------------------
				  MEDIA QUERIES
   ------------------------------------------------
   =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* */



/* =*=*=*=*=*=*=*=*=*=*=*=*= */
/* =*=*=*=*= 1000px =*=*=*=*= */
/* =*=*=*=*=*=*=*=*=*=*=*=*= */

	@media screen and (max-width: 1000px){

		/* /// HOME /// */
		.aim-hero .container .the-info h1 { font-size: 50px; }
		.aim-hero .container .the-info p { font-size: 18px; }
		.aim-hero .container .the-info a.btn {
			width: 100%;
			margin-bottom: 20px;
			text-align: center;
		}
		.aim-hero .container .the-info a.btn.outline { margin-left: 0; }

		/* /// TEMPLATES /// */
		section.blocks {
			padding: 0 8%;
		}



	}




/* =*=*=*=*=*=*=*=*=*=*=*=*= */
/* =*=*=*=*= 768px =*=*=*=*= */
/* =*=*=*=*=*=*=*=*=*=*=*=*= */


	@media screen and (max-width: 768px){

		/* /// HOME /// */
		.aim-hero .container { 
			display: block; 
			z-index: 2;
			min-height: 0;
		}

		.aim-hero .container .the-info {
			width: 100%;
			display: block;
			padding-left: 0;
			padding-right: 0;
		}

		.aim-hero .the-image {
			width: 100%;
			opacity: 0.1;
			z-index: 1;
		}


		/* /// FOOTER /// */
		section#footer .main-content { 
			display: block; 
			width: 100%; 
		}

		section#footer .main-content .the-logo { 
			width: 100%; 
			padding: 60px 0;
			background-color: #1F232A;
		}

			section#footer .main-content .the-logo::before { display: none; }

			section#footer .main-content .the-logo .the-image {
				flex-basis: 70%;
				padding-bottom: 20%;
				margin: 0 auto;
			}

		section#footer .main-content .the-links { 
			width: 100%; 
		}

		section#footer .footer-bottom .bottom-content { 
			flex-flow: wrap column; 
		}

		section#footer .footer-bottom .bottom-content p { 
			text-align: center; 
			line-height: 2em;
		}



		/* /// TEMPLATES /// */
		section.blocks {
			padding: 0 10%;
		}

		section.blocks .the-image,
		section.blocks.img-right .the-image {
			position: relative;
			width: 100%;
			height: 0;
			padding-bottom: 50%;
		}

		section.blocks .container .content,
		section.blocks.img-right .container .content {
			flex-basis: 100%;
			padding: 30px 0 60px 0;
		}


		section#industry-grid-cta { padding: 50px 10%; }
		section#industry-grid-cta .industry-grid > div { margin-bottom: 30px; }
		section#industry-grid-cta .industry-grid > div.third::before,
		section#industry-grid-cta .industry-grid > div.half::before { padding-bottom: 50%; }
		section#industry-grid-cta .industry-grid > div.third,
		section#industry-grid-cta .industry-grid > div.half { flex-basis: 100%; }

	}








/* =*=*=*=*=*=*=*=*=*=*=*=*= */
/* =*=*=*=*= 480px =*=*=*=*= */
/* =*=*=*=*=*=*=*=*=*=*=*=*= */


	@media screen and (max-width: 480px){


		/* /// FOOTER /// */
		section#footer .main-content .the-links {
			flex-flow: column wrap;
			margin-bottom: 10px;
		}

		section#footer .main-content .the-links > div {
			padding: 0;
			text-align: center;
			width: 100%;
			flex-basis: 100%;
		}

		section#footer .main-content .the-links > div:nth-of-type(1) {
			margin: 40px 0 18px;
		}

		section#footer .main-content .the-links ul, 
		section#footer .main-content .the-links ul li {
			width: 100%;
			text-align: center;
		}


		/* /// TEMPLATES /// */
		section.blocks .the-image,
		section.blocks.img-right .the-image {
			padding-bottom: 80%;
		}

		section.blocks .container .content h2,
		section.blocks .container .content p {
			text-align: center;
		}

		section.blocks .container .content a.btn {
			display: block;
			width: 100%;
		}

		section#industry-grid-cta .industry-grid > div.third::before,
		section#industry-grid-cta .industry-grid > div.half::before { padding-bottom: 75%; }
		section#industry-grid-cta .btn { display: block; width: 100%; }


	}







	