:root {
	--red: rgba(226, 0, 43, 1);
	--dark-red: rgba(163, 29, 35, 1);
	--dark-green: rgba(0, 89, 47, 1);
	--light-green: rgba(31, 161, 46, 1);
	--pale-green: rgba(163, 195, 0, 1);
	--yellow: rgba(247, 203, 69, 1);
}

.green-bg {
	background-color: rgba(0, 89, 47, 1);
}

.gray-bg {
	background-color: rgb(241, 242, 244);
}

.light-green-bg {
	background-color: rgba(31, 161, 46, 1);
}

.pale-green-bg {
	background-color: rgba(163, 195, 0, 1);
}

.dark-green-bg {
	background-color: rgba(0, 89, 47, 1);
}

.red-bg {
	background-color: rgba(226, 0, 43, 1);
}

.yellow-bg {
	background-color: rgba(247, 203, 69, 1);
}

html,
body {
	min-height: 100vh;
}

input, select, textarea, button{font-family:inherit;}

button:hover,
a.button:hover {
	color: #fff;
	background: rgba(0, 89, 47, 1);
}

a.button,
button {
	display: inline-block;
	cursor: pointer;
	position: relative;
	background: rgba(31, 161, 46, 1);
	color: #FFFFFF;
	border:none;
	padding: 5px 15px;
	font-size: 17px;
	text-align: center;
	font-weight: 600;
	border: solid 2px rgba(255, 255, 255, 1);
}

a.button:after,
button:after {
	content: "⟶";
	padding-left: 10px;
}

a.button.rtl:after,
button.rtl:after {
	content: "";
	padding-left: 0;
}

a.button.rtl:before,
button.rtl:after {
	content: "⟵";
	padding-right: 10px;
}

a.button > a {
	color: #FFFFFF;
	padding: 10px 15px;
	font-size: 17px;
	text-align: center;
}

.green.button,
.light-green.button {
	background-color: rgba(31, 161, 46, 1);
	color: #ffffff;
}

a.button.dark-green {
	background-color: rgba(0, 89, 47, 1);
	color: #ffffff;
}

.green.ghost.button,
.light-green.ghost.button {
	color: rgba(31, 161, 46, 1);
	border: solid 2px rgba(31, 161, 46, 1);
	background-color: #ffffff;
}

.green.ghost.button:hover,
.light-green.ghost.button:hover {
	background-color: rgba(31, 161, 46, 1);
	border: solid 2px rgba(255, 255, 255, 1);
	color: #ffffff;
}

.green.button:hover,
.light-green.button:hover {
	border: solid 2px rgba(255, 255, 255, 1);
}

.dark-green.button:hover {
	background-color: rgba(0, 89, 47, 1);
	border: solid 2px rgba(255, 255, 255, 1);
}

.light-green-bg button:hover, 
.light-green-bg .button:hover {
	border: solid 2px rgba(255, 255, 255, 1);
	background-color: rgba(31, 161, 46, 1);
}

.dark-green-bg button:hover, 
.dark-green-bg .button:hover {
	border: solid 2px rgba(255, 255, 255, 1);
	background-color: rgba(0, 89, 47, 1);
}

.light-green-bg button, 
.light-green-bg .button {
	border: solid 2px rgba(0, 89, 47, 1);
	background-color: rgba(0, 89, 47, 1);
}

.dark-green-bg button,
.dark-green-bg .button {
	border: solid 2px rgba(31, 161, 46, 1);
	background-color: rgba(31, 161, 46, 1);
}

.light-green-bg h1,
.light-green-bg h2,
.light-green-bg h3,
.light-green-bg h4,
.light-green-bg p {
	color: #ffffff;
}

.dark-green-bg h1,
.dark-green-bg h2,
.dark-green-bg h3,
.dark-green-bg h4,
.dark-green-bg p {
	color: #ffffff;
}

.red-bg h1,
.red-bg h2,
.red-bg h3,
.red-bg h4 {
	color: #ffffff;
}

.red-bg .button {
	background-color: #ffffff;
	border: solid 2px #ffffff;
	color: #000000;
}

.red-bg button:hover,
.red-bg .button:hover {
	background-color: rgba(0, 89, 47, 1);
	border: solid 2px rgba(0, 89, 47, 1);
}

.yellow-bg h1,
.yellow-bg h2,
.yellow-bg h3,
.yellow-bg h4 {
	color: rgba(0, 89, 47, 1);
}

.yellow-bg button,
.yellow-bg .button {
	background: rgba(0, 89, 47, 1);
	border: solid 2px rgba(0, 89, 47, 1);
}

.yellow-bg button:hover,
.yellow-bg .button:hover {
	background: rgba(31, 161, 46, 1);
	border: solid 2px rgba(31, 161, 46, 1);
}

.members .buttons button:last-child:hover,
.card button:hover,
.light-blue button:hover
{
	background-color: #769A19;
}

.light-blue button.login-submit:hover {
    background: rgba(0, 89, 47, 1);
}

a {
    color: inherit;
}

a:hover {
     color:#00A0C6;
     text-decoration:none;
     cursor:pointer;
}

a, a:visited, a:hover, a:active {
  color: inherit;
}

a.button:visited {
  color: #ffffff;
}

img {
	max-width: 100%;
}

p iframe {
	max-width: 100%;
}

nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  	align-content: center;
    justify-content: center;
	font-weight: 600;
	font-weight: 600;
    z-index: 99;
    background: #fff;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-font-smoothing: subpixel-antialiased !important;
}

nav a,
button a,
a.button,
.article-list a {
	text-decoration: none;
}

nav > div {
	display: flex;
	width: 100%;
	align-items: center;
	padding: 15px;
}

nav ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin: 0;
	width: 100%;
	padding: 0;
	flex-shrink: 3;
}

.link-container {
	display: flex;
	min-height: 60px;
	min-width: calc(100% - 190px); /* 190px for logo width */
}

.link-container a.dropdown {
    display: flex;
    align-items: center;
}

.link-container ul.show a:hover {
   color: #1EA12E !important;
}

