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

html {
	font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size:62.50%;
    font-weight:500;
    color:#333333;
}

h1.hidden {
	display:block;
	height:1px;
	overflow:hidden;
	margin:0;
}

h1, h2, h3 {
	display:inline-block;
	font-weight:700;
}

h1, h2 {
	font-size:3.4em;
	line-height: 1;
    margin-bottom: 20px;
	color:#000000;
}

h3 {
	font-size:2.6em;
	line-height:1.2;
}

p {
	font-size:1.6em;
	line-height:1.6;
	margin-bottom:25px;
}

p.lead {
	font-size:1.8em;
	line-height:1.6;
	margin-bottom:30px;
}

p strong {
	font-weight:700;
}

p a {
	color:#29ABE2;
	text-decoration:underline !important;
}

/* FONT OPTIONS - ALIGNMENT */

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

/* FONT OPTIONS - COLOR */

.color-blue {
	color:#0062A8;
}

/* FONT OPTIONS - WEIGHT */

.font-light {
	font-weight:500;
}

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

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

	h1, h2 {
		font-size:3em;
		font-weight:800;
	}

	h3 {
		font-size:2em;
	}

}

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

	h1, h2 {
		font-size:1.8em;
	}

	h3 {
		font-size:1.6em;
	}

	p.lead {
		font-size:1.5em;
	}

	p {
		font-size:1.4em;
	}

}

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

body, html {
	height:100%;
}

body {
	background-color:#1D252D;
	padding-top:120px;
}

.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:12rem 15px 10rem;
    margin:0 auto;
    max-width:1140px;
}

section + section {
	padding-top:0;
}

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

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

/* IMAGE GRID */

.image-grid {
	display:grid;
	grid-gap:1em;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.image-grid img {
	width:100%;
	height:auto;
	border-radius:10px;
}


/* FLEXBOX PRESETS */

div[class*="flexbox-"] {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 30px);
	margin-left:-15px;
	margin-right:-15px;
}

.flexbox-freesize {
  	justify-content: flex-start;
}

.flexbox-absolute-center {
	flex-direction: column;
  	justify-content: center;
	align-items: center;
}

.flexbox-justified {
  	justify-content: space-between;
}

.flexbox-centered {
    justify-content: center;
}

/* FLEX FOUR (4 COLUMNS) */

div[class*="flexbox-"].flex-four {
    width: calc(100% + 0.8%);
    margin-left: -0.4%;
    margin-right: -0.4%;
}

.flex-four > div {
	flex: 1 1 24.2%;
	margin:0 0.4% 3rem;
	min-width:270px;
	max-width:300px;
}

.flex-four .image-wrapper {
	display:flex;
	align-items: flex-end;
	width:100%;
	margin-bottom:15px;
}

.flex-four img {
	margin:0 auto;
}

.flex-four span {
	display:block;
	font-size:1.6rem;
	line-height:1.4;
}

.flex-four strong {
	font-weight:700;
}

/* FLEX FOUR (4 COLUMNS) - GALLERY FORMAT */

.flex-four.gallery > div {
	margin-bottom:0.8%;
	min-width:220px;
	max-width:300px;
}

.flex-four.gallery img {
	width:100%;
	height:auto;
	border-radius:10px;
}

/* LAYOUT OPTIONS - BACKGROUND COLOR */

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


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

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

	body {
		padding-top:80px;
	}

}

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

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

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



	/* FLEX FOUR (4 COLUMNS) */

	.flex-four > div {
		margin-bottom:7rem !important;
	}

	.flex-four .image-wrapper {
		height:auto !important;
	}

}

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

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

#header {
    position:fixed;
    top:0;
    left:0;
    background:#ffffff;
    z-index:101;
}

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

}

/* HEADER MAIN */

#header-main {
	display: flex;
	align-items: center;
  	height:120px;
  	padding-top:20px;
	transition: all 200ms;
}

/* HEADER WAVES */

