/* FONTS
----------------------------------------------------------------------------------------------------*/

html {
	font-family: "Poppins", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size:62.50%;
    font-weight:400;
    color:#000000;
}

h1, h2 {
	font-size:4rem;
	color:#0071BC;
	margin-bottom:5rem;
}

h1, h2, h3, h4 {
	font-weight:700;
}

h3, h4 {
	font-weight:700;
	line-height:1.2;
	margin-bottom:1rem;
}

h3 {
	font-size:2.4rem;
}

h4 {
	font-size:1.8rem;
}

p {
	font-size:1.4rem;
	line-height:1.6;
	margin-bottom:20px;
}

p strong,
strong {
	font-weight:700;
}

p:last-child {
	margin-bottom:0;
}

p.lead {
	font-size:1.8rem;
	font-weight:400;
	line-height:1.6;
	margin-bottom:1.5rem;
}

p.lead strong {
	text-decoration:underline;
}

/* FONT OPTIONS - ALIGNMENT */

.text-center {
	text-align:center;
}

/* FONT OPTIONS - COLOR */

.font-color-blue {
	color:#0071BC;
}

/** FONTS RESPONSIVE CSS
*****************************************************************************************************/

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


}

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

	h1, h2 {
		font-size:3rem;
		margin-bottom:3rem;
	}

	p.lead {
		font-size:1.6rem;
	}

}

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

	h1, h2 {
		font-size:2.5rem;
	}

	h3 {
		font-size:2rem;
	}

	p.lead {
		font-size:1.4rem;
	}

}


/* MAIN LAYOUT
----------------------------------------------------------------------------------------------------*/

body, html {
	height:100%;
}

body {
	background-color:#151421;
	padding-top:110px;
}

.container,
.content,
section {
	position:relative;
	display:block;
	width:100%;
}

.container:after,
.content:after,
section:after {
	display:block;
	content: " ";
	clear: both;
	height:0;
	width:100%;
	*zoom: 1;
}

.container {
	background-color:#ffffff;
	z-index:10;
}

.content,
section {
    padding:6rem 15px 8rem;
    margin:0 auto;
    max-width:1140px;
}

.container.more-spacing .content,
.container.more-spacing section {
    padding:12rem 15px 8rem;
}

section:not(:first-child):last-child {
	padding-bottom:20rem;
}

.container[id*="-content"] {
	min-height:300px;
}

/* BACKGROUND COLOR */

.bg-light {
	background-color:#F2F2F2;
}

/* CARD GRID */

.card-grid {
	display:grid;
	grid-gap:2rem;
}

.card-grid > div {
	position:relative;
	transition: background-color 200ms;
}

.card-grid img {
	width:100%;
	height:auto;
}

.card-grid figure img {
	border:1px solid #151421;
}

.card-grid figcaption {
	font-size:1.2rem;
	font-weight:500;
	text-align:center;
	line-height:1.4;
	padding: 1rem 0;
}

/* CARD GRID - TWO COLUMNS */

.card-grid.two-columns {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card-grid.two-columns  img {
	border:1px solid #ffffff;
}

.card-grid.two-columns .card-details {
	padding:2.2rem 1.5rem 4.5rem;
}

.card-grid.two-columns .cta {
	justify-content: center;
	padding-bottom:0;
}

/* CARD GRID - THREE COLUMNS */

.card-grid.three-columns {
	display:grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-grid.three-columns > div {
	background-color:#151421;
}

.card-grid.three-columns .card-details {
	padding:3.5rem 2rem 8rem;
}

/* CARD DETAILS */

.card-details {
	transition: background-color 200ms;
}

.card-details h3,
.card-details p,
.card-details a {
	color:#ffffff;
}

.card-details h3 {
	margin-bottom:1rem;
}

.card-details .cta {
	position:absolute;
	bottom:0;
	left:0;
	display:flex;
	width:100%;
	padding:0 2rem 3rem;
}

.card-details a {
	display:inline-block;
	padding:0 2.2rem;
	border:1px solid #ffffff;
	font-size:1.4rem;
	font-weight:700;
	line-height:3;
	transition: all 200ms
}

.enable-hover .card-grid > div:hover {
	background-color:#1B8C7E;
}

.card-details a:hover,
.enable-hover .card-details a:hover {
	background-color:#151421;
	border-color:#151421;
}

/* CARD GRID - FOUR COLUMNS */

.card-grid.four-columns {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}


/* CARD FLEX - CENTER */

.card-flex {
	display:flex;
	justify-content:center;
	gap:2rem;
}

.card-flex figure img {
	width:100%;
	height:auto;
	border:1px solid #151421;
}

/* FLEX CENTER */

.flex-center {
	display:flex;
	justify-content:center;
}

.flex-center > div {
	overflow:hidden;
}

/** MAIN LAYOUT RESPONSIVE CSS
*****************************************************************************************************/

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

	body {
		padding-top:100px;
	}

}

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

	body {
		padding-top:80px;
	}

	.content,
	section {
	    padding:6rem 15px;
	}

	.container.more-spacing .content,
	.container.more-spacing section {
	    padding:8rem 15px 6rem;
	}

}

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

	.content,
	section {
	    padding: 4rem 15px;
	}

	.container.more-spacing .content,
	.container.more-spacing section {
	    padding:6rem 15px;
	}

	/* CARD FLEX - CENTER */

	.card-flex {
		flex-wrap:wrap;
	}

	.card-flex > figure {
		flex: 0 0 100%;
	}

}

