html {
	background: white;
}

body {
	font-family: Calibri, Open Sans, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #656565;
	padding: 52px 0 0 0;
	min-width: 320px;
	background: white;
}

::selection {
	background: #01374e; /* WebKit/Blink Browsers */
	color: white;
}

::-moz-selection {
	background: #01374e; /* Gecko Browsers */
	color: white;
}

:root {
	font-size: 14px;
}

* {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.full-wrapper {
	width: 100%;
	overflow: hidden;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
}

:focus,
:active {
	outline: 0 !important;
}

strong {
	font-weight: 700;
}

#wpadminbar {
	position: fixed;
}

p,
ul,
ol {
	line-height: 1.5em;
}

a.button,
section.main article a.button {
	display: inline-block;
	margin: 2em 0 0;
	background: #0bb5d5;
	color: white;
	padding: 0.5em 2em;
	color: white;
	font-weight: 700;
	text-decoration: none;
}

a.button:hover,
section.main article a.button:hover {
	background: #33cbe8;
}

a.button.older-posts {
	background: white;
	border: 1px solid #cccccc;
	padding: 1em 2em;
	color: #01374e;
	font-weight: 400;
	position: relative;
}

a.button.older-posts.loading:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
}

a.button.older-posts.loading:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	margin-left: -8px;
	-webkit-animation: spin 1s linear infinite;
	-o-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
	border: 2px solid currentColor;
	border-top-color: white;
	border-radius: 50%;
}