#header-waves {
	display:block;
	position:absolute;
	bottom:-35px;
	left:0;
	right:0;
	width:100%;
	height:40px;
	background: url(../images/waves.svg) no-repeat center top;
	background-size: 105%;
}

/* HEADER LOGO */

#header a#logo {
    display:inline-block;
    flex: 0 0 175px;
    z-index:10;
	transition: all 200ms;
}

#header a#logo img {
	width:100%;
	height:auto;
	transition: all 200ms;
}

/* HEADER NAVIGATION */

#header-navigation {
	display: -ms-flexbox;
	display: flex;
  	flex-direction: column;
  	padding-left:2rem;
	transition: all 200ms;
}

/* HEADER COMPANY NAME / SLOGAN */

#company-name-mobile,
#header-company-name {
	margin-bottom:5px;
}

#company-name-mobile {
	transition: all 200ms;
}

#company-name-mobile h3,
#header-company-name h3 {
	color:#1B1464;
}

#company-name-mobile span,
#header-company-name span {
	font-size:1.2rem;
	font-weight:500;
}

#company-name-mobile {
	display:none;
	text-align:center;
	padding-right:50px;
	width:100%;
}

#company-name-mobile h3 {
	font-size:1.4em;
	margin-bottom:0;
}

/* HEADER NAVIGATION LINKS */

ul#main-navigation {
	display:block;
	width:100%;
}

ul#main-navigation a {
	display:block;
	font-size:1.4rem;
	white-space: nowrap;
	outline:none;
	font-weight:500;
	transition: all 200ms;
}

ul#main-navigation > li > a {
	line-height:1.6;
	color:#000000;
}

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

ul#main-navigation > li:last-child {
	margin-right:0;
}

ul#main-navigation > li.dropdown {
	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;
}

/* HEADER SUBNAVIGATION */

ul.header-subnavigation {
	position:absolute;
	display:block;
	top:30px;
	left:-20px;
	background:#ffffff;
	padding:1rem 2rem;
	z-index:10;
	border-radius:10px;
    box-shadow: 0 6px 6px -2px rgba(0,0,0,0.2);
	transform: scaleY(0);
	transform-origin: top;
	transition: all 200ms;
}

ul.header-subnavigation li a {
	line-height:2.4;
	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:0;
	right:15px;
	display:none;
	width:40px;
	height:40px;
	padding:13px 11px;
	margin:26px 0;
	cursor:pointer;
	background:#1D4185;
    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:#ffffff;
}

#header.mobile-nav-active a#expand-nav span {
	background-color:#000000;
}

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 COMPACT (ON ONSCROLL) */

#header.compact #header-company-name {
	transform: scaleY(0);
	transform-origin: center;
	pointer-events: none;
	height:0;
}

#header.compact:not(.mobile-nav-active) #header-main {
    height: 80px;
    padding-top: 10px;
}

/* HEADER COMPACT LOGO */