/* NICESCROLL DISABLE CUSTOM SCROLLBAR (UNLESS YOU WANT IT)(CURRENTLY DISABLED) */
/*
.nicescroll-rails {
	display:none !important;
}
*/

/* HEADER
----------------------------------------------------------------------------------------------------*/

#header {
    position:fixed;
    top:0;
    left:0;
    background:#F2F2EB;
    box-shadow: 0 10px 10px 0 rgba(0,0,0,0.15);
    z-index:101;
}

#header section {
	width:100%;
    padding:0 15px;
}

/* HEADER MAIN */

#header-main {
	display: flex;
	justify-content: space-between;
	height:110px;
  	transition: all 200ms;
}

/* HEADER LOGO */

#logo {
	display:flex;
	flex-direction:column;
	justify-content: center;
	margin-right:3rem;
}

#logo img {
	width:auto;
	height:100%;
	max-height:65px;
	min-height:55px;
	object-fit:contain;
}

/* HEADER NAVIGATION */

#header-navigation {
	display: flex;
  	flex-direction: column;
  	justify-content: center;
	transition: all 200ms;
}

/* HEADER NAVIGATION LINKS */

ul#main-navigation {
	display:flex;
	justify-content: flex-end;
	width:100%;
	gap:0 1.6rem;
}

ul#main-navigation a {
	font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
	white-space: nowrap;
	outline:none;
	transition: all 200ms;
}

ul#main-navigation > li > a {
	display:inline-block;
	font-size:1.5rem;
	font-weight:700;
	line-height:1.6;
	color:#000000;
	white-space:nowrap;
}

ul#main-navigation > li {
	display:inline-block;
	position:relative;
}

ul#main-navigation > li.dropdown > a:after {
	content:"";
	display:inline-block;
	width:6px;
	height:6px;
    margin: 0 0 4px 4px;
	border-right:1px solid #000000;
	border-bottom:1px solid #000000;
	transform: rotate(45deg);
	transition: border-color 200ms
}

ul#main-navigation > li.dropdown,
ul#main-navigation > li.dropdown > a:after {
	transition: all 200ms;
}

ul#main-navigation li.active,
ul#main-navigation li a.current,
ul#main-navigation li a.active,
.enable-hover ul#main-navigation li a:hover {
    color:#0071BC;
}

ul#main-navigation > li.dropdown > a.active:after,
ul#main-navigation > li.dropdown > a.current:after,
.enable-hover ul#main-navigation > li.dropdown:hover > a:after {
	border-color:#0071BC;
}

/* HEADER SUBNAVIGATION */

ul.header-subnavigation {
	position:absolute;
	display:block;
	top: calc(((110px - 100%) / 2) + 100%);
	left:-20px;
	background:#F2F2F2;
	padding:0.5rem 2.2rem;
	min-width:270px;
	line-height:2.8;
	z-index:10;
	width:100%;
	transform: scaleY(0);
	transform-origin: top;
	transition: all 200ms;
}

ul.header-subnavigation li a {
	display:block;
	font-size:1.4rem;
	font-weight:600;
	color:#000000;
}

ul.header-subnavigation.expand {
	transform: scaleY(1);
}

ul.header-subnavigation.hide {
	max-height:inherit !important;
}

/* HEADER EXPAND BUTTON FOR MOBILE */

a#expand-nav {
	position:absolute;
	top:20px;
	right:15px;
	display:none;
	width:40px;
	height:40px;
	padding:13px 11px;
	cursor:pointer;
	background:#000000;
    border-radius: 4px;
	z-index:10;
	transition: all 200ms;
}

a#expand-nav div {
	display: flex;
	flex-direction: column;
  	justify-content: space-between;
	width:18px;
	height:14px;
}

a#expand-nav div span {
	display:block;
	width:18px;
	height:2px;
	background:#ffffff;
	-webkit-transform-origin: 100% 50%;
	-moz-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

#header.mobile-nav-active a#expand-nav {
	background-color:#63b4bd;
}

a#expand-nav.active div span:first-child,
#header.mobile-nav-active a#expand-nav div span:first-child {
	transform: translateX(-2px) rotate(-45deg) scaleX(1.1);
	right:10px;
}

a#expand-nav.active div span:nth-child(2),
#header.mobile-nav-active a#expand-nav div span:nth-child(2) {
	opacity:0;
}

a#expand-nav.active div span:last-child,
#header.mobile-nav-active a#expand-nav div span:last-child {
	transform: translateX(-2px) translateY(2px) rotate(45deg) scaleX(1.1);
}

