@charset "UTF-8";

/* Body */

body, html {
	margin: 0;
	padding: 0;
	font-family: "museo", serif;
	font-weight: 300;
	font-size: 1em;
	line-height: 1.3;
	color: var(--grey);
}


/* Screen size */

@media only screen and (min-width: 768px) {
.mobile-only {
	display: none !important;
}
}


/* Colours */

:root {
--white: #FFFFFF;
--black: #000000;
--grey: #413843;
--green: #006834;
--lime: #80c242;
--orange: #f58a1f;
--cream: #f8f4dd;
--light-blue: #afd4d1;
--light-pink: #fac0bc;
--light-green: #e4e7b8;
--light-purple: #d6cadd;
--light-yellow: #fac375;
}


/* Typography */

h1 {font-size:2.6em;}
h2 {font-size:2.2em;}
h3 {font-size:1.7em;}
h4 {font-size:1.2em;}
h1, h2, h3, h4 {
	font-weight: 900;
	font-family: museo, serif; 
	font-style: normal;
	line-height: 1.2;
	color: inherit;
}

a {color:inherit; text-decoration: underline; font-weight: 700;}
a:hover {text-decoration:none;}

strong {font-weight: 700;}

hr {display: block; margin-top: 1.5em; margin-bottom: 1.5em; margin-left: auto; margin-right: auto; border-style:solid; border-width: 5px; border-color:#ebebeb;}

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

li {
	margin-bottom: 0.25em;
}


/* Buttons */

.link-button-container {
	display: flex;
	padding: 15px 0;
}
.link-button {
	padding: 20px 30px;
	border-radius: 30px;
	background: var(--grey);
	cursor: pointer;
	margin: 15px 0;
	transition: ease all 0.5s;
}
.link-button:hover {
	transform: scale(0.95);
}
.link-button-text {
	color: var(--white);
	font-weight: 700;
	text-decoration: none;
}


/* Images */

.alignleft {float:left;	margin: 15px 15px 15px 0;}
.alignright {float:right; margin: 15px 0 15px 15px;}
.alignnone {}
.aligncenter {
	text-align: center;
	margin: 0 auto 0;
}

img {
	max-width: 100%;
	height: auto;
}


/* Structure */

.clear {
	content: "";
	clear: both;
	display: block;
}

* {box-sizing: border-box;}

.block {
	padding: 60px 0;
	position: relative;
}
.wrapper {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
.smallwrapper {
	max-width: 800px;
	margin: 0 auto;
}
.row:after, .wrapper:after, .smallwrapper:after {
	content: "";
	clear: both;
	display: block;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
.small-container {
	max-width: 800px;
	margin: 0 auto;
}
.flex-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.flex-top {
	align-items: flex-start !important;
}
.justify-centred {
	justify-content: center;
}

[class*="col-"] {
	display: block;
	padding: 15px;
	width: 100%;
}

@media only screen and (min-width: 768px) {
    /* For desktop: */
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
}


/* Tables */

thead, th {
	background-color: var(--grey);
	color: var(--white);
	text-align: left;
	font-weight: 700;
}
th, td, tr {
	padding: 5px 10px; 
	font-size: 0.95em;
	border: solid 0.5px var(--grey);
}
td {
	width: auto;
}
tr {
	
}
tr:nth-of-type(even) {
	background-color: var(--cream);
}


/* Header */

.header {
	position: relative;
	color: var(--white);
	background-color: var(--black);
	height: 500px;
}
.header-curve {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 150px;
	background: url(../images/header-scribble-curve.svg) no-repeat top center;
	background-size: cover;
}
.header-feature {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	opacity: 0.5;
}
.header-feature img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.header-title {
	text-align: center;
	position: absolute;
	width: 50%;
	left: 50%;
	top: 35%;
	transform: translateX(-50%);
}
.header-title h1::after {
	display: flex;
	content: "";
	height: 50px;
	background: url(../images/green-scribble-line.svg) no-repeat center;
	width: 50%;
	margin: 0 auto;
}



/* Logo */

.logo {
	padding-right: 45px;
}


/* Language Toggle */

.language {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-weight: 700;
	font-size: 0.8em;
}
.language ul, .language li {
	list-style: none; 
	-webkit-margin-before: 0; 
	-webkit-margin-after: 0; 
	-webkit-padding-start: 0;
}
.language .textwidget p {
	margin: 0; 
	display: inline-block; 
}
.language a {
	transition: ease all 0.5s;
	color: var(--white);
	padding: 0 !important;
}
.language a:hover {
	opacity: 0.6;
}
.wpml-ls-legacy-list-horizontal {
	padding: 0 !important;
}
.wpml-ls-legacy-list-horizontal ul {
	list-style-type: none; 
	list-style-image: none; 
	margin: 0; 
	padding: 0; 
	-webkit-margin-before: 0; 
	-webkit-margin-after: 0;
}


/* Search */

.search {
	padding: 0 30px;
	border: none;
}
.header-search-form {
	height: 50px;
	display: flex;
	align-items: center;
	border-radius: 30px;
	border: 3px solid var(--white);
	background-color: var(--white);
	transition: ease all 0.5s;
}
.header-search-form:hover, .header-search-form:focus, .header-search-input:focus {
	border: 3px solid var(--lime);
}
.header-search-input {
	border-radius: 28px 0 0 30px;
	border: none !important;
	height: 100%;
	width: 75%;
	padding: 15px 30px;
	font-size: 1em;
	color: var(--grey);
	font-family: "museo", serif;
	font-weight: 300;
}
.header-search-input::placeholder {
	font-size: 1em;
	color: var(--grey);
}
.header-search-button {
	cursor: pointer;
	height: 100%;
	width: 25%; 
	border: none;  
	background-color: var(--white); 
	border-radius: 0 30px 30px 0; 
	-webkit-appearance: none;
	transition: ease all 0.5s;
}
.header-search-button:hover {
	background-color: var(--lime);
}


/* Navigation */

.navigation {
	
}
.menu-button {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	border-radius: 30px;
	background-color: var(--orange);
	color: var(--grey);
	font-size: 1.2em;
	font-weight: 700; 
	cursor: pointer;
	transition: ease all 0.5s;
}
.menu-button:hover {
	transform: scale(0.95);
}
.menu-button span {
	padding: 0 7.5px 0 0;
}
.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 999;
	top: 0;
	right: 0;
	background-color: var(--green); 
	overflow: hidden;
	transition: 0.5s;
	padding-top: 30px;
	text-align: center;
}
.sidenav a {
	padding: 5px;
	text-decoration: none;
	font-size: 2em;
	font-weight: 900;
	display: block;
	transition: 0.3s;
	color: var(--white);
}
.sidenav a:hover {
	opacity:0.6;
}
.sidenav .closebtn {
	position: relative;
	font-size: 4em;
}
menu, menu ul, menu ul li {
	list-style-type: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
}

#breadcrumbs {padding-bottom: 15px; font-size: 0.7em; font-weight: 700;}
#breadcrumbs a {font-weight: 400; text-decoration: none; color: var(--blue);}
#breadcrumbs a:hover {text-decoration: underline;}


/* Content */

#content {
	font-size: 1.15em;
}


/* Text Block */

h2.text-block-title {
	text-align: center;
	color: var(--green);
	font-size: 2.2em;
	margin-top: 0;
	margin-bottom: 15px;
}
h2.text-block-title::after {
	display: flex;
	content: "";
	height: 50px;
	background: url(../images/green-scribble-line.svg) no-repeat center;
	width: 300px;
	margin: 0 auto;
}

.text-block h1, .text-block h2, .text-block h3, .text-block h4 {
	color: var(--green);
}


/* Text and Image Block */

.text-image {
	display: flex;
	align-items: flex-start;
}
.text-image:nth-child(even) {
	flex-direction: row-reverse;
}
.text-image-text {
	padding: 60px 30px 15px;
}
.text-image-text > :first-child {
	margin-top: 0;
}
.text-image-text h2, .text-image-text h3, .text-image-text h4 {
	color: var(--green);
}
.text-image-image {
	display: flex;
	background-position: top left;
	background-repeat: no-repeat;
	background-size: contain;
	padding: 60px 0 0 60px;
}
.text-image-image img {
	aspect-ratio: 3/2;
	object-fit: cover;
	border-radius: 30px;
	box-shadow: 0 0 30px 0 rgba(0,0,0,0.15);
}

.light-blue {
	background-image: url(../images/blue-image-scribble.svg);
}
.light-green {
	background-image: url(../images/green-image-scribble.svg);
}
.light-pink {
	background-image: url(../images/pink-image-scribble.svg);
}
.light-yellow {
	background-image: url(../images/yellow-image-scribble.svg);
}
.light-purple {
	background-image: url(../images/purple-image-scribble.svg);
}


/* Text and Logo Block */

.text-logo-image {
	display: flex;
	background-position: top left;
	background-repeat: no-repeat;
	background-size: contain;
	padding: 60px 0 0 60px;
}
.text-logo-image img {
	width: 90%;
	aspect-ratio: 3/2;
	object-fit: contain;
	padding: 30px;
	border-radius: 30px;
	box-shadow: 0 0 30px 0 rgba(0,0,0,0.15);
	background-color: var(--white);
}


/* Project Feed Block */

.project-feed-block {
	background-color: var(--cream);
}
.project-feed {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
}
.project-feed-card {
	display: flex;
	background-position: top left;
	background-repeat: no-repeat;
	background-size: calc(100% - 30px);
	padding: 30px 0 0 30px;
	width: calc(33.33% - 15px);
	margin: 15px 7.5px;
	text-decoration: none;
	transition: ease all 0.5s;
	position: relative;
}
.project-feed-card:hover {
	transform: scale(1.025);
}
.project-feed-card::after {
	display: block;
	content: "";
	padding-right: 30px;
	height: 100%;
	top: 0;
	right: 0;
}
.project-feed-card-body {
	width: 100%;
	height: 100%;
	padding: 15px 15px 30px;
	border-radius: 30px;
	text-align: center;
}
.project-feed-image {
	width: 100%;
	border-radius: 20px;
	height: 200px;
	overflow: hidden;
	position: relative;
}
.project-feed-image img {
	object-fit: cover;
	object-position: center;
	min-height: 100%;
	min-width: 100%;
}
.project-feed-card h4 {
	font-size: 1.4em;
	margin: 15px 0 5px 0; 
}
.project-icon {
	position: absolute;
	top: 15px;
	right: 15px;
	color: var(--grey);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	aspect-ratio: 1/1;
}
.project-excerpt {
	font-size: 0.85em;
	font-weight: 300;
	margin-top: 10px;
}



/* Contact Form */

.contact-form-block {
	background-size: cover;
	background-repeat: no-repeat;
	padding-bottom: 120px;
	margin-bottom: -75px;
}
.contact-form-block-container {
	background-color: var(--white);
	border-radius: 30px;
	padding: 30px 60px;
	box-shadow: 0 0 30px 0 rgba(0,0,0,0.15);
}
.small-container .gfield .ginput_container,
.small-container .gfield .gfield_description,
.small-container div.ginput_complex label,
.small-container input:not([type='radio']):not([type='checkbox']):not([type='submit']), 
.small-container select, 
.small-container textarea,
.small-container .gform-field-label {
	text-align: center !important;
	margin-left: 0 !important;
}
.small-container .top_label .gfield .gfield_label {
	text-align: center !important;
	display: block !important;
	margin-left: 0 !important;
}
.small-container .gform_footer,
.small-container .gform_page_footer {
    text-align: center !important;
	display: block !important;
 }
  



/* Gravity Forms */

.gform-field-label {
	color: var(--grey) !important;
	font-weight: 700 !important;
	margin-left: 15px !important;
}
.gfield_consent_label {
	font-weight: 500 !important;
}
.ginput_container_consent {
	margin-left: 15px !important;
}
.gfield_consent_description {
	font-size: 0.75em !important;
	border: none !important;
	padding: 0 15px !important;
}
.gfield input[type=text], .gfield input[type=email] {
	border-radius: 30px !important;
	border: solid 1px var(--grey) !important;
	padding: 10px 15px !important;
}
.gfield input[type=checkbox] {
	border-radius: 50% !important;
	border: solid 1px var(--grey) !important;
}
input[type=submit] {
	color: var(--white) !important;
	font-weight: 700 !important;
	font-size: 1em !important;
	font-family: "museo", serif;
	text-decoration: none !important;
	padding: 20px 30px !important;
	border-radius: 30px !important;
	border: none !important;
	background: var(--grey) !important;
	cursor: pointer !important;
	transition: ease all 0.5s !important;
}
input[type=submit]:hover {
	transform: scale(0.95) !important;
}


/* Footer */

.footer {
	background-color: var(--green);
	color: var(--white);
	position: relative;
	padding-top: 75px;
	margin-top: 75px;
}
.footer-top {
	position: absolute;
	margin: 0 auto;
	height: 120px;
	top: -60px;
	width: 100%;
	text-align: center;
}
.footer-top img {
	max-height: 100%;
}
.footer-box {
	text-align: center;
}
.footer-box .widget-title, .footer-box h3:first-of-type {
	margin-top: 0;
}
.footer-box ul, .footer-box li {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-box li {
	padding-bottom: 5px;
}
.footer-box img {
	max-height: 120px;
}
.copyright {
	font-size: 0.75em;
}