.link-container a.dropdown::after { 
    margin-left: 0.3rem;
    margin-top: 2px;
    display: flex;
    content: "";
    display: block;
    width: 15px;    
    height: 9px;
    background-image: url('/static/img/arrow-down-black.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.3s all ease;
}

.link-container ul ul a.dropdown::after { 
    content: none;
}

@media screen and (min-width: 1221px){
    .link-container ul.show {
        display: flex !important;
        position: absolute;
        flex-direction: column;
        background: #00592F;
        width: fit-content;
        color: #fff;
        padding: 0 1.5rem;
    }
}

.link-container ul.show li {
    width: 100%;
    margin: 0.5rem 0;
}

.link-container ul.show li a {
    white-space: nowrap;
}

.link-container ul.show ul li {
    margin: 0.5rem 0 0 0;
}

nav li {
	list-style: none;
	text-decoration: none;
	margin: 0 0 0 40px;
	font-size: 1.1rem;
}

nav .hamburger {
	display: none;
    width: 50px;
    height: 50px;
    background-image: url('/static/img/hamburger.svg');
    background-position: center right;
    background-repeat: no-repeat;
    cursor: pointer;
}

nav .main-menu {
	height: 60px;
	position: relative;
}

nav .main-menu .logo {
    /*max-width: 140px;*/
    height: auto;
}

nav .main-menu .logo img {
    object-fit: contain;
}

nav .navigation:first-child a:hover {
	color: rgba(0, 89, 47, 1);
}

nav .main-menu ul:last-child {
	display: none;
}

nav .main-menu ul.show ul  {
	display: flex;
    flex-direction: column;
    margin-left: 0.8rem;
}

nav .main-menu ul.show ul a {
	font-size: 16px;
}

nav li.active {
	position: relative;
}

nav li.active a.main {
	color: rgba(31, 161, 46, 1);
}

ul.navigation > li > a {
	color: #000000;
}

@media screen and (min-width: 1221px){
    ul.navigation > li:last-child {
        top: 28px;	/* This is a hack for IE11 */
        margin-left: 25px;
        margin-right: 0;
        padding: 0.3rem 0.9rem;
        background-color: #00592F;
    }

    ul.navigation > li:nth-last-child(2) {
        margin-left: auto;
        padding-left: 2rem;
    }
}

ul.navigation > li:last-child a {
    display: flex;
    color: #fff;
}

ul.navigation > li:last-child a:hover {
    color: #fff !important;
}

nav a.logo {
    display: flex;
	left: 15px;
	/*margin-right: 30px;*/
}

.stickynav {
	position: fixed;
	top: 10px;
    left: 10px;
	width: calc( 100% - 20px );
    background-color: transparent;
}

.stickynav .main-menu {
    background-color: #fff;
}

.image-header > .container {
	justify-content: flex-start;
}

/* edge fix */
footer .container {
	width: 100%;
}

/* edge fix */
footer .row {
	display: block;
}

.image-header .container {
	display: flex;
}

.column,
.header-column {
	width: 50%;
}

.column:nth-child(1),
.header-column:nth-child(1) {
	padding-right: 22px;
}

.column:nth-child(2),
.header-column:nth-child(2) {
	padding-left: 22px;
}

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

.header-label {
	font-size: 1rem;
	font-weight: bold;
	color: #000000;
	margin-bottom: 2px;
}

section {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
}

.large-heading {
	font-size: 3.8rem;
    line-height: 3.4rem;
	font-weight: bolder;
	text-transform: uppercase;
	hyphens: auto;
}

.red.large-heading {
	color: rgba(226, 0, 43, 1);
}

.white.large-heading {
	color: #ffffff;
}

.green.medium-heading,
.green.large-heading,
.light-green.large-heading {
	color: rgba(31, 161, 46, 1);
}

.dark-green.large-heading {
	color: rgba(0, 89, 47, 1);
}

.yellow.large-heading {
	color: rgba(247, 203, 69, 1);
}

.medium-heading {
	font-size: 2.3rem;
	line-height: 2.3rem;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	hyphens: auto;
	margin-bottom: 0;
}

.white.medium-heading {
	color: #ffffff;
}

.dark-green.medium-heading {
	color: rgba(0, 89, 47, 1);
}

.red.medium-heading {
	color: rgba(226, 0, 43, 1);
}

.yellow.medium-heading {
	color: rgba(247, 203, 69, 1);
}

.small-heading {
	font-size: 1.6rem;
	line-height: 1.6rem;
	font-weight: bolder;
	text-transform: uppercase;
}

.white.small-heading {
	color: #ffffff;
}

.large-bodytext {
	font-size: 1.3rem;
}

.black.large-bodytext {
	color: #000000;
}

.white.large-bodytext {
	color: #ffffff;
}

.small-bodytext {
	font-size: 1.1rem;
	line-height: 1.3rem;
}

.white.small-bodytext {
	color: #ffffff;
}

.content {
	flex: 1;
	max-width: 100%;
}

.content.center {
	align-items: center;
	align-self: center;
}

.container {
    position: relative;
	display: flex;
	flex: 1;
	max-width: 1100px;
	justify-content: space-around;
	align-self: center;
	margin: 0 auto;
	flex-wrap: wrap;
	padding: 8rem 20px 50px 20px;
}

.container+.container,
.container .container  {
	padding: 1.5rem 0;
}

.container-bleed {
	padding-left: 0;
	padding-right: 0;
}

/* Hilights */
.hilight {
	padding: 20px;
}

.full-width.hilight {
	width: 100%;
}

.gray.hilight {
	background: #eee;
}

/* Featured Projects */
.featured-projects-wrap {
	text-decoration: none;
	width: 100%;
}

.featured-projects-wrap .arrow-link {
	padding-left: 1.5rem;
}

.featured-projects-wrap:hover span {
	color: rgba(0, 89, 47, 1);
}

.featured-project-image {
	display: block;
	width: 100%;
}

.our-projects-intro {
	justify-content: left;
	flex-direction: column;
	padding-bottom: 0;
}

.featured-projects {
	background-color: #9CBC00;
	color: #fff;
}

.featured-projects-image {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.image-label {
	padding: 5px;
	text-align: right;
}

.green.image-label {
	color: rgba(31, 161, 46, 1);
}

.white .image-label-extra {
	color: #ffffff;
}

.image-label-extra {
	font-size: 1.4rem;
}

/* Full width single image and text image */
.full-width-single-image-and-text-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.full-width-single-image-and-text-text-col p:last-of-type {
	margin-bottom: 45px;
}


/* Duo image and text */
.duo-image-and-text .container {
	padding-top: 0;
}

@media screen and (min-width: 601px) {
    .duo-image-and-text:not(.duo-image-and-text-reversed) .column:nth-child(2) {
        padding-left: 6px;
    }
}

.duo-image-and-text-reversed {
    .column:nth-child(1){
        padding-right: 0;
    }

    .column:nth-child(2){
        margin-left: 6px;
        width: calc(50% - 6px);
    }
}

@media screen and (max-width: 600px) {
    .duo-image-and-text-reversed {
        .column.dark-green-bg,
        .column.dark-green-bg.column:nth-child(2){
            width: 100%;
            padding-left: 4vw;
            padding-right: 4vw;
            margin-left: 0;
        }
    }
}

.duo-image-and-text p:last-of-type {
	margin-bottom: 45px;
}

.duo-image-and-text-text-col {
	padding: 50px;
}

.duo-image-and-text-image-col {
	display: grid;
	grid-template-rows: 50% 50%;
	grid-gap: 5px;
	overflow: hidden;
}

.duo-image-and-text-image {
    display: block;
    margin-bottom: 6px;
}

.duo-image-and-text-image:nth-child(1) {
	grid-row-start: 1;
	grid-row-end: 2;
}

.duo-image-and-text-image:nth-child(2) {
	grid-row-start: 2;
	grid-row-end: 3;
}

.duo-image-and-text-image-div { /* ie11 fix */
	height: 50%;
}

.duo-image-and-text-image-div .duo-image-and-text-image { /* ie11 and safari fix */
	display: none;
}

@supports (object-fit: cover) {
	.duo-image-and-text-image-div {
		height: 100%;
	}

	.duo-image-and-text-image {
		width: 100%;
		height: auto;
		min-height: 50%;
		object-fit: cover;
		margin-bottom: 0;
	}
}

/* Projects */
.our-projects-container {
	flex-direction: column;
}

.our-projects-image{
	width: 100%;
	height: 50%;
	object-fit: cover;
}

.single-page-our-projects-image {
	width: 100%;
	height: auto;
}

.our-projects-special-col {
	width: calc(50% - 10px);
}

.our-projects-special-col:first-child {
	margin-right: 5px;
}

.our-projects-special-col:last-child {
	margin-left: 5px;
}

.our-projects-special-col .large-heading {
	margin-bottom: 0;
}

.our-projects-text-col {
	padding: 30px 80px 30px 30px;
	position: relative;
}

.our-projects-text-col.green-bg {
	overflow-x: hidden;
}

.our-projects-text-col.green-bg .small-bodytext h1,
.our-projects-text-col.green-bg .small-bodytext h2,
.our-projects-text-col.green-bg .small-bodytext h3,
.our-projects-text-col.green-bg .small-bodytext h4 {
	color: #ffffff;
	font-size: 1rem;
	line-height: 1rem;
	text-decoration: none;
	margin-bottom: 1em;
}

.our-projects-text-col.green-bg p,
.our-projects-text-col.green-bg strong {
	color: #ffffff;
	text-decoration: none;
}

.our-projects-text-col .small-bodytext {
	margin-bottom: 0;
}

.our-projects-text-col:after {
	content: "⟶";
	width: 70px;
	height: 50px;
	position: absolute;
	bottom: 0;
	right: 0;
	color: #ffffff;
	font-size: 27px;
	font-weight: 200;
}

.our-projects-item {
	padding: 0;
	margin-bottom: 5px;
	text-decoration: none;
	min-height: 230px;
}

.our-projects-special-container {
	display: flex;
	padding: 60px 30px;
	margin-bottom: 5px;
	min-height: 250px;
}

.our-projects-item:nth-child(odd) {
	display: -ms-grid;
	display: grid;
	grid-template-rows: 100%;
	grid-template-columns: 33% 67%;
}

.our-projects-item:nth-child(even) {
	display: -ms-grid;
	display: grid;
	grid-template-rows: 100%;
	grid-template-columns: 67% 33%;
}

.our-projects-item:nth-child(odd) .our-projects-text-col {
	grid-row-start: 1;
	grid-row-end: 2;
	grid-column-start: 1;
	grid-column-end: 2;
	background-color: rgba(0, 89, 47, 1);
}

.our-projects-item:nth-child(even) .our-projects-text-col {
	grid-row-start: 1;
	grid-row-end: 2;
	grid-column-start: 2;
	grid-column-end: 3;
	background-color: rgba(31, 161, 46, 1);
}

.our-projects-item .our-projects-text-col.full-width-text-col {
	grid-column-start: 1;
	grid-column-end: 3;
}

.our-projects-item:nth-child(odd) .our-projects-image-col {
	grid-row-start: 1;
	grid-row-end: 2;
	grid-column-start: 2;
	grid-column-end: 3;
}

.our-projects-item:nth-child(even) .our-projects-image-col {
	grid-row-start: 1;
	grid-row-end: 2;
	grid-column-start: 1;
	grid-column-end: 2;
}

.our-projects-image-col {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}


/* Simple page */
.simple-image {
	width: 100%;
	height: auto;
}

/* Our Impact */
.our-impact-block:nth-child(even) {
	background-color: rgba(0, 89, 47, 1);
}

.our-impact-image {
	width: 100%;
	height: calc(100% - 30px);
	object-fit: cover;
}

.our-impact-block {
	display: flex;
	align-items: center;
	min-height: 100px;
	padding: 10px 50px;
	margin-bottom: 10px;
}

.our-impact-block .medium-heading {
	margin-top: 7px;
}

.our-impact-block .small-bodytext {
	margin-bottom: 0;
}

.our-imact-block .column {
	display: flex;
    align-items: center;
}

.our-impact-block:nth-child(odd) {
	background-color: rgba(31, 161, 46, 1);
}

.our-impact-block:nth-child(even) {
	background-color: rgba(0, 89, 47, 1);
}

/* Arrow link */
.arrow-link {
	text-decoration: none;
}

.arrow-link:after {
	content: "⟶";
}

.white .arrow-link {
	color: #ffffff;
}

/*Card start*/
.card {
    flex: 1;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 34px rgba(0,60,102,0.22);
    background: #FFFFFF;
    padding: 15px 25px;
}

.card-grid {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(306px, 1fr));
    width: 100%;
}

.card button:hover {
	box-shadow: 0 0 17px rgba(0,60,102,0.22);
}

.card .info h4 {
	font-size: 20px;
	color: rgba(0, 89, 47, 1);
	text-align: center;
	height: 50px;
}

.card .image {
	height: 200px;
	margin-top: 25px;
	display: flex;
	justify-content: center;
}

.card .member-info > div:first-child {
	height: 70px;
}

.card .member-info p {
	margin-bottom: 20px;
}

.card h3 {
	font-size: 27px;
	color: rgba(0, 89, 47, 1);
	text-align: center;
	min-height: 60px;
}
.card p {
	font-size: 1.2rem;
	color: #666666;
	letter-spacing: 0;
	line-height: 1.6rem;
	margin-bottom: 60px;
}

.card .more {
	position: absolute;
	bottom: -20px;
	width: 100%;
	left: 0;
}

.card .more button {
	min-width: 70%;

}

.card .image img {
	width: 50%;
	height: 160px;
}

.card .portrait {
	position: relative;
	width: 45%;
	margin: 20px auto;
}

.card .portrait:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.square {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.card .portrait img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.card img {
	z-index: 2;
}


/*card end*/


/*home (but now only used for action pages)*/
.area-card-top-image-row {
	position: relative;
	margin-bottom: 70px;
}

/*home*/
.area-card-top-image-row > .container {
	padding: 0;
}

/* latest news on homepage areabrick */
.latest-news-list {
    background-color: rgba(31, 161, 46, 1);
}
.latest-news-list .container {
    justify-content: left;
}
.latest-news-list h2 {
    color: #fff;
    text-align: left;
}
.latest-news-list h3 {
    color: #fff;
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 1rem;
    word-break: break-word;
    padding-bottom: 1rem;
}
.latest-news-item {
    display: flex;
}
.latest-news-item a {
    text-decoration: none;
    display: block;
    width: 100%;
    border-bottom: solid #fff 2px;
}
.latest-news-item img {
    height: 12rem;
    margin-bottom: 1rem;
    width: 100%;
    object-fit: cover;
}
.latest-news-item:last-child {
    margin-right: 0;
}

/* Log out link */
body a.logout-link {
	position: absolute;
    padding: 10px 17px;
	right: 0;
	color: rgba(31, 161, 46, 1);
	text-transform: capitalize;
	text-decoration: none;
}

/*home end*/

/*main*/


/*end main*/

/*numbers-grid*/
.numbers-grid {
	font-weight: bold;
	color: white;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
}

	.numbers-grid .container {
		flex-direction: column;
		padding: 50px 0px;
	}

		.numbers-grid .intro {
			text-align: center;
			padding: 20px 20%;
		}

			.numbers-grid .intro h2 {
				color: #fff;
				text-align: center;
				font-size: 64px;
				line-height: 88px;
				font-weight: lighter;
			}

			.numbers-grid .intro p {
				text-align: center;
				font-weight: 600;
				line-height: 24px;
				font-size: 18px;
			}

               .numbers-grid .ngrid {
                       display: flex;
                       width: 100%;
                       flex-wrap: wrap;
                       justify-content: center;
               }

			.numbers-grid .block {
				flex-grow: 2;
				width: 29%;
				min-width: 270px;
				margin: 1%;
				padding: 20px;
				background: rgba(0, 89, 47, 1);
			}

				.numbers-grid .block .title {
					position: relative;
					min-height: 120px;
					width: 100%;
					display: block;
				}

					.XXS, .XS, .S, .M, .L, .XL, .XXL {
						position: relative;
						color: #FFFFFF;
						margin: 0;
					}

					.XXS {
						top: calc(-38px * 0.158);
						font-size: 38px;
						line-height: 38px;
					}

					.XS {
						top: calc(-45px * 0.158);
						font-size: 45px;
						line-height: 45px;
					}

					.S {
						top: calc(-52px * 0.158);
						font-size: 52px;
						line-height: 52px;
					}

					.M {
						top: calc(-55px * 0.158);
						font-size: 55px;
						line-height: 55px;
					}

					.L {
						top: calc(-60px * 0.158);
						font-size: 60px;
						line-height: 60px;
					}

					.XL {
						top: calc(-80px * 0.158);
						font-size: 80px;
						line-height: 80px;
					}

					.XXL {
						top: calc(-120px * 0.158);
						font-size: 120px;
						line-height: 120px;
					}

					.numbers-grid h3 {
						top: calc(-120px * 0.158);
						font-size: 120px;
						line-height: 120px;
					}
					.numbers-grid h4 {
						top: calc(-40px * 0.158);
						font-size: 40px;
						line-height: 40px;
					}

					.numbers-grid h5 {
						top: calc(-25px * 0.158);
						font-size: 25px;
						line-height: 25px;
					}

				.numbers-grid .block .info {
				}

					.numbers-grid p {
						font-weight: normal;
						font-size: 1rem;
						color: #FFFFFF;
						letter-spacing: 0;
						text-align: left;
						line-height: 20px;
					}
					.numbers-grid p:first-child {
						font-weight: 600;
					}

/*wysiwyg block*/

.light-blue {
	background-color: #E6F1F8;
}

.section-wysiwyg a.button,
.section-wysiwyg button {
	min-width: 150px;
	margin: auto;
	display: inline-block;
}

/*end wysiwyg block*/

.pimcore_area_full-width-text-and-single-image.pimcore_area_content .container,
.pimcore_area_our-impact.pimcore_area_content .container,
.container.row.section-wysiwyg {
    padding-top: 0.6rem;
}

body main > div:first-child .container {
    padding-top: 8rem !important;
}

/*featured*/

.featured h2 {
	font-size: 36px;
	line-height: 36px;
}

.featured .container > div {
	flex-basis: 50%;
	flex-grow: 9999;
	min-width: 400px;
	overflow: hidden;
}

.featured .image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.featured .image img {
	width: 30%;
	z-index: 2;
	min-width: 100px;
	max-height: 100%;
}

.circle-background {
	position: absolute;
	background-color: #F7F7F7;
	height: 160px;
	border-radius: 50%;
	width: 160px;
}

/*end featured*/
.member-cards {
	display: flex;
}

.member-card {
	display: flex;
	text-align: center;
}

.member-card:last-child {
	max-width: 33%;
}

.member-cards .content {
	align-items: stretch;
	flex: 1;
}

.community-nav form {
    display: flex;
    margin-bottom: 4rem;
    width: 100%;
    justify-content: center;
}

.community-search {
    display: flex;
}

.community-search-field,
.community-search-button,
.select2-container--default .select2-selection--single {
    padding: 5px 15px;
    border: solid 1px rgba(31, 161, 46, 1);
    height: 58px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 56px;
    width: 56px;
    background-color: rgba(31, 161, 46, 1);
}

.select2-container--default .select2-selection--single .select2-selection__arrow:hover {
    background-color: rgba(0, 89, 47, 1);
}


.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
    content: "";
    position: absolute;
    display: block;
    width: 17px;    
    left: 21px;
    top: 23px;
    height: 10px;
    background-image: url('/static/img/arrow-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.3s all ease;
}

.select2-container .select2-selection--single .select2-selection__rendered {
        margin-left: auto;
        display: block;
        outline: none;
        padding-right: 4rem;
        max-width: 333px;
        font-size: 28px;
        line-height: 1.5;
    }

.select2-results__option[aria-selected] {
    white-space: nowrap;
}

.community-search-field {
    display: flex;
    border-radius: 0;
    min-width: 13rem;
    font-size: 28px;
    padding-top: 0;
    padding-left: 23px;
}

.community-search-field::placeholder {
	color: #333;
}

input.community-search-field:focus {
    outline-width: 0;
}

.community-search-button {
    content: none;
    font-family: Agrandir, sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    font-style: italic;
}

.community-search-button:after {
    content: none;
}

.community-search-button:hover {
    border-color: rgba(0, 89, 47, 1);
}

.select2-container--default .select2-selection--single {
    border-radius: 0;
}

.member-card .member-card-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    background-color: #fff;
    padding: 1.7rem;
}

.member-card .member-card-inner a {
    text-decoration: none;
}

.tags {
    display: flex;
    flex-grow: 0;
    flex-wrap: wrap;
}

.member-tag {
    border: solid 1px rgba(31, 161, 46, 1);
    border-radius: 50px;
    padding: 0.1rem 1.2rem 0.3rem 1.2rem;
    margin-right: 1rem;
    font-size: 19px;
    margin-bottom: 0.3rem;
    white-space: nowrap;
}

.member-tag:hover {
    background-color: rgba(31, 161, 46, 0.1);
}

.member-title {
    font-size: 29px;
    color: rgba(31, 161, 46, 1);
    font-weight: bold;
    margin: 0.8rem 0 0.8rem;
    line-height: 1;
}

.member-description {
    font-size: 19px;
    line-height: 1.3;
}

.member-tag,
.member-title,
.member-description {
    text-align: left;
}

.member-card .member-card-inner img {
	height: auto;
}

.members.accent {
    background-color: #9CBC001A;
}

.members .buttons {
	display: flex;
	margin: 30px auto;
	text-align: center;
	justify-content: center;
}

.members .intro h2 {
	margin-bottom: 0.2rem;
}

.members .buttons button {
	margin: 0 15px;
	background: rgba(247, 203, 69, 1);
}

.members .buttons button:last-child {
	background: #94C120;
}

/* Farmer detail page */
.tag-title,
.farmer-detail .medium-heading {
    word-break: break-word;
}

.farmer-heading {
    border-bottom: solid #000 2px;
    width: 100%;
}

.farmer-heading .farmer-icon-and-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}

