/*
Theme Name: Soil and More
Author: Bureau Noir - Creative Network
Author URI: https://www.bureaunoir.com
Version: 5.0
*/

@font-face {  
	font-family: 'KlarheitGrotestkMedium'; 
	font-weight: 500;
	font-style: normal;  
	font-display: swap;
	src: local('KlarheitGrotestkMedium'),       
	url('webfonts/KlarheitGrotesk-Medium.woff2') format('woff');
}

@font-face {  
	font-family: 'KlarheitGrotestkMediumItalic';  
	font-weight: 500;
	font-style: normal;  
	font-display: swap;
	src: local('KlarheitGrotestkMedium'),       
	url('webfonts/KlarheitGrotesk-MediumItalic.woff2') format('woff');
}

@font-face {  
	font-family: 'KlarheitGrotestkExtrabold'; 
	font-weight: 700; 
	font-style: normal;  
	font-display: swap;
	src: local('KlarheitGrotestkMedium'),       
	url('webfonts/KlarheitGrotesk-Extrabold.woff2') format('woff');
}

:root {
	--black: #000000;
	--white: #ffffff;
	--green: #00BF69;
	--dark-green: #002C28;
	--dark-green-50: rgba(0, 44, 40, 0.6);
	--mint: #D7F0E8;
}

.bg-mint {
	background-color: var(--mint);
}

.bg-green {
	background-color: var(--green);
}

.bg-dark-green {
	background-color: var(--dark-green);
}

.hr {
	height: 1px;
	background: var(--white);
}

.bg-white {
	background-color: var(--white);
}

.color-mint {
	color: var(--mint);
}

.color-green {
	color: var(--green);
}

.color-dark-green {
	color: var(--dark-green);
}

.color-white {
	color: var(--white);
}

.obj-cover {
	object-fit: cover;
	height: 100%;
}

.team-overlay {
	display: none;
}

.team-member-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    width: 100%;
    text-align: left;
    height: 100%;
    z-index: 999;
}

.team-member-open {
	cursor: pointer;
}

.team-member-overlay-close {
	cursor: pointer;
}

.team-member-overlay-close {
	position: absolute;
    top: 60px;
    right: 0;
    cursor: pointer;
}

.team-member-overlay-close line {
	transition: all 0.2s ease;
}

.team-member-overlay-close:hover line {
	stroke: var(--green);
}

.fs-18 {
	font-size: 18px;
	line-height: 28px;
}

.fs-22 {
	font-size: 22px;
	line-height: 32px;
}

.fs-30 {
	font-size: 30px;
	line-height: 42px;
}

.fs-42 {
	font-size: 34px;
	line-height: 46px;
	margin-top: -6px;
}

.fs-60 {
	font-size: 60px;
	line-height: 84px;
	margin-top: -12px;
}

.fs-110 {
	font-size: 110px;
	line-height: 120px;
}

.f-medium {
	font-family: 'KlarheitGrotestkMedium', sans-serif;
	font-weight: normal;
}

.f-bold {
	font-family: 'KlarheitGrotestkExtraBold', sans-serif;
}

.link-white {
	color: var(--white);
	position: relative;
	display: block;
}

.link-white:hover {
	color: var(--dark-green);
}

.link-white::before {
	position: absolute;
	content: url('images/arrow-right-dark-green.svg'); 
	width: 20px;
	height: 20px;
	z-index: 999;
	top: 0;
	left: -50px;
	opacity: 0;
	transition: all 0.2s ease;
}

.border-bottom-white:hover > .link-white:hover::before {
	opacity: 1;
}

.border-bottom-white {
	border-bottom: 2px solid var(--white);
	padding: 0 0 20px 0;
    margin: 20px 0;
}

.arrow-green-hover {
	position: relative;
}

.arrow-green-hover::before {
	position: absolute;
	content: url('images/arrow-right-green.svg'); 
	width: 20px;
	height: 20px;
	z-index: 99;
	top: 0;
	left: -40px;
	opacity: 0;
	transition: all 0.2s ease;
}

.arrow-green-hover:hover {
	color: var(--green);
}

.arrow-green-hover:hover::before {
	opacity: 1;
}

.flex {
	display: flex;
}

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

.flex-justify-center {
	justify-content: center;
}

.flex-align-center {
	align-items: center;
}

.flex-align-start {
	align-items: flex-start;
}

.flex-align-end {
	align-items: flex-end;
}

.flex-align-self-start {
	align-self: flex-start;
}

.flex-align-self-end {
	align-self: flex-end;
}

.flex-justify-end {
	justify-content: flex-end;
}

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