/* HEADER / HEADER NAVIGATION / HEADER SUB NAVIGATION RESPONSIVE CSS
**************************************************************************************/

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

}

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

	/* HEADER */

	#header #header-main {
	  	height:100px;
	}

	/* HEADER LOGO */

	#logo img {
		max-height:55px;
	}

	/* HEADER NAVIGATION */

	ul#main-navigation {
		flex-wrap:wrap;
	}


	ul#main-navigation > li {
		gap:0 1.8rem;
	}

	ul#main-navigation > li > a {
		font-size:1.5rem;
	}

	/* HEADER SUBNAVIGATION */

	ul.header-subnavigation {
		top:62px;
	}

	ul.header-subnavigation {
		top: calc(((100px - 100%) / 2) + (100% + 12px));
	}

}

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

	/* HEADER */

	#header #header-main {
	  	height:80px;
	}

	/* HEADER LOGO */

	#logo img {
		max-height:45px;
	}

	/* HEADER NAVIGATION */

	#header-navigation {
		position:fixed;
		top:0;
		left:0;
		height:100vh;
		width:100vw;
		background:#151421;
		background-size:cover;
		padding:90px 0;
		pointer-events: none;
		opacity:0;
		overflow:scroll;
		z-index:10;
	}

	ul#main-navigation {
		flex-direction:column;
	}

	ul#main-navigation > li {
		display:block;
		margin:0;
		text-align:center;
		overflow:hidden;
	}

	ul#main-navigation a {
		white-space:normal;
	}

	ul#main-navigation > li > a {
		display:inline-block;
		font-size:2em;
		font-weight:700;
		line-height:40px;
		color:#ffffff;
		padding:0 15px;
	}

	ul#main-navigation > li > a:after {
		display:none;
	}

	ul#main-navigation li.limit-height {
		max-height:40px !important;
	}

	ul#main-navigation li.active,
	ul#main-navigation li a.current,
	ul#main-navigation li a.active,
	.enable-hover ul#main-navigation li a:hover {
	    color:#FFCB09;
	}

	/* HEADER NAVIGATION - MOBILE NAV ACTIVE */

	#header.mobile-nav-active #header-navigation {
		opacity:1;
		pointer-events: inherit;
	}

	/* HEADER SUBNAVIGATION */

	ul.header-subnavigation {
		position:relative;
		display:block;
		top:0;
		left:0;
		background:none;
		padding:0;
		overflow:hidden;
		transform: none;
	}

	ul.header-subnavigation li:first-child {
		padding-top:5px;
	}

	ul.header-subnavigation li:last-child {
		padding-bottom:10px;
	}

	ul.header-subnavigation li a {
		position:relative;
		display:inline-block;
		font-size:1.4rem;
		line-height:30px;
		color:#f4f4f4;
		padding:0 15px;
	}

	ul#main-navigation > li.dropdown > a:after {
	    width: 10px;
	    height: 10px;
	    margin: 0 0 4px 6px;
	    border-right: 2px solid #ffffff;
	    border-bottom: 2px solid #ffffff;
	}

	ul.header-subnavigation > li > a.current,
	ul.header-subnavigation > li > a.active,
	.enable-hover ul.header-subnavigation > li > a:hover {
	    background:none;
	}

	ul#main-navigation > li.dropdown > a.active:after,
	.enable-hover ul#main-navigation > li.dropdown:hover > a:after {
	    border-color: #FFCB09;
	}

	/* HEADER EXPAND BUTTON FOR MOBILE */

	a#expand-nav {
		display:inline-block;
	}

}

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



}

/* CONTENT - GENERAL
----------------------------------------------------------------------------------------------------*/

/* GENERAL CLASS */

a,
a:link,
a:focus {
   outline: 0;
   text-decoration:none;
}

.full-image {
	width:100%;
	height:auto;
}

.bordered {
	border:1px solid #151421;
}

.clear {
	display:block;
	width:100%;
	clear:both;
	float:none;
}

/* GENERAL SPACING */

.link-btn + .card-grid {
	margin-top:5.5rem;
}

ul + .card-grid,
ul + .card-flex {
	margin-top:5.5rem;
}

/* LINKS AND BUTTONS */

.link-btn {
	display:inline-block;
    font-size:1.6rem;
    font-weight:700;
    line-height:2.5;
    color:#0071BC;
    cursor:pointer;
    padding:0 2rem;
    background:#ffffff;
	transition: all 200ms;
}

.enable-hover .link-btn:hover {
	color:#ffffff;
	background:#151421;
}

/* LIST STYLE - BORDERED LIST */

ul.bordered-list {
	display:inline-block;
	width:100%;
}

ul.bordered-list li {
	display:block;
	width:100%;
	text-align:center;
	color:#000000;
	font-size:1.4rem;
	padding:12px 0;
	line-height:1.8;
	border-bottom:2px solid #E6E6E6;
}

ul.bordered-list li:last-child {
	border:none;
}

/* LIST STYLE - BULLET LIST */

ul.bullet-list {
	margin-bottom:3rem;
}

ul.bullet-list:last-child {
	margin-bottom:0;
}

ul.bullet-list li {
	position:relative;
	font-size:1.4rem;
	color:#000000;
	line-height:1.4;
	padding:0.2rem 0 0.2rem 10px;
}

ul.bullet-list.no-bullet li {
	padding-left:0;
}

ul.bullet-list:not(.no-bullet) li:before {
	position:absolute;
	top:0;
	left:0;
	display:inline-block;
	content: "\2022";
	margin-right:4px;
}

ul.bullet-list li.heading {
	padding:0;
	margin-bottom:1rem;
}

ul.bullet-list li.heading:before {
	display:none;
}

/* LIST STYLE - ARROW LIST */

ul.arrow-list {
	margin-bottom:6rem;
}