.farmer-heading .large-heading {
    margin-bottom: 0.7rem;
}

.farmer-heading .farmer-logo {
    height: auto;
    width: 100%;
    max-width: 30rem;
}

.medium-text {
    font-size: 25px;
}

.back-to-overview {
    text-decoration: none;
    margin-bottom: 2rem;
    display: block;
}

.back-to-overview:before {
    content: "⟵";
    position: relative;
    margin-right: 1rem;
}

a.goto-website {
    color: rgba(31, 161, 46, 1);
    text-decoration: none;
    display: block;
    text-align: right;
}

.goto-website:after {
    content: "⟶";
    color: rgba(31, 161, 46, 1);
    position: relative;
    margin-left: 1rem;
}

.farmer-subtitle {
    font-size: 29px;
    color: rgba(31, 161, 46, 1);
    font-weight: bold;
    margin-bottom: 1rem;
}

.farmer-heading .member-description {
    margin-bottom: 5rem;
}

.farmer-footer .tags {
    margin-top: 2rem;
}

.member-since {
    white-space: nowrap;
}

.farmer-showcase,
.farmer-activities {
    width: 100%;
}

.farmer-activities {
    margin-bottom: 3rem;
}

.farmer-activities h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.farmer-showcase .large-heading {
    margin-bottom: 0.5rem;
}