#header.compact:not(.mobile-nav-active) a#logo img {
	width:130px;
}

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

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

	/* HEADER NAVIGATION */

	ul#main-navigation > li > a {
		font-size:1.2vw;
	}

	ul#main-navigation > li {
		margin:0 0.9rem 0 0;
	}

	/* HEADER COMPANY NAME / SLOGAN */

	#header-company-name h3 {
		font-size:2.3vw;
	}
}

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

	/* HEADER */

	#header #header-main {
	  	height:100px;
	  	padding-top:10px;
	}

}

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

	/* HEADER */

	#header #header-main {
	  	padding-top:0;
	}

	/* HEADER LOGO */

	#header a#logo {
	    flex: 0 0 150px;
	    padding-top:5px;
	}

	#header a#logo img {
	    width:150px;
	}

	/* HEADER COMPANY NAME / SLOGAN */

	#header-company-name {
		display:none;
	}

	#company-name-mobile {
		display:block;
	}

	/* HEADER EXPAND BUTTON FOR MOBILE */

	a#expand-nav {
		display:block;
	}

	/* HEADER SUBNAV */

	#header .header-subnav section {
	    padding:0;
	}

	.header-subnav {
		position:relative;
		top:0;
		background:none;
		transform: none;
	}

	/* HEADER NAVIGATION */

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

	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;
	}

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

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

	/* THIS ADDS A "+" ICON ON EXPANDABLE DROPDOWN LINKS IN MOBILE SCREENS (DISABLED)
	ul#main-navigation > li.dropdown > a:after {
		content: "\002B";
		display:inline-block;
		font-size:1.2em;
		color:#000000;
		width:20px;
		height:20px;
		margin-left:5px;
		border-radius:100%;
		background-color:#ffffff;
		text-align:center;
		line-height: 0.9;
		transition: all 200ms;
	}

	ul#main-navigation > li.dropdown > a.active:after {
		content: "\2212";
		background-color:#ffc318;
	}
	*/

	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 NAVIGATION BACKGROUND DECORATION */

	#header.mobile-nav-active #header-navigation:before,
	#header.mobile-nav-active #header-navigation:after {
		display:block;
	}

	/* 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:block;
		font-size:1.8em;
		font-weight:500;
		line-height:30px;
		color:#d6d6d6;
		padding:0 15px;
	}

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

	/* HEADER COMPACT (ON ONSCROLL) */

	#header.compact:not(.mobile-nav-active) #header-main {
	    height: 80px;
	    padding-top: 0;
	}

	/* HEADER COMPACT LOGO */

	#header.compact:not(.mobile-nav-active) a#logo img {
		width:120px;
	}

	/* HEADER COMPACT EXPAND BUTTON FOR MOBILE */

	#header.compact:not(.mobile-nav-active) a#expand-nav {
		margin:20px 0;
	}

}

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

	/* HEADER */

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

	/* HEADER LOGO */

	#header a#logo {
	    flex: 0 0 120px;
	}

	#header a#logo img {
		width:120px;
	}

	/* HEADER EXPAND BUTTON FOR MOBILE */

	a#expand-nav {
		margin:20px 0;
	}

	/* HEADER COMPANY NAME / SLOGAN */

	#company-name-mobile {
		display:none;
	}

	/* HEADER NAVIGATION */

	ul#header-navigation > li {
		text-align:left;
	} 

	ul#header-navigation > li > a {
		display:block;
		font-size: 1.8em;
	}

	ul#header-navigation > li.dropdown.limit-height {
		max-height:45px !important;
	}

	ul#header-navigation > li.dropdown > a {
	    margin-left: 0;
	}

	ul#header-navigation > li.dropdown > a:after {
		width:16px;
		height:16px;
	}

	/* HEADER SUBNAVIGATION */

	ul.header-subnavigation li a {
		font-size: 1.6em;
	}

	/* HEADER COMPACT LOGO */

	#header.compact:not(.mobile-nav-active) a#logo img {
		width:120px;
	}

}

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

/* GENERAL CLASS */

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

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

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

/* FIXED ICONS */

.fixed-icons {
	position:fixed;
	right:65px;
	display:block;
	width:55px;
	height:55px;
	color:#000000;
	transition: all 200ms;
}

.fixed-icons span {
	position:absolute;
	top:-25px;
	display:none;
	border:1px solid #cccccc;
	background-color:#ffffff;
	font-size:1.2rem;
	text-align:center;
	height:25px;
	line-height:22px;
	padding:0 7px;
	border-radius:4px;
	white-space: nowrap;
}

.enable-hover .fixed-icons:hover span {
	display:inline-block;
}

.fixed-icons span:before {
	position:absolute;
	left:40%;
	bottom:-7px;
	content: "";
	width: 10px; 
	height: 7px;
	background:url(../images/bubble-tail.png) no-repeat center top;
}

/* BACK TO TOP ICON */

#back-top {
	display:grid;
	bottom:135px;
	opacity:0;
	pointer-events: none;
}

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