ul.arrow-list li {
	position:relative;
	font-size:1.6rem;
	color:#333333;
	line-height:1.4;
	padding-left:25px;
}

ul.arrow-list.gutter li {
	margin-bottom:1.5rem;
}

ul.arrow-list li:before {
	position:absolute;
	top:2px;
	left:0;
	display:inline-block;
	content: "\25B8";
	width:16px;
	height:16px;
	color:#ffffff;
	font-size: 2rem;
	padding-left:2px;
    line-height: 0.7;
    text-align: center;
	border-radius:100%;
	background-color:#064A3B;
}

ul.arrow-list li.heading {
	padding:0;
}

ul.arrow-list li.heading {
	font-weight:800;
}

ul.arrow-list li.heading:before {
	display:none;
}

/* TABLES (MAINLY EXPERIENCES PAGE) */

table {
	width:100%;
	margin-bottom:6rem;
}

table td {
	font-size:1.4rem;
	font-weight:400;
	border-bottom:1px solid #E6E6E6;
	padding:1rem 2rem 1rem 0;
	vertical-align:middle;
	line-height:1.3;
}


table td:first-child {
	width:12%;
}

table td:last-child {
	width:55%;
}

table thead td {
	font-weight:700;
	border-bottom:2px solid #151421;
}

/* SOCIAL POPUP BUTTONS */

.popup-btns {
	position:fixed;
	display:flex;
	width:50px;
	height:50px;
	flex-direction:column;
	align-items:center;
	justify-content: center;
	border-radius:5px;
	right:5rem;
	z-index:20;
	transition: all 200ms;
}

/* BACK TO TOP POPUP BUTTON */

#back-top {
	bottom:50px;
	opacity:0;
	pointer-events: none;
	font-size:1.6rem;
	font-weight:700;
	color:#000000;
}

#back-top:before {
	content:"";
	display:inline-block;
	transform: rotate(45deg);
	width:14px;
	height:14px;
	border-left:2px solid #000000;
	border-top:2px solid #000000;
	transition: border-color 200ms;
}

#back-top.show {
	opacity:1;
	pointer-events: all;
}

/* GENERAL CLASS RESPONSIVE CSS
**************************************************************************************/

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

	/* SOCIAL POPUP BUTTONS */

	.popup-btns {
		right:1.5rem;
	}


}

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

	/* GENERAL SPACING */

	header + p {
		margin-top:-1rem;
	}

	/* LIST STYLE - BULLET LIST */

	ul.bullet-list li {
		font-size:1.4rem;
	}

	/* LIST STYLE - ARROW LIST */

	ul.arrow-list li {
		font-size:1.5rem;
	}

	/* TABLES (MAINLY EXPERIENCES PAGE) */

	table td {
		font-size:1.2rem;
	}

}

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


	/* LIST STYLE - ARROW LIST */

	ul.arrow-list li {
		font-size:1.4rem;
	}

	ul.arrow-list li:before {
		top:1px;
	}

	/* TABLES (MAINLY EXPERIENCES PAGE) */

	table thead {
		display:none;
	}

	table td {
		display:block;
		padding:0.2rem 0;
		border:none;
	}

	table td:first-child {
		padding-top:1rem;
	}

	table td:last-child {
		border-bottom:1px solid #e6e6e6;
		padding-bottom:1rem;
	}

	table td,
	table td:first-child,
	table td:last-child {
		width:100%;
	}

	table td span {
		display:inline-block;
		font-weight:800;
		margin-right:0.5rem;
	}

	/* WHATSAPP POPUP BUTTON */

	#whatsapp {
		bottom:85px;
	}

	/* BACK TO TOP POPUP BUTTON */

	#back-top {
		display:none;
	}

}

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

}

/* SLICK SLIDER OVERRIDES */

.slick-next,
.slick-prev {
	border-radius:100%;
	transition: all 200ms;
}

.slick-next:before,
.slick-prev:before {
	display:block;
	content: "";
	opacity:1;
	background: url("../images/arrow.svg") no-repeat center center;
}

.slick-next:before {
	transform: rotate(180deg); 
}

.slick-dots {
	bottom:0;
}

.slick-dots li {
	width:14px;
	height:14px;
}

.slick-dots li button {
	width:14px;
	height:14px;
	border-radius:unset;
	background-color:#ffffff;
	border:none;
}

.slick-dots.dot-brown li button {
	background-color:#F0E8DF;
}

.slick-dots li.slick-active button {
	background-color: #29ABE2;
}

/* SLICK SLIDER CUSTOM CSS */

.slide-caption {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	padding:0 15px;
	text-align:center;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-around;
}

.slide-caption h1,
.slide-caption h2 {
	display:block;
	max-width:500px;
	text-align:center;
	line-height:1.2;
	color:#ffffff;
	margin:0 auto;
}

/* SLICK SLIDER CAROUSEL - NOTE THAT THE CLASS .carousel-arrow IS ADDED IN JS ON INIT */

.carousel-arrow,
.slick-next:focus,
.slick-prev:focus {
	background:#35BCB2;
	border:5px solid #1B5460;
}

.carousel-arrow {
	top:35%;
    width: 40px;
    height: 40px;
}

.carousel-arrow.slick-next {
	right: -20px;
}

.carousel-arrow.slick-prev {
	left: -20px;
}