.projects-grid {
	width: 100%;
}

.projects button {
	margin: 50px auto;
}
.projects .container {
	padding-top: 0px;
}

/* ---- grid-item ---- */

.overlay {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right:0;
	bottom: 0;
	background-color: rgba(0,0,0,0.2);
}

.grid-sizer {
    width: 25%;
}

.gutter-sizer {
    width: 0;
}

.grid-item {
  width: calc(100% / 4);
  height: 240px;
  padding: 5px;
}

.panel-content:hover {
	box-shadow: 0 0 34px rgba(0,60,102,0.66);
}

.grid-item--width2 { width: calc(100% / 2); height: 480px; }

.grid-item--height2 { height: 480px; }

.panel-content {
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
}

.grid-item img {
	width: 100%;
}

.panel-content {
	position: relative;
	font-size: 0;
	width: 100%;
	height: 100%;
}
.caption h4 {
	color: #fff;
}

.caption span {
	font-size: 18px;
}

.caption {
	font-size: initial;
	position: absolute;
    text-decoration: none;
    z-index: 2;
    left: 20px;
    bottom: 20px;
    color: #fff;
    letter-spacing: 0;
    word-spacing: 0.1em;
}
/* 2 columns wide */
.panel--width2 { width: 50%; }

.news-list {
	width: 100%;
}

