/*
	Theme Name: Manta Capital
	Theme URI: 
	Description: A bespoke Wordpress theme
	Version: 1.0.0
	Author: 
	Author URI: 
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
	MAIN
\*------------------------------------*/

:root {
	--black: rgba(40, 38, 37, 1);
	--green: rgba(7, 56, 49, 1);
	--green-75: rgba(64, 101, 96, 1);
	--stone: rgba(237, 230, 227, 1);
	--dark-stone: rgba(209, 196, 194, 1);
	--stone-25: linear-gradient(0deg, rgba(237, 230, 227, 0.25), rgba(237, 230, 227, 0.25)), #FFFFFF;
	--stone-50: linear-gradient(0deg, rgba(237, 230, 227, 0.5), rgba(237, 230, 227, 0.5)), #FFFFFF;
	--beige: rgba(236,204,190, 1);
	--grey: rgba(148, 148, 148, 1);
	--quartz: rgba(235, 211, 200, 1);
	--dark-quartz: rgba(237, 186, 171, 1);
	--sage: rgba(160, 177, 169, 1);
	--wrapper-max: 1520px;
	--wrapper-width: 81.3%;
	--wrapper-header-max: 1620px;
	--box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.24);
	--border-radius: 10px;
}


/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}

/*------------------------------------*\
	CORE STRUCTURE
\*------------------------------------*/

/* wrappers */
.wrapper {
	max-width: var(--wrapper-max);
	width: var(--wrapper-width);
	margin:0 auto;
}

.wrapper.full-width{
	max-width:100%;
}

/*------------------------------------*\
	FONTS @font-face
\*------------------------------------*/

/* Gotham Pro */

@font-face {
	font-family: 'Gotham Pro Medium';
	src: url('fonts/gotham-pro/GothamPro-Medium.woff2') format('woff2'),
		url('fonts/gotham-pro/GothamPro-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham Pro Black';
	src: url('fonts/gotham-pro/GothamPro-Black.woff2') format('woff2'),
		url('fonts/gotham-pro/GothamPro-Black.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham Pro Bold';
	src: url('fonts/gotham-pro/GothamPro-Bold.woff2') format('woff2'),
		url('fonts/gotham-pro/GothamPro-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham Pro Light';
	src: url('fonts/gotham-pro/GothamPro-Light.woff2') format('woff2'),
		url('fonts/gotham-pro/GothamPro-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham Pro';
	src: url('fonts/gotham-pro/GothamPro.woff2') format('woff2'),
		url('fonts/gotham-pro/GothamPro.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* Neue Leiden */

@font-face {
	font-family: 'Neue Leiden';
	src: url('fonts/neue-leiden/NeueLeiden-Regular.woff2') format('woff2'),
		url('fonts/neue-leiden/NeueLeiden-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Neue Leiden Bold';
	src: url('fonts/neue-leiden/NeueLeiden-Bold.woff2') format('woff2'),
		url('fonts/neue-leiden/NeueLeiden-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Neue Leiden Medium';
	src: url('fonts/neue-leiden/NeueLeiden-Medium.woff2') format('woff2'),
		url('fonts/neue-leiden/NeueLeiden-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Neue Leiden Extra Light';
	src: url('fonts/neue-leiden/NeueLeiden-ExtraLight.woff2') format('woff2'),
		url('fonts/neue-leiden/NeueLeiden-ExtraLight.woff') format('woff');
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}


/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

body, html{
	font-family: 'Gotham Pro';
	font-weight: normal;
	font-style: normal;
	font-display: swap;
	font-size: 20px;
	color: var(--black);
	line-height: 1.3;
}

strong{
	
}

.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6,
.uk-heading-2xlarge,
.uk-heading-large,
.uk-heading-medium,
.uk-heading-small,
.uk-heading-xlarge,
h1,
h2,
h3,
h4,
h5,
h6{
	font-family: 'Gotham Pro Medium';
	line-height: 1.2;
	color:#000;
}

h1,
.uk-h1{
	font-size:150px;
	font-size:7.5rem;
}

@media only screen and (max-width:1280px) {
	
	h1,
	.uk-h1{
		font-size:120px;
		font-size:6rem;
	}
	
}

@media (max-width: 640px) {
	
	h1,
	.uk-h1{
		font-size:44px;
		font-size:2.2rem;
	}
	
}

h2,
.uk-h2{
	font-size:75px;
	font-size:3.75rem;
}

@media only screen and (max-width:1280px) {
	
	h2,
	.uk-h2{
		font-size:60px;
		font-size:3rem;
	}
	
}

@media only screen and (max-width:640px) {
	
	h2,
	.uk-h2{
		font-size:40px;
		font-size:2rem;
	}
	
}

h3,
.uk-h3{
	font-size:45px;
	font-size:2.25rem;
}

@media only screen and (max-width:640px) {
	
	h3,
	.uk-h3{
		font-size:24px;
		font-size:1.2rem;
	}
	
}

h4,
.uk-h4{
	
}

h5,
.uk-h5{
	
}

h6,
.uk-h6{
	
}

.alt-title{
	font-family: 'Neue Leiden';
	font-weight: normal;
	font-style: normal;
	font-display: swap;
	letter-spacing: 0.7rem;
	word-spacing: -1.1rem;
	line-height:1;
	color: var(--green);
}

@media only screen and (max-width:640px) {
	
	.alt-title{
		letter-spacing: 0.4rem;
	}
	
}



/*------------------------------------*\
	HELPERS
\*------------------------------------*/

/* Text colour */

/*
txt-black : Black
txt-white : White
*/

.txt-black,
.txt-black-all > * {
	color: #231F20;
}

.txt-white,
.txt-white-all > * {
	color:#FFFFFF;
}

/* Background colour */

/*
bg-black : Black
bg-white : White
*/

.bg-black {
	background-color: #231F20;
}

.bg-white {
	background-color:#FFFFFF;
}

.bg-stone-25{
	background: var(--stone-25);
}

/* Buttons */

.uk-button.uk-button-default{
	border-radius: 5px;
	text-transform: none;
	font-size: 0.8rem;
	line-height: 54px;
	padding: 0 22px;
}

.uk-button.btn-black{
	background-color:#000;
	border-color:#000;
	color:#fff;
}

.uk-button.btn-black:hover{
	background-color:#fff;
	border-color:#000;
	color:#000;
}

.uk-button.btn-white{
	background-color:#fff;
	border-color:#000;
	color:#000;
}

.uk-button.btn-white:hover{
	background-color:#fff;
	border-color:#000;
	color:#000;
}

.uk-button.btn-quartz{
	background-color:#fff;
	background: var(--quartz);
	border-color:var(--quartz);
	color:var(--green);
}

.uk-button.btn-quartz:hover{
	background:var(--dark-quartz);
	border-color:var(--dark-quartz);
}

.uk-button.btn-green{
	background-color:#fff;
	background: var(--green);
	border-color:var(--green);
	color: #fff;
}

.uk-button.btn-green:hover{
	background:var(--green-75);
	border-color:var(--green-75);
}

.uk-button.btn-dark-quartz-alt{
	background:transparent;
	border-color: var(--dark-quartz);
	color:#fff;
}

.uk-button.btn-dark-quartz-alt:hover{
	background:rgba(237, 230, 227, 0.2);
}



a:hover{
	
}

/* Decoration */

.txt-underline{
	text-decoration:underline!important;
}

em {
  color: #000;
}

.uk-link, a{
	
}

/*------------------------------------*\
	PAGES
\*------------------------------------*/

body.page-template-template-our-story{
	background-color:var(--stone);
}

/*------------------------------------*\
	HEADER ELEMENTS
\*------------------------------------*/

header.header{
	padding: 46px 0;
}

header.header > .wrapper{
	max-width: var(--wrapper-header-max);
}

body.page-template-template-home header.header{
	z-index:9999;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	transition:opacity 0.2s;
	opacity:1;
}

body.page-template-template-home header.header.hide{
	opacity:0;
	pointer-events: none!important;
}

body.page-template-template-home > div.uk-sticky-placeholder:first-of-type{
	display:none!important;
}

@media only screen and (max-width:960px) {
	
	header.header .logo{
		max-width:150px;
	}
	
}

/*------------------------------------*\
	FOOTER ELEMENTS
\*------------------------------------*/

footer.footer{
	background: var(--green);
	color:#fff;
}

footer.footer a{
	color:#fff;
}

footer.footer p{
	font-size:0.9rem;
}

footer.footer p.small,
footer.footer a{
	font-size:0.75rem;
}

footer.footer .footer-links a{
	text-decoration:underline;
	display:inline-block;
	margin-left:20px;
}

footer.footer p.small span{
	color: var(--dark-quartz);
	font-family: "Gotham Pro Medium";
	font-weight:400;
}

footer.footer nav.main-navigation ul li a{
	color:#fff;
	font-weight:400;
	font-family: 'Gotham Pro';
	font-size:0.9rem;
}

@media only screen and (max-width:1440px) {
	
	footer.footer .footer-links a{
		font-size: 0.4rem;
	}
	
	footer.footer img.logo-img{
		max-width:212px;
	}
	
}

@media only screen and (max-width:960px) {
	
	footer.footer nav.main-navigation .uk-navbar-nav{
		display:block;
	}
	
	footer.footer nav.main-navigation .uk-navbar-right{
		margin:0;
	}
	
	footer.footer nav.main-navigation .uk-navbar-nav > li > a{
		justify-content: left;
		min-height: 35px;
	}
	
	footer.footer .footer-links a{
		display:block;
		margin-left: 0px;
		margin-bottom: 10px;
	}
	
	footer.footer div.uk-flex-right{
		justify-content: flex-start;
	}
	
	footer.footer .wrapper > div{
		padding:0;
	}
	
	footer.footer .wrapper > div:first-of-type{
		border-bottom: 1px solid rgba(237, 186, 171, 1);
		padding-bottom:20px;
		margin-bottom: 30px !important;
	}
	
	footer.footer{
		padding-top:80px;
	}
	
}

/*------------------------------------*\
	NAVIGATION MENUS
\*------------------------------------*/

nav.main-navigation .uk-navbar-nav {
	gap: 60px;
}

nav.main-navigation .uk-navbar-nav > li > a{
	font-family: 'Gotham Pro Medium';
	text-transform:none;
	color: var(--green);
	font-size: 0.9rem;
	position:relative;
}

nav.main-navigation ul li.current_page_item > a:after{
	content:"";
	display:block;
	position:absolute;
	left:50%;
	bottom:0;
	transform:translate(-50%, -50%);
	width:11px;
	height:11px;
	border-radius:50%;
	background-color: var(--green);
}

#mobile-nav .uk-offcanvas-bar{
	background:var(--green);
}

#mobile-nav .uk-offcanvas-bar .uk-nav-default > li > a{
	color:#fff;
	font-family: 'Gotham Pro Medium';
	text-transform: none;
	font-size: 0.9rem;
	position: relative;
	margin:20px 0;
}

/*------------------------------------*\
	COMPONENTS
\*------------------------------------*/

/* Homepage */

section#home-hero div#paralax-hero_scene{
	background-color: #FAF9F8;
	overflow:hidden;
	height:210vh;
	height:210svh;
}

section#home-hero div.frame-wrap{
	background-color: #FAF9F8;
	width:100vw;
	height:100vh;
	height:100svh;
	overflow:hidden;
}

section#home-hero div.frame-wrap > div.video-wrap{
	position:absolute;
	width:70%;
	height:60%;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	overflow:hidden;
}

section#home-hero div.frame-wrap > div.video-wrap > video{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1);
	width: auto;
	height: auto;
	max-width: none;
	min-height: 100vh;
	min-height: 100svh;
	min-width: 100vw;
	z-index:1;
}

section#home-hero div.frame-wrap.animate > div.video-wrap{
	width:100%;
	height:100%;
}

section#home-hero div.frame-wrap.animate > div.video-wrap > video{
	transform: translate(-50%, -50%) scale(1.1);
}

section#home-hero div.frame-wrap > div.video-wrap > svg{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width:200px;
	height:auto;
	z-index:2;
}

section#home-hero div.frame-wrap.animate > div.video-wrap > svg{
	opacity:0;
}

section#home-hero div.frame-wrap > div.content-wrap{
	position:absolute;
	width:100%;
	left:0;
	bottom:0;
	z-index:2;
	padding-bottom:100px;
	padding-bottom:calc( (95vw - var(--wrapper-width)) / 2);
	padding-top:calc( (95vw - var(--wrapper-width)) / 2);
	/*transition: all 3s cubic-bezier(0.08,0.82,0.17,1);
	transition-delay:1s;*/
	transform:translateY(100%);
	background-attachment: scroll;
	background-size: 65%;
	background-repeat: no-repeat;
	background-position:right bottom;
}

@media only screen and (max-width:960px) {
	
	section#home-hero div.frame-wrap > div.content-wrap{
		height:100%;
		align-items: center;
		display: flex;
	}
	
}

section#home-hero div.frame-wrap.animate > div.content-wrap{
	
}

section#home-hero div.frame-wrap > div.content-wrap h1{
	color:#fff;
	font-size:7.5rem;
	font-size: clamp(4rem, 15vh, 7.5rem);
	line-height:1;
	letter-spacing: 1.4rem;
	font-family: 'Neue Leiden Medium';
	font-weight:500;
}



@media only screen and (max-width:640px) {
	
	section#home-hero div.frame-wrap > div.content-wrap h1{
		font-size: clamp(2.8rem, 6vh, 7.5rem);
	}
	
}

section#home-section-1 .uk-cover-container{
	aspect-ratio: 1 / 0.9;
	border-radius: var(--border-radius);
}

section#home-section-1 .uk-cover-container > img{
	transition: transform 0.6s;
	transform: scale(1);
}

section#home-section-1 .uk-cover-container:hover > img{
	transform: scale(1.07);
}

section#home-section-2 div.tabs{
	box-shadow: var(--box-shadow);
	border-radius: var(--border-radius);
	margin:60px 0 120px 0;
}

section#home-section-2 div.tabs .switcher-container{
	height:100%;
	background-color: var(--green);
	border-radius:var(--border-radius);
}

section#home-section-2 div.tabs ul{
	list-style:none;
	padding:0;
	margin:0;
}

section#home-section-2 div.tabs ul li a{
	padding: 15px 30px;
	border: 1px solid var(--green);
	border-radius: 5px;
	color:var(--green);
	display:block;
	font-size:0.8rem;
	margin-bottom:20px;
	line-height:1.2;
	text-decoration:none!important;
}

section#home-section-2 div.tabs ul li:last-of-type a{
	margin-bottom:0;
}

section#home-section-2 div.tabs ul li.uk-active a{
	background: var(--green);
	color:#fff;
}

section#home-section-2 div.tabs ul li a svg{
	float:right;
}

section#home-section-2 div.tabs div.content{
	padding:30px 70px;
}

section#home-section-2 div.tabs ul li.uk-active a svg path{
	fill:#fff;
}

section#home-section-2 div.tabs div.content h1,
section#home-section-2 div.tabs div.content h2,
section#home-section-2 div.tabs div.content h3,
section#home-section-2 div.tabs div.content h4,
section#home-section-2 div.tabs div.content h5{
	color: var(--dark-quartz);
	font-size:2.25rem;
	line-height:1;
}

section#home-section-2 div.tabs div.content p{
	color:#fff;
	lin-height: 1.1;
}

@media only screen and (max-width:1600px) {
	
	section#home-section-2 div.tabs div.content h1,
	section#home-section-2 div.tabs div.content h2,
	section#home-section-2 div.tabs div.content h3,
	section#home-section-2 div.tabs div.content h4,
	section#home-section-2 div.tabs div.content h5{
		font-size:1.75rem;
	}
	
	section#home-section-2 div.tabs div.content{
		padding:30px 40px;
	}
	
}

@media (min-width: 1200px) {
	
	section#home-section-2.uk-padding-large{
		padding-bottom:100px;
	}
	
}

@media only screen and (max-width:640px) {
	
	section#home-section-2 div.tabs div.content h1,
	section#home-section-2 div.tabs div.content h2,
	section#home-section-2 div.tabs div.content h3,
	section#home-section-2 div.tabs div.content h4,
	section#home-section-2 div.tabs div.content h5{
		font-size:1rem;
	}
	
}

section#home-section-3 div.portfolio-items div.item{
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	background: var(--stone-50);
	margin-bottom:40px;
}

section#home-section-3 div.portfolio-items div.item div.content{
	background: var(--green);
	padding:70px;
	border-radius: var(--border-radius);
	min-height: 430px;
}

section#home-section-3 .uk-dotnav > * > *{
	border-color: var(--green);
	width: 15px;
	height: 15px;
}

section#home-section-3 .uk-dotnav > .uk-active > *{
	background-color:var(--green);
	border-color: var(--green);
}

@media only screen and (max-height:769px) {
	section#home-section-3 div.portfolio-items div.item div.content{
		padding:30px;
		min-height: 300px;
	}
	
	section#home-section-3 h2.uk-h1.alt-title{
		font-size:5rem;
	}
}

@media only screen and (max-width:640px) {
	
	section#home-section-3 div.portfolio-items div.item div.content{
		padding: 20px;
		min-height:auto;
	}
	
	section#home-section-3 div.portfolio-items div.item{
		box-shadow: 6px 6px 10px rgba(0,0,0,0.2);
		margin-bottom:0;
	}
	
}

section#home-section-3 div.portfolio-items div.item div.content .postcode{
	color: var(--dark-quartz);
	font-size:2.25rem;
	font-family: 'Neue Leiden Extra Light';
	font-weight: 200;
	line-height:1;
}

section#home-section-3 div.portfolio-items div.item div.content .title{
	color: #fff;
	font-size:1.9rem;
	font-weight: 500;
	text-transform:uppercase;
	font-family: 'Gotham Pro Medium';
	line-height:1;
}

@media only screen and (max-width:640px) {
	
	section#home-section-3 div.portfolio-items div.item div.content .title{
		font-size:1.2rem;
		margin-top:0;
	}
	
	section#home-section-3 div.portfolio-items div.item div.content .postcode{
		font-size:1.5rem;
		margin-bottom:0;
	}
	
}

section#home-section-3 div.portfolio-items div.item div.image{
	height:100%;
	border-radius: var(--border-radius);
	overflow:hidden;
}

section#home-section-3 div.portfolio-items div.item div.image span.coming-soon,
section#portfolio div.portfolio-items div.item.portfolio-item .image span.coming-soon{
	position: absolute;
	z-index: 2;
	background: var(--green);
	color: var(--dark-quartz);
	padding: 12px 12px 10px 12px;
	border-radius: 6px;
	top: 20px;
	right: 20px;
	border: 1px solid #fff;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1;
}

@media only screen and (max-width:960px) {
	
	section#home-section-3 div.portfolio-items div.item div.image{
		height:200px;
	}
	
}

section#home-section-4 div.content p:last-of-type{
	margin-bottom:0;
	max-width:1042px;
}

/* Pages */

section#page-header{
	padding:80px 0;
}

section#page-header span.line{
	position:absolute;
	background:var(--dark-stone);
	width:250px;
	height:1px;
	display:block;
}

section#page-header span.line:first-of-type{
	right:0;
	top:0;
}

section#page-header span.line:last-of-type{
	left:0;
	bottom:140px;
	top:auto;
	right:auto;
}

section#page-header span.line::after{
	content: '';
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--dark-stone);
	left: 0;
	top: -3px;
}

section#page-header span.line:last-of-type::after{
	top: -3px;
	right:-3px;
	left: auto;
}

section#page-header .uk-cover-container{
	height:470px;
	border-radius:10px;
}

@media only screen and (max-width:1280px) {
	
	section#page-header .uk-cover-container{
		height:385px;
	}
	
}

@media only screen and (max-width:640px) {
	
	section#page-header {
	  padding: 20px 0;
	}
	
	section#page-header .uk-cover-container{
		height:200px;
	}
	
	section#page-header span.line{
		display:none;
	}
	
}

section#timeline{
	padding: 200px 0;
	margin-bottom:150px;
}

section#timeline span.line{
	display: block;
	position: absolute;
	top: 0;
	left: 55%;
	transform: translateX(-1px);
	background: var(--dark-stone);
	height: 100%;
	width: 2px;
}

@media only screen and (max-width:1200px) {
	
	section#timeline span.line{
		transform: translateX(13px);
	}
	
}

section#timeline span.line::before{
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--dark-stone);
	left: 50%;
	top: 0px;
	transform: translateX(-50%);
}

section#timeline span.line::after{
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--dark-stone);
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
}

section#timeline > span.line::after{
	background: linear-gradient(360deg, #EDE6E3 0%, rgba(237, 230, 227, 0) 103.64%);
	border-radius: 0;
	width: 100%;
	height: 100px;
	left: 0;
	bottom: 0;
	transform: translateX(0);
}

section#page-header h1{
	transform: translateY(-50%);
}

@media only screen and (min-width:960px) {
	section#timeline .timeline-item{
		height:100vh;
	}
}

section#timeline .timeline-item:last-of-type{
	margin-bottom:0;
}

section#timeline .timeline-item h2{
	text-transform:uppercase;
	position:relative;
	font-size:6rem;
	font-family: 'Neue Leiden Medium';
	font-weight:500;

}

@media only screen and (max-width:1500px) {
	
	section#timeline .timeline-item h2{
		font-size:4rem;
	}
	
}

@media (min-width: 960px) {
	
	section#timeline .uk-width-3-5\@m {
		width: 55%;
	}
	
	section#timeline .uk-width-2-5\@m {
		width: 45%;
	}
  
}




section#timeline .timeline-item:nth-of-type(odd) h2{
	-webkit-text-stroke: 1px var(--green);
	-webkit-text-fill-color: transparent;
}

section#timeline .timeline-item:nth-of-type(even) h2{
	color:var(--dark-quartz);
}

section#timeline .timeline-item h2::after{
	content: '';
	display: block;
	position: absolute;
	left: 100%;
	top: 50%;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--dark-quartz);
	transform: translate(20px, -50%);
}

section#timeline .timeline-item:nth-of-type(even) h2:after{
	background:var(--green);
}

section#timeline .timeline-item .content{
	max-width:580px;
	margin: 100px 0 0 0;
}

@media only screen and (max-width:960px) {
	
	section#timeline .timeline-wrap{
		max-width: var(--wrapper-max);
		width: var(--wrapper-width);
		margin: 0 auto;
		padding:0!important;
	}
	
	section#timeline {
		padding:0;
	}
	
	section#timeline span.line{
		display:none;
	}
	
	section#timeline .timeline-item {
	   margin: 0;
	   position:relative;
	   padding-top:100px;
	}
	
	section#timeline .timeline-item .content{
		margin:0;
	}
	
	section#timeline .timeline-item .uk-padding{
		padding:0!important;
	}
	
	section#timeline .timeline-item h2::after{
		display:none;
	}
	
	section#timeline .timeline-item span.line{
		background: var(--dark-stone);
		position:absolute;
		top:0;
		left:50%;
		transform:translateX(-50%);
		width:2px;
		height:100px;
		display:block;
	}
	
	section#timeline .timeline-item span.line::after{
		width:20px;
		height:20px;
	}
	
	section#timeline .timeline-item:nth-of-type(odd) span.line::after{
		background:var(--dark-quartz);
	}
	
	section#timeline .timeline-item:nth-of-type(even) span.line::after{
		background:var(--green);
	}
	
}

@media only screen and (max-width:640px) {
	
	section#timeline .timeline-item h2 {
		font-size: 1.7rem;
	}
	
	section#timeline .timeline-item img{
		max-width:111px;
		margin-bottom:20px;
	}
	
	section#timeline .timeline-item .uk-grid-large > .uk-grid-margin{
		margin-top:0;
	}
	
}

section#content-card div.card{
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	background:#fff;
}

section#content-card div.card .content{
	background: var(--green);
	border-radius: var(--border-radius);
	padding:50px;
}

section#content-card div.card .content h3{
	color: var(--dark-quartz);
	line-height: 1;
}

section#content-card div.card .content p{
	color:#fff;
	line-height:1.2;
}

section#content-card div.card .uk-cover-container{
	border-radius: var(--border-radius);
}

@media (max-width: 960px) {
	
	section#content-card div.card .uk-cover-container{
		height:300px;
	}
	
	section#content-card div.card .content{
		padding:20px;
	}
	
}

section#team .team-wrapper::after{
	content:"";
	position: absolute;
	background: var(--dark-stone);
	width:1px;
	height:100%;
	left:50%;
	top:30%;
}

section#team .team-item{
	/*overflow:hidden;
	border-radius: var(--border-radius);*/
}

section#team .team-item::after{
	content:"";
	position: absolute;
	background: var(--dark-stone);
	width:150%;
	height:1px;
	right:40px;
	bottom:0;
	transform:translateY(35px);
}

section#team .team-wrapper > div > div > div:nth-of-type(even) > .team-item::after{
	right:auto;
	left:40px;
}

section#team .team-wrapper > div > div > div:nth-last-child(2) > .team-item::after,
section#team .team-wrapper > div > div > div:last-of-type > .team-item::after{
	display:none;
}

@media (max-width: 1200px) {
	
	section#team .team-item::after{
		transform: translateY(20px);
	}
	
}

@media (max-width: 960px) {
	
	section#team .team-item::after,
	section#team .team-wrapper::after{
		display:none;
	}
	
}

section#team .team-item .team-image{
	aspect-ratio: 2 / 1.3;
	border-radius:10px 10px 0 0;
}

section#team .team-item .team-content{
	background: var(--dark-stone);
	padding:50px 70px;
	border-radius:0 0 10px 10px;
}

section#team .team-item .team-content h3{
	font-size:2rem;
	letter-spacing: 0.5rem;
	word-spacing: -0.5rem;
}

section#team .team-item .team-content p{
	color:#fff;
	font-weight:500;
	font-family: 'Gotham Pro Medium';
}

section#team .team-item .team-bio{
	background: var(--green);
}

section#team .team-item .team-bio div.overlay{
	padding:0px 70px;
}

section#team .team-item .team-toggle > svg{
	transition:all 0.3s;
	cursor:pointer;
}

section#team .team-item .team-toggle:hover > svg.team-arrow{
	transform: rotate(45deg);
}

section#team .team-item .team-bio div.overlay p{
	line-height:1.1;
	font-size:0.8rem;
}

section#team .team-item .team-bio .scroll-container{
	padding:50px 0px;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}



@media (max-width: 1600px) {
	
	section#team .team-item .team-content h3{
		font-size: 1.5rem;
		letter-spacing: 0.4rem;
		word-spacing: -0.5rem;
	}
	
	section#team .team-item .team-content,
	section#team .team-item .team-bio > div.overlay{
		padding: 30px 50px;
	}
	
	/*section#team .team-item .team-bio > div.overlay p{
		font-size:0.8rem;
	}*/
	
}

@media (max-width: 640px) {
	
	section#team .team-item .team-content,
	section#team .team-item .team-bio > div.overlay{
		padding: 20px;
	}
	
	section#team .team-item .team-toggle{
		padding: 10px;
	}
	
	section#team .team-item .team-toggle svg{
		width:30px;
		height:32px;
	}
	
	section#team .team-item .team-bio > div.overlay p{
		font-size: 0.7rem;
		padding-right: 30px;
	}
	
}

body.page-template-template-team{
	background:var(--stone-25);
}

body.page-template-template-team section#content-card div.card .content{
	background:var(--sage);
}

body.page-template-template-team section#content-card div.card .content h3{
	color: var(--green);
}

body.page-template-template-team section#content-card div.card .content p{
	color:var(--black);
}

body.page-template-template-team section#content-card div.card .content a.uk-button{
	border-color:var(--green);
	color:var(--green);
}

section#content-block p{
	font-size:1.5rem;
}

@media (max-width: 1200px) {
  section#content-block p{
	  font-size:1rem;
  }
}

section#content-rows{
	margin-top:100px;
	margin-bottom:40px;
}

section#content-rows div.content-row{
	border-top:1px solid var(--dark-stone);
	padding:200px 0;
}

section#content-rows div.content-row h2{
	color: var(--dark-quartz);
}

section#content-rows div.content-row p:last-of-type{
	margin-bottom:0;
}

section#content-rows div.content-row.no-title p{
	font-size:1.5rem;
}

@media (max-width: 1200px) {
	section#content-rows div.content-row.no-title p{
		font-size:1rem;
	}
}

body.page-template-template-approach{
	background-color:rgba(229, 234, 234, 1);
}

body.page-template-template-approach section#content-card div.card .content{
	background:var(--dark-quartz);
}

body.page-template-template-approach section#content-card div.card .content h3{
	color: var(--green);
}

body.page-template-template-approach section#content-card div.card .content p{
	color:var(--black);
}

body.page-template-template-approach section#content-card div.card .content a.uk-button{
	border-color:var(--green);
	color:var(--green);
}

section#portfolio{
	padding-bottom:80px;
}

section#portfolio .section-title{
	color:var(--green);
}

section#portfolio .section-title .uk-leader-fill::after{
	color:var(--green);
}

section#portfolio div.portfolio-items div.item div.content .postcode{
	color: var(--dark-quartz);
	font-size:2.25rem;
	font-family: 'Neue Leiden';
	font-weight: 300;
	line-height:1;
}

section#portfolio div.portfolio-items div.item div.content .title{
	color: #fff;
	font-size:1.9rem;
	font-weight: 500;
	text-transform:uppercase;
	font-family: 'Gotham Pro Medium';
	line-height:1;
	color:var(--green);
}

section#portfolio div.portfolio-items div.item.portfolio-item{
	padding:45px;
	border-radius:var(--border-radius);
	background:var(--green);
}

section#portfolio div.portfolio-items div.item.portfolio-item .content{
	background:#fff;
	padding:40px;
	border-radius:var(--border-radius);
}

section#portfolio div.portfolio-items div.item.portfolio-item .image{
	border-radius: var(--border-radius);
	margin-bottom:40px;
	height:283px;
}

section#portfolio div.portfolio-items div.item.portfolio-item p.summary{
	font-family: 'Gotham Pro Medium';
	font-weight:500;
}

section#portfolio div.portfolio-items div.item.portfolio-item .toggle{
	position:absolute;
	top:40px;
	right:40px;
}

section#portfolio div.portfolio-items div.item.portfolio-item .toggle a svg{
	transition: all 0.2s;
}

section#portfolio div.portfolio-items div.item.portfolio-item .toggle a.active svg{
	transform:rotate(45deg);
}

section#portfolio div.portfolio-items div.item.portfolio-item .toggle a.active svg rect{
	fill:var(--dark-quartz);
	stroke:var(--dark-quartz);
}

section#portfolio span.line:last-of-type{
	position: absolute;
	background: var(--dark-stone);
	width: 250px;
	height: 1px;
	display: block;
	left: 0;
	bottom: 0px;
	top: auto;
	right: auto;
}

section#portfolio span.line::after {
	content: '';
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--dark-stone);
	top: -3px;
	right: -3px;
}

@media only screen and (max-width:960px) {
	
	section#portfolio span.line{
		display:none!important;
	}
	
}

@media only screen and (max-width:1440px) {
	
	section#portfolio div.portfolio-items div.item.portfolio-item,
	section#portfolio div.portfolio-items div.item.portfolio-item .content{
		padding:30px;
	}
	
	section#portfolio div.portfolio-items div.item.portfolio-item .image{
		margin-bottom:30px;
	}
	
	section#portfolio div.portfolio-items div.item.portfolio-item .toggle{
		top:30px;
		right:30px;
	}
	
	section#portfolio div.portfolio-items div.item div.content .postcode{
		font-size:1.9rem;
	}
	
	section#portfolio div.portfolio-items div.item div.content .title{
		font-size:1.5rem;
	}
	
	section#portfolio div.portfolio-items div.item.content p,
	section#portfolio div.portfolio-items div.item.portfolio-item .item-content p{
		font-size:0.9rem;
	}
	
}

@media only screen and (max-width:640px) {
	
	section#portfolio div.portfolio-items div.item div.content .title{
		font-size:1.2rem;
		margin-top:0;
	}
	
	section#portfolio div.portfolio-items div.item div.content .postcode{
		font-size:1.5rem;
		margin-bottom:0;
	}
	
	section#portfolio div.portfolio-items div.item.portfolio-item .image{
		height: 200px;
	}
	
	section#portfolio div.portfolio-items div.item div.content .toggle svg{
		width:20px;
	}
	
	section#portfolio div.portfolio-items div.item.portfolio-item .item-content p{
		font-size: 0.7rem;
	}
	
}

/* Global */

body.page-template-template-approach,
body.page-template-template-team,
body.page-template-template-portfolio{
	background-color:rgba(229, 234, 234, 1);
}

body.page-template-template-approach span.line,
body.page-template-template-portfolio span.line{
	background: var(--green)!important;
}

body.page-template-template-approach span.line::after,
body.page-template-template-portfolio span.line::after{
	background: var(--green)!important;
}

.section-title{
	font-family: 'Gotham Pro';
	font-weight: normal;
	font-style: normal;
	font-size: 0.9rem;
	color: var(--grey);
	margin-bottom: 50px;
}

.section-title .uk-leader-fill::after{
	font-weight: 300;
	transform: translateY(-30%);
	margin-left: 20px;
	color:var(--dark-stone);
}

@media (min-width: 1200px) {
  section.uk-padding-large {
	padding: 150px;
  }
}

.uk-hr,
hr{
	border-top:1px solid var(--dark-stone);
}

@media only screen and (max-width:640px) {
	
	p{
		font-size: 0.7rem;
	}
	
	.uk-button.uk-button-default{
		width:100%;
		font-size:0.7rem;
	}
	
	section#home-section-2 div.tabs ul li a{
		position:relative;
		padding-right: 40px;
	}
	
	section#home-section-2 div.tabs ul li a svg{
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
	}
}

section#portfolio .portfolio-items h2.alt-title{
	letter-spacing: 0.5rem;
	word-spacing: 0.2rem;
	max-width: 600px;
}

@media only screen and (max-width:960px) {
	section#content-rows div.content-row h2{
		letter-spacing: 0.2rem;
		word-spacing: 0.1rem;
	}
}

/*------------------------------------*\
	MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
	WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}

.alignright {
	float:right;
	margin:5px 0 20px 20px;
}

.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}

a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}

a img.alignnone {
	margin:5px 20px 20px 0;
}

a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}

a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}

.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}

.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}

.wp-caption.alignright {
	margin:5px 0 20px 20px;
}

.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}

.sticky {

}

.bypostauthor {

}

/*------------------------------------*\
	PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	
	a,
	a:visited {
		text-decoration:underline;
	}
	
	a[href]:after {
		content:" (" attr(href) ")";
	}
	
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	
	thead {
		display:table-header-group;
	}
	
	tr,img {
		page-break-inside:avoid;
	}
	
	img {
		max-width:100% !important;
	}
	
	@page {
		margin:0.5cm;
	}
	
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	
	h2,
	h3 {
		page-break-after:avoid;
	}
	
}