#back-top div {
	display:block;
	width:40px;
	height:40px;
	margin:auto;
	border-radius:100%;
	background: #cccccc url(../images/back-top.png) no-repeat center center;
	transition: background-color 200ms;
}

#back-top span {
	left:-5px;
}

#back-top:hover div {
	background-color:#29ABE2;
}

/* CHAT ICON */

#chat {
	bottom:40px;
	background:url(../images/chat-with-us.svg) no-repeat center center;
}

#chat span {
	left:-15px;
}

/* FIXED ICONS RESPONSIVE CSS */

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

	.fixed-icons {
		right:5px;
	}

}

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

	.fixed-icons {
		width:40px;
		height:40px;
		right:0;
	}

	.enable-hover .fixed-icons:hover span,
	.fixed-icons span {
		display:none;
	}

	/* BACK TO TOP ICON */

	#back-top {
		bottom:60px;
		display:block;
	}

	#back-top div {
		width:40px;
		height:40px;
		border-radius:0;
	}

	/* CHAT ICON */

	#chat {
		bottom:20px;
		width:40px;
		height:40px;
		background:#42E55F url(../images/phone.svg) no-repeat center center;
	}

}

/* INFO TABLE */

table.info-table {
	width:100%;
}

table.info-table tbody tr:nth-child(even) td {
	background-color:#fafafa;
}

table.info-table.dark tbody tr:nth-child(even) td {
	background-color:#EBEBEB;
}

table.info-table td {
	padding:8px 10px;
	text-align:left;
	font-size:1.6rem;
	line-height:1.2;
	color:#000000;
}

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

/* LINKS AND BUTTONS */

a.link-btn {
	display:inline-block;
    font-size:1.3rem;
    font-weight:500;
    line-height:3;
    color:#0062A8;
    padding:0 1.5rem;
    border-radius:25px;
    border:2px solid #0062A8;
	transition: all 200ms;
}

.enable-hover a.link-btn:hover {
	border-color:#0062A8;
	color:#ffffff;
	background:#0062A8;
}

a.back-btn {
	position:relative;
    display:inline-block;
    font-size:1.6em;
    font-weight:500;
    line-height:2.5;
    color:#000000;
    padding:0 25px 0 40px;
    border-radius:4px;
    border:1px solid #CCCCCC;
}

a.back-btn,
a.back-btn img {
	transition: all 200ms;
}

a.back-btn img {
	position: absolute;
    top: 12px;
    left: 25px;
}

.enable-hover a.back-btn:hover {
	background-color:#f00;
	color:#ffffff;
}

.enable-hover a.back-btn:hover img {
	filter: brightness(0) saturate(100%) invert(100%) sepia(45%) saturate(2%) hue-rotate(305deg) brightness(105%) contrast(101%);
}

/* LIST STYLE - CLEAR LIST */

ul li.clear-list {
	clear:both;
	float:none;
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	border:none;
	background:none;
}

ul li.clear-list:before,
ul li.clear-list:after {
	display:none;
}

/* 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 button {
	background-color:#ffffff;
}

.slick-dots li.slick-active button {
	background-color: #12D6C3;
	border: 1px solid #12D6C3;
}

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

.carousel-arrow {
	top:25%;
    width: 40px;
    height: 40px;
    background:#ffffff;
}

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

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

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

.carousel-arrow.slick-next:not(.slick-disabled):hover,
.carousel-arrow.slick-prev:not(.slick-disabled):hover {
    background:#29ABE2;
}

.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 10rem;
}

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

.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:before {
	content:"\203A";
	display:inline-block;
	font-size:2rem;
	vertical-align: sub;
	margin-right:3px;
}

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

/* ADD MORE SPACING BETWEEN CAROUSEL AND HEADING */
header + div.carousel {
	margin-top:20px;
}

.enable-hover .carousel a:hover span,
.enable-hover .carousel a:hover:before {
	color:#29ABE2;
}