.news-list .item .image {
	min-height: 30vh;
}

.news-list .item {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 40px 0px;
	padding-bottom: 40px;
	border-bottom: solid 1px #eee;
}
.news-list .item > div {
	padding: 10px 50px 10px 0;
}

.news-list .item > div:first-child {
	flex-basis: 550px;
	flex-grow: 1;
}

.news-list h3 {
	font-size: 27px;
	line-height: 30px;

}
	.news-list h3 a {
		text-decoration: none;
	}

.news-list .item .image {
	flex-grow: 1;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 0;
	overflow: hidden;
	min-width: 250px;
	width: 25%;
}

.events-list a.item {
    text-decoration: none;
    flex-wrap: nowrap;
    margin: 25px 0px;
    padding-bottom: 0;
    border-bottom: none;
}

.events-list a.item:hover h3 {
    color: #333;
}

@media screen and (min-width: 769px){ 
    .events-list a.item {
        flex-direction: row;
    }
}

@media screen and (max-width: 768px){ 
    .events-list a.item {
        flex-direction: column;
        margin: 25px 0px 50px 0px;
    }
}

.events-list a.item .image {
    margin-right: 1.5rem;
    min-height: auto;
    aspect-ratio: 2.3 / 1;
}

.events-list .item .image {
    min-height: 25vh;
}

.events-list .event-details {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.events-list .item > div {
    width: 100%;
    padding: 5px 0;
}



.jobs-wrapper {
    width: 100%;
}

.jobs-list {
    margin-top: 3rem;
}

.jobs-list .item {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 40px 0px;
	padding-bottom: 40px;
	border-bottom: solid 1px #eee;
}

.jobs-list h3 {
    font-size: 27px;
    line-height: 30px;

}
.jobs-list h3 a {
    text-decoration: none;
}

.jobs-list .item > div:first-child {
	flex-basis: 550px;
	flex-grow: 1;
}

@media screen and (max-width: 880px) {
    .jobs-list .item > div:first-child {
        flex-basis: auto;
    }
}

.jobs-list a.item {
    text-decoration: none;
    flex-wrap: nowrap;
    margin: 25px 0px;
    padding-bottom: 0;
    border-bottom: none;
}

.jobs-list a.item:hover h3 {
    color: #333;
}

@media screen and (min-width: 769px){ 
    .jobs-list a.item {
        flex-direction: row;
    }
}

@media screen and (max-width: 768px){ 
    .jobs-list a.item {
        flex-direction: column;
        margin: 25px 0px 50px 0px;
    }

    .jobs-list a.item .image {
        width: 100%;
    }
}

.hr {
    border: none;
    border-top: 1px solid #000;
    margin-bottom: 1.5rem;
}

.jobs-list .item .image {
    margin-right: 1.5rem;
    aspect-ratio: 2.3 / 1;
	min-height: 30vh;
	flex-grow: 1;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 0;
	overflow: hidden;
	min-width: 250px;
	width: 25%;
}

.jobs-list .event-details {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.jobs-list .item > div {
	padding: 10px 50px 10px 0;
    width: 100%;
    padding: 5px 0;
}




.news-footer {
	display: flex;
	clear: both;
	padding-top: 30px;
	margin-top: 30px;
	border-top: solid #eee 1px;
}

.share-links {
	display: flex;
	max-width: 150px;
	margin-left: auto;
}

.share-link {
	width: 30px;
	height: 30px;
	background-color: rgba(31, 161, 46, 1);
	margin-left: 10px;
	border-radius: 50%;
}

.share-item {
	padding: 7px;
}

.share-link:hover {
	background-color: rgba(0, 89, 47, 1);
}

.contact {
	width: 100%;
	flex-direction: row;
	display: flex;
	margin: 35px 0;
}

.contact > div {
	width: calc(95% / 2);
	min-width: 460px;
	flex-grow: 99;
	padding: 15px;
}

.contact .map {
	border: 1px solid #C4CDD5;
	border-radius: 3px;
	margin-bottom: 25px;
}

.contact .sweet {
	display: none;
}

.hidden_select_container {
    width: 0;
    height: 0;
    overflow: hidden;
}

.simpleselect {
    position: relative;
    min-width: 60px;
    height: 38px;
    color: #4D4D4F;
    font-size: 1rem;

}

/*.simpleselect #options {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 2px;
}*/

.simpleselect .options {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 2px;
}

.simpleselect .option {
	padding: 9px 10px;
    line-height: 18px;
    cursor: pointer;

}
.simpleselect .option:hover {
	background: #666;
	color: #fff;
}

.simpleselect .placeholder::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    width: 8px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAOCAYAAAASVl2WAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NjA0Q0FGMUI4RTU1MTFFMzhGMThCQzUzMTMxMzdBN0YiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NjA0Q0FGMUM4RTU1MTFFMzhGMThCQzUzMTMxMzdBN0YiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2MDRDQUYxOThFNTUxMUUzOEYxOEJDNTMxMzEzN0E3RiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2MDRDQUYxQThFNTUxMUUzOEYxOEJDNTMxMzEzN0E3RiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pq8U8ZgAAAClSURBVHjaYpw7dw4DEggEYh4gXgwTYEGS5AfiyVD6FBDfBAkyISloB2JpqAlLgZgNWYENEGciKTYG4haYFSCVKA6BglIg3gdSIAHEfQzYASfj////GfABJgYCgGXevLlyQNoDh/xrkBteAHEREKtjUeAJsuIXEKdgkewG4h0wNxwB4ulIkmeBuAbdkZVA/BSIvwBxNNRklLj4CMS50KC+CRMECDAA5ogdqmResXgAAAAASUVORK5CYII=") 0 center no-repeat;
}

.simpleselect .placeholder {
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 10px 20px 10px 5px;
    background-color: #fff;
	border: 1px solid #C4CDD5;
}

.pimcore-checkbox label {
	font-weight: bold;
	padding: 0 10px;
}

.form-section input,
.contact input,
.contact textarea {
	width: 100%;
	font-size: 1rem;
	color: #212B36;
	padding: 10px;
	border: 1px solid #C4CDD5;
	margin-top: 3px;
}

input::placeholder {
	color: white;
}

.contact .error {
	display: none;
}

.contact .feedback-error {
    color: #da002b;
}

footer #mce-responses {
	position: absolute;
	top: 4px;
	min-width: 300px;
}