.carousel-arrow.slick-next:before,
.carousel-arrow.slick-prev:before {
	width:8px;
	height:30px;
	margin:0 auto;
	filter: invert(0%) sepia(7%) saturate(29%) hue-rotate(318deg) brightness(96%) contrast(106%);
	background-size:8px 14px;
}

.carousel-arrow.slick-next:not(.slick-disabled):hover,
.carousel-arrow.slick-prev:not(.slick-disabled):hover {
    background:#1B5460;
    border-color:#35BCB2;
}

.carousel-arrow.slick-next:not(.slick-disabled):hover:before,
.carousel-arrow.slick-prev:not(.slick-disabled):hover:before {
    filter: brightness(0) invert(1);
}

/* CLASS .carousel IS ADDED IN HTML */

.carousel .slick-list {
    margin: 0 -1.5rem;
}

.carousel .slick-slide {
	margin: 0 1.5rem 3rem;
}

.carousel.image-frame .slick-track > div {
	padding: 0 10px 0 10px;
	border-radius: 6px;
}

.carousel.image-frame img {
	box-shadow: 10px 10px 0 0 rgba(242, 242, 242, 1);
}

.carousel img {
	width:100%;
	height:auto;
	border-radius:6px;
}

.carousel span {
	display:block;
	font-size:1.8rem;
	line-height:1.2;
	padding:10px 2rem;
}

.carousel a span {
	display:inline-block;
	font-size:1.3rem;
	padding:0;
	vertical-align: text-top;
}

.carousel a span {
	color:#0062A8;
	transition: color 200ms;
}

/** SLICK SLIDER OVERRIDES RESPONSIVE CSS
*****************************************************************************************************/

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

	/* SLICK SLIDER CAROUSEL */

	.carousel-arrow.slick-next {
		right: -14px;
	}

	.carousel-arrow.slick-prev {
		left: -13px;
	}

}

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


}

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

	/* SLICK SLIDER CUSTOM CSS */

	.slide-caption h1,
	.slide-caption h2 {
		font-size:3.5em;
	}

}

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

	/* SLICK SLIDER CUSTOM CSS */

	.slide-caption h1,
	.slide-caption h2 {
		font-size:2.5rem;
	}

	/* SLICK SLIDER CAROUSEL */

	.carousel-arrow {
		top:30%
	}

	.carousel span {
		font-size:1.6rem;
	}

	.carousel .slick-slide {
		margin: 0 1.5rem 4rem;
	}

}

/* SECTIONS - HOME
----------------------------------------------------------------------------------------------------*/

#home-services section,
#home-company-overview section,
#home-notable-clients section {
	padding:6rem 15px 10rem;
}

/* HOME - VIDEO */

#home-video iframe {
	aspect-ratio: 16 / 9;
	min-height:300px;
	width: 100%;
}

/* HOME - MAIN SLIDER */

#home-slider,
#home-slider .slick-slide {
	height:600px;
	max-height:600px;
}

#home-slider .slick-slide {
	display:flex;
	align-items:center;
}

#home-slider .slick-slide img {
	width:auto;
	height:100%;
	object-fit: contain;
}

#home-slider .slick-dots {
	bottom:35px;
}

/* HOME COMPANY OVERVIEW */

#home-company-overview {
	text-align:center;
	background-color:#1B8C7E;
}

#home-company-overview h2,
#home-company-overview p {
	color:#ffffff;
}

/* HOME NOTABLE CLIENTS */

#home-notable-clients {
	text-align:center;
}

#home-notable-clients h2 {
	margin-bottom:4rem;
}

#home-notable-clients section {
	margin:0;
	max-width:unset;
	padding-bottom:6rem;
}

/* HOME OWL CAROUSEL OVERRIDES */

#client-carousel .item {
	display:flex;
	flex-direction:column;
	justify-content: center;
	height:100px;
}

#client-carousel .owl-item img {
    object-fit: contain;
}


/** SECTIONS - HOME RESPONSIVE CSS
*****************************************************************************************************/

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

	/* HOME - MAIN SLIDER */

	#home-slider,
	#home-slider .slick-slide {
		height:500px;
	}

}

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

	/* HOME - MAIN SLIDER */

	#home-slider .slick-next {
	    right: 20px;
	}

	#home-slider .slick-prev {
	    left: 20px;
	}

	#home-slider .slick-next,
	#home-slider .slick-prev {
	    width: 50px;
	    height: 50px;
	}

	#home-slider .slick-next:before,
	#home-slider .slick-prev:before {
		width:10px;
		height:50px;
		background-size:10px 50px;
	}

}

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

	/* HOME - MAIN SLIDER */

	#home-slider,
	#home-slider .slick-slide {
		height:400px;
	}

	#home-slider .slick-next {
	    right: 15px;
	}

	#home-slider .slick-prev {
	    left: 15px;
	}

	#home-slider .slick-next,
	#home-slider .slick-prev {
	    width: 40px;
	    height: 40px;
	}

	#home-slider .slick-next:before,
	#home-slider .slick-prev:before {
		width:12px;
		height:40px;
		background-size:12px 21px;
	}

}

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

	/* HOME - MAIN SLIDER */

	#home-slider,
	#home-slider .slick-slide {
		height:300px;
	}

}

/* SECTIONS - ABOUT US - COMPANY OVERVIEW
----------------------------------------------------------------------------------------------------*/

#company-overview .flex-center {
	gap:0 2rem;
}

#company-overview .flex-center > div {
	max-width:480px;
}

#company-overview .flex-center > div:first-child {
	display:flex;
	justify-content: center;
	border:1px solid #151421;
	min-width:400px;
}

#company-overview .flex-center img {
	width:auto;
	height:100%;
}

/* COMPANY OVERVIEW - VISION AND VALUES */

#company-overview-vision-values {
	background-color:#1B8C7E;
}

#company-overview-vision-values .flex-center > div {
	display:flex;
	flex-direction:column;
	align-items:center;
	text-align:center;
	flex:0 0 50%;
	padding:0 5%;
}

#company-overview-vision-values .flex-center > div:first-child {
	border-right:1px solid #ffffff;
}

#company-overview-vision-values h3,
#company-overview-vision-values p {
	color:#ffffff;
}

#company-overview-vision-values h3 {
	margin-bottom:3rem;
}

#company-overview-vision-values ul.bordered-list {
	max-width:300px;
}

#company-overview-vision-values ul.bordered-list li {
	color:#ffffff;
	border-bottom:2px solid #2f988a;
}

#company-overview-vision-values ul.bordered-list li:first-child {
	padding-top:0;
}

#company-overview-vision-values ul.bordered-list li:last-child {
	border:none
}

/* COMPANY OVERVIEW - MISSION */

#company-overview-mission {
	text-align:center;
}

#company-overview-mission ul.bordered-list {
	display:inline-block;
	max-width:980px;
}

/* SECTIONS - ABOUT US - COMPANY OVERVIEW RESPONSIVE CSS
**************************************************************************************/

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

	#company-overview .flex-center {
		flex-direction:column;
	}

	#company-overview .flex-center > div {
		flex:0 0 100%;
		max-width:unset;
	}

	#company-overview .flex-center > div:first-child {
		margin-bottom:3rem;
		min-width:unset;
	}

	#company-overview .flex-center img {
		width:100%;
		height:auto;
	}

	/* COMPANY OVERVIEW - VISION AND VALUES */

	#company-overview-vision-values .flex-center {
		flex-direction:column;
	}

	#company-overview-vision-values .flex-center > div {
		flex:0 0 100%;
		padding:0;
	}

	#company-overview-vision-values .flex-center > div:first-child {
		border:none;
		margin-bottom:4rem;
	}

	#company-overview-vision-values ul.bordered-list {
		max-width:unset;
	}

}

/* SECTIONS - ABOUT US - ORGANIZATION STRUCTURE
----------------------------------------------------------------------------------------------------*/

#organization-structure {
	text-align:center;
}

#organization-structure h1 {
	margin-bottom:2rem;
}

#organization-structure header + p {
	margin-bottom:8rem;
}

#organization-structure img {
	width:100%;
	height:auto;
	margin-bottom:4rem;
}

#organization-structure .half-size {
	display:none;
}

#organization-structure .mobile-size {
	display:none;
}


/* SECTIONS - ABOUT US - ORGANIZATION STRUCTURE RESPONSIVE CSS
**************************************************************************************/

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

	#organization-structure header + p {
		margin-bottom:6rem;
	}

	#organization-structure .full-size {
		display:none;
	}

	#organization-structure .half-size {
		display:block;
	}

}

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

	#organization-structure header + p {
		margin-bottom:5rem;
	}

	#organization-structure .half-size {
		display:none;
	}

	#organization-structure .mobile-size {
		display:block;
	}

}

/* SECTIONS - ABOUT US - DIRECTORS AND GENERAL MANAGER
----------------------------------------------------------------------------------------------------*/

.profile-box {
	border-bottom:1px solid #e6e6e6;
	padding-bottom:4rem;
	margin-bottom:4rem;
}

.profile-box:last-child {
	border-bottom:none;
	padding-bottom:0;
	margin-bottom:0;
}

.profile-box:after {
	display:block;
	content: " ";
	clear: both;
	height:0;
	width:100%;
	*zoom: 1;
}

.profile-box img {
	width:240px;
	height:auto;
	margin:0 2rem 0 0;
	float:left;
	border:1px solid #151421;
}

/* SECTIONS - ABOUT US - DIRECTORS AND GENERAL MANAGER RESPONSIVE CSS
**************************************************************************************/

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

	.profile-box {
		text-align:center;
	}

	.profile-box img {
		display:block;
		width:100%;
		float:none;
		margin-bottom:2rem;
	}


}

/* SECTIONS - FACILITIES
----------------------------------------------------------------------------------------------------*/

#facilities h1 {
	margin-bottom:2rem;
}

/* SECTIONS - SERVICES PAGES
----------------------------------------------------------------------------------------------------*/

#service-page {
	text-align:center;
}

#service-page section {
	min-height:800px;
}

#service-page h1 {
	margin-bottom:3rem;
}

#service-page ul.bordered-list {
	display:inline-block;
	width:auto;
}

#service-page ul.bordered-list li {
	border-bottom:1px solid #E6E6E6;
}

#service-page ul.bordered-list li:last-child {
	border:none;
}

#service-page .flex-center {
	gap:0 2rem;
}

#service-page .flex-center > div {
	max-width:480px;
	text-align:left;
}