.flex-dir-column {
	flex-direction: column;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
	background: var(--white);
	color: var(--dark-green);
	font-size: 18px;
	line-height: 26px;
	font-family: 'KlarheitGrotestkMedium', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.site-header {
	background: var(--green);
	padding: 20px 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 82px;
	z-index: 999;
}
.navigation {
    grid-column: 3 / span 14;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.site-header nav ul {
	list-style: none;
	text-align: right;
	margin: 0;
	padding: 8px 0;
	display: block;
}

nav ul li {
	display: inline-block;
	margin: 0 50px 0 0;
	position: relative;
}

.site-header nav ul li ul {
	display: none;
    position: absolute;
    top: 25px;
    left: -40px;
    text-align: left;
    width: auto;
    background: var(--green);
    padding: 40px;
}

nav ul li:hover ul {
	display: block;
}

.site-header nav ul li ul li {
    display: block;
    margin: 0 0 10px 0;
    white-space: nowrap;
}

.site-header nav ul li ul li:last-child {
    margin-bottom: 0;
}

nav ul li a {
	color: var(--dark-green);
	text-decoration: none;
	transition: color 0.2s ease;
	font-size: 16px;
}

nav ul li a:hover {
	color: var(--white);
}

nav ul li.current-menu-item > a,
nav ul li.current_page_parent > a {
	color: var(--white);	
}

ol {
	padding: 0;
	margin: 0;
	line-height: 30px;
}

.green-bullets ul {
	font-family: $main_font;
	margin: 5px 0 15px;
	padding: 0;
	line-height: 30px;
}

.green-bullets ul li {
	list-style: none;
	position: relative;
	padding: 0 0 0 25px;
}
	
.green-bullets ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 8px;
	height: 8px;
	background-color: var(--green);
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

ul.slick-dots li::before,
ul.case-dots li::before,
ul.table-dots li::before,
.bn-pagination ul li::before {
	display: none;
}

 ul.slick-dots {
	margin: 40px 0 0 0;
	list-style: none;
	padding: 0;
	text-align: center;
}

ul.slick-dots li {
	display: inline-block;
	width: 15px;
	height: 15px;
	border-radius: 20px;
	background: none;
	border: 2px solid var(--white);
	margin: 0 5px;
	text-align: right;
	cursor: pointer;
	padding: 0;
	position: inherit;
}

ul.slick-dots li.slick-active {
	background: var(--white);
}

ul.slick-dots li button {
	display: none;
}

 ul.case-dots {
	margin: 40px 0 0 0;
	list-style: none;
	padding: 0;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 20px;
	width: 100%;
}

 ul.case-dots li {
	display: inline-block;
	width: 15px;
	height: 15px;
	border-radius: 20px;
	background: none;
	border: 2px solid var(--white);
	margin: 0 5px;
	text-align: right;
	cursor: pointer;
	padding: 0;
}

ul.case-dots li.slick-active {
	background: var(--white);
}

ul.case-dots li button {
	display: none;
}

 ul.table-dots {
	margin: 40px 0 0 0;
	list-style: none;
	padding: 0;
	text-align: center;
	position: absolute;
	left: 0;
	top: -140px;
	width: 100%;
}

 ul.table-dots li {
	display: inline-block;
	width: 15px;
	height: 15px;
	border-radius: 20px;
	background: none;
	border: 2px solid var(--white);
	margin: 0 5px;
	text-align: right;
	cursor: pointer;
	padding: 0;
}

ul.table-dots li.slick-active {
	background: var(--white);
}

ul.table-dots li button {
	display: none;
}

.menu-btn {
	display: none;
}

.font-italic {
	font-family: 'KlarheitGrotestkMediumItalic', sans-serif;
}

.button {
	border: 3px solid var(--green);
	padding: 5px 15px;
	border-radius: 50px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	width: auto;
	color: var(--green);
	font-family: 'KlarheitGrotestkExtrabold', sans-serif;
	transition: all 0.3s ease;
}

.button:hover {
	background: var(--green);
	color: var(--white);
}

.button-white {
	border: 3px solid var(--white);
	color: var(--white);
	position: relative;
}

.button-white:hover {
	background: var(--white);
	color: var(--green);
}

.static-header-margin {
	margin: 81px 0 0 0;
}

.hero {
	margin: 81px 0 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 660px;
	background: var(--green);
	color: var(--white);
	font-family: 'KlarheitGrotestkExtrabold', sans-serif;
}

.hero-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	max-width: 500px;
}

.hero-image {
	margin: 82px 0 0 0;
	height: 660px;
}

.bold-underscore {
	width: 250px;
	height: 120px;
	background: linear-gradient(to bottom, var(--green) 85%, var(--white) 15%);
	display: inline-block;
}

a.site-branding {
	display: block;
	max-width: 160px;
	width: 100%;
	grid-column: span 2;
	margin-top: 3px;
}

.nav-secondary {
    text-align: right;
}

img.dropdown-arrow {
	width: 15px;
	height: auto;
	display: inline-block;
	margin: 0 0 0 5px;
}

.lang-dropdown {
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 20px 0 0;
	padding: 8px 0;
	font-size: 16px;
	cursor: pointer;
	position: relative;
}

.langs {
    position: absolute;
    opacity: 0;
    top: 30px;
    left: -20px;
    padding: 20px;
    background: var(--green);
	transition: all 0.2s ease;
}

.langs a {
	display: block;
}

.lang-dropdown:hover > .langs {
	opacity: 1;
}

.langs a {
	padding: 0;
	margin: 0;
	text-decoration: none;
	color: var(--dark-green);
}

.grid-square::before {
	content: "";
	padding-bottom: 100%;
	display: inline-block;
	vertical-align: top;
}
.bg-mint {
	background: var(--mint);
}
.headline {
	font-family: 'KlarheitGrotestkExtrabold', sans-serif;
	color: var(--green);
	font-size: 22px;
	line-height: 30px;
}
.mb-80 {
	margin-bottom: 80px;
}
.color-black {
	color: var(--black);
}

.column-8 {
	grid-column: span 8;
	position: relative;
}

.column-6-span-2 {
	grid-column: 2 / span 6;
}

.pos-abs {
	position: absolute;
	height: 100%;
}

.pos-rel {
	position: relative;
}

.teaser {
	position: relative;
}

p:first-child {
	margin-top: 0;
}

p:last-child {
	margin-bottom: 0;
}

.teaser-arrow {
	width: 30px;
	position: absolute;
	top: 0;
	left: -60px;
}

* {
    box-sizing: 			border-box;
    -o-box-sizing: 		border-box;
    -moz-box-sizing: 		border-box;
    -webkit-box-sizing: 	border-box;
	-webkit-overflow-scrolling: touch;
}

*:focus {
    outline: none;
}

.clearfix {
    zoom:1;
}

.clearfix:after {
    clear:both;
}

.clearfix:before,
.clearfix:after {
    content:"";
    display:table;
}

.slide.arrow {
	padding: 0 0 0 50px;
	position: relative;
}

.slide.arrow::before {
	position: absolute;
	content: url('images/arrow-right-dark-green.svg'); 
	width: 20px;
	height: 20px;
	z-index: 99;
	top: 0;
	left: 0;
	transition: all 0.2s ease;
}

.text-green-arrow::before {
	position: absolute;
	content: url('images/arrow-right-green.svg'); 
	width: 20px;
	height: 20px;
	z-index: 99;
	top: 0;
	left: -40px;
	transition: all 0.2s ease;
}

h1 {
	font-size: 42px;
	line-height: 60px;
	font-family: 'KlarheitGrotestkExtrabold', sans-serif;
	position: relative;
	margin-top: -12px;
}

h1.arrow::before {
	position: absolute;
	content: url('images/arrow-right-dark-green.svg'); 
	width: 20px;
	height: 20px;
	z-index: 99;
	top: 2px;
	left: -60px;
	transition: all 0.2s ease;
}

h2 {
	font-family: 'KlarheitGrotestkExtrabold', sans-serif;
	font-size: 22px;
	line-height: 32px;
	margin-top: 80px;
}

h3 {
	font-family: 'KlarheitGrotestkExtrabold', sans-serif;
	font-size: 22px;
	line-height: 32px;
	color: var(--green);	
	margin-top: 0;
}

h4 {
	
}

h5 {
	
}

h6 {
	
}

p {
	
}

a {
	text-decoration: none;
	transition: all 0.2s ease;
	color: var(--green);
}

a:hover {
	color: var(--dark-green);
}

svg,
svg path,
svg g {
	transition: all 0.2s ease;
}

svg:hover path,
svg:hover g {
	stroke: var(--green);
}


img {
    max-width: 100%;
    width: 100%;
    display: block;
}


/* Inputs */
input[type="text"] {
	
}

input[type="email"] {
	
}

input[type="password"] {
	
}

input[type="submit"] {
	
}

textarea {
	
}

.p-40 {
	padding: 40px;
}

.p-10 {
	padding: 10px;
}

.p-x-40 {
	padding-top: 40px;
	padding-bottom: 40px;
}

.p-x-80 {
	padding-top: 80px;
	padding-bottom: 80px;
}

.p-x-150 {
	padding-top: 150px;
	padding-bottom: 150px;
}

.p-y-40 {
	padding-left: 40px;
	padding-right: 40px;
}

.p-y-80 {
	padding-left: 80px;
	padding-right: 80px;
}

.p-y-150 {
	padding-left: 150px;
	padding-right: 150px;
}

.linkable {
	cursor: pointer;
	transition: all 0.2s ease;
}

.case-overlay {
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
	padding: 40px; 
	color: var(--white);
	background: var(--green);
	opacity: 0;
}

.case-teaser:hover .case-overlay {
	opacity: 1;
	color: var(--white);
}

.case-teaser img {
	height: 100%;
	object-fit: cover;
}

.hover-green:hover {
	color: var(--green);
}

.hover-dark-green:hover {
	color: var(--dark-green);
}

.hover-green:hover svg path {
	stroke: var(--green);
}

.text-2-columns {
	column-count: 2;
	column-gap: 40px;
}

.m-t-5 {
	margin-top: 5px;
}

.m-t-10 {
	margin-top: 10px;
}

.m-t-20 {
	margin-top: 20px;
}

.m-t-40 {
	margin-top: 40px;
}

.m-t-80 {
	margin-top: 80px;
}

.m-t-200 {
	margin-top: 200px;
}

.m-b-5 {
	margin-bottom: 5px;
}

.video {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%;
}

.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.m-b-10 {
	margin-bottom: 10px;
}

.m-b-20 {
	margin-bottom: 20px;
}

.m-b-30 {
	margin-bottom: 30px;
}

.m-b-40 {
	margin-bottom: 40px;
}

/*
.m-b-40:last-child {
	margin-bottom: 0;
}
*/

.m-b-50 {
	margin-bottom: 50px;
}

.m-b-60 {
	margin-bottom: 60px;
}

.m-b-80 {
	margin-bottom: 80px;
}

.m-r-20 {
	margin-right: 20px;
}

.spinner {
  width: 70px;
  text-align: center;
}

.spinner > div {
	width: 18px;
	height: 18px;
	background-color: var(--white);
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner.green > div {
	background-color: var(--green);	
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

.bn-pagination {
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
	width: 100%;
	list-style: none;
}

.bn-pagination ul li {
	display: inline-block;
	cursor: pointer;
	margin: 0 2px;
	transition: all 0.2s ease;
	padding: 0;
}

.bn-pagination li:hover {
	color: var(--dark-green);
}

.bn-pagination li.selected {
	color: var(--dark-green);
}

.bn-cases-pagination li:hover {
	color: var(--green);
}

.bn-cases-pagination li.selected {
	color: var(--green);
}

.w-100 {
	width: 100%;
}

.h-800 {
	height: 800px;
}

.min-h-800 {
	min-height: 800px;
}

.min-h-1000 {
	min-height: 1000px;
}

.cursor-pointer {
	cursor: pointer;
}

.max-w-20 {
	max-width: 20px;
}

.max-w-50 {
	max-width: 50px;
}

.max-w-80 {
	max-width: 80px;
}

.max-w-90 {
	max-width: 90px;
}

.max-w-100 {
	max-width: 100px;
}

.max-w-140 {
	max-width: 140px;
}

.w-100 {
	width: 100%;
}

.max-w-1000 {
	max-width: 1000px;
}

.max-w-160 {
	max-width: 160px;
}

.d-block {
	display: block;
}

.d-inline-block {
	display: inline-block;
}

.d-hidden {
	display: none;
}

/* Grid */
.grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-gap: 20px;
}

.grid-3 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
}

.grid-center {
	justify-items: center;
}

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

.text-center img {
	display: inline-block;
}

.grid-12 {
	grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-14 {
	grid-template-columns: repeat(14, minmax(0, 1fr));
}

.grid-16 {
	grid-template-columns: repeat(16, minmax(0, 1fr));
}

.team-member {
	display: none;
}

.team-member:nth-child(4n+1) {
	grid-column: 1 / span 2;
}

.team-member:nth-child(4n-2) {
	grid-column: 5 / span 2;
}

.team-member:nth-child(4n-1) {
	grid-column: 9 / span 2;
}

.team-member:nth-child(4n) {
	grid-column: 13 / span 2;
}

.grid-inner {
	grid-column: 2 / span 14;
}

.grid-inner-8 {
	grid-column: 2 / span 6;
}

.grid-6 {
	grid-template-columns: repeat(6, 1fr);
}

.grid-8 {
	grid-template-columns: repeat(8, 1fr);
}

.grid-p-0 {
	padding: 0;
}

.grid-gap-40 {
	grid-gap: 40px;
}

.grid-gap-60 {
	grid-gap: 60px;
}

.grid-gap-120 {
	grid-gap: 120px;
}

.grid-gap-100 {
	grid-gap: 100px;
}

.grid-gap-0 {
	grid-gap: 0;
}

.column-1 {
	grid-column: span 1;
}

.column-2 {
	grid-column: span 2;
}

.column-3 {
	grid-column: span 3;
}

.column-4 {
	grid-column: span 4;
}

.column-6 {
	grid-column: span 6;
}

.column-8 {
	grid-column: span 8;
}

.column-8-start-6 {
	grid-column: 6 / span 8;
}

.column-12 {
	grid-column: span 12;
}

.column-16 {
	grid-column: span 16;
}

.col-auto {
	grid-column: auto;
}

.col-span-1	{
	grid-column: span 1 / span 1;
}

.col-span-2	{
	grid-column: span 2 / span 2;
}

.col-span-3	{
	grid-column: span 3 / span 3;
}

.col-span-4	{
	grid-column: span 4 / span 4;
}

.col-span-5	{
	grid-column: span 5 / span 5;
}

.col-span-6	{
	grid-column: span 6 / span 6;
}

.col-span-7	{
	grid-column: span 7 / span 7;
}

.col-span-8	{
	grid-column: span 8 / span 8;
}

.col-span-9	{
	grid-column: span 9 / span 9;
}

.col-span-10 {
	grid-column: span 10 / span 10;
}

.col-span-11 {
	grid-column: span 11 / span 11;
}

.col-span-12 {
	grid-column: span 12 / span 12;
}

.col-span-14 {
	grid-column: span 14 / span 14;
}

.col-span-16 {
	grid-column: span 16 / span 16;
}

.col-span-full {
	grid-column: 1 / -1;
}

.col-start-1	{
	grid-column-start: 1;
}

.col-start-2	{
	grid-column-start: 2;
}

.col-start-3	{
	grid-column-start: 3;
}

.col-start-4	{
	grid-column-start: 4;
}

.col-start-5	{
	grid-column-start: 5;
}

.col-start-6	{
	grid-column-start: 6;
}

.col-start-7	{
	grid-column-start: 7;
}

.col-start-8	{
	grid-column-start: 8;
}

.col-start-9	{
	grid-column-start: 9;
}

.col-start-10	{
	grid-column-start: 10;
}

.col-start-11	{
	grid-column-start: 11;
}

.col-start-12	{
	grid-column-start: 12;
}

.col-start-13	{
	grid-column-start: 13;
}

.col-start-auto	{
	grid-column-start: auto;
}

.col-end-1	{
	grid-column-end: 1;
}

.col-end-2	{
	grid-column-end: 2;
}

.col-end-3	{
	grid-column-end: 3;
}

.col-end-4	{
	grid-column-end: 4;
}

.col-end-5	{
	grid-column-end: 5;
}

.col-end-6	{
	grid-column-end: 6;
}

.col-end-7	{
	grid-column-end: 7;
}

.col-end-8	{
	grid-column-end: 8;
}

.col-end-9	{
	grid-column-end: 9;
}

.col-end-10	{
	grid-column-end: 10;
}

.col-end-11	{
	grid-column-end: 11;
}

.col-end-12	{
	grid-column-end: 12;
}

.col-end-13	{
	grid-column-end: 13;
}

.col-end-auto	{
	grid-column-end: auto;
}

.auto-cols-auto {
	grid-auto-columns: auto; 
}

.footer-branding {
	max-width: 160px;
}

footer p:first-child {
	margin-top: 0;
}

footer a {
	color: var(--white);
}

footer a:hover {
	color: var(--green);
}

footer .social {
	max-width: 40px;
	display: inline-block;
	margin: 0 10px 0 0;
}

footer .social:last-child {
	margin: 0 0 0 0;
}

.logo-slides .slick-slide {
	margin: 0 20px;
}

.logo {
	max-width: 80px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}
 
#typed {
	height: 100px;
}

.close-navigation {
	display: none;
}

.news-border {
	border-bottom: 1px solid #fff; 
	padding-bottom: 20px;
}

.m-b-0 {
	margin-bottom: 0;
}

/* Tablet Wide */
@media screen and (max-width: 1025px) and (min-width: 768px) {
	
	ul.table-dots {
	    top: -160px;
	}
	
	.md-flex-align-left {
		align-items: flex-start;
	}
		
	.arrow-green-hover::before {
		display: none;
	}

	.hero-image {
		height: 460px;
	}


	.teaser-arrow {
		display: none;
	}
	
	.fs-110 {
		font-size: 70px;
		line-height: 80px;
	}
	
	.close-navigation {
		display: block;
		cursor: pointer;
		position: absolute;
		top: 25px;
		right: 45px;
		width: 20px;
	}
	
	.menu-btn {
		cursor: pointer;
		display: block;
		color: var(--white);
		position: absolute;
		font-size: 30px;
		top: 20px;
		right: 45px;
	}
	
	.navigation {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		grid-column: span 14;
		padding: 10px 60px;
		background: var(--dark-green);
		height: 100vh;
		display: none;
	}
	
	nav ul li {
		width: 100%;
		display: inline-block;
		margin-bottom: 20px;
	}
	
	nav ul li a {
		font-size: 42px;
		line-height: 70px;
		color: var(--white);
	}
	
	.site-header nav ul {
		text-align: left;
		padding: 40px 0 0 0;
	}
	
	nav ul li:hover ul {
		display: none;
	}
	
	.lang-dropdown {
	    color: #fff;
	    display: block;
	    align-items: inherit;
	    justify-content: inherit;
	    margin: 15px 0 40px 0;
	    padding: 0 0;
	}
		
	.langs-title {
		display: none;
	}
	
	.langs a {
		display: inline-block;
		margin: 0 10px 0 0;
		font-size: 42px;
	}
	
	.langs a {
		color: var(--green);
	}
	
	.langs > * {
		margin: 0 10px 0 0;
		font-size: 42px;
	}
	
	
	.button-large {
		font-size: 42px;
		padding: 20px;
	}
	
	.langs {
		top: inherit;
		left: inherit;
		opacity: 1;
		padding: 0;
		position: relative;
		background: none;
	}
	
	a.site-branding {
	    display: block;
	    max-width: 160px;
	    width: 100%;
	    grid-column: span 8;
	    margin-top: 3px;
	}
	
	.case-overlay {
	    opacity: 1;
	}
	
	.text-green-arrow::before {
		display: none;
	}
	
	h1.arrow::before {
		display: none;
	}
	
	.team-member {
		display: none;
	}
	
	.team-member:nth-child(4n+1) {
		grid-column: 1 / span 6;
	}
	
	.team-member:nth-child(4n-2) {
		grid-column: 8 / span 14;
	}
	
	.team-member:nth-child(4n-1) {
		grid-column: 1 / span 6;
	}
	
	.team-member:nth-child(4n) {
		grid-column: 8 / span 14;
	}
	
	.md-fs-20 {
		font-size: 20px;
		line-height: 28px;
	}
	
	.md-h-600 {
		height: 600px;
	}
	
	.md-max-w-600 {
		max-width: 600px;
	}
	
	.md-grid-gap-0 {
		grid-gap: 0px;
	}
	
	.md-grid-gap-x-60 {
		grid-gap: 60px 0;
	}
	
	.md-grid-gap-x-40 {
		grid-gap: 40px 0;
	}
	
	.md-d-block {
		display: block;
	}
	
	.md-d-hidden {
		display: none;
	}
	
	.md-m-r-0 {
		margin-right: 0;
	}
	
	.md-m-b-20 {
		margin-bottom: 20px;
	}
	
	.md-m-b-40 {
		margin-bottom: 40px;
	}
	
	.md-col-span-1	{
		grid-column: span 1 / span 1;
	}
	
	.md-col-span-2	{
		grid-column: span 2 / span 2;
	}
	
	.md-col-span-3	{
		grid-column: span 3 / span 3;
	}
	
	.md-col-span-4	{
		grid-column: span 4 / span 4;
	}
	
	.md-col-span-5	{
		grid-column: span 5 / span 5;
	}
	
	.md-col-span-6	{
		grid-column: span 6 / span 6;
	}
	
	.md-col-span-7	{
		grid-column: span 7 / span 7;
	}
	
	.md-col-span-8	{
		grid-column: span 8 / span 8;
	}
	
	.md-col-span-9	{
		grid-column: span 9 / span 9;
	}
	
	.md-col-span-10 {
		grid-column: span 10 / span 10;
	}
	
	.md-col-span-11 {
		grid-column: span 11 / span 11;
	}
	
	.md-col-span-12 {
		grid-column: span 12 / span 12;
	}
	
	.md-col-span-14 {
		grid-column: span 14 / span 14;
	}
	
	.md-col-span-16 {
		grid-column: span 16 / span 16;
	}
	
	.md-col-span-full {
		grid-column: 1 / -1;
	}
	
	.md-col-start-1	{
		grid-column-start: 1;
	}
	
	.md-col-start-2	{
		grid-column-start: 2;
	}
	
	.md-col-start-3	{
		grid-column-start: 3;
	}
	
	.md-col-start-4	{
		grid-column-start: 4;
	}
	
	.md-col-start-5	{
		grid-column-start: 5;
	}
	
	.md-col-start-6	{
		grid-column-start: 6;
	}
	
	.md-col-start-7	{
		grid-column-start: 7;
	}
	
	.md-col-start-8	{
		grid-column-start: 8;
	}
	
	.md-col-start-9	{
		grid-column-start: 9;
	}
	
	.md-col-start-10	{
		grid-column-start: 10;
	}
	
	.md-col-start-11	{
		grid-column-start: 11;
	}
	
	.md-col-start-12	{
		grid-column-start: 12;
	}
	
	.md-col-start-13	{
		grid-column-start: 13;
	}
	
	.md-col-start-auto	{
		grid-column-start: auto;
	}
	
	.md-col-end-1	{
		grid-column-end: 1;
	}
	
	.md-col-end-2	{
		grid-column-end: 2;
	}
	
	.md-col-end-3	{
		grid-column-end: 3;
	}
	
	.md-col-end-4	{
		grid-column-end: 4;
	}
	
	.md-col-end-5	{
		grid-column-end: 5;
	}
	
	.md-col-end-6	{
		grid-column-end: 6;
	}
	
	.md-col-end-7	{
		grid-column-end: 7;
	}
	
	.md-col-end-8	{
		grid-column-end: 8;
	}
	
	.md-col-end-9	{
		grid-column-end: 9;
	}
	
	.md-col-end-10	{
		grid-column-end: 10;
	}
	
	.md-col-end-11	{
		grid-column-end: 11;
	}
	
	.md-col-end-12	{
		grid-column-end: 12;
	}
	
	.md-col-end-13	{
		grid-column-end: 13;
	}
	
	.md-col-end-auto	{
		grid-column-end: auto;
	}
	
	.auto-cols-auto {
		grid-auto-columns: auto; 
	}

}

/* Mobile */
@media screen and (max-width: 768px) {

	.sm-open-none {
		pointer-events: none;
	}
	
	.case-overlay {
	    opacity: 1;
	}
	
	.arrow-green-hover::before {
		display: none;
	}
	
	.close-navigation {
		display: block;
		cursor: pointer;
		position: absolute;
		top: 25px;
		right: 25px;
		width: 20px;
	}
	
	.menu-btn {
		cursor: pointer;
		display: block;
		color: var(--white);
		position: absolute;
		font-size: 30px;
		top: 20px;
		right: 25px;
	}
	
	.navigation {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		grid-column: span 14;
		display: block;
		padding: 20px;
		background: var(--dark-green);
		height: 100vh;
		display: none;
	}
	
	nav ul li {
		width: 100%;
		display: inline-block;
		margin-bottom: 20px;
	}
	
	.site-header nav ul {
		text-align: left;
		padding: 40px 0 0 0;
	}
	
	nav ul li a {
		color: var(--white);
	}
	
	nav ul li:hover ul {
		display: none;
	}
	
	.lang-dropdown {
	    color: #fff;
	    display: block;
	    align-items: inherit;
	    justify-content: inherit;
	    margin: 0 0 0 0;
	    padding: 0 0;
	    margin-bottom: 20px;
	}
		
	.langs-title {
		display: none;
	}
	
	.langs a {
		display: inline-block;
		margin: 0 10px 0 0;
	}
	
	.langs a {
		color: var(--green);
	}
	
	.langs > * {
		margin: 0 10px 0 0;
	}
	
	.langs {
		top: inherit;
		left: inherit;
		opacity: 1;
		padding: 0;
		position: relative;
		background: none;
	}
	
	a.site-branding {
	    display: block;
	    max-width: 160px;
	    width: 100%;
	    grid-column: span 8;
	    margin-top: 3px;
	}
	
	.slide.arrow {
		padding: 0 50px;
	}

	.slide.arrow::before {
		display: none;
	}
	
	.sm-h-600 {
		height: 600px;
	}
	
	.sm-h-450 img {
		object-fit: cover;
		height: 500px;
	}
	
	.pos-abs {
		height: 500px;
	}
	
	.sm-grid-16 {
		grid-template-columns: repeat(16, minmax(0, 1fr));
	}

	h1.arrow::before {
		display: none;
	}
	
	.team-member {
		display: none;
	}
	
	.team-member:nth-child(4n+1) {
		grid-column: 1 / span 7;
	}
	
	.team-member:nth-child(4n-2) {
		grid-column: 8 / span 7;
	}
	
	.team-member:nth-child(4n-1) {
		grid-column: 1 / span 7;
	}
	
	.team-member:nth-child(4n) {
		grid-column: 8 / span 7;
	}

	.fs-18 {
		font-size: 18px;
		line-height: 28px;
	}
	
	.fs-22 {
		font-size: 22px;
		line-height: 32px;
	}
	
	.sm-p-20 {
		padding: 20px;
	}
	
	.fs-30 {
		font-size: 30px;
		line-height: 42px;
	}
	
	.fs-42 {
		font-size: 24px;
		line-height: 32px;
		margin-top: -6px;
	}
	
	.sm-fs-20 {
		font-size: 20px;
		line-height: 28px;
	}
	
	h1 {
		font-size: 24px;
		line-height: 32px;
		margin-top: -6px;
	}
	
	.fs-60 {
		font-size: 34px;
		line-height: 40px;
		margin-top: -12px;
	}
	
	.fs-110 {
		font-size: 110px;
		line-height: 120px;
	}
	
	.sm-max-w-400 {
		max-width: 400px;
	}

	.text-green-arrow::before {
		display: none;
	}
	
	.sm-margin-t-100 {
		margin: 100px 0 0 0;
	}
	
	.sm-d-hidden {
		display: none !important;
	}
	
	ul.table-dots {
	    top: -190px;
	}
		
	.sm-m-b-20 {
		margin-bottom: 20px;
	}	
	
	.sm-m-b-40 {
		margin-bottom: 40px;
	}	
	
	.sm-grid-gap-0 {
		grid-gap: 0px;
	}
	
	.sm-grid-gap-20 {
		grid-gap: 20px;
	}
	
	.sm-grid-gap-40 {
		grid-gap: 40px;
	}
	
	.sm-grid-gap-60 {
		grid-gap: 60px;
	}
	
	.sm-grid-gap-x-20 {
		grid-gap: 20px 0;
	}
	
	.sm-grid-gap-x-40 {
		grid-gap: 40px 0;
	}
	
	.hero-image {
	    height: 400px;
	}
	 
	#typed {
		height: 20px;
	}
	
	.hero {
		height: 200px;
	}
	
	.hero-inner .fs-110 {
	    font-size: 20px;
	    line-height: 20px;
	}
	
	
	
	
	
	
	.fs-110 {
	    font-size: 60px;
	    line-height: 60px;
	}
	
	.col-span-4,
	.column-3,
	.column-6 {
		grid-column: 1 / -1;
	}
	
	.grid-gap-100 {
		grid-gap: 100px 0;
	}
	
	
	
	a.site-branding {
	    display: block;
	    max-width: 160px;
	    width: 100%;
	    grid-column: span 8;
	    margin-top: 3px;
	}
	
	
	
	.teaser-arrow {
		display: none;
	}
	
		
	.column-8 {
	    grid-column: span 16;
	}
	
	.sm-col-span-1	{
		grid-column: span 1 / span 1;
	}

	.sm-col-span-2	{
		grid-column: span 2 / span 2;
	}
	
	.sm-col-span-3	{
		grid-column: span 3 / span 3;
	}
	
	.sm-col-span-4	{
		grid-column: span 4 / span 4;
	}
	
	.sm-col-span-5	{
		grid-column: span 5 / span 5;
	}
	
	.sm-col-span-6	{
		grid-column: span 6 / span 6;
	}
	
	.sm-col-span-7	{
		grid-column: span 7 / span 7;
	}
	
	.sm-col-span-8	{
		grid-column: span 8 / span 8;
	}
	
	.sm-col-span-9	{
		grid-column: span 9 / span 9;
	}
	
	.sm-col-span-10 {
		grid-column: span 10 / span 10;
	}
	
	.sm-col-span-11 {
		grid-column: span 11 / span 11;
	}
	
	.sm-col-span-12 {
		grid-column: span 12 / span 12;
	}
	
	.sm-col-span-14 {
		grid-column: span 14 / span 14;
	}
	
	.sm-col-span-16 {
		grid-column: span 16 / span 16;
	}
	
	.sm-col-span-full {
		grid-column: 1 / -1;
	}
	
	.sm-col-start-1	{
		grid-column-start: 1;
	}
	
	.sm-col-start-2	{
		grid-column-start: 2;
	}
	
	.sm-h-500 {
		height: 500px;
	}
	
	.sm-col-start-3	{
		grid-column-start: 3;
	}
	
	.sm-col-start-4	{
		grid-column-start: 4;
	}
	
	.sm-col-start-5	{
		grid-column-start: 5;
	}
	
	.sm-col-start-6	{
		grid-column-start: 6;
	}
	
	.sm-col-start-7	{
		grid-column-start: 7;
	}
	
	.sm-col-start-8	{
		grid-column-start: 8;
	}
	
	.sm-col-start-9	{
		grid-column-start: 9;
	}
	
	.sm-col-start-10	{
		grid-column-start: 10;
	}
	
	.sm-col-start-11	{
		grid-column-start: 11;
	}
	
	.sm-col-start-12	{
		grid-column-start: 12;
	}
	
	.sm-col-start-13	{
		grid-column-start: 13;
	}
	
	.sm-col-start-auto	{
		grid-column-start: auto;
	}
	
	.sm-col-end-1	{
		grid-column-end: 1;
	}
	
	.sm-col-end-2	{
		grid-column-end: 2;
	}
	
	.sm-col-end-3	{
		grid-column-end: 3;
	}
	
	.sm-col-end-4	{
		grid-column-end: 4;
	}
	
	.sm-col-end-5	{
		grid-column-end: 5;
	}
	
	.sm-col-end-6	{
		grid-column-end: 6;
	}
	
	.sm-col-end-7	{
		grid-column-end: 7;
	}
	
	.sm-col-end-8	{
		grid-column-end: 8;
	}
	
	.sm-col-end-9	{
		grid-column-end: 9;
	}
	
	.sm-col-end-10	{
		grid-column-end: 10;
	}
	
	.sm-col-end-11	{
		grid-column-end: 11;
	}
	
	.sm-col-end-12	{
		grid-column-end: 12;
	}
	
	.sm-col-end-13	{
		grid-column-end: 13;
	}
	
	.sm-col-end-auto	{
		grid-column-end: auto;
	}
	
	.auto-cols-auto {
		grid-auto-columns: auto; 
	}

		
}