@keyframes spin {
	to {
		-webkit-transform: rotateZ(360deg);
		-ms-transform: rotateZ(360deg);
		-o-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}

header {
	background: white;
	color: #353535;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.admin-bar header {
	margin-top: 46px;
}

header .container:after {
	content: "";
	display: block;
	clear: left;
}

header a.logo,
header a.custom-logo-link {
	float: left;
	height: 60px;
	padding: 14px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

header a.logo img,
header a.custom-logo-link img {
	display: block;
	width: auto;
	height: 32px;
}

.nav-opener {
	display: block;
	position: absolute;
	top: 6px;
	right: 6px;
	width: 40px;
	height: 40px;
	color: inherit;
	text-decoration: none;
	-webkit-transition: all 0.5s;
	-webkit-transition-delay: 2s;
	-o-transition: all 0.5s;
	-o-transition-delay: 2s;
	transition: all 0.7s;
	transition-delay: 0.3s;
	z-index: 11 !important;
}

.nav-opener i {
	display: block;
	position: absolute;
	top: 50%;
	left: 25%;
	width: 50%;
	height: 2px;
	background: currentColor;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.nav-opener i:first-of-type {
	top: 35%;
}
.nav-opener i:last-of-type {
	top: 65%;
}

.nav-open .nav-opener i {
	opacity: 0;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

.nav-open .nav-opener i:first-of-type {
	opacity: 1;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
	top: 50%;
}

.nav-open .nav-opener i:last-of-type {
	opacity: 1;
	-webkit-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	-o-transform: rotate(225deg);
	transform: rotate(225deg);
	top: 50%;
}

nav.main {
	position: fixed;
	top: 0;
	left: 100%;
	width: 270px;
	height: 100%;
	background: white;
	padding: 2em 1em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: default;
}

@media (max-width: 959px) {
	header,
	.full-wrapper,
	nav.main,
	#wpadminbar {
		-webkit-transition: margin 0.5s;
		-o-transition: margin 0.5s;
		transition: margin 0.5s;
	}

	.nav-open header,
	.nav-open .full-wrapper,
	.nav-open nav.main,
	.nav-open #wpadminbar {
		margin-left: -270px;
	}
}

nav.main ul {
	list-style: none;
	display: block;
	padding: 0;
	margin: 0 0 1.5em 0;
	font-weight: 300;
	font-size: 20px;
	line-height: inherit;
}

nav.main ul li {
	list-style: none;
	display: block;
	padding: 0;
	margin: 0;
}

nav.main ul li a {
	display: block;
	padding: 0.15em 0.5em;
	color: inherit;
	text-decoration: none;
}

nav.main ul li:last-of-type a {
	color: #0bb5d5;
}

nav.main ul li a:active {
	background: rgba(0, 0, 0, 0.1);
}

nav.main a.telephone {
	color: inherit;
	text-decoration: none;
	line-height: 1.5em;
	margin: 0 0 0 0.5em;
	color: #0e76bc;
	font-size: 24px;
	font-weight: 700;
}

header .fch-logo {
	display: none;
}

@media (min-width: 783px) {
	.admin-bar header {
		margin-top: 32px;
	}
}

@media (min-width: 960px) {
	body {
		padding: 100px 0 0 0;
	}

	header {
		padding: 0 2em;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		height: 100px;
	}

	header .container {
		height: 100px;
	}

	header a.logo,
	header a.custom-logo-link {
		margin: 21px 14px;
		padding: 0;
		height: 52px;
		-webkit-transition: height 0.5s, margin 0.5s;
		-o-transition: height 0.5s, margin 0.5s;
		transition: height 0.5s, margin 0.5s;
	}

	header a.logo img,
	header a.custom-logo-link img {
		height: 100%;
	}

	.scrolled header a.logo,
	.scrolled header a.custom-logo-link {
		height: 26px;
		margin: 9px 14px;
	}

	header,
	header .container {
		-webkit-transition: height 0.25s;
		-o-transition: height 0.25s;
		transition: height 0.25s;
	}

	.scrolled header,
	.scrolled header .container {
		height: 44px;
		-webkit-transition: height 0.5s;
		-o-transition: height 0.5s;
		transition: height 0.5s;
	}

	.nav-opener {
		display: none;
	}

	nav.main {
		position: absolute;
		top: auto;
		bottom: 50%;
		left: auto;
		right: 80px;
		padding: 0 1em;
		white-space: nowrap;
		width: auto;
		height: auto;
		height: 44px;
		line-height: 44px;
		margin-bottom: -22px;
		-webkit-transition: right 0.5s;
		-o-transition: right 0.5s;
		transition: right 0.5s;
	}

	.scrolled nav.main {
		right: 14px;
	}

	nav.main ul {
		margin: 0;
		font-size: 16px;
		overflow: hidden;
	}

	nav.main ul li {
		display: block;
		float: left;
		margin: 0 0 0 1.5em;
	}

	nav.main ul li a {
		padding: 0;
		position: relative;
	}

	nav.main ul li a:after {
		content: "";
		display: block;
		position: absolute;
		bottom: 50%;
		left: 50%;
		width: 0;
		border-bottom: 2px solid currentColor;
		margin-bottom: -0.75em;
		-webkit-transition: left 0.2s, width 0.2s;
		-o-transition: left 0.2s, width 0.2s;
		transition: left 0.2s, width 0.2s;
	}

	nav.main ul li a:hover:after {
		width: 100%;
		left: 0;
	}

	nav.main ul li a:active {
		background: transparent;
	}

	nav.main .pointer {
		display: block;
		position: absolute;
		bottom: 0.5em;
		left: 0;
		width: 100px;
		background: currentColor;
		height: 0.25em;
		-webkit-transition: opacity 0.5s, all 0.1s;
		-o-transition: opacity 0.5s, all 0.1s;
		transition: opacity 0.5s, all 0.1s;
		-webkit-transition-delay: 0.5s;
		-o-transition-delay: 0.5s;
		transition-delay: 0.5s;
		opacity: 0;
	}

	nav.main.show-pointer .pointer {
		opacity: 1;
		-webkit-transition-delay: 0s;
		-o-transition-delay: 0s;
		transition-delay: 0s;
	}

	header .fch-logo {
		display: block;
		position: absolute;
		top: 20px;
		right: 14px;
		width: 60px;
		height: auto;
		-webkit-transition: transform 0.5s;
		-o-transition: transform 0.5s;
		transition: transform 0.5s;
		-webkit-transition-delay: 0.5s;
		-o-transition-delay: 0.5s;
		transition-delay: 0.5s;
	}

	.scrolled header .fch-logo {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		-o-transform: scale(0);
		transform: scale(0);
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
		-webkit-transition-delay: 0s;
		-o-transition-delay: 0s;
		transition-delay: 0s;
	}
}

section.banner {
	z-index: 2;
	position: relative;
}

section.banner,
section.banner * {
	-webkit-backface-visibility: visible;
	-moz-backface-visibility: visible;
	-ms-backface-visibility: visible;
	backface-visibility: visible;
}

section.banner .slides {
	position: relative;
}

section.banner .slides:before {
	content: "";
	display: block;
	padding: 50% 0 0 0;
}

section.banner .slides .slide {
	width: 100%;
	position: absolute;
	height: 100%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	top: 0;
	left: 0;
	color: white;
}

section.banner .slides .slide .slide-t {
	display: table;
	width: 100%;
	height: 100%;
	position: relative;
}

section.banner .slides .slide .slide-t:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(1, 55, 78, 0.4);
	mix-blend-mode: multiply;
	z-index: 1;
}

section.banner .slides .slide .slide-t .slide-tc {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	position: relative;
	z-index: 2;
}

section.banner h1 {
	color: white;
	font-weight: 700;
	font-size: 24px;
	text-align: center;
	padding: 0 2em;
	line-height: 1.25em;
	margin: 0;
}

section.banner a.next,
section.banner a.prev {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 15%;
	height: 100%;
	z-index: 1000;
	color: white;
	text-decoration: none;
	font-size: 30px;
}

section.banner a.next {
	left: auto;
	right: 0;
}

section.banner a.next:before,
section.banner a.prev:before {
	content: "<";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	text-align: center;
	height: 2em;
	line-height: 2em;
	margin-top: -1em;
	color: white;
}

section.banner a.next:before {
	content: ">";
}

@media (min-width: 768px) {
	section.banner .slides:before {
		padding: 30% 0 0 0;
	}

	section.banner h1 {
		font-size: 36px;
	}

	section.banner a.next,
	section.banner a.prev {
		width: 10%;
		font-size: 40px;
	}
}

@media (min-width: 1280px) {
	section.banner .slides {
		height: 480px;
	}

	section.banner .slides:before {
		display: none;
	}

	section.banner h1 {
		font-size: 42px;
	}

	section.banner a.next,
	section.banner a.prev {
		width: 7.5%;
		font-size: 60px;
	}
}

section.page-title {
	padding: 2em 1em;
	text-align: center;
	z-index: 2;
	position: relative;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	color: white;
}

section.page-title:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(1, 55, 78, 0.4);
	mix-blend-mode: multiply;
	z-index: 1;
}

section.page-title .container {
	position: relative;
	z-index: 2;
}

section.page-title h1 {
	color: white;
	font-weight: 700;
	font-size: 24px;
	text-align: center;
	padding: 0 2em;
	line-height: 1.25em;
	margin: 0;
}

@media (min-width: 768px) {
	section.page-title {
		padding: 4em 2em;
	}

	section.page-title h1 {
		font-size: 36px;
	}
}

@media (min-width: 1280px) {
	section.page-title {
		padding: 6em 2em;
	}

	section.page-title h1 {
		font-size: 42px;
	}
}

section.text {
	background: white;
	padding: 2em;
	text-align: center;
}

section.text .container {
	max-width: 28em;
}

section.text p.intro {
	font-size: 1.2em;
}

@media (min-width: 768px) {
	section.text {
		font-size: 16px;
	}
}

@media (min-width: 1280px) {
	section.text {
		font-size: 20px;
	}
}

section.chamfered {
	position: relative;
}

section.chamfered:before,
section.chamfered:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	-o-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: skewY(5deg);
	-ms-transform: skewY(5deg);
	-o-transform: skewY(5deg);
	transform: skewY(5deg);
	background: inherit;
	z-index: 1;
}

section.chamfered:after {
	-webkit-transform: skewY(-5deg);
	-ms-transform: skewY(-5deg);
	-o-transform: skewY(-5deg);
	transform: skewY(-5deg);
}

section.chamfered .container {
	position: relative;
	z-index: 2;
}

section.news-events {
	background: #effafc;
	padding: 2em;
	text-align: center;
	z-index: 1;
}

section.news-events h2 {
	font-size: 1.8em;
	margin: 0;
	color: #01374e;
}

section.news-events article {
	margin: 2em 0;
	background: white;
}

section.news-events article .image {
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
}

section.news-events article .image:before {
	content: "";
	display: block;
	padding: 60% 0 0 0;
}

section.news-events article .image img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

section.news-events article .text {
	padding: 1em;
	text-align: left;
}

section.news-events article .date {
	margin: 0 0 1em;
}

section.news-events article h3 {
	margin: 0;
	font-size: 1em;
	font-weight: 700;
	color: #01374e;
}

section.news-events article h3 a {
	text-decoration: none;
	color: inherit;
}

section.news-events article p:last-child {
	margin-bottom: 0;
}

section.news-events article a.read-more {
	color: #0bb5d5;
	text-decoration: none;
	font-weight: 700;
}

section.news-events article.tweet:before {
	content: "\e900";
	display: block;
	padding: 0.5em 20px;
	background: #0bb5d5;
	color: white;
	font-family: "zefer-icons";
	font-weight: normal;
	text-align: left;
	font-size: 20px;
}

section.news-events article.tweet a {
	color: #0bb5d5;
}

@media (min-width: 768px) {
	section.news-events .articles {
		overflow: hidden;
		margin: 2em 0;
	}

	section.news-events article {
		display: inline-block;
		width: calc(33.33% - 3em);
		margin: 0 1em;
		vertical-align: top;
	}
}

@media (min-width: 960px) {
	section.news-events article .text {
		padding: 1em 1.5em;
	}
}

@media (min-width: 1280px) {
	section.news-events {
		font-size: 20px;
	}

	section.news-events article.tweet:before {
		font-size: 28px;
		padding: 0.5em 30px;
	}

	section.news-events article a.read-more {
		font-size: 14px;
	}
}

section.stats {
	position: relative;
	background: white;
	padding: 2em;
	z-index: 1;
}

section.stats .container {
	overflow: hidden;
}

section.stats .stat {
	display: block;
	float: left;
	width: 50%;
	padding: 0 0.5em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
	margin: 2em 0;
}

section.stats .stat .icon {
	width: 100%;
	height: auto;
	display: block;
	margin: 0;
}

section.stats .stat em {
	display: block;
	font-style: normal;
	font-weight: 700;
	color: #0bb5d5;
	text-align: center;
	font-size: 36px;
}

section.stats .stat span {
	display: block;
	margin: 0 auto;
	max-width: 12.5em;
}

section.stats .stat .logo {
	display: block;
	margin: 1em auto 0;
	max-width: 80%;
}

@media (min-width: 768px) {
	section.stats {
		padding: 2em 2em 6em;
	}

	section.stats .stat {
		width: 25%;
	}
}

@media (min-width: 960px) {
	section.stats .stat em {
		font-size: 52px;
	}
}

@media (min-width: 1280px) {
	section.stats {
		font-size: 16px;
	}
}

section.project-partners {
	background: #effafc;
	padding: 2em;
	text-align: center;
}

section.project-partners h2 {
	font-size: 1.8em;
	margin: 0;
	color: #01374e;
}

section.project-partners .partner-logos {
	background: white;
	margin: 2em 0;
}

section.project-partners .partner-logos img {
	display: inline-block;
	width: 45%;
	vertical-align: middle;
	margin: 0.25em;
}

@media (min-width: 768px) {
	section.project-partners .partner-logos img {
		width: 20%;
		margin: 1em 0.25em;
	}
}

@media (min-width: 960px) {
	section.project-partners .partner-logos {
		padding: 1em 0;
	}
}

@media (min-width: 1280px) {
	section.project-partners {
		font-size: 20px;
	}
}

section.other-projects {
	background: #effafc;
	padding: 2em;
	text-align: center;
}

section.other-projects h2 {
	font-size: 1.8em;
	margin: 0 0 1em;
	color: #01374e;
}

section.other-projects article.project .image {
	display: block;
	margin: 0 0 1em;
}

section.other-projects article.project .image img {
	display: block;
	width: 100%;
	height: auto;
}

section.other-projects article.project h4 {
	font-size: 1.2em;
	font-weight: 700;
	margin: 0 0 1em;
}

section.other-projects article.project h4 a {
	color: inherit;
	text-decoration: none;
}

section.other-projects article a.read-more {
	color: #0bb5d5;
	text-decoration: none;
	font-weight: 700;
}

@media (min-width: 768px) {
	section.other-projects article.project {
		display: table;
		width: 100%;
	}

	section.other-projects article.project .image {
		display: table-cell;
		width: 55%;
		vertical-align: middle;
	}

	section.other-projects article.project .text {
		display: table-cell;
		padding: 2em;
		vertical-align: middle;
		text-align: left;
	}
}

@media (min-width: 960px) {
	section.other-projects article.project .image {
		width: 60%;
	}

	section.other-projects article.project .text {
		padding: 2em 2em 2em 4em;
	}
}

@media (min-width: 1280px) {
	section.other-projects {
		font-size: 20px;
	}

	section.other-projects article a.read-more {
		font-size: 14px;
	}
}

section.usps {
	background: white;
	padding: 2em;
	text-align: center;
}

section.usps ul.usps {
	list-style: none;
	display: block;
	padding: 0;
	margin: 0;
	text-align: center;
}

section.usps ul.usps li {
	list-style: none;
	display: block;
	padding: 0;
	margin: 1em 0 2em;
	text-align: center;
}

section.usps ul.usps li img {
	display: block;
	max-width: 120px;
	margin: 0 auto 1em;
}

section.usps ul.usps li div {
	text-align: center;
}

@media (min-width: 768px) {
	section.usps .intro {
		font-size: 1.2em;
		max-width: 30em;
		margin: 0 auto;
	}

	section.usps ul.usps li {
		display: inline-block;
		vertical-align: top;
		width: 30%;
		margin: 0;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		padding: 1em;
	}

	section.usps ul.usps li img {
		max-width: 80px;
	}
}

@media (min-width: 960px) {
	section.usps ul.usps li {
		padding: 1em 5em;
	}
}

@media (min-width: 1200px) {
	section.usps {
		font-size: 20px;
	}

	section.usps ul.usps li {
		padding: 1em 4em;
	}

	section.usps ul.usps li img {
		max-width: 120px;
	}
}

section.locations {
	text-align: center;
	background: white;
	position: relative;
	z-index: 1;
}

section.locations h2 {
	margin: 0;
	padding: 2em 1em 0;
	color: #0bb5d5;
	font-size: 1.8em;
}

section.locations img.icon {
	display: block;
	max-width: 120px;
	margin: 0 auto 1em;
}

section.locations .stat {
	position: relative;
	color: white;
	padding: 2em 1em;
	text-align: center;
	font-weight: 700;
	font-size: 20px;
}

section.locations .stat:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(1, 55, 78, 0.8);
	z-index: 1;
}

section.locations .stat .text {
	position: relative;
	z-index: 2;
}

section.locations .stat em {
	display: inline-block;
	vertical-align: baseline;
	font-size: 2em;
	font-style: normal;
	color: #0bb5d5;
}

section.locations .stat .text p {
	margin: 1em auto;
	max-width: 10.5em;
}

section.locations .location-image {
	display: none;
}

@media (min-width: 768px) {
	section.locations {
		overflow: hidden;
	}

	section.locations .container:after {
		content: "";
		display: block;
		clear: both;
	}

	section.locations:before,
	section.locations:after {
		content: "";
		display: block;
		position: absolute;
		bottom: 260px;
		left: 0;
		width: 50%;
		height: 100%;
		background: white;
		-webkit-transform-origin: 100% 100%;
		-moz-transform-origin: 100% 100%;
		-ms-transform-origin: 100% 100%;
		-o-transform-origin: 100% 100%;
		transform-origin: 100% 100%;
		-webkit-transform: skewY(5deg);
		-ms-transform: skewY(5deg);
		-o-transform: skewY(5deg);
		transform: skewY(5deg);
		z-index: 2;
		margin-left: 1px;
	}

	section.locations:after {
		left: 50%;
		-webkit-transform-origin: 0 100%;
		-moz-transform-origin: 0 100%;
		-ms-transform-origin: 0 100%;
		-o-transform-origin: 0 100%;
		transform-origin: 0 100%;
		-webkit-transform: skewY(-5deg);
		-ms-transform: skewY(-5deg);
		-o-transform: skewY(-5deg);
		transform: skewY(-5deg);
		margin-left: -1px;
	}

	section.locations .location {
		float: left;
		width: 33.33%;
	}

	section.locations .location .label {
		position: relative;
		z-index: 3;
	}

	section.locations .stat {
		display: table;
		width: 100%;
		height: 15em;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		padding: 0 1em;
	}

	section.locations .stat .text {
		display: table-cell;
		vertical-align: middle;
	}

	section.locations .location:nth-of-type(2) .stat {
		border-left: 0.25em solid white;
		border-right: 0.25em solid white;
	}
}

@media (min-width: 960px) {
	section.locations h2 {
		font-size: 2.2em;
	}

	section.locations:before,
	section.locations:after {
		bottom: 240px;
	}

	section.locations img.icon {
		max-width: 160px;
	}
}

@media (min-width: 1280px) {
	section.locations img.icon {
		max-width: 220px;
	}

	section.locations .location:nth-of-type(1) .stat,
	section.locations .location:nth-of-type(3) .stat {
		background: transparent !important;
	}

	section.locations .location:nth-of-type(1) .stat:before,
	section.locations .location:nth-of-type(3) .stat:before {
		display: none;
	}

	section.locations .location-image {
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: calc(50% - 210px);
		height: 75%;
		background-position: 50% 50%;
		background-repeat: no-repeat;
		z-index: 1;
	}

	section.locations .location-image.li-two {
		left: auto;
		right: 0;
	}

	section.locations .location-image:after {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(1, 55, 78, 0.8);
		z-index: 1;
	}

	section.locations .stat {
		z-index: 2;
	}

	section.locations:before,
	section.locations:after {
		z-index: 3;
	}

	section.locations .location .label {
		z-index: 4;
	}
}

section.refuelling-stations {
	padding: 0 1em 2em;
	/* background: white; */
	position: relative;
	margin: -0.75em 0 0;
	z-index: 2;
	text-align: center;
}

section.refuelling-stations h2 {
	background: #0bb5d5;
	color: white;
	padding: 0.5em;
	font-size: 1.8em;
	margin: 0 0 0.5em;
	position: relative;
}

section.refuelling-stations h2:after {
	content: "";
	display: block;
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -10px;
	border: 10px solid transparent;
	border-top-color: #0bb5d5;
}

section.refuelling-stations .location {
	padding: 1em 0;
}

section.refuelling-stations .location h3 {
	font-size: 1.8em;
	color: #0bb5d5;
	margin: 0;
}

section.refuelling-stations .location h4 {
	margin: 0.5em auto;
	font-size: 1em;
	color: #01374e;
}

section.refuelling-stations .location h4 img {
	display: inline-block;
	vertical-align: middle;
	max-height: 1.5em;
	width: auto;
	height: auto;
}

section.refuelling-stations .location p {
	margin: 0.5em;
}

@media (min-width: 768px) {
	section.refuelling-stations h2 {
		margin: 0;
	}

	section.refuelling-stations h2:after {
		display: none;
	}

	section.refuelling-stations .location {
		display: inline-block;
		width: 33%;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		vertical-align: top;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		padding: 2em 2em 0;
		position: relative;
	}

	section.refuelling-stations .location:before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 50%;
		margin-left: -10px;
		border: 10px solid transparent;
		border-top-color: #0bb5d5;
	}

	section.refuelling-stations .location h3 {
		display: none;
	}

	section.refuelling-stations .location h4 {
		max-width: 10em;
		margin: 0 auto 1.25em;
	}
}

@media (min-width: 1280px) {
	section.refuelling-stations {
		font-size: 20px;
		padding: 0 1em 6em;
	}
}

footer {
	background: #0bb5d5;
	padding: 2em;
	color: white;
	text-align: center;
	cursor: default;
	position: relative;
	z-index: 1;
}

nav.footer ul {
	list-style: none;
	display: block;
	padding: 0;
	margin: 0;
}

nav.footer ul li {
	list-style: none;
	display: block;
	padding: 0;
	margin: 0;
}

nav.footer ul li a {
	color: white;
	text-decoration: none;
}

footer ul.social {
	list-style: none;
	display: block;
	padding: 0;
	margin: 1em 0 0;
}

footer ul.social li {
	list-style: none;
	display: inline-block;
	padding: 0;
	margin: 0 0.25em;
}

footer ul.social li a {
	display: block;
	width: 1.75em;
	height: 1.75em;
	text-align: center;
	line-height: 1.75em;
	font-family: "zefer-icons";
	font-weight: normal;
	color: #0bb5d5;
	text-decoration: none;
	background: white;
	border-radius: 50%;
	-webkit-transition: all 1.5s ease-in-out;
	-o-transition: all 1.5s ease-in-out;
	transition: all 1.5s ease-in-out;
}

footer ul.social li a:hover {
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	background: #01374e;
	color: white;
}

footer ul.social li.facebook a:before {
	content: "\e902";
}
footer ul.social li.twitter a:before {
	content: "\e900";
}
footer ul.social li.linkedin a:before {
	content: "\e901";
}
footer ul.social li.youtube a:before {
	content: "\e904";
}

@media (min-width: 768px) {
	nav.footer ul li {
		display: inline-block;
		margin: 0 0.5em;
	}
}

@media (min-width: 1280px) {
	footer {
		font-size: 20px;
	}
}

section.disclaimer {
	background: white;
	padding: 2em;
	text-align: center;
}

section.disclaimer .container {
	max-width: 1100px;
}

section.disclaimer img {
	max-height: 3em;
	width: auto;
	vertical-align: middle;
	margin: 0 1em;
}

section.disclaimer p {
	overflow: hidden;
}

@media (min-width: 768px) {
	section.disclaimer {
		text-align: left;
	}

	section.disclaimer img {
		margin: 0 2em 0 0;
		float: left;
	}

	section.disclaimer p {
		padding: 0.3em 0;
	}
}

section.main {
	background: white;
	padding: 2em 1em 4em;
}

section.main article {
	overflow: hidden;
	position: relative;
	margin: 2em 0;
}

section.main .loop article:last-of-type {
	margin-bottom: 0;
}

section.main article .image {
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
}

section.main article .image:before {
	content: "";
	display: block;
	padding: 60% 0 0 0;
}

section.main article .image img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

section.main article .text {
	padding: 1em 0;
	text-align: left;
}

section.main article .date {
	margin: 0 0 1em;
}

section.main article h1,
section.main article h2,
section.main article h3,
section.main article h4,
section.main article h5 {
	margin: 0 0 0.5em;
	font-size: 2em;
	font-weight: 700;
	color: #01374e;
}

section.main article h2 {
	margin: 2em 0 0.5em 0;
	font-size: 1.8em;
}
section.main article h3 {
	margin: 2em 0 0.5em 0;
	font-size: 1.4em;
}
section.main article h4 {
	margin: 2em 0 0.5em 0;
	font-size: 1em;
}
section.main article h5 {
	margin: 2em 0 0.5em 0;
	font-size: 0.9em;
}

section.main .loop article h3 {
	margin: 0;
	font-size: 1em;
}

section.main article h3 a {
	text-decoration: none;
	color: inherit;
}

section.main article p:last-child {
	margin-bottom: 0;
}

section.main article a.button {
	margin: 0;
}

section.main article blockquote {
	padding: 1em 0;
	margin: 0;
	text-align: center;
	font-style: italic;
	background: #effafc;
}

section.main article blockquote p {
	margin: 0;
}

section.main article a {
	color: #01374e;
	text-decoration: underline;
}

section.main article .text img {
	max-width: 100%;
	height: auto;
}

section.main #sidebar {
	list-style: none;
	display: block;
	padding: 0;
	margin: 0;
	background: #f5f5f5;
}

section.main #sidebar li.widget {
	list-style: none;
	display: block;
	padding: 1.25em;
	margin: 0;
	min-height: 4em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.main #sidebar li.widget .widgettitle {
	font-size: 1.2em;
	font-weight: 700;
	color: #757575;
	margin: 0 0 0.5em 0;
}

section.main #sidebar li.widget_recent_entries ul {
	list-style: none;
	display: block;
	padding: 0;
	margin: 0;
}

section.main #sidebar li.widget_recent_entries ul li {
	list-style: none;
	display: block;
	padding: 0;
	margin: 0 0 0.5em;
}

section.main #sidebar li.widget_recent_entries ul li:last-of-type {
	margin-bottom: 0;
}

section.main #sidebar li.widget_recent_entries ul li a {
	color: #01374e;
	text-decoration: none;
}

section.main #sidebar li.widget_separator_widget {
	background: white;
}

section.main #sidebar li.widget_media_image {
	padding: 0;
}

section.main .pagination {
	clear: both;
	text-align: center;
}

@media (min-width: 768px) {
	section.main {
		padding: 2em 1em 6em;
	}

	section.main article {
		margin: 2em 0 4em;
	}

	section.main .loop article .image {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 260px;
	}

	section.main .loop article .text {
		margin-left: 280px;
		max-width: 20em;
	}
}

@media (min-width: 960px) {
	section.main {
		padding: 2em 2em 8em;
	}

	section.main .container {
		overflow: hidden;
		max-width: 1200px;
	}

	section.main .content-wrapper {
		width: calc(100% - 320px);
		float: left;
	}

	section.main aside {
		width: 280px;
		float: right;
		padding-top: 2em;
	}
}

@media (min-width: 1280px) {
	section.main {
		font-size: 20px;
	}

	section.main .content-wrapper {
		width: calc(100% - 360px);
	}

	section.main .loop article .image {
		width: 360px;
	}

	section.main .loop article .text {
		margin-left: 400px;
	}

	section.main #sidebar li.widget_text .textwidget {
		font-size: 16px;
	}
}

.partner-zone table {
	color: #656565;
	border: 1px solid #effafc;
	border-collapse: collapse;
	margin: 0;
	padding: 0;
	width: 100%;
	table-layout: fixed;
	margin-bottom: 1em;
}

.partner-zone a,
.partner-zone a:active,
.partner-zone a:link,
.partner-zone a:visited {
	color: #01374e;
	text-decoration: none;
}

.partner-zone a:hover {
	text-decoration: underline;
}

.partner-zone table caption {
	font-size: 1.5em;
	margin: 0.5em 0 0.75em;
}

.partner-zone table tr {
	background-color: #ffffff;
	border: 1px solid #effafc;
	padding: 0.35em;
}

.partner-zone table th,
.partner-zone table td {
	padding: 0.625em;
	text-align: center;
}

.partner-zone table th {
	font-size: 1em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background-color: #0bb5d5;
	color: #ffffff;
}

.pagination .page-numbers {
	display: inline-block;
	padding: 5px 10px;
	margin: 0 2px 0 0;
	border: 1px solid #eee;
	line-height: 1;
	text-decoration: none;
	border-radius: 2px;
	font-weight: 600;
}
.pagination .page-numbers.current,
.pagination a.page-numbers:hover {
	background: #0bb5d5;
	color: #ffffff;
}

@media screen and (max-width: 600px) {
	.partner-zone table {
		border: 0;
	}

	.partner-zone table caption {
		font-size: 1.3em;
	}

	.partner-zone table thead {
		border: none;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}

	.partner-zone table tr {
		border-bottom: 3px solid #effafc;
		display: block;
		margin-bottom: 0.625em;
	}

	.partner-zone table td {
		border-bottom: 1px solid #effafc;
		display: block;
		font-size: 0.8em;
		text-align: right;
	}

	.partner-zone table td::before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
		text-transform: uppercase;
	}

	.partner-zone table td:last-child {
		border-bottom: 0;
	}
}

ul.sticky-tabs {
	list-style: none;
	display: block;
	position: fixed;
	bottom: 0;
	right: 1em;
	padding: 0;
	margin: 0;
	z-index: 10;
	font-size: 11px;
	cursor: default;
}

ul.sticky-tabs li {
	list-style: none;
	display: inline-block;
	padding: 0;
	margin: 0;
}

ul.sticky-tabs li a {
	display: block;
	padding: 0.5em 2em;
	text-align: center;
	min-width: 7em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #0bb5d5;
	color: white;
	font-weight: 700;
	text-decoration: none;
	line-height: 1.25em;
}

ul.sticky-tabs li.sign-up a {
	background: #01374e;
}

@media (min-width: 768px) {
	ul.sticky-tabs {
		font-size: 16px;
	}
}

@media (min-width: 960px) {
	ul.sticky-tabs {
		right: 2em;
	}
}

@media (min-width: 1280px) {
	ul.sticky-tabs {
		font-size: 20px;
		right: 50%;
		margin-right: -600px;
	}
}

.modal-overlay {
	display: none;
}

.modal {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0bb5d5;
	padding: 2em;
	overflow: hidden;
	overflow-y: auto;
	z-index: 1000;
	color: white;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.modal.sign-up {
	background: #01374e;
}

.modal .modal-close {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	font-size: 20px;
	font-weight: normal;
	font-family: "zefer-icons";
	color: white;
	width: 2em;
	height: 2em;
	line-height: 2em;
	text-align: center;
	text-decoration: none;
}

.modal .modal-close:before {
	content: "\e903";
}

.admin-bar .modal {
	top: 46px;
	height: calc(100% - 46px);
}

.modal h2 {
	text-align: center;
	font-weight: 700;
	margin: 0 0 1em;
	font-size: 1.6em;
}

.modal a {
	transition: opacity 0.2s ease-in-out;
	color: white;
}

.modal a:hover {
	opacity: 0.5;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="number"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
	display: block;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: white;
	border: none;
	padding: 0.5em;
	font: inherit;
	color: #656565;
}

.wpcf7 textarea {
	height: 7em;
}

.wpcf7 input[type="submit"] {
	display: table;
	margin: 2em auto 0;
	text-align: center;
	background: white;
	border: none;
	border-radius: 2em;
	width: 8em;
	padding: 0.5em 1em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

span.wpcf7-not-valid-tip {
	padding: 0.25em 0;
	padding-left: 1em;
	color: #01374e;
}

div.wpcf7-response-output {
	margin: 0 0 2em;
}

@media (min-width: 768px) {
	.modal-overlay {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: white;
		opacity: 0.75;
		z-index: 999;
	}

	.modal,
	.admin-bar .modal {
		left: 50%;
		width: 400px;
		margin-left: -200px;
		top: 50%;
		height: auto;
		max-height: 75%;
		-webkit-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		-o-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}

	.modal .modal-close {
		width: 3em;
		height: 3em;
		line-height: 3em;
	}
}

@media (min-width: 1280px) {
	.modal,
	.admin-bar .modal {
		font-size: 20px;
		width: 520px;
		margin-left: -260px;
	}
}