#service-page .flex-center > div:first-child {
	display:flex;
	justify-content: center;
	border:1px solid #151421;
	min-width:400px;
}

#service-page .flex-center img {
	width:auto;
	height:100%;
}


/* SECTIONS - SERVICES PAGE RESPONSIVE CSS
**************************************************************************************/

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

	#service-page .flex-center {
		flex-direction:column;
	}

	#service-page .flex-center > div {
		flex:0 0 100%;
		max-width:unset;
	}

	#service-page .flex-center > div:first-child {
		margin-bottom:3rem;
		min-width:unset;
	}

	#service-page .flex-center img {
		width:100%;
		height:auto;
	}

}

/* SECTIONS - QUALIFICATIONS
----------------------------------------------------------------------------------------------------*/

#personnel-equipment p + h3 {
	padding-top:3rem;
}

.image-column figure {
	margin-bottom:6rem;
}

.image-column figure:last-child {
	margin-bottom:0;
}

/* CERTIFICATION */

#certification img {
	border:1px solid #151421;
}

/* SECTIONS - EXPERIENCES
----------------------------------------------------------------------------------------------------*/

#experiences h1 {
	margin-bottom:2.5rem;
}

#experiences h3 {
	color:#151421;
	font-weight:400;
}

#experiences table:last-child {
	margin-bottom:0;
}


/* SECTIONS - CONTACT US
----------------------------------------------------------------------------------------------------*/

#contact-us .half-flex {
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
}

#contact-us .half-flex > div {
	flex:0 0 49%;
}

#contact-us h4 {
	color:#151421;
}

ul.contact-list li {
	padding:0.2rem 0;
	font-size:1.4rem;
	line-height:1.2;
}

ul.contact-list li span {
	display:inline-block;
	font-weight:700;
	margin-right:1.2rem;
}

ul.contact-list li a {
	color:#29ABE2;
	text-decoration:underline;
}

/* GOOGLE MAPS */

#map-canvas {
	height:600px;
}


/* SECTIONS - CONTACT US RESPONSIVE CSS
**************************************************************************************/

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

	#contact-us .half-flex > div {
		flex:0 0 100%;
	}

	#contact-us .half-flex > div:first-child {
		margin-bottom:4rem;
	}


}

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


}


/* CONTENT - ERROR PAGE
----------------------------------------------------------------------------------------------------*/

#error-content h1 {
	text-transform:uppercase;
}

/* CONTENT - FORMS
----------------------------------------------------------------------------------------------------*/

#ajax-form-container,
#ajax-form {
    width:100%;
}

#ajax-form-container.hidden,
#ajax-form-container .hide {
	display:none;
}

#ajax-form-container .show {
	display:block;
}


#ajax-form-success-message h3 {
	margin-bottom: 10px;
    display: inline-block;
    background-color: #32b508;
    padding: 10px 20px;
    border-radius: 5px;
}

.form {
	position:relative;
	display:block;
	padding:0;
}

.form .field {
	position:relative;
	display:block;
	text-align:left;
	min-width:inherit;
	background:none;
	margin-bottom:0;
	clear:both;
}

.form .field:last-child {
	margin-bottom:0;
}

.form #message.field {
	margin-bottom:17px;
}

.form #captcha {
	overflow:hidden;
	margin:10px 0 15px;
}

.form.contact-form  #captcha {
	margin:20px 0 15px;
}

.form label,
.form-control,
.form .button {
	font-family: "Poppins", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-size:1.4rem;
	font-weight:400;
	color:#000000;
	height:40px;
	line-height:40px;
}

.form label {
	display:inline-block;
}

.form .field > label {
	min-width:110px;
	margin-right:10px;
}

.form .field div label {
	min-width:80px;
}

.form-control {
	display:block;
	width:100%;
	padding:0 4px;
	border:none;
	border-bottom:1px solid #E6E6E6;
	background-color:#ffffff;
	background-clip: padding-box;
	outline:none;
}

.form .flex-row {
	display:flex;
	justify-content: space-between;
	width:100%;
}

.form .flex-row.error {
	width:100%;
}

.form .flex-row.mobile-fields > div {
	display:flex;
	flex-direction:column;
}

.form .flex-row.mobile-fields > div:first-child {
	flex: 0 0 33%;
}

.form .flex-row.mobile-fields > div:last-child {
	flex: 0 0 63%;
}

textarea.form-control {
	padding:10px 4px;
	line-height:1.2;
	height:150px;
}

select.form-control {
	padding:0;
	min-width:130px;
} 

.form-control::-ms-expand {
	background-color: transparent;
	border: 0;
}

.form-control:focus {
	color: #495057;
	background-color: #fff;
	border-bottom:1px solid #80bdff;
	outline: 0;
}

.form-control::-webkit-input-placeholder {
	color: #000000;
	opacity: 1;
}

.form-control::-moz-placeholder {
	color: #000000;
	opacity: 1;
}

.form-control:-ms-input-placeholder {
	color: #000000;
	opacity: 1;
}

.form-control::-ms-input-placeholder {
	color: #000000;
	opacity: 1;
}

.form-control::placeholder {
	color: #000000;
	opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
	background-color: #e9ecef;
	opacity: 1;
}

select.form-control:focus::-ms-value {
	color: #495057;
	background-color: #fff;
}

.form div#spamtrap {
	visibility:hidden
}

.form .error {
	position:relative;
	display:block;
	width:100%;
	margin:0;
	z-index:2;
	float:none;
	clear:both;
}

.form #ajax-form-server-errors {
	position:relative;
	color:#f00;
	visibility:visible;
}

.form #ajax-form-server-errors.error div {
	padding:0 0 20px;
}

.form .error div,
.form .error span {
	display:block;
	clear:both;
	font-size:1.2em;
	line-height:2;
	padding:0;
	margin:0;
    color:#f00;
}

.form #ajax-form-server-errors span:last-of-type {
	margin-bottom:20px;
}

.form .error:before {
	position:absolute;
	top:0;
	left:0;
	width: 0; 
	height: 0; 
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent; 
	border-right:10px solid blue; 
}

.form fieldset#antispam {
	padding:2px;
	border-top:1px solid #EEE;
	border-left:0;
	border-right:0;
	border-bottom:0;
	width:350px;
}

.form fieldset#antispam legend {
	font-size: 0.8em;
	font-weight:bold;
	color:#333;
}

.form .button {
	position:relative;
    background-color:#ffffff;
    padding:0 3rem;
    border:none;
    height:40px;
    width:auto;
    min-width:inherit;
    display:inline-block;
    color:#0071BC;
    font-weight:700;
	cursor:pointer;
	border:1px solid #0071BC;
    -webkit-appearance: none;
    -moz-appearance: none;
	transition: all 200ms;
}

.form .button.processing {
	padding-right:2rem;
}

.form .button.processing > div {
	background: url(../assets/form/images/spinner.gif) no-repeat right 8px;
    background-size: 20px;
    padding-right: 3rem;
}

.form .button + .button {
	margin-left:1rem;
}

.form .button:hover {
	color:#ffffff;
	background:#35BCB2;
}

#ajax-form-recaptcha {
	position:relative;
	width: 290px;
	overflow:hidden;
	margin:0;
}

#ajax-form-recaptcha:before {
	content:"";
	display:block;
	position:absolute;
	top:0;
	left:0;
	border: 1px solid #d3d3d3;
	pointer-events: none;
	height:76px;
	width:290px;
	border-radius:2px;
	z-index:10;
}

#ajax-form-recaptcha > div {
	margin-left:-5px;
}

/* spam_trap: This input is hidden. This is here to trick the spam bots*/

.form .spmhidip {
	display:none;
	width:10px;
	height:3px
}
#fg_crdiv {
	font-size: 0.3em;
	opacity: .2;
	-moz-opacity: .2;
	filter: alpha(opacity=20);
}
#fg_crdiv p {
	display:none;
}

.form input[type=submit]:disabled,
.form button:disabled,
.form input[type=submit][disabled=disabled],
.form button[disabled=disabled],
.form input[type=text]:disabled,
.form input[type=text][disabled=disabled],
.form text:disabled,
.form text[disabled=disabled] {
	border-color:#cccccc !important;
    background:#cccccc !important;
}

.form input[type=submit]:disabled,
.form button:disabled,
.form input[type=submit][disabled=disabled],
.form button[disabled=disabled] {
	color:#999999 !important;
}

.form input[type=submit]:disabled .icon,
.form button:disabled .icon,
.form input[type=submit][disabled=disabled] .icon,
.form button[disabled=disabled] .icon {
	filter: brightness(0) saturate(100%) invert(53%) sepia(0%) saturate(1926%) hue-rotate(88deg) brightness(111%) contrast(83%);
}


/* SECTIONS - FORM RESPONSIVE CSS
**************************************************************************************/

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

	textarea.form-control {
		height:100px;
	}

}

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

	.form .flex-row {
		flex-direction:column;
	}

	.form .flex-row.mobile-fields > div:first-child,
	.form .flex-row.mobile-fields > div:last-child  {
		flex: 0 0 100%;
	}

}

@media only screen and (max-width: 420px) {
	
}

/* CONTENT - ANIMATION STYLES - SELECTED FROM ANIMATE.CSS (ZOOMIN,FADEINUP,FADEINLEFT)
----------------------------------------------------------------------------------------------------*/

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

@-webkit-keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}

	50% {
		opacity: 1;
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}

	50% {
		opacity: 1;
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

/* CUSTOM ANIMATE CSS ADDITION */

.animated.delay-02s {
	-webkit-animation-delay: .2s;
	animation-delay: .2s;
}

.animated.delay-04s {
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
}

.animated.delay-06s {
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
}

.animated.delay-08s {
	-webkit-animation-delay: .8s;
	animation-delay: .8s;
}


/* CONTENT - FOOTER
----------------------------------------------------------------------------------------------------*/

#footer {
	background-color:#151421;
    text-align:center;
}

#footer section {
    padding: 3.2rem 15px;
}

#footer  img {
	margin-bottom:1.5rem;
}

#footer p {
	color:#ffffff;
}

#footer p.copyright {
	color:#B3B3B3;
	font-weight:400;
	line-height:1.6;
}

#footer p span {
	display:block;
}

#footer p span,
#footer p span a {
	color:#151421;
}

#footer p span a {
	text-decoration:none;
}

/** CONTENT - FOOTER / PREFOOTER RESPONSIVE CSS
*****************************************************************************************************/

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

}

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


}

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


}