.contact .field {
	margin: 20px 0;
	width: 70%;
}

	.optional {
		float: right;
	    font-size: 14px;
	    color: #434343;
	    letter-spacing: 0;
	    line-height: 16px;
	}

.login-form .content {
	width: 100%;
	margin: 200px 0px;
	position: relative;
	border-radius: 3px;
	background-color: #E6F1F8E6;
}

.login-form .intro {
	padding: 20px 40px;
	width: calc(100% / 2);
}

.login-form .form-section {
	display: table;
	position: absolute;
	min-height: calc(100% + 70px);
	box-shadow: 0 0 47px 0 rgba(0,0,0,0.15);
	padding: 40px;
	border-radius: 3px;
	width: calc(50% - 60px);
	right: 40px;
	top: -35px;
	bottom: -35px;
	background: #FFF;
}

.login-form form > div {
	margin: 20px 0;
}

.login-form form > div:last-child {
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bottom-form-row > p {
    margin-bottom: 0px;
}

.login-submit {
	float: right;
	padding: 9px 50px;
	display: block;
}

.form-section .login-form h3 {
	font-size: 25px;
    line-height: 25px;
    padding-bottom: 10px;
}

.pagination {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
}

.pagination a.page {
	border: 1px solid rgba(0,0,0,.1);
}

.pagination a {
	display: flex;
    justify-content: center;
    align-items: center;
	margin: 3px;
	margin: 3px 5px;
	padding: 2px 0px;
	height: 30px;
	width: 30px;
	text-align: center;
    text-decoration: none;
}

.pagination a.active {
	color: rgba(0, 89, 47, 1);
	border: 1px solid rgba(31, 161, 46, 1);
}

.pagination a:hover {
	border-color: rgba(0, 89, 47, 1);
	color: rgba(0, 89, 47, 1);
}

/* ---- library ---- */

.library-intro {
	padding: 15px 20px;
    width: 100%;
}

.library-intro .content {
   max-width: 900px;
}

.article-list {
	width: 100%;
}

.articles-overview .container {
    padding-top: 0;
}

.articles-overview .row:not(:last-child) {
    border-bottom: solid 1px #cecece;
}

.articles-overview .result-content .date {
    display: block;
}

.search-articles form {
    display: flex;
}

.search-articles {
    width: 100%;
    margin-bottom: 30px;
}

	.search-articles form .field {
	    margin-right: 15px;
	}

	.search-articles form .keywords {
		display: flex;
		margin-left: auto;
		margin-right: 0;
	}

		.search-articles form .keywords input {
		    padding: 10px 20px;
		    font-size: 16px;
	        border: 1px solid #C4CDD5;
            color: #4D4D4F;
		}

		.search-articles form .keywords input::placeholder {
		    color: #A9ABAA;
		}

		.search-articles form .field .simpleselect .placeholder {
		    padding: 11px 80px 11px 20px;
		}

div.results {
	width: 100%;
	font-size: 14.5px;
}

.flash-notice {
	background-color: rgba(31, 161, 46, 1);;
	display: block;
	margin: 0.5em;
	padding: 0.5em;
}

.flash-error {
	background-color: rgba(226, 0, 43, 1);
	display: block;
	margin: 0.5em;
	padding: 0.5em;
}

table.article-list {
	text-align: left;
	border-collapse: collapse;
	width: 100%;
}

	.result-content div.row {
		background-color: #fff;
		padding: 15px 0;
	}

	    .meta-row {
	    	/*display: flex;*/
		}

		table.article-list tr td,
		table.article-list tr th {
			font-weight: normal;
			padding: 15px 0px 15px 15px;
			min-width: 150px;
		}

		.result-content .title {
			display: inline-block;
			width: calc(99% - 315px);
			margin-right: 15px;
		}

        .result-content .title a {
            font-size: 24px;
            line-height: 24px;
            color: #333;
            text-decoration: none;
        }

        .result-content .title a:hover {
            color: rgba(31, 161, 46, 1);
        }

		.result-content .meta {
            display: flex;
            justify-content: flex-end;
			width: 300px;
			margin-left: auto;
			vertical-align: top;
			text-align: right;
		}

			.result-content .date {
				display: inline-block;
			}

			.result-content .meta > span {

				display: inline-block;
			    margin-left: 10px;
			}

		table.article-list tr td.hightlight {
		    padding-top: 0;
		}

		table.article-list tr td.no-padding {
			padding: 0;
		}

		table.article-list tr td:last-child {
			padding-right: 15px;

		}

			.result-content .hightlight em {
				font-style: inherit;
				font-weight: bold;
			}

			.result-content .label {
                white-space: nowrap;
				display: table-cell;
				font-size: 1rem;
				cursor: pointer;
				margin-right: 15px;
				color: #fff;
				background-color: rgba(31, 161, 46, 1);
			    text-align: center;
			    padding: 2px 10px 5px 10px;
			}

			.result-content .theme-label {
				background-color: rgba(31, 161, 46, 1);
			}

			.result-content .file-type-label {
				background-color: rgba(226, 0, 43, 1);
			}

            .result-content .article-status-label {
                background-color: rgba(0, 89, 47, 1);
                cursor: default;
            }


/* ---- footer ---- */

footer {
	background: #00592F;
    color: #fff;
}

footer input {
	height: 36px;
	border: 1px solid rgba(255,255,255,0.4);
	vertical-align: top;
	font-size: 16px;
    padding: 5px 20px 6px;
}

footer input.button {
	font-weight: 600;
	line-height: 0;
	cursor: pointer;
    background: rgba(31, 161, 46, 1);
    position: relative;
	color: #ffffff;
	border: none;
}

footer input.button:hover {
    background: rgba(0, 89, 47, 1);
}

footer a:hover {
	color: rgba(31, 161, 46, 1);
}

footer .footer-nav a {
	text-decoration: none;
}

footer form .response {
	margin-top: 15px;
	color: rgba(226, 0, 43, 1);
}

.social-icons li {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	width: 38px;
	height: 38px;
	border-radius: 50%;
}

.social-icons li:first-child {
	margin-left: 0;
}

.social-icons li a {
    display: flex;
    height: 24px;
    width: 24px;
    justify-content: center;
    align-items: center;
}

.social-icons li:nth-child(2) a {
	margin-top: -2px;
}

.social-icons li:hover {
	background-color: rgba(0, 89, 47, 1);
}

ul.social-icons {
	padding: 0 0 15px 0;
	font-size: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer .social-icons {
	justify-content: flex-start;
}

footer .search-box-container > form {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border: solid 2px  rgba(31, 161, 46, 1);
	margin-bottom: 50px;
}

footer input:first-child {
	background: transparent;
	padding: 5px 10px 6px;
	border-right: none;
	font-size: 1rem;
	letter-spacing: 0.12px;
}

footer .container {
	padding: 50px 20px 25px;
}

footer .row {
	display: inherit;
	width: inherit;
}

footer .disclaimer {
	width: 100%;
	justify-content: space-between;
    border-top: solid 1px #fff;
    padding-top: 1.5rem;
    margin-top: 3.5rem;
}

footer .disclaimer span {
	font-size: 1rem;
}

footer .block .wrapper {
	display: flex;
	flex-direction: column;
	position: relative;
}

footer .block .center-wrapper {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}

.footer-intro {
    font-family: founders;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

footer .logo {
    margin-bottom: 2rem;
}

.logo-and-intro-block {
    width: 30vw;
    padding-right: 4.5rem;
}

.footer-links {
    width: calc( 70vw - 4.5rem );
    display: flex;
    justify-content: space-between;
}

.footer-links a {
    text-decoration: none;
}

.footer-links h3 {
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: founders;
    font-size: 18px;
    font-weight: bold;
}

.footer-links-block {
    display: flex;
    flex-direction: column;
}

.footer-links-block a {
    display: block;
    margin-bottom: 0.8rem;
    font-family: founders;
    font-size: 19px;
    font-weight: 300;
}

.footer-content-block {
    font-family: founders;
    font-size: 19px;
    font-weight: 300;
}

@media screen and (max-width: 991px){
    .logo-and-intro-block {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .footer-links {
        width: 100%;
    }

    footer .row {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 768px){ 
    .footer-links {
        flex-direction: column;
    }

    .footer-links h3 {
        margin-bottom: 0.5rem;
    }

    .footer-links-block {
        margin-bottom: 2rem;
    }

    .logo-and-intro-block {
        padding-right: 0;
    }

    .footer-intro {
        font-family: founders;
        font-size: 18px;
        line-height: 22px;
    }
}

/*footer end*/

@media screen and (max-width: 991px){
    .full-width-single-image-and-text.pale-green-bg,
    .full-width-single-image-and-text.light-blue {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.video-container { 
    position: relative; 
    padding-bottom: 56.25%; 
    padding-top: 30px; 
    height: 0; 
    overflow: hidden; 
    margin-bottom: 2.6rem;
}

.video-container iframe, 
.video-container object, 
.video-container embed { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}

.image-right .container {
    display: flex;
    flex-direction: row;
}

.image-left .container {
    display: flex;
    flex-direction: row-reverse;
}

.image-left .container .column:nth-child(1), .header-column:nth-child(1) {
    padding-left: 22px;
    padding-right: 0;
}

@media screen and (max-width: 600px){
    .image-left .container .column:nth-child(1), .header-column:nth-child(1) {
        padding-left: 0;
        padding-right: 0;
    }
}

.image-left .container .column:nth-child(2), .header-column:nth-child(2) {
    padding-right: 22px;
    padding-left: 0;
}

.pimcore_area_full-width-text-and-single-image .medium-heading{
    text-align: left;
    width: 100%;
}

.bleed-bottom {
    padding-bottom: 0;
}

.pimcore_area_full-width-text-and-single-image + .pimcore_area_full-width-text-and-single-image .bleed-bottom {
    padding-top: 0;
}

.pimcore_area_full-width-text-and-single-image .full-width-single-image-and-text-text-col p:last-of-type {
    margin-bottom: 20px;
}

.pimcore_area_full-width-text-and-single-image:last-child .container {
    padding-bottom: 1.5rem;
}

.narrow-text-section {
    padding-top: 1.5rem;
}

/* utils */

@media screen and (min-width: 1381px){
    .hide-on-wide-desktop {
        display: none !important;
    }
}

@media screen and (min-width: 991px){
    .hide-on-desktop {
        display: none !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 990px) {
    .hide-on-tablet {
        display: none !important;
    }
}

@media screen and (max-width: 990px) {
    .hide-on-tablet-down {
        display: none !important;
    }
}

@media screen and (min-width: 991px) {
    .hide-on-tablet-up {
        display: none !important;
    }
}

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

/* homepage hero */
.hero {
    padding-top: 11rem;
    padding-bottom: 9rem;
    background-size: cover;
}

.hero .container {
    justify-content: flex-start;
}

.hero h1 {
    color: #fff;
    font-size: 72px;
    line-height: 72px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.50);
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 991px){
    .hero h1 {
        font-size: 38px;
        line-height: 38px;
    }
}

.homepage-subtitle {
    display: block;
    width: 100%;
    text-align: left;
    font-family: founders;
    font-size: 28px;
    line-height: 1;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.50);
    text-transform: uppercase;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 2rem;
}

a.hero-button {
    display: flex;
    font-family: founders;
    font-size: 28px;
    color: #fff;
    background-color: #1EA12E;
    padding: 1rem 1.5rem;
    box-shadow: 6px 6px 0 rgba(255, 255, 255, 1);
    text-decoration: none;
    font-weight: bold;
    align-items: center;
}

a.hero-button::after {
    content: "";
    display: block;
    width: 20px;    
    height: 20px;
    margin-left: 20px;
    background-image: url('/static/img/arrow-top-right.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* homepage card grid */
.card-grid {
    background-color: #00592F;
}

.card-grid h2 {
    color: #fff;
    font-family: Agrandir, sans-serif;
    font-size: 32px;
    margin-bottom: 0;
}

.card-grid .container {
    justify-content: flex-start;
}

.card-grid-label {
    display: block;
    margin-bottom: 1.1rem;
    color: #fff;
    font-family: founders;
    font-size: 28px;
}

.card-grid-description {
    color: #fff;
    font-family: founders;
    font-size: 24px;
    font-weight: 300;
}

@media screen and (max-width: 768px){ 
    .hero h1 {
        font-size: 34px;
        line-height: 1.1;
    }
    
    .card-grid-description {
        font-size: 22px;
    }

    .card-grid-label {
        margin-bottom: 0.9rem;
    }

    .news-and-events h2,
    .card-grid h2 {
        font-size: 30px;
    }
    
    .commercial .pre-title {
        font-size: 30px;
        line-height: 36px; 
    }

    .commercial h2 {
        font-size: 40px;
        line-height: 1.3;
    }

    .commercial-text {
        font-size: 25px;
        line-height: 1.3;
    }
}

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

.card-grid .item {
    position: relative;
    text-decoration: none;
}

.card-grid .card-image {
    position: relative;
}

.card-grid .card-image img {
    display: block;
    margin-bottom: 1.1rem;
    max-height: calc(75vw);
}

.card-grid .card-image::after {
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    display: block;
    width: 40px;    
    height: 40px;
    background-image: url('/static/img/accent-arrow-top-right.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* News and events */
.news-and-events a {
    text-decoration: none;
}

.news-and-events h2 {
    font-size: 32px;
    color: #00592F;
    width: 100%;
    text-align: left;
}

.news-and-events-thumbnail {
    width: 100%;
    height: 100%;
    display: block;
	object-fit: cover;
    max-height: calc(75vw);
}

.news-and-events-item-header {
    display: flex;
}

.news-and-events-item-description {
    width: 100%;
    padding: 0.9rem;
    background-color: #fff;
}

.item-type, .item-date {
    display: block;
    font-family: founders;
    font-weight: bold;
    font-size: 14px;
    color: #00592F;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.item-title {
    color: #1EA12E;
    font-family: founders;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0;
}

.news-and-events-item.grid {
    overflow: hidden;
    margin-bottom: 15px;
}

.hide-on-tablet-down .news-and-events-item.grid {
    height: calc( 36rem / 3 );
}

.highlighted-item {
    position: relative;
    height: 36rem;
}

.highlighted-item .item-title {
    font-size: 28px;
}

.highlighted-item .news-and-events-image-container {
    overflow: hidden;
    height: 80%;
}

.highlighted-item .news-and-events-item-description {
    padding-left: 0;
}

.hide-on-tablet-down .highlighted-item .news-and-events-item-description {
    height: 20%;
}

/* Seaweed roadmap */
.seaweed-roadmap {
    overflow: hidden;
    background-size: cover;
}

.seaweed-roadmap .container {
    padding: 70px 20px;
}

.seaweed-roadmap .content-block {
    position: relative;
}

.seaweed-roadmap .content-block-inner {
    background-color: #1EA12E;
}

.seaweed-roadmap .text {
    font-family: founders;
    font-size: 24px;
    line-height: 28px;
}

.seaweed-roadmap .content-block,
.seaweed-roadmap .content-block h2,
.seaweed-roadmap .content-block p {
    color: #fff;
}

.seaweed-roadmap .content-block .content-block-inner {
    padding: 2.5rem;
}

@media screen and (max-width: 991px){
    .seaweed-roadmap .content-block .content-block-inner {
        padding: 1.5rem 1.5rem 3rem 1.5rem;
    }
}

a.seaweed-roadmap-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: #F7CB46;
    color: #00592F;
    padding: 0.8rem 1.5rem;
    font-family: founders;
    font-size: 21px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: bold;
}

a.seaweed-roadmap-button::after {
    content: "";
    display: block;
    width: 15px;    
    height: 15px;
    margin-left: 20px;
    background-image: url('/static/img/arrow-top-right-green.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* first commercial implementation */
.commercial .container {
    padding-top: 0;
    padding-bottom: 0;
}

.commercial-content {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    padding-right: 4.5rem;
}

@media screen and (max-width: 768px) {
    .commercial-content {
        padding-right: 1.5rem;
        padding-bottom: 6rem;
    }
}

.commercial-text {
    font-family: founders;
    font-size: 28px;
    color: #000;
    line-height: 35px;
}

.commercial-bg-col {
    position: relative;
}

.commercial-image-wrapper {
    position: absolute;
    width: 50vw;
    height: 100%;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.commercial .container .grid {
    max-width: 100%;
}

.commercial .pre-title {
    font-family: Agrandir, sans-serif;
    font-size: 32px;
    color: #1EA12E;
    line-height: 40px; 
    text-transform: uppercase;
    word-break: break-word;
}

.commercial h2 {
    font-family: Agrandir, sans-serif;
    font-size: 44px;
    color: #00592F;
    line-height: 72px; 
}

a.commercial-button {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #F7CB46;
    color: #00592F;
    padding: 0.8rem 1.5rem;
    font-family: founders;
    font-size: 21px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: bold;
}

a.commercial-button::after {
    content: "";
    display: block;
    width: 15px;    
    height: 15px;
    margin-left: 20px;
    background-image: url('/static/img/arrow-top-right-green.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

@media screen and (max-width: 991px){
    a.commercial-button {
        position: relative;
        width: fit-content;
    }
}

/* card grid sub block */
.card-grid .grid.full-width {
    margin-top: 2rem;
}

.card-grid-sub-block-content {
    background-color: #1EA12E;
    padding: 2rem 2rem 4rem;
}

.card-grid-sub-block-text {
    font-family: founders;
    font-size: 24px;
    color: #fff;
    line-height: 28px;
}

.full-width {
    width: 100%;
    margin: 0 !important; /* mostly here for .home .grid.full-width */
}

.card-grid-sub-block-image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

a.card-grid-sub-block-button {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #F7CB46;
    color: #00592F;
    padding: 0.8rem 1.5rem;
    font-family: founders;
    font-size: 21px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: bold;
}

a.card-grid-sub-block-button::after {
    content: "";
    display: block;
    width: 15px;    
    height: 15px;
    margin-left: 20px;
    background-image: url('/static/img/arrow-top-right-green.svg');
    background-size: contain;
    background-repeat: no-repeat;
}







/* revolution */
.revolution {
    background-color: #1EA12E;
    color: #fff;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.revolution h2 {
    font-family: Agrandir, sans-serif;
    font-size: 48px;
    color: #fff;
    text-align: center;
    line-height: 48px;
    text-transform: uppercase;
}

@media screen and (max-width: 768px){
    .revolution h2 {
        font-size: 34px;
        line-height: 1.3;
    }
}

.revolution .sub-title {
    color: #fff;
    font-family: founders;
    font-size: 28px;
    text-align: center;
    line-height: 40px;
}

.revolution-content {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

a.revolution-button {
    background-color: #F7CB46;
    align-self: center;
    color: #00592F;
    padding: 0.8rem 1.5rem;
    font-family: founders;
    font-size: 21px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: bold;
}

a.revolution-button::after {
    content: "";
    display: block;
    width: 15px;    
    height: 15px;
    margin-left: 20px;
    background-image: url('/static/img/arrow-top-right-green.svg');
    background-size: contain;
    background-repeat: no-repeat;
}