@charset "UTF-8";

/*-- Reset --*/

* {
	padding:0;
	margin:0;
	outline:none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

* > :last-child { 
	margin-bottom:0;
}

img {
	width:100%;
	height:auto;
	display:block;
}

.clearfix::after {
	content:"";
	clear:both;
	display:table;
}

a, abbr, acronym, address, applet, article, aside, audio, b, blockquote, big, body, center, canvas, caption, cite, code, command, datalist, dd, del, details, dfn, dl, div, dt, 
em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, keygen, label, legend, li, meter, nav,
object, ol, output, p, pre, progress, q, s, samp, section, small, span, source, strike, strong, sub, sup, table, tbody, tfoot, thead, th, tr, td, video, tt, u, ul, var, a img {
    background:transparent;
	border:0 none;
	outline:none;
	vertical-align:baseline;
	padding:0;
	margin:0;    
}


/*-- General --*/

html {
	background:#e9f0f6;
	max-width:100%;
	max-height:100%;
	overflow-x:hidden;
}

body {
	background:#fff;
	max-width:100%;
	max-height:100%;
	overflow-x:hidden;
	position:relative;
	text-rendering:optimizeLegibility;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

h1 {
	font:400 45px/55px "trajan-pro-3", serif;
	color:#2a67a4;
	text-transform:lowercase;
	margin:0 0 30px;
}

h2 {
	font:600 30px/40px "trajan-pro-3", serif;
	color:#2a67a4;
	text-transform:lowercase;
	margin:0 0 30px;
}

h3 {
	font:400 15px/19px "trajan-pro-3", serif;
	color:#2a67a4;
	text-transform:lowercase;
	margin:0 0 30px;
}

h4 {
	font:500 15px/19px "hedley-new-web", sans-serif;
	color:#beaa23;
	letter-spacing:0.1em;
	text-transform:uppercase;
	margin:0 0 15px;
}

p {
	font:300 16px/26px "hedley-new-web", sans-serif;
	color:#2a67a4;
	margin:0 0 30px;
}

p span {
	font-weight:500;
}

p a:hover {
	color:#000;
}

ul {
	list-style:none;
	margin:0 0 30px;
}

ul li {
	font:300 16px/26px "hedley-new-web", sans-serif;
	color:#2a67a4;
	margin:0 0 15px;
}

ul.list p {
	margin:0 0 5px;
}

ul.list li {
	position:relative;
	padding:0 0 0 25px;
}

ul.list li:before {
	content:"";
	background:url("../images/icon-list.svg") 0 0 no-repeat;
	width:15px;
	height:11px;
	position:absolute;
	top:7px;
	left:0;
}

a {
	font:300 16px/26px "hedley-new-web", sans-serif;
	color:#2a67a4;
	text-decoration:none;
	transition:all 0.3s ease;
}

/*
a:visited {
	color:#2a67a4;
}*/

.link:visited {
	color:#beaa23;
}

a.underline {
	border-bottom:1px solid #beaa23;
}

a.underline:hover {
	border-bottom:1px solid #2a67a4;
}

a.button {
	font:500 13px/13px "hedley-new-web", sans-serif;
	color:#2a67a4;
	text-decoration:none;
	text-transform:uppercase;
	text-align:center;
	letter-spacing:0.1em;
	background:#e9f0f6;
	border:1px solid #2a67a4;
	padding:18px 44px;
	position:relative;
	display:inline-block;
	transition:all 0.3s ease;
}

a.button span {
	position:relative;
	z-index:2;
	transition:all 0.3s ease;
}

a.button:hover span {
	color:#fff;
}

a.button:before {
	content:"";
	border:1px solid #2a67a4;
	position:absolute;
  	top:3px;
  	left:3px;
  	right:3px;
	bottom:3px;
	transition:all 0.3s ease;
}

a.button:hover:before {
	background:#2a67a4;
}

a.button.button-large {
	font:600 16px/16px "trajan-pro-3", serif;
	color:#fff;
	text-transform:lowercase;
	background:#2a67a4;
	border:1px solid #beaa23;
	width:100%;
	padding:40px;
	transition:all 0.3s ease;
}

a.button.button-large:before {
	border:1px solid #beaa23;
}

a.button.button-large:hover:before {
	background:#beaa23;
}

a.button.button-large:after {
	content:"";
	background:url("../images/icon-arrow.svg") 0 0 no-repeat;
	width:22px;
	height:14px;
	margin:0 0 0 15px;
	position:relative;
	top:1px;
	display:inline-block;
}


/*-- Load Animations --*/

#load {
	background:#fff;
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	z-index:500;
	animation:load 1.5s ease forwards;
}

@keyframes load { 
	0% {
		opacity:1;
		z-index:500;
	}
    99% {
		opacity:0;
	}
	100% {
		opacity:0;
		z-index:-1;
	}
}

.fadein {
	opacity:0;
	position:relative;
}

.fadein.animate {
	animation:fadein 1s ease forwards;
	animation-delay:0.2s;
}

@keyframes fadein { 
	0% {
		opacity:0;
	}
    100% {
		opacity:1;
	}
}

.fadeup,
.fadeup2,
.fadeup3 {
	opacity:0;
	position:relative;
	top:50px;
}

.fadeup.animate {
	animation:fadeup 1s ease forwards;
	animation-delay:0.1s;
}

.fadeup2.animate {
	animation:fadeup 1s ease forwards;
	animation-delay:0.2s;
}

.fadeup3.animate {
	animation:fadeup 1s ease forwards;
	animation-delay:0.3s;
}

@keyframes fadeup { 
	0% {
		opacity:0;
		top:50px;
	}
    100% {
		opacity:1;
		top:0;
	}
}

.reveal {
	background:#fff;
	border:1px solid #e9f0f6;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	z-index:20;
}

.reveal.animate {
	animation:reveal 1.5s cubic-bezier(0.5, 0, 0.1, 0.9) forwards;
}

@keyframes reveal { 
	0% {
		left:0;
	}
    100% {
		left:100%;
	}
}


/*-- Layout --*/

section {
	position:relative;
}

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

.center {
	text-align:center;
}

.center-vertical {
	position:relative;
	top:50%;
	transform:translateY(-50%);
}

.container {
	width:100%;
	margin:0 auto;
	padding:40px;
	position:relative;
}

.col1 {
	width:100%;
	margin:0 auto;
	padding:40px;
	position:relative;
}

.col2 {
	width:50%;
	margin:0 auto;
	padding:40px;
	position:relative;
}

.col3 {
	width:33.333%;
	margin:0 auto;
	padding:40px;
	position:relative;
}

.no-pad-top {
	padding-top:0 !important;
}

.no-pad-bottom {
	padding-bottom:0 !important;
}

.bg-blue {
	background:#2a67a4;
}

.bg-blue h2,
.bg-blue h3,
.bg-blue p,
.bg-blue a,
.bg-blue ul li {
	color:#fff;
}

.bg-blue a.button {
	color:#fff;
	background:#2a67a4;
	border:1px solid #beaa23;;
}

.bg-blue a.button:before {
	border:1px solid #beaa23;
	transition:all 0.3s ease;
}

.bg-blue a.button:hover:before {
	background:#beaa23;
}

.bg-light-blue {
	background:#e9f0f6;
}

.pattern-block {
	background:url("../images/pattern.svg") top left repeat #fff;
	background-size:47px;
	border:1px solid #e9f0f6;
	padding:20px;
}


/*-- Nav --*/

nav {
	justify-content:space-between;
	align-items:center;
	position:relative;
	z-index:600;
}

nav ul {
	list-style:none;
	padding:22px 40px 0 0;
}

nav ul li {
	padding:0 0 0 120px;
}

nav ul li:first-child {
	padding-left:0;
}

nav ul li a {
	font:500 15px/17px "hedley-new-web", sans-serif;
	color:#beaa23;
	letter-spacing:0.1em;
	text-transform:uppercase;
	text-decoration:none;
	position:relative;
	transition:all 0.3s ease;
}

nav ul li a:hover {
	color:#2a67a4;
}

nav ul li a::after {
	content:"";
	background:#beaa23;
	width:100%;
	height:1px;
	position:absolute;
	bottom:-4px;
	left:0;
	transform:scaleX(0);
	transform-origin:bottom right;
	transition:transform 0.3s ease;
}

nav ul li a:hover::after {
	transform:scaleX(1);
	transform-origin:bottom left;
}

nav ul li a::before {
	content:"";
	background:#beaa23;
	width:100%;
	height:1px;
	position:absolute;
	bottom:-6px;
	left:0;
	transform:scaleX(0);
	transform-origin:bottom right;
	transition:transform 0.3s ease;
}

nav ul li a:hover::before {
	transform:scaleX(1);
	transform-origin:bottom left;
}

.logo a:nth-child(1) {
	background:#2a67a4;
	width:90px;
	height:90px;
	padding:12px;
	display:block;
	position:relative;
	z-index:100;
}

.logo a:nth-child(2) {
	width:200px;
	height:auto;
	padding:25px 0 0 25px;
}


/*-- Nav - Mobile --*/

#mobile-menu {
	border-left:1px solid #beaa23;
	width:90px;
	height:90px;
	padding:32px 0 0;
	position:absolute;
	top:0;
	right:0;
	cursor:pointer;
	display:none;
	z-index:800;
}

#mobile-menu .bar {
	background:#beaa23;
	width:36px;
	height:3px;
	margin:0 auto 9px;
	cursor:pointer;
}

#mobile-nav {
	background:#2a67a4;
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	display:none;
	z-index:999;
}

#mobile-nav ul.main {
	text-align:center;
	border-top:1px solid #beaa23;
}

#mobile-nav ul.main li {
	border-bottom:1px solid #beaa23;
	padding:20px 0;
	margin:0;
}

#mobile-nav ul.main li a {
	font:400 20px/20px "trajan-pro-3", serif;
	letter-spacing:0.05em;
	color:#fff;
	text-transform:lowercase;
}

#mobile-nav ul.sub {
	text-align:left;
	position:absolute;
	bottom:0;
	left:0;
	margin:0;
	padding:20px;
}

#mobile-nav ul.sub li {
	width:100%;
	margin:0 0 20px;
}

#mobile-nav ul.sub li a {
	color:#fff;
	padding:3px 0 0 35px;
	position:relative;
}

#mobile-nav ul.sub li:nth-child(1) a:before {
	content:"";
	background:url("../images/icon-phone.svg");
	width:26px;
	height:26px;
	position:absolute;
	top:0;
	left:0;
	display:inline-block;
}

#mobile-nav ul.sub li:nth-child(2) a:before {
	content:"";
	background:url("../images/icon-email.svg");
	width:26px;
	height:26px;
	position:absolute;
	top:0;
	left:0;
	display:inline-block;
}

#mobile-nav .close {
	width:90px;
	height:90px;
	background:url("../images/icon-close.svg") no-repeat center center;
	background-size:30px;
	border-left:1px solid #beaa23;
	text-indent:-999999px;
	position:absolute;
	top:0;
	right:0;
	cursor:pointer;
}


/*-- Header --*/

header.home {
	width:100%;
	height:-webkit-calc(100vh - 90px);
	height:-moz-calc(100vh - 90px);
	height:calc(100vh - 90px);
	max-height:750px;
	min-height:600px;
	display:flex;
}

header.home .reveal {
	background:#e9f0f6;
}

header.home .container {
	z-index:100;
}

header.home article .container {
	height:40%;
}

header.home article .photo {
	height:60%;
}

header {
	width:100%;
	height:450px;
	display:flex;
}

header .scroll {
	background:url("../images/pattern.svg") center center repeat #fff;
	background-size:50px;
	border-bottom:1px solid #e9f0f6;
	border-right:1px solid #e9f0f6;
	border-left:1px solid #e9f0f6;
	width:90px;
	height:100%;
	position:relative;
}

header .scroll .scroll-arrow {
	background:#fff;
	border-top:1px solid #e9f0f6;
	width:88px;
	height:88px;
	position:absolute;
	bottom:0;
	left:0;
	overflow:hidden;
	cursor:pointer;
}

header .scroll .scroll-arrow img {
	width:24px;
	height:auto;
	position:relative;
	top:25px;
	left:50%;
	transform:translateX(-50%);
}

header .scroll .scroll-arrow:hover img {
	animation:scrollarrow 0.4s ease forwards;
}

@keyframes scrollarrow { 
	0% {
		top:25px;
	}
    50% {
		top:95px;
	}
	51% {
		top:-45px;
	}
	100% {
		top:25px;
	}
}

header article {
	background:#e9f0f6;
	width:-webkit-calc(100% - 90px);
	width:-moz-calc(100% - 90px);
	width:calc(100% - 90px);
	height:100%;
	position:relative;
	overflow:hidden;
}

header article .container {
	width:100%;
	height:100%;
}

header article .photo {
	width:100%;
	height:100%;
}

header article h3 {
	color:#fff;
	text-align:center;
	letter-spacing:0.05em;
	background:#2a67a4;
	height:90px;
	width:300px;
	padding:35px 0 0;
	margin:0;
	position:absolute;
	bottom:0;
	left:0;
}


/*-- Home --*/

#intro .container {
	padding-left:50px;
}

#intro-pic {
	min-height:400px;
}

#intro-pic .col2:nth-child(1) {
	width:60%;
}

#intro-pic .col2:nth-child(1) .container {
	padding-left:50px;
}

#intro-pic .col2:nth-child(2) {
	border-top:20px solid #e9f0f6;
	border-left:20px solid #e9f0f6;
	border-right:19px solid #e9f0f6;
	border-bottom:19px solid #e9f0f6;
	width:40%;
}

#what-we-offer .col2:nth-child(1) {
	width:-webkit-calc(100% - 400px);
	width:-moz-calc(100% - 400px);
	width:calc(100% - 400px);
	padding:0;
}

#what-we-offer .col2:nth-child(1) .container:nth-child(1) {
	width:-webkit-calc(100% - 400px);
	width:-moz-calc(100% - 400px);
	width:calc(100% - 400px);
	padding:80px;
}

#what-we-offer .col2:nth-child(2) {
	width:400px;
	padding:0;
}

#what-we-offer .col2:nth-child(1) .container:nth-child(2) {
	width:400px;
	padding-top:80px;
	padding-bottom:80px;
}

#clients {
	border-top:1px solid #e9f0f6;
}

#clients .container {
	text-align:center;
	padding-left:0;
	padding-right:0;
	padding-bottom:0;
}

#clients .flexslider {
	border:1px solid #e9f0f6 !important;
}

#clients .flexslider ul li {
	border-right:1px solid #e9f0f6 !important;
}

#clients .flexslider ul li img {
	opacity:0.6;
}


/*-- About --*/

#team ul {
	border-right:1px solid #e9f0f6;
}

#team ul li {
	width:33.333%;
	padding:60px 20px;
	margin:0;
	border-top:1px solid #e9f0f6;
	border-left:1px solid #e9f0f6;
}

#team ul li:not(:last-child) h2 {
	font-size:25px;
	line-height:35px;
	margin:0 0 15px;
}

#team ul li:not(:last-child) h4 {
	margin:0 0 5px;
}

#team ul li:not(:last-child) p {
	margin:0 0 5px;
}

#team ul li:not(:last-child) a span {
	font-weight:500;
	color:#beaa23;
	letter-spacing:0.1em;
	text-transform:uppercase;
}

#team ul li:not(:last-child) a.button {
	margin:15px 0 0;
}

#team ul li:not(:last-child) a.button span {
	color:#2a67a4;
}

#team ul li:not(:last-child) a.button:hover span {
	color:#fff;
}

#team ul li:not(:last-child) article {
	border:1px solid #beaa23;
	width:280px;
	height:auto;
	margin:0 auto 30px;
	padding:10px;
	position:relative;
}

#team ul li:not(:last-child) article:before {
	content:"";
	border:1px solid #beaa23;
	position:absolute;
  	top:3px;
  	left:3px;
  	right:3px;
	bottom:3px;
}

#team ul li:last-child {
	border-top:20px solid #e9f0f6;
	border-left:20px solid #e9f0f6;
	border-right:19px solid #e9f0f6;
	border-bottom:19px solid #e9f0f6;
	padding:0;
	display:flex;
	flex-wrap:wrap;
}

#team ul li:last-child article {
	width:100%;
	height:50%;
}

#team ul li:last-child div {
	width:100%;
	padding:0 20px 20px;
}


/*-- Services --*/

ul.accordion {
	border:1px solid #beaa23;
	margin:0;
	padding:0 3px;
	position:relative;
}

ul.accordion:before {
	content:"";
	border:1px solid #beaa23;
	position:absolute;
  	top:3px;
  	left:3px;
  	right:3px;
	bottom:3px;
}

ul.accordion li {
	border-bottom:1px solid #beaa23;
	margin:0;
	padding:30px 120px 30px 70px;
	position:relative;
	cursor:pointer;
	overflow:hidden;
}

ul.accordion li:last-child {
	border-bottom:0;
}

ul.accordion li h2 {
	font-size:20px;
	line-height:25px;
	font-weight:400;
	margin:0;
}

ul.accordion li h4.number {
	position:absolute;
	top:32px;
	left:29px;
}

ul.accordion li ul.list li {
	color:#fff;
	border:0;
	padding:0 0 0 25px;
}

ul.accordion li article {
	display:none;
	margin:20px 0;
}

ul.accordion li .arrow {
	border-left:1px solid #beaa23;
	width:90px;
	height:100%;
	position:absolute;
	top:0;
	right:0;
	transition:all 0.3s ease;
}

ul.accordion li:first-child .arrow {
	top:3px;
}

ul.accordion li:last-child .arrow {
	top:-3px;
}

ul.accordion li:hover .arrow {
	background:#beaa23;
}

ul.accordion li .arrow:after {
	content:"";
	background:url("../images/icon-scroll.svg") 0 0 no-repeat;
	width:18px;
	height:28px;
	margin:-15px 0 0 0;
	position:absolute;
	top:50%;
	right:35px;
	transform:rotate(-90deg);
	transition:all 0.3s ease;
}

ul.accordion li:hover .arrow:after {
	background:url("../images/icon-scroll-white.svg") 0 0 no-repeat;
}

ul.accordion li.active .arrow:after {
	transform:rotate(0);
}

#services-list .col3:not(:first-child) {
	padding-top:80px;
	padding-bottom:80px;
}

#services-list .col3:nth-child(2) {
	border-right:1px solid #fff;
}


/*-- Results --*/

#results .col2:nth-child(1) {
	width:-webkit-calc(100% - 550px);
	width:-moz-calc(100% - 550px);
	width:calc(100% - 550px);
}

#results .col2:nth-child(1) .container {
	padding-left:50px;
}

#results .col2:nth-child(2) {
	width:550px;
}

#case-studies {
	border-top:1px solid #e9f0f6;
}


/*-- Contact --*/

#contact {
	border-bottom:1px solid #e9f0f6;
}

#contact .col2:nth-child(1) {
	width:66.667%;
}

#contact .col2:nth-child(1) .container {
	padding-left:50px;
}

#contact .col2:nth-child(2) {
	border-top:20px solid #e9f0f6;
	border-left:20px solid #e9f0f6;
	border-right:19px solid #e9f0f6;
	border-bottom:19px solid #e9f0f6;
	width:33.333%;
	padding:60px 20px;
}

#contact .col2:nth-child(2) img {
	width:40px;
	height:40px;
	margin:0 auto 15px;
}


/*-- Contact Form --*/

#frmContact .flex {
	justify-content:space-between;
}

#frmContact input {
	font:300 16px/20px "hedley-new-web", sans-serif;
	color:#2a67a4;
	opacity:1;
	background:none;
	border:1px solid #beaa23;
	width:100%;
	margin:0 0 30px;
	padding:15px;
}

/*
#frmContact .flex input {
	width:49%;
}*/

#frmContact .flex li {
	width:49%;
}

#frmContact textarea {
	font:300 16px/20px "hedley-new-web", sans-serif;
	color:#2a67a4;
	opacity:1;
	background:none;
	border:1px solid #beaa23;
	width:100%;
	min-height:200px;
	margin:0 0 20px;
	padding:15px;
	resize:none;
}

#frmContact button {
	font:500 13px/13px "hedley-new-web", sans-serif;
	color:#2a67a4;
	text-decoration:none;
	text-transform:uppercase;
	text-align:center;
	letter-spacing:0.1em;
	background:#e9f0f6;
	border:1px solid #2a67a4;
	padding:18px 44px;
	position:relative;
	display:inline-block;
	cursor:pointer;
	transition:all 0.3s ease;
}

#frmContact button span {
	position:relative;
	z-index:2;
	transition:all 0.3s ease;
}

#frmContact button:hover span {
	color:#fff;
}

#frmContact button:before {
	content:"";
	border:1px solid #2a67a4;
	position:absolute;
  	top:3px;
  	left:3px;
  	right:3px;
	bottom:3px;
	transition:all 0.3s ease;
}

#frmContact button:hover:before {
	background:#2a67a4;
}

#frmContact input::-webkit-input-placeholder,
#frmContact textarea::-webkit-textarea-placeholder {
	color:#2a67a4;
	opacity:1;
}

#frmContact input::-moz-placeholder,
#frmContact textarea::-moz-placeholder {
	color:#2a67a4;
	opacity:1;
}

#frmContact input:-ms-input-placeholder,
#frmContact textarea:-ms-textarea-placeholder {
	color:#2a67a4;
	opacity:1;
}

#frmContact input:-moz-placeholder,
#frmContact textarea:-moz-placeholder {
	color:#2a67a4;
	opacity:1;
}

#frmContact input,
#frmContact input[type="text"],
#frmContact input[type="button"],
#frmContact input[type="submit"],
#frmContact textarea {
	color:#2a67a4;
	opacity:1;
}

#mail-status {
	font:400 15px/19px "trajan-pro-3", serif;
	color:#2a67a4;
	text-transform:lowercase;
	margin:0 0 20px;
}


/*-- Flexslider --*/

.flexslider {
	background:none !important;
	border:0 !important;
	border-radius:0 !important;
	width:100%;
	height:100%;
	margin:0 !important;
	overflow:hidden !important;
	z-index:2 !important;
}

.flexslider ul {
	width:100%;
	height:100%;
}

.flexslider ul li {
	width:100%;
	height:100%;
}

.flex-viewport {
	width:100% !important;
	height:100% !important;
}


/*-- Fancybox --*/

.fancybox-content {
	padding:40px !important;
}

.fancybox-content article {
	position:relative;
	z-index:2;
}

.fancybox-slide--html {
	padding:10px !important;
}

.popup {
	border:1px solid #2a67a4;
	width:1100px;
	display:none;
	position:relative;
}

.popup:after {
	content:"";
	border:1px solid #2a67a4;
	position:absolute;
  	top:3px;
  	left:3px;
  	right:3px;
	bottom:3px;
}

.popup .close {
	width:50px;
	height:50px;
	background:url("../images/icon-close.svg") no-repeat center center;
	background-size:30px;
	border:1px solid #2a67a4;
	text-indent:-999999px;
	position:absolute;
	top:-37px;
	right:-37px;
	cursor:pointer;
}

.popup .contact-bio {
	margin:0 0 30px;
}

.popup .contact-bio p {
	margin:0 0 5px;
}

.popup .contact-bio p span {
	font-weight:500;
	color:#beaa23;
	letter-spacing:0.1em;
	text-transform:uppercase;
}

.popup ul:last-child li {
	margin:0;
}

.popup ul:last-child li p {
	margin:0 0 5px;
}


/*-- Footer --*/

footer {
	background:#2a67a4;
	position:relative;
	align-items:center;
}

footer a {
	border-right:1px solid #5585b6;
	width:90px;
	height:90px;
	padding:12px;
	display:block;
}

footer ul {
	margin:0;
}

footer ul li {
	padding:0 0 0 60px;
	margin:0;
}

footer ul li a {
	border:0;
	width:auto;
	height:auto;
	padding:0 0 0 35px;
	position:relative;
}

footer ul li:nth-child(1) a:before {
	content:"";
	background:url("../images/icon-phone.svg");
	width:26px;
	height:26px;
	position:absolute;
	top:0;
	left:0;
	display:inline-block;
}

footer ul li:nth-child(2) a:before {
	content:"";
	background:url("../images/icon-email.svg");
	width:26px;
	height:26px;
	position:absolute;
	top:0;
	left:0;
	display:inline-block;
}

footer ul li:nth-child(3) a:before {
	content:"";
	background:url("../images/icon-location.svg");
	width:26px;
	height:26px;
	position:absolute;
	top:0;
	left:0;
	display:inline-block;
}

footer .scroll {
	border-left:1px solid #5585b6;
	width:88px;
	height:88px;
	position:absolute;
	top:0;
	right:0;
	overflow:hidden;
	cursor:pointer;
}

footer .scroll img {
	width:24px;
	height:auto;
	position:relative;
	top:25px;
	left:50%;
	transform:translateX(-50%) scaleY(-1);
}

footer .scroll:hover img {
	animation:footerscrollarrow 0.4s ease forwards;
}

@keyframes footerscrollarrow { 
	0% {
		top:25px;
	}
    50% {
		top:-45px;
	}
	51% {
		top:95px;
	}
	100% {
		top:25px;
	}
}

#certifications {
	padding:20px;
	justify-content:space-between;
	align-items:center;
}

#certifications p,
#certifications a {
	font-size:14px;
	line-height:18px;
	margin:0;
}

#certifications ul {
	margin:0;
}

#certifications ul li {
	margin:0 35px 0 0;
}

#certifications ul li img {
	width:auto;
	height:40px;
}



/* Blog */

html {
	margin-top:0 !important;
}

#wpadminbar {
	display:none;
}

#blog header {
	height:auto;
	position:relative;
}

#blog header article {
	left:90px;
}

#blog header article .container {
	padding:0;
	margin:0;
}

#blog header article .container h1 a:hover {
	color:#fff;
}

#blog header article .col2:nth-child(1) {
	width:-webkit-calc(100% - 500px);
	width:-moz-calc(100% - 500px);
	width:calc(100% - 500px);
	padding:80px;
}

#blog header article .col2:nth-child(2) {
	width:500px;
	background:#2a67a4;
	padding:0;
}

#blog header article .col2 .photo {
	width:100%;
	height:100%;
	background-size:cover;
}

#blog header .scroll {
	background:url("../images/pattern.svg") center center repeat #fff;
	background-size:50px;
	border-bottom:1px solid #e9f0f6;
	border-right:1px solid #e9f0f6;
	border-left:1px solid #e9f0f6;
	width:90px;
	height:100%;
	position:absolute;
	top:0;
	left:0;
}

h1 a {
	font:400 45px/55px "trajan-pro-3", serif;
	color:#2a67a4;
	text-transform:lowercase;
	margin:0 0 30px;
}

h1 a:hover {
	color:#2a67a4;
}

h2 a {
	font:600 30px/40px "trajan-pro-3", serif;
	color:#2a67a4;
	text-transform:lowercase;
	margin:0 0 30px;
}

#blog-list .col2:nth-child(1) {
	width:-webkit-calc(100% - 500px);
	width:-moz-calc(100% - 500px);
	width:calc(100% - 500px);
}

#blog-list .col2:nth-child(2) {
	width:500px;
}

#blog-list .col2:nth-child(1) ul {
	margin:0;
}

#blog-list .col2:nth-child(1) li {
	margin-bottom:50px;
}

#blog-list .col2:nth-child(1) li:last-child {
	margin:0;
}

#blog-list .col2:nth-child(2) .container {
	height:100%;
}

#blog-list .col2:nth-child(2) li {
	margin-bottom:10px;
}

#blog-list .col2 h2 {
	margin:0 0 20px 0;
}

#blog-list .col2:nth-child(2) .widget {
	margin:0 0 30px 0;
}

.bg-white {
	background:#fff;
	border:1px solid #e9f0f6;
}

#block-2 {
	display:none;
}

.excerpt {
	margin-bottom:20px;
}

.link {
	font-weight:600;
	color:#beaa23;
	position:relative;
}

.link:after {
	content: "";
    background: url("../images/icon-scroll.svg") no-repeat center center / 13px 20px;
    width:13px;
    height:20px;
    transform: rotate(-90deg);
    display:inline-block;
    position:relative;
    margin-left:15px;
    top:3px;
}

.share {
	display:flex;
	margin:-30px 0 30px;
}

.share h3 {
	font-size:13px;
	line-height:23px;
	padding:4px 0 0;
	margin:0 10px 0 0;
}

.share .shared-counts-wrap {
	margin:0;
}

.shared-counts-wrap.style-block .shared-counts-button,
.shared-counts-wrap.style-rounded .shared-counts-button,
.shared-counts-wrap.style-buttons .shared-counts-button {
	width:26px !important;
	height:26px !important;
	margin:0 5px 0 0 !important;
	background-color:#beaa23 !important;
	border-radius:50%;
}

.shared-counts-wrap.style-block .shared-counts-button svg,
.shared-counts-wrap.style-rounded .shared-counts-button svg,
.shared-counts-wrap.style-buttons .shared-counts-button svg {
	width:14px !important;
	height:14px !important;
	margin-top:7px !important;
}

.search-results h1 {
	margin:0 0 50px 0;
}


.blog .photo {
  background:url("../images/default-project.jpg") no-repeat center center / cover;
  width:380px;
  height:199px;
  margin:0 0 20px 0;
  position:relative;
}

.blog .photo .thumbnail {
  width:100%;
  height:100%;
  display:block;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
}

.blog .photo img {
  display:block;
}

.blog .content {
  width:-webkit-calc(100% - 440px);
  width:-moz-calc(100% - 440px);
  width:calc(100% - 440px);
  padding-left:60px;
}

.single .photo {
  background:url("../images/default-project.jpg") no-repeat center center / cover;
  width:100%;
  height:0;
  padding:0 0 52.25%;
  margin:0 0 20px 0;
  position:relative;
}

.single .photo .thumbnail {
  width:100%;
  height:100%;
  display:block;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
}

.single .photo img {
  display:block;
}


#blog-content ul {
	list-style:none;
	margin:0 0 30px;
}

#blog-content ul li {
	font:300 16px/26px "hedley-new-web", sans-serif;
	color:#2a67a4;
	margin:0 0 15px;
}

#blog-list .col2:nth-child(1) #blog-content ul {
	margin:0 0 30px 0;
}

#blog-list .col2:nth-child(1) #blog-content li {
	margin:0 0 15px 0;
}

#blog-content ul p {
	margin:0 0 5px;
}

#blog-content ul li {
	position:relative;
	padding:0 0 0 25px;
}

#blog-content ul li:before {
	content:"";
	background:url("../images/icon-list.svg") 0 0 no-repeat;
	width:15px;
	height:11px;
	position:absolute;
	top:7px;
	left:0;
}




/*-- Media Queries --*/

@media (max-width: 1300px) {
	
	nav ul li {
		padding:0 0 0 90px;
	}
	
	header.home br {
		display:none;
	}
		
}


@media (max-width: 1200px) {
	
	nav ul li {
		padding:0 0 0 60px;
	}
	
	#what-we-offer .col2:nth-child(1) {
		width:100%;
	}

	#what-we-offer .col2:nth-child(2) {
		display:none;
	}
	
	#team ul li {
		width:50%;
	}
	
	#team ul li:not(:last-child) article {
		width:250px;
	}
	
	#services-list .col3 {
		width:50%;
	}
	
	#services-list .col3:first-child {
		display:none;
	}
	
	footer .scroll {
		display:none;
	}
	
	footer ul li {
		padding:0 0 0 30px;
	}
		
	#blog header article .col2:nth-child(1) {
		width:100%;
		padding:80px;
	}

	#blog header article .col2:nth-child(2) {
		width:100%;
	}

	#blog-list .col2:nth-child(1) {
		width:100%;
	}

	#blog-list .col2:nth-child(2) {
		width:100%;
	}

	#blog header article .col2 .photo {
		min-height:350px;
	}
}


@media (max-width: 1000px) {
	
	h1 {
		font-size:40px;
		line-height:50px;
	}
	
	h2 {
		font-size:25px;
		line-height:35px;
	}
	
	.container {
		padding:20px;
	}

	.col1 {
		padding:20px;
	}
	
	.col2 {
		width:100%;
		padding:20px;
	}
	
	.pattern-block {
		padding:10px;
	}
	
	.photo {
		padding:55% 0 0;
	}
	
	nav ul li {
		padding:0 0 0 40px;
	}
	
	.logo a:nth-child(2) {
		width:160px;
		padding:30px 0 0 20px;
	}
	
	header {
		height:auto;
	}
	
	header.home {
		width:100%;
		height:auto;
		max-height:none;
		min-height:auto;
	}
	
	header .scroll {
		display:none;
	}
	
	header article {
		width:100%;
	}
	
	header article h3 {
		height:auto;
		width:100%;
		padding:20px;
		position:relative;
	}

	header article .photo {
		padding:55% 0 0;
	}
	
	#intro .container {
		padding-left:20px;
	}
	
	#intro-pic .col2:nth-child(1) {
		width:100%;
	}

	#intro-pic .col2:nth-child(1) .container {
		padding-left:20px;
	}

	#intro-pic .col2:nth-child(2) {
		border-top:10px solid #e9f0f6;
		border-left:10px solid #e9f0f6;
		border-right:9px solid #e9f0f6;
		border-bottom:9px solid #e9f0f6;
		width:100%;
		padding:55% 0 0;
	}
	
	#team ul li:last-child {
		border-top:10px solid #e9f0f6;
		border-left:10px solid #e9f0f6;
		border-right:9px solid #e9f0f6;
		border-bottom:9px solid #e9f0f6;
	}
	
	ul.accordion li {
		border-bottom:1px solid #beaa23;
		margin:0;
		padding:20px 80px 20px 20px;
		position:relative;
		cursor:pointer;
		overflow:hidden;
	}
	
	ul.accordion li h2 {
		font-size:17px;
		line-height:22px;
	}
	
	ul.accordion li h4.number {
		position:relative;
		top:0;
		left:0;
		margin:0 0 5px;
	}
	
	ul.accordion li .arrow {
		width:60px;
	}
	
	ul.accordion li .arrow:after {
		right:20px;
	}
	
	#results .col2:nth-child(1) {
		width:100%;
	}

	#results .col2:nth-child(1) .container {
		padding-left:20px;
	}

	#results .col2:nth-child(2) {
		width:100%;
		padding:40px;
	}
	
	#contact .col2:nth-child(1) {
		width:100%;
	}
	
	#contact .col2:nth-child(1) .container {
		padding-left:20px;
	}

	#contact .col2:nth-child(2) {
		width:100%;
	}
	
	footer a {
		border-right:0;
		border-bottom:1px solid #5585b6;
		width:100%;
	}
	
	footer a img {
		width:66px;
		height:auto;
		margin:0 auto;
	}
	
	footer ul {
		width:100%;
		padding:40px 20px;
		text-align:center;
	}
	
	footer ul li {
		width:100%;
		padding:0;
		margin:0 0 15px;
	}
	
	footer ul li a {
		padding:35px 0 0 0;
	}

	footer ul li:nth-child(1) a:before,
	footer ul li:nth-child(2) a:before,
	footer ul li:nth-child(3) a:before {
		top:0;
		left:50%;
		transform:translateX(-50%);
	}
	
	#certifications {
		justify-content:center;
	}
	
	#certifications ul {
		width:100%;
		margin:0 0 20px;
		justify-content:center;
	}
	
	#certifications ul li {
		margin:0 15px;
	}
	
	#certifications ul li img {
		height:30px;
	}

	#blog header article {
		left:0;
	}

	#blog header article .container {
		padding:0;
	}

	#blog header article .col2:nth-child(1) {
		padding:60px 40px;
	}

	.single #blog-list .col2:nth-child(1) {
		padding-top:60px;
		padding-bottom:60px;
	}

	.blog .photo {
		padding:0;
	}

	#blog-list .col2:nth-child(1) {
		padding:40px;
	}

	.blog .photo {
		margin:0 0 20px 0;
	}

	#blog-list .flex {
		display:block;
	}

	.blog .content {
		width:100%;
		padding:0;
	}
		
}


@media (max-width: 800px) {
	
	h1 {
		font-size:35px;
		line-height:45px;
	}

	h4 {
		font-size:14px;
		line-height:18px;
	}
	
	p {
		font-size:15px;
		line-height:25px;
	}
	
	ul li {
		font-size:15px;
		line-height:25px;
	}
	
	a {
		font-size:15px;
		line-height:25px;
	}
	
	nav ul {
		display:none !important;
	}
	
	#mobile-menu {
		display:block;
	}
	
	.pattern-block {
		padding:0;
		border:0;
	}
	
	#what-we-offer .col2:nth-child(1) .container:nth-child(1) {
		width:100%;
		padding:40px;
	}
	
	#what-we-offer .col2:nth-child(1) .container:nth-child(2) {
		text-align:left;
		background:#fff;
		width:100%;
		padding:0 40px 40px;
	}
	
	#what-we-offer .col2:nth-child(1) .container:nth-child(2) br {
		display:none;
	}
	
	#services-list {
		text-align:left;
	}
	
	#services-list br,
	#results .col2:nth-child(2) br {
		display:none;
	}
	
	#results .col2:nth-child(2) h4 {
		text-align:left;
	}
	
	#services-list ul li,
	#what-we-offer .col2:nth-child(1) .container:nth-child(2) ul li {
		position:relative;
		padding:0 0 0 25px;
	}
	
	#services-list ul li:before,
	#what-we-offer .col2:nth-child(1) .container:nth-child(2) ul li:before {
		content:"";
		background:url("../images/icon-list.svg") 0 0 no-repeat;
		width:15px;
		height:11px;
		position:absolute;
		top:4px;
		left:0;
	}
	
	#team ul li {
		width:100%;
	}
	
	#team ul li:not(:last-child) article {
		width:220px;
	}

	#team ul li:last-child article {
		display:none;
	}

	#team ul li:last-child div {
		padding:60px 40px;
	}
	
	#services-list .col3 {
		width:100%;
		padding:40px !important;
	}
	
	#services-list .col3:nth-child(2) {
		border-bottom:1px solid #fff;
	}
	
	#blog-list .col2:nth-child(2) {
		padding:20px;
	}

	#blog-list .container {
		padding:0;
	}

	#blog-list .col2:nth-child(2) .container {
		padding:20px;
	}
}