/** SLICK SLIDER CAROUSEL RESPONSIVE CSS
*****************************************************************************************************/

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

	/* SLICK SLIDER CAROUSEL */

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

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

}

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

	/* SLICK SLIDER CAROUSEL */

	.carousel-arrow {
		top:30%
	}

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

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

}

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

#home-introduction section,
#home-our-services section {
	padding: 8rem 15px 6rem;
}

#home-introduction h1,
#home-introduction h2,
#home-our-services h1,
#home-our-services h2 {
	margin-bottom:30px;
}

/* HOME - MAIN SLIDER */

#home-slider-container #slider-image-placeholder {
	width:100%;
	height:auto;
	min-height:300px;
	visibility:hidden;
}

#home-slider {
	position:fixed;
	top:80px;
	left:0;
	width:100vw;
	z-index:1;
}

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

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

#home-slider .slick-next,
#home-slider .slick-prev {
    width: 60px;
    height: 60px;
    background:#000000;
    opacity:0.1;
}

#home-slider .slick-next:before,
#home-slider .slick-prev:before {
	width:18px;
	height:60px;
	margin:0 auto;
	filter: brightness(0) invert(1);
	background-size:18px 32px;
}

#home-slider .slick-next:hover,
#home-slider .slick-prev:hover {
	opacity:1;
}

#home-slider .slick-track {
	max-height:750px;
	overflow:hidden;
}

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

#home-slider .slick-dots {
	bottom:7%;
}

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

@media only screen and (min-width: 1200px) {

	/* HOME - MAIN SLIDER */
	#home-slider .slick-slide img{
		width:100.5%;
	}

}

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

	/* HOME - MAIN SLIDER */

	#home-slider {
		top:80px;
	}

	#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:14px;
		height:50px;
		background-size:14px 26px;
	}

}

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

	/* HOME - MAIN SLIDER */

	#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-introduction section,
	#home-our-services section {
		padding: 4rem 15px 6rem;
	}

	/* HOME - MAIN SLIDER */

	#home-slider .slick-slide img {
		margin-left: calc((100vw - 600px) / 2);
		min-width:600px;
		min-height:250px;
	}

}

/* SECTIONS - ABOUT US
----------------------------------------------------------------------------------------------------*/

#organization-chart h1 {
	margin-bottom:50px;
}

#organization-chart-mobile {
	display:none;
}

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

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

	#organization-chart h1 {
		margin-bottom:20px;
	}

	#organization-chart-desktop {
		display:none;
	}

	#organization-chart-mobile {
		display:block;
	}

}

/* SECTIONS - HSE POLICY
----------------------------------------------------------------------------------------------------*/

#hse-policy-flexbox {
	margin:8rem -15px 0;
}

#hse-policy-flexbox > div {
	position:relative;
	flex: 1 0 30.3%;
	min-width:250px;
	max-width:350px;
	margin:0 1.5% 5rem;
	text-align:center;
}

#hse-policy-flexbox > div > div {
	padding:55px 30px 30px;
	background:#ffffff;
	border-radius:10px;
	box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);
	height:100%;
}

#hse-policy-flexbox .number {
	display:block;
	width:60px;
	height:60px;
	background-color:#12D6C3;
	border-radius:100%;
	font-size:3.6rem;
	color:#ffffff;
	line-height:1.8;
	margin: -75px auto 20px;
}

#hse-policy-flexbox p {
	display:block;
	margin-bottom:0;
	color:#000000;
}

/** SECTIONS - HSE POLICY RESPONSIVE CSS
*****************************************************************************************************/

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

	#hse-policy-flexbox > div {
		max-width:100%;
		margin:0 15px 5rem;
	}

}

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

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

.services-carousel .slick-slide {
	margin: 0 0.5rem 3.5rem;
}

/* CLASS "services-carousel-dots" IS ADDED FROM JS ON CAROUSEL INIT */
.services-carousel-dots li button {
	background-color:#E6E6E6;
	border:1px solid #E6E6E6;
}

/* SECTIONS - REGISTRATION & LICENSE
----------------------------------------------------------------------------------------------------*/

#registration-license h1 {
	margin-bottom:10rem;
}

#registration-license  .flex-four > div {
	margin-bottom:12rem;
}

#registration-license .flex-four .image-wrapper {
	height:135px;
}

/* AWARDS */

#awards section {
	padding-top:0;
}

#awards h2 {
	margin-bottom:10rem;
}

#awards .flexbox-centered > div {
	margin:0 1.5rem 10rem;
}

#awards .flexbox-centered img {
	margin-bottom:15px;
}

#awards .flexbox-centered span {
	display:block;
	font-size:1.6rem;
	line-height:1.4;
}

#awards .flexbox-centered strong {
	font-weight:700;
}

/* SECTIONS - REGISTRATION & LICENSE RESPONSIVE CSS
**************************************************************************************/

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

	/* AWARDS */

	#awards .flexbox-centered > div {
		margin:0 0 10rem;
	}


	#awards .flexbox-centered img {
		width:100%;
		height:auto;
	}

}

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

	/* REGISTRATION & LICENSE  + AWARDS */

	#registration-license h1,
	#awards h2 {
		margin-bottom:5rem;
	}

	/* AWARDS */

	#awards .flexbox-centered > div {
		margin-bottom:7rem;
	}

}

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

#facilities h2 {
	margin-bottom:30px;
}

#facilities table.info-table {
	width:calc(100% - 4rem);
	margin:3rem auto 0;
}

/* SECTIONS - FACILITIES RESPONSIVE CSS
**************************************************************************************/

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

	#facilities table.info-table {
		width:100%;
	}

}

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

	#facilities table.info-table td {
		display:block;
		width:100%;
	}

	#facilities table.info-table thead {
		display:none;
	}

	#facilities table.info-table tbody td:not(:last-child) {
		padding-bottom:0;
	}

	#facilities table.info-table tbody td + td {
		padding-top:4px;
	}

	#facilities table.info-table tbody td:before {
		display:inline-block;
		font-weight:700;
		margin-right:6px;
	}

	#facilities table.info-table tbody tr td:last-child {
		border-bottom:1px solid #E6E6E6;
	}

	#facilities table.info-table tbody td:first-child:before {
		content: "Type:";
	}

	#facilities table.info-table tbody td:last-child:not(:first-child):before {
		content: "Units:";
	}

}

/* SECTIONS - CLIENTS
----------------------------------------------------------------------------------------------------*/

#clients h1 {
	margin-bottom:5rem;
}

#clients .flex-four .image-wrapper {
	height:125px;
}

/* SECTIONS - PROJECTS
----------------------------------------------------------------------------------------------------*/

.projects h2 {
	margin-bottom:40px;
}

.projects table.info-table td:first-child,
.projects table.info-table td:nth-child(2) {
	padding-right:2rem;
}

/* SECTIONS - PROJECTS RESPONSIVE CSS
**************************************************************************************/

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

	.projects table.info-table td {
		display:block;
		width:100%;
	}

	.projects table.info-table td:first-child,
	.projects table.info-table td:nth-child(2) {
		padding-right:10px;
	}

	.projects table.info-table thead {
		display:none;
	}

	.projects table.info-table tbody td:not(:last-child) {
		padding-bottom:0;
	}

	.projects table.info-table tbody td + td {
		padding-top:4px;
	}

	.projects table.info-table tbody td:before {
		display:inline-block;
		font-weight:700;
		margin-right:6px;
	}

	.projects table.info-table tbody tr td:last-child {
		border-bottom:1px solid #E6E6E6;
	}

	.projects table.info-table tbody tr:last-child  td:last-child {
		border-bottom:none;
	}

	.projects table.info-table tbody td:first-child:before {
		content: "Project:";
	}

	.projects table.info-table tbody td:nth-child(2):before {
		content: "Duration:";
	}

	.projects table.info-table tbody td:last-child:before {
		content: "Client:";
	}

}

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

#contact-us section {
	padding: 10rem 15px;
}

#contact-us-flexbox {
	width: 100%;
    margin-left: 0;
    margin-right: 0;
}

#contact-us-flexbox > div {
	flex: 0 0 50%;
	max-width: 50%;
}

#contact-us-flexbox > div section {
	padding:0;
}

#contact-us-flexbox h1,
#contact-us-flexbox h2 {
	margin-bottom:20px;
}

#contact-details p.lead {
	color:#000000;
	margin-bottom:15px;
}

#contact-details p {
	line-height:1.4;
}

#contact-details p.address strong {
	display:block;
}

#contact-details p.contact strong {
	display:inline-block;
	color:#4d4d4d;
	margin-right:5px;
}

/* GOOGLE MAPS */

#map-canvas {
	width:100%;
	height:600px;
}

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

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

	#contact-us-flexbox > div {
		flex: 0 0 100%;
		max-width: 100%;
	}

	#contact-details {
		margin-bottom:3rem;
	}

}

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

	#contact-us section {
		padding: 4rem 15px 6rem;
	}

}


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

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

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

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

#ajax-form-container .left-column,
#ajax-form-container .right-column {
	display:block;
	width:49%;
	margin-bottom:15px;
}

#ajax-form-container .left-column {
	float:left;
}

#ajax-form-container .right-column {
	float:right;
}

#ajax-form-success-message {
	padding:20px 0 0;
}

#ajax-form.hide,
#ajax-form-success-message.hide {
	display:none;
}

#ajax-form-success-message p {
	text-align: center;
    background-color: #49c58c;
    padding: 15px;
    color: #ffffff;
    border-radius: 4px;
}

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

.form-row {
	margin-bottom:10px;
	justify-content: flex-start;
}

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

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

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

.form #captcha.field {
	overflow:hidden;
}

.form label {
	display:block;
	font-size:1.6em;
	font-weight:500;
	line-height:1;
	margin-bottom:6px;
}

.form-control {
	display:block;
    height:25px;
	width:100%;
	padding:0 15px;
	border-top:none;
	border-left:none;
	border-right:none;
	border-bottom:1px solid #E6E6E6;
	background-color:#ffffff;
	background-clip: padding-box;
    font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size:1.5em;
    font-weight:400;
	line-height:40px;
    color:#4d4d4d;
	outline:none;
}

textarea.form-control {
	border:1px solid #E6E6E6;
	height:140px;
    border-radius: 8px;
} 

select.form-control {
	padding: 0 12px;
	width:200px;
}

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

.form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: #80bdff;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

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

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

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

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

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

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

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

textarea.form-control {
	padding:10px 15px;
	line-height:1.3;
}

.form div#spamtrap {
	visibility:hidden
}

.form .error {
	position:relative;
	display:block;
	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 {
	display:block;
	clear:both;
	font-size:1.2em;
	line-height:2;
	padding:0;
	margin:0;
    color:#f00;
}

.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 15px;
    font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size:1.3rem;
    font-weight:500;
    border:none;
    height:40px;
    width:auto;
    min-width:inherit;
    display:inline-block;
    color:#0062A8;
	cursor:pointer;
	border-radius:25px;
	border:2px solid #0062A8;
    -webkit-appearance: none;
    -moz-appearance: none;
	transition: all 200ms;
}

.form .button:hover {
	border-color:#0062A8;
	color:#ffffff;
	background:#0062A8;
}

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

#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%);
}

/* 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;
}

.enable-hover .animated {
	opacity:0;
}

.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:#1D252D;
    text-align:center;
}

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

/* FOOTER COPYRIGHT */

#footer p {
	font-size:1.4em;
	color:#cccccc;
	margin:0;
	line-height:1.6;
}

#footer p span {
	display:block;
}

#footer p span,
#footer p span a {
	color:#1D252D;
}

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

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

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

	#footer p {
		font-size:1.2em;
	}

}

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

	#footer p {
		font-size:1.1em;
	}

	#footer p span {
		margin-top:5px;
	}

}
