/*
Theme Name: Flugfeld
Author: URBAN PROPAGANDA Communications GmbH
Author URI: https://urban-propaganda.de/
Description: Custom responsive theme.
Version: 1.0.9
Tags: php8, wp6
Text Domain: flugfeld
*/

@charset "UTF-8";

:root {
	--text-color: #000000;
	--text-hover-color: #ffa500;
	--text-primary-color: #00578a;
	--text-primary-alt-color: #c5e4e7;
	--text-secondary-color: #0c4f48;
	--text-secondary-alt-color: #bad7b9;
	--text-tertiary-color: #e36229;
	--text-tertiary-alt-color: #f3dbb0;
	--line-color: #dddddd;
}

@font-face {
	font-family: "HostGrotesk";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("fonts/hostgrotesk/HostGrotesk-Regular.ttf") format('truetype');
}

@font-face {
	font-family: "HostGrotesk";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("fonts/hostgrotesk/HostGrotesk-Bold.ttf") format('truetype');
}

html, body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
	background-color: #fff;
	overflow-y: scroll;
}

body, button, input, select, textarea {
    font-family: 'HostGrotesk', sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: var(--text-color);
}

textarea {
	resize: vertical;
}

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

#scrollbody {
	position: fixed;
	width : 100%;
	top: 0;
	right: 0;
	left: 0;
	z-index: 3;
	background-color: #fff;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: none;
	appearance: none;
}

h1, .h1, h2, h3, h4, h5, b, strong {
	font-weight: 700;
}
h1, .h1, h2, h3, h4, h5, p {
	margin-bottom: 20px;
}
h1, .h1 {
	font-size: 38px;
	line-height: 46px;
}
h2 {
	font-size: 32px;
	line-height: 40px;
}
h3 {
	font-size: 28px;
	line-height: 36px;
}
h4 {
	font-size: 22px;
	line-height: 30px;
}
h5 {
	font-size: 18px;
	line-height: 26px;
}

a {
	color: var(--text-primary-color);
	font-weight: 700;
	text-decoration: none;
}
a:hover {
	color: var(--text-hover-color);
	font-weight: 700;
	text-decoration: none;
}

.imgresponsive {
	display: block;
	width: 100%;
	height: auto;
}

.roundedborders {
	overflow: hidden;
	border-radius: 24px;
}


#main {
	min-height: 100vh;
}


/* Content */
.c-content {
	width: 100%;
}
.c-content-center {
	width: 100%;
	max-width: 1420px;
	margin: 0 auto;
}
.c-content-inner {
	padding: 0 80px;
}
.c-content-narrow {
	width: 100%;
	max-width: 710px;
	margin: 0 auto;
}
.c-block {
	display: block;
}
/* /Content */


/* Spacers */
.c-spacer {
	height: 40px;
}
.c-spacer-halfhalf,
.c-spacer-small {
	height: 10px;
}
.c-spacer-half {
	height: 20px;
}
.c-spacer-double {
	height: 80px;
}
.c-spacer-section {
	height: 160px;
}
.c-spacer-header {
	height: 100px;
}
/* /Spacers */


/* Formatting */
.textcenter {
	text-align: center;
}
.textright {
	text-align: right;
}
.textleft {
	text-align: left;
}
.textsmall {
	font-size: 12px;
	line-height: 20px;
}
.textlarge {
	font-size: 76px;
	line-height: 84px;
	font-weight: 400;
}
.textupper {
	text-transform: uppercase;
}
.textbold {
	font-weight: 700;
}
.textcolor {
	color: var(--text-color);
}
.textprimary {
	color: var(--text-primary-color);
}
.textlight {
	color: #fff;
}
.textdark {
	color: #000;
}
.textnodecoration {
	text-decoration: none;
}
/* /Formatting */


/* Header */
#header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 90;
	height: 100px;
	opacity: 1;
	transform: translateY(0);
	transition: all 0.2s;
}
body.header-retracted #header {
	transform: translateY(-100%);
	opacity: 0;
}
body.menu-mobile-active #header {
	transform: translateY(0);
	opacity: 1;
}
#headerbg {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 70;
	background: #fff;
	height: 100px;
	opacity: 1;
	transform: translateY(0);
	transition: all 0.2s;
}
body.header-retracted #headerbg {
	transform: translateY(-100%);
	opacity: 0;
}

#headerbar {
	position: relative;
	padding-top: 13px;
	padding-left: 128px;
	padding-right: 128px;
}

#headerlogo {
	position: absolute;
	top: 26px;
	left: 0;
	width: 112px;
	height: 48px;
}
#headerlogo a {
	display: block;
	text-decoration: none;
}
#headerlogo a svg {
	display: inline-block;
	width: 112px;
	height: 48px;
}
#headerlogo a svg path {
	fill: var(--text-primary-color);
}
#headerlogo a:hover svg path {
	fill: var(--text-hover-color);
}

#headermenu {
	text-align: right;
	padding-top: 13px;
}
#headermenu ul {
	display: inline-block;
	list-style-type: none;
}
#headermenu ul li {
	position: relative;
	display: inline-block;
}
#headermenu ul li a {
	text-decoration: none;
	text-transform: uppercase;
	color: var(--text-primary-color);
	font-weight: 700;
	font-size: 12px;
	line-height: 48px;
	margin-left: 40px;
	white-space: nowrap;
	letter-spacing: 1px;
}
#headermenu ul li a:hover {
	color: var(--text-hover-color);
}
#headermenu ul li ul {
	position: absolute;
	top: 48px;
	left: 20px;
	overflow: hidden;
	background: #fff;
	border-top: 1px solid #ddd;
	width: 200px;
	height: auto;
	display: inline-block;
	transform: translateY(-40px);
	opacity: 0;
	pointer-events: none;
	transition: all 0.2s;
}
#headermenu ul li.active ul {
	pointer-events: auto;
	transform: translateY(0);
	opacity: 1;
}
#headermenu ul li ul li {
	text-align: left;
	display: block;
}
#headermenu ul li ul li a {
	line-height: 48px;
	padding-right: 20px;
	padding-left: 20px;
	margin: 0;
	display: block;
	width: 100%;
	color: var(--text-color) !important;
	border-bottom: 1px solid #ddd;
	background-color: #fff;
	transition: background 0.2s;
}
#headermenu ul li ul li a:hover {
	background-color: #f7f7f7;
	color: var(--text-hover-color) !important;
}

#headerbutton {
	position: absolute;
	top: 0;
	right: 0;
	width: 128px;
	height: 100px;
	cursor: pointer;
}
#headerbuttontext {
	float: left;
	display: inline-block;
	width: 100px;
	height: 100px;
	line-height: 100px;
	text-align: right;
	padding-right: 15px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
	white-space: nowrap;
	color: var(--text-primary-color);
	letter-spacing: 1px;
	transition: color 0.2s;
}
#headerbuttonicon {
	float: left;
	display: inline-block;
	width: 28px;
	height: 100px;
	line-height: 100px;
	text-align: right;
	padding-top: 39px;
}

#headerbutton:hover #headerbuttontext {
	color: var(--text-hover-color);
}
/* /Header */


/* Menu Icon */
.menuicon {
	width: 28px;
	height: 22px;
	position: relative;
}
.menuicon span {
	position: absolute;
	height: 4px;
	right: 0;
	left: 0;
	background-color: var(--text-primary-color);
	display: inline-block;
	border-radius: 2px;
	opacity: 1;
	transition: all 0.2s;
}
.menuicon span.a1 {
	top: 0;
}
.menuicon span.a2 {
	top: 50%;
	transform: translateY(-50%);
}
.menuicon span.a3 {
	bottom: 0;
}
body.menu-mobile-active .menuicon .a1 {
	top: 9px;
	transform: rotate(45deg);
}
body.menu-mobile-active .menuicon .a2 {
	opacity: 0;
}
body.menu-mobile-active .menuicon .a3 {
	bottom: 9px;
	transform: rotate(-45deg);
}
#headerbutton:hover .menuicon span {
	background-color: var(--text-hover-color);
}
/* /Menu Icon */


/* Mobile Menu */
body #mobilemenu {
	opacity: 0;
	transform: translateY(-100%);
	height: 100vh;
	transition: all 0.2s;
	background-color: var(--text-secondary-alt-color);
	z-index: 80;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	overflow-y: auto;
}
body.menu-mobile-active #mobilemenu {
	opacity: 1;
	transform: translateY(0);
}
body.menu-mobile-active #header {
	background-color: var(--text-secondary-alt-color);
}
#mainmenu ul {
	list-style-type: none;
	width: 100%;
}
#mainmenu ul li {
	width: 100%;
	text-align: left;
	padding-left: 40px;
}
#mainmenu ul li a {
	display: inline-block;
	text-decoration: none;
	min-height: 48px;
	font-size: 18px;
	color: var(--text-color);
	line-height: 26px;
	padding: 12px 0;
}
#mainmenu ul li a:hover {
	text-decoration: none;
	color: var(--text-hover-color);
}
.mainnavmenu ul {
	list-style-type: none;
	display: block;
	width: 100%;
}
.mainnavmenu ul li {
	display: block;
	width: 100%;
	padding-left: 40px;
}
.mainnavmenu ul li a {
	display: inline-block;
	font-size: 12px;
	line-height: 22px;
	font-weight: 700;
	color: var(--text-color);
	text-decoration: none;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.mainnavmenu ul li a:hover {
	color: var(--text-hover-color);
}
#mainbottom {
	padding-left: 40px;
}
/* Mobile Menu */


/* Social */
.social-nav ul {
	list-style-type: none;
	margin-bottom: -20px;
}
.social-nav ul li {
	display: inline-block;
	width: 52px;
	height: 52px;
}
.social-nav ul li a {
	display: inline-block;
	width: 32px;
	height: 32px;
	text-decoration: none;
	cursor: pointer;
	transform: scale(1);
	transition: all 0.3s;
}
.social-nav ul li a:hover {
	transform: scale(1.5);
}
.social-nav ul li a svg {
	display: inline-block;
	width: 32px;
	height: 32px;
}
.social-nav ul li a svg path {
	fill: var(--text-color);
	transition: fill 0.3s;
}
.social-nav ul li a:hover svg path {
	fill: var(--text-hover-color);
}
/* /Social */


/* Footer */
#footer {
	background-color: #fff;
}

#footerlogo {
	width: 150px;
	height: auto;
}
#footerlogo a {
	display: inline-block;
	text-decoration: none;
}
#footerlogo a svg {
	display: inline-block;
	width: 150px;
	height: auto;
}
#footerlogo a svg path {
	fill: var(--text-primary-color);
}
#footerlogo a:hover svg path {
	fill: var(--text-hover-color);
}

#footerinfo p {
	margin: 0;
}
#footerinfo a {
	color: var(--text-color);
	font-weight: 400;
	text-decoration: underline;
}
#footerinfo a:hover {
	color: var(--text-hover-color);
	font-weight: 400;
	text-decoration: underline;
}

.fancyheader ul {
	display: block;
	list-style-type: none;
}
.fancyheader ul li {
	display: block;
	margin-bottom: 40px;
}
.fancyheader ul li a {
	position: relative;
	display: inline-block;
	text-decoration: none;
	color: var(--text-primary-color);
	font-weight: 700;
	font-size: 36px;
	line-height: 44px;
	padding-left: 40px;
}
.fancyheader ul li a svg {
	position: absolute;
	top: 12px;
	left: 0;
	width: 20px;
	height: 20px;
	transform: rotate(0);
	transition: transform 0.2s;
}
.fancyheader ul li.active a svg {
	transform: rotate(90deg);
}
.fancyheader ul li a svg path {
	fill: var(--text-primary-color);
}
.fancyheader ul li a:hover svg path {
	fill: var(--text-hover-color);
}
.fancyheader ul li ul li a svg {
	display: none;
}
.fancyheader ul li ul.sub-menu {
	padding-top: 12px;
}
.fancyheader ul li ul li {
	margin-bottom: 0;
}
.fancyheader ul li ul li a {
	display: inline-block;
	text-decoration: none;
	color: var(--text-primary-color);
	font-weight: 700;
	font-size: 16px;
	line-height: 44px;
}
.fancyheader ul li a:hover {
	color: var(--text-hover-color) !important;
}
.fancyheader ul li ul {
	display: none;
}
.fancyheader ul li.active ul {
	display: block;
}

.footernavmenu ul {
	list-style-type: none;
	display: block;
	width: 100%;
}
.footernavmenu ul li {
	display: block;
	width: 100%;
	padding-left: 40px;
}
.footernavmenu ul li a {
	display: inline-block;
	font-size: 22px;
	line-height: 48px;
	font-weight: 700;
	color: var(--text-color);
	text-decoration: none;
	cursor: pointer;
	margin-bottom: 24px;
}
.footernavmenu ul li a:hover {
	color: var(--text-hover-color);
}

#footercopy {
	padding: 0 79px;
}
#footercopy a {
	font-weight: 400;
	color: var(--text-color);
	text-decoration: none;
}
#footercopy a:hover {
	font-weight: 400;
	color: var(--text-hover-color);
	text-decoration: none;
}

#backhome {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 99;
	pointer-events: none;
}
#backhome .backhome-area {
	width: 64px;
	text-align: right;
}
#backhome .backhome-button {
	display: inline-block;
	width: 64px;
	height: 64px;
	cursor: pointer;
	opacity: 0;
	transition: opacity 1s;
}
#backhome .backhome-button svg {
	display: inline-block;
	width: 64px;
	height: 64px;
}
#backhome .backhome-button svg path {
	fill: var(--text-primary-alt-color);
}
#backhome .backhome-button:hover svg path {
	fill: var(--text-hover-color);
}
body.backhome-active #backhome {
	pointer-events: auto;
}
body.backhome-active #backhome .backhome-button {
	opacity: 1;
}
body.menu-mobile-active #backhome {
	pointer-events: none;
}
body.menu-mobile-active #backhome .backhome-button {
	opacity: 0;
}

@media only screen and (max-width: 768px) {
	.footernavmenu ul li {
		padding-left: 0;
		display: block;
	}
	.footernavmenu ul li a {
		display: inline-block;
		font-weight: 700;
		text-decoration: none;
		min-height: 48px;
		font-size: 18px;
		color: var(--text-color);
		line-height: 26px;
		padding: 0;
		margin: 0;

	}
	#footercopy {
		padding: 0 79px 0 0;
	}
	#backhome .backhome-area {
		width: 48px;
	}
	#backhome .backhome-button {
		width: 48px;
		height: 48px;
	}
	#backhome .backhome-button svg {
		width: 48px;
		height: 48px;
	}
}
/* /Footer */


/* Hero */
.c-hero {
	display: block;
	min-height: calc(100vh - 100px);
	background-color: #ccc;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
	position: relative;
}
.c-hero-video {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%,-50%);
    width: auto !important;
    max-width: none !important;
	z-index: 5;
}
.c-hero-overlay {
	position: absolute;
	width: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 7;
}
.c-hero-content {
	position: absolute;
	width: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9;
	display: flex;
}
.c-hero-content-cell {
	display: block;
	width: 100%;
	align-self: flex-end;
	background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
}
/* /Hero */


/* Video */
.c-video {
	display: block;
	overflow: hidden;
	position: relative;
	padding-bottom: 75%;
}
.c-video-element {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 130%;
    transform: translate(-50%,-50%);
}
/* /Video */


/* Grid */
.c-grid {
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: auto;
	grid-column-gap: 20px;
	grid-row-gap: 60px;
}
.c-grid-cols-6-6 {
	grid-template-columns: repeat(2, 1fr);
}
.c-grid-cols-4-4-4 {
	grid-template-columns: repeat(3, 1fr);
}
.c-grid-cols-3-3-3-3 {
	grid-template-columns: repeat(4, 1fr);
}
.c-grid-gap {
	grid-column-gap: 20px;
}
.c-grid.c-grid-cols-6-6.c-grid-left div.c-col:nth-child(1) {
	padding-right: 120px;
}
.c-grid.c-grid-cols-6-6.c-grid-right div.c-col:nth-child(2) {
	padding-left: 120px;
}
.c-grid .c-col {
	place-self: center;
	width: 100%;
}
.c-split {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 0;
}
/* /Grid */


/* News */
.news-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 20px;
	grid-row-gap: 60px;
	clear: both;
}
.news-box-item-thumb-wrapper {
	position: relative;
}
.news-box-item-label {
	position: absolute;
	top: 20px;
	right: 0;
	background-color: var(--text-primary-color);
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	display: inline-block;
	padding: 0 20px;
	pointer-events: none;
}
.news-box-item-pinned {
	position: absolute;
	top: 20px;
	right: 20px;
	display: inline-block;
	pointer-events: none;
	width: 24px;
	height: 24px;
}
.news-box-item-pinned svg {
	display: inline-block;
	width: 24px;
	height: 24px;
}
.news-box-item-pinned svg path {
	fill: var(--text-primary-color);
}
.news-box-item {
	overflow: hidden;
	position: relative;
	padding-bottom: 120px;
	background-color: var(--line-color);
}
.news-box-item-1 {
	background-color: var(--text-primary-alt-color);
}
.news-box-item-thumb {
	padding-bottom: 75%;
	display: block;
	background-color: #ccc;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.news-box-item-details {
	padding: 40px 20px 0 20px;
}
.news-box-item-link {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 0 20px 40px 20px;
}
/* /News */


/* Properties */
.property-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 20px;
	grid-row-gap: 20px; 
	clear: both;
}
.property-item {
	position: relative;
	background-color: #ddd;
}
.property-item-label {
	position: absolute;
	top: 20px;
	right: 0;
	background-color: var(--text-primary-color);
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	display: inline-block;
	padding: 0 20px;
	z-index: 9;
	pointer-events: none;
}
.property-item-image-wrapper {
	background-color: #ccc;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px 24px;
	background-image: url('/wp-content/themes/flugfeld/images/placeholder.png');
}
.property-item-image {
	padding-bottom: 60%;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.property-item-padding {
	padding: 20px 20px 0 20px;
}
.property-item-links {
	padding: 0 20px 0 20px;
}

.property-slider-wrapper {
	position: relative;
	padding-bottom: 60%;
	background-color: #ccc;
}
.property-slider-container {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
}
.property-slide {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding-bottom: 60%;
}
/* /Properties */


/* Team */
.team-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 20px;
	grid-row-gap: 60px; 
	clear: both;
}
.team-items-double {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 20px;
	grid-row-gap: 60px; 
	clear: both;
}
.team-item {
	position: relative;
	min-height: 160px;
}
.team-item-image {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 120px;
	height: 120px;
	border-radius: 60px;
	background-color: #ccc;
	background-image: repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
}
.team-item-inner {
	padding: 0 20px 0 140px;
}
.team-item a {
	font-weight: 400;
	text-decoration: underline;
	color: var(--text-color);
}
.team-item a:hover {
	font-weight: 400;
	text-decoration: underline;
	color: var(--text-hover-color);
}
@media only screen and (max-width: 768px) {
	.team-item.team-item-right .team-item-image {
		left: auto !important;
		right: 0 !important;
	}
	.team-item.team-item-right .team-item-inner {
		padding: 0 140px 0 20px;
	}
}
/* /Team */


/* Meetings */
.meeting-items {
	border-top: 1px solid var(--line-color);
}
.meeting-item {
	border-bottom: 1px solid var(--line-color);
}
.meeting-item-inner {
	padding: 0 54px;
	position: relative;
}
.meeting-item-inner svg.meeting-icon {
	position: absolute;
	top: 7px;
	left: 0;
	width: 24px;
	height: 24px;
}
.meeting-item-inner .download-icon-wrapper {
	position: absolute;
	top: 7px;
	right: 0;
	width: 24px;
	height: 24px;
}
.meeting-item-inner .download-icon-wrapper a {
	display: block;
}
.meeting-item-inner svg.download-icon {
	display: inline-block;
	width: 24px;
	height: 24px;
}
.meeting-item-inner svg.download-icon path {
	fill: var(--text-color);
}
.meeting-item-inner svg.download-icon:hover path {
	fill: var(--text-hover-color);
}
/* /Meetings */


/* Milestones */
.milestone-item {
	position: relative;
}
.milestone-item::before {
	content: '';
	position: absolute;
	top: -16px;
	left: calc(50% - 16px);
	width: 32px;
	height: 32px;
	border-radius: 16px;
	background-color: var(--text-primary-color);
	transition: all 0.3s;
}
.milestone-item:hover::before {
	top: -24px;
	left: calc(50% - 24px);
	width: 48px;
	height: 48px;
	border-radius: 24px;
}
.milestone-line {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 0px;
	grid-row-gap: 0px;	
}
.milestone-line-left {
	border-right: 2px solid var(--text-primary-color);
	padding-right: 60px;
}
.milestone-line-right {
	border-left: 2px solid var(--text-primary-color);
	padding-left: 60px;
}
.milestone-end {
	clear: both;
	height: 4px;
	position: relative;
}
.milestone-end::before {
	content: '';
	position: absolute;
	top: -1px;
	left: calc(50% - 18px);
    width: 0; 
    height: 0; 
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid var(--text-primary-color);
}

@media only screen and (max-width: 768px) {
	.milestone-item::before {
		left: calc(10% - 16px);
	}
	.milestone-item:hover::before {
		left: calc(10% - 24px);
	}
	.milestone-line {
		grid-template-columns: 10% 90%;
	}
	.milestone-line-left {
		padding-right: 0;
	}
	.milestone-end::before {
		left: calc(10% - 32px);
	}
}
/* /Milestones */


/* Downloads */
.download-items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 20px;
	grid-row-gap: 20px; 
	border-top: 1px solid var(--line-color);
}
.download-item {
	border-bottom: 1px solid var(--line-color);
	position: relative;
}
.download-item-inner {
	position: relative;
}
.download-item a {
	display: block;
	text-decoration: none;
	color: var(--text-color);
	padding: 20px 0;
}

.download-item-inner svg.icon-download {
	position: absolute;
	top: 40px;
	right: 20px;
	width: 24px;
	height: 24px;
}
.download-item-inner svg.icon-download path {
	transition: all 0.2s;
}

.download-item-inner svg.icon-ext {
	position: absolute;
	top: 40px;
	left: 20px;
	width: 24px;
	height: 24px;
}
.download-item-inner svg.icon-ext path {
	transition: all 0.2s;
}

.download-item-row {
	display: grid;
	grid-template-columns: 160px 1fr;
	grid-template-rows: auto;
	grid-column-gap: 0px;
	grid-row-gap: 0px;	
}
.download-thumb-wrapper {
	background-color: var(--text-hover-color);
}
.download-thumb {
	padding-bottom: 75%;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #eee;
	background-size: contain;
	transition: opacity 0.2s;
	border: 10px solid #eee;
}
.download-item-title {
	padding-left: 64px;
	padding-right: 64px;
	transition: color 0.2s;
}
.download-item a:hover {
	text-decoration: none;
	color: var(--text-hover-color);
}
.download-item a:hover .download-thumb {
	opacity: 75%;
}
.download-item a:hover .download-item-inner svg.icon-download path {
	fill: var(--text-hover-color);
}
.download-item a:hover .download-item-inner svg.icon-ext path {
	fill: var(--text-hover-color);
}
@media only screen and (max-width: 768px) {
	.download-item-row {
		grid-template-columns: 80px 1fr;
	}
}
/* /Downloads */


/* Companies */
#companyfilterbutton {
	display: block;
	position: relative;
	padding-left: 28px;
	line-height: 24px;
	font-weight: 700;
	font-size: 18px;
	white-space: nowrap;
	cursor: pointer;
}
#companyfilterbutton svg {
	display: inline-block;
	position: absolute;
	top: 4px;
	left: 0;
	width: 16px;
	height: 16px;
}
#companyfilterbutton svg path {
	fill: var(--text-color);
}
#companyfilterbutton:hover {
	color: var(--text-hover-color);
}
#companyfilterbutton:hover svg path {
	fill: var(--text-hover-color);
}
#companyfiltersection {
	display: none;
}
body.companyfilter-active #companyfilterbutton {
	display: none;
}
body.companyfilter-active #companyfiltersection {
	display: block;
}
.company-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 20px;
	grid-row-gap: 40px; 
}
.company-item-row {
	display: grid;
	grid-template-columns: 120px 1fr;
	grid-template-rows: auto;
	grid-column-gap: 20px;
	grid-row-gap: 0;
}
.company-item-logo-placeholder {
	padding-bottom: 100%;
	background-color: #e7e7e7;
	background-repeat: no-repeat;
	background-size: 24px 24px;
	background-position: center center;
	background-image: url('/wp-content/themes/flugfeld/images/placeholder.png');
}
.company-item {
	display: none;
}
.company-item.active {
	display: inline-block;
}
#catidselected .ci {
	height: 42px;
	white-space: nowrap;
	background-color: #000;
	color: #fff;
	line-height: 42px;
	padding: 0 50px 0 20px;
	border-radius: 8px;
	letter-spacing: 1px;
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 10px;
	position: relative;
	cursor: pointer;
}
#catidselected .ci:after {
	display: inline-block;
	content: '\00d7';
	position: absolute;
	top: 0;
	right: 20px;
	color: #888;
	font-size: 32px;
	transition: color 0.2s;
}
#catidselected .ci:hover:after {
	color: #fff;
}
.single-company-logo {
	width: 200px;
	height: auto;
}
.single-company-logo img {
	display: inline-block;
	width: 100;
	height: auto;
}
/* /Companies */


/* Gallery */
.urban-gallery-block {
	display: block;
	position: relative;
	width: 100%;
	padding-bottom: 75%;
	margin-bottom: 36px;
}
.urban-gallery-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.urban-gallery-items {
	width: 100%;
	height: 100%;
}
.urban-gallery-items .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	border: none;
	outline: none;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	cursor: pointer;
	overflow: hidden;
	display: inline-block;
	text-indent: -9999em;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50% 50%;
	transition: all 0.2s;
}
.urban-gallery-items .slick-arrow.slick-next {
	right: 20px;
	background-color: #fff;
	background-image: url('/wp-content/themes/flugfeld/images/arrow-black-right.png');
}
.urban-gallery-items .slick-arrow.slick-next:hover {
	background-color: var(--text-hover-color);
	background-image: url('/wp-content/themes/flugfeld/images/arrow-white-right.png');
}
.urban-gallery-items .slick-arrow.slick-prev {
	left: 20px;
	background-color: #fff;
	background-image: url('/wp-content/themes/flugfeld/images/arrow-black-left.png');
}
.urban-gallery-items .slick-arrow.slick-prev:hover {
	background-color: var(--text-hover-color);
	background-image: url('/wp-content/themes/flugfeld/images/arrow-white-left.png');
}
.urban-gallery-items .slick-dots {
	position: absolute;
	right: 0;
	bottom: -40px;
	left: 0;
	text-align: center;
}
.urban-gallery-items .slick-dots li {
	display: inline-block;
	width: 24px;
	height: 12px;
	text-align: center;
}
.urban-gallery-items .slick-dots li button {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 6px;
	border: 1px solid var(--text-color);
	background-color: transparent;
	text-indent: -9999px;
	overflow: hidden;
	color: transparent;
	font-size: 0;
	cursor: pointer;
}
.urban-gallery-items .slick-dots li.slick-active button {
	background-color: var(--text-color);
}
.urban-gallery-items .slick-list {
	border-radius: 24px;
}
.urban-gallery-items .slick-list,
.urban-gallery-items .slick-track,
.urban-gallery-items .slick-track .slick-slide div {
	height: 100%;
}
.urban-gallery-items .urban-gallery-item {
	background-color: #ccc;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.urban-gallery-items .urban-gallery-item a {
	width: 100%;
	height: 100%;
	display: block;
}
.urban-gallery-item-inner {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
}
.urban-gallery-item-title {
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 5px 20px;
	color: #fff;
	background-color: rgba(0,0,0,0.5);
	display: inline-block;
	height: auto !important;
	border-top-left-radius: 24px 24px;
	font-size: 12px;
	line-height: 16px;
	pointer-events: none;
	z-index: 9;
	min-height: 26px;
}
.urban-gallery-item-link {
	padding-right: 44px;
}
.urban-gallery-item-link svg {
	position: absolute;
	top: 5px;
	right: 20px;
	width: 16px;
	height: 16px;
	transform: rotate(-45deg);
}
.urban-gallery-item-link svg path {
	fill: #fff;
}
/* /Gallery */


/* Columns */
.c-row {
	display: block;
	margin: 0 -40px -40px 0;
}
.c-row::after {
	content: "";
	display: table;
	clear: both;
}
.c-clear {
	display: block;
	clear: both;
	width: 100%;
	border: 1px solid transparent;
	height: 1px;
}
.c-col-1, .c-col-2, .c-col-3, .c-col-4, .c-col-5, .c-col-6,
.c-col-7, .c-col-8, .c-col-9, .c-col-10, .c-col-11, .c-col-12 {
	float: left;
	padding: 0 40px 40px 0;
	margin: 0;
}
.c-col-1 { width: 8.33%; }
.c-col-2 { width: 16.66%; }
.c-col-3 { width: 25%; }
.c-col-4 { width: 33.33%; }
.c-col-5 { width: 41.66%; }
.c-col-6 { width: 50%; }
.c-col-7 { width: 58.33%; }
.c-col-8 { width: 66.66%; }
.c-col-9 { width: 75%; }
.c-col-10 { width: 83.33%; }
.c-col-11 { width: 91.66%; }
.c-col-12 { width: 100%; }
/* /Columns */


/* Button */
.urban-button {
	display: inline-block;
	height: 40px;
	line-height: 38px;
	padding: 0 54px 0 20px;
	text-transform: uppercase;
	background-color: var(--text-primary-color);
	border: 2px solid var(--text-primary-color);
	border-radius: 8px;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 1px;
	white-space: nowrap;
	text-decoration: none;
	transition: all 0.2s;
	position: relative;
	cursor: pointer;
}
.urban-button svg {
	position: absolute;
	top: 50%;
	right: 20px;
	display: inline-block;
	width: 16px;
	height: 16px;
	transform: translateY(-50%);
	transition: all 0.2s;
}
.urban-button svg path {
	fill: #fff;
}
.urban-button:hover {
	color: #fff;
	text-decoration: none;
}
.urban-button:hover svg {
	right: 10px;
}
.urban-button.urban-button-secondary {
	background-color: transparent;
	color: var(--text-primary-color);
}
.urban-button.urban-button-secondary:hover {
	color: var(--text-primary-color);
	text-decoration: none;
}
.urban-button.urban-button-secondary svg path {
	fill: var(--text-primary-color);
}

.textlight .urban-button.urban-button-secondary {
	color: #fff;
	border: 2px solid #fff;
}
.textlight .urban-button.urban-button-secondary:hover {
	color: #fff;
}
.textlight .urban-button.urban-button-secondary svg path {
	fill: #fff;
}
/* /Button */


/* Button Link */
.urban-link {
	display: inline-block;
	white-space: nowrap;
	text-transform: uppercase;
	color: var(--text-primary-color);
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	letter-spacing: 1px;
	padding-right: 42px;
	position: relative;
}
.urban-link svg {
	position: absolute;
	top: 50%;
	right: 10px;
	display: inline-block;
	width: 16px;
	height: 16px;
	transform: translateY(-50%);
	transition: all 0.2s;
}
.urban-link svg path {
	fill: var(--text-primary-color);
}
.urban-link:hover {
	color: var(--text-primary-color);
	text-decoration: none;
}
.urban-link:hover svg {
	right: 0;
}
/* /Button Link */


/* Button Download */
.urban-download {
	display: inline-block;
	text-transform: uppercase;
	color: var(--text-primary-color);
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	letter-spacing: 1px;
	padding-right: 32px;
	position: relative;
}
.urban-download svg {
	position: absolute;
	bottom: -4px;
	right: 0;
	display: inline-block;
	width: 16px;
	height: 16px;
	transform: translateY(-50%);
	transition: all 0.2s;
}
.urban-download svg path {
	fill: var(--text-primary-color);
}
.urban-download:hover {
	color: var(--text-hover-color);
	text-decoration: none;
}
.urban-download:hover svg path {
	fill: var(--text-hover-color);
}
/* /Button Download */


/* Select */
.urban-button.submitcatid {
	margin-right: 30px;
	margin-bottom: 10px;
}
.urban-button.clearcatid {
	margin-right: 10px;
	margin-bottom: 10px;
}
.urban-select-wrapper {
	display: inline-block;
	height: 40px;
	position: relative;
	margin-right: 10px;
	margin-bottom: 10px;
}
.urban-select {
	appearance: none;
	background-color: transparent;
	border: 2px solid var(--text-primary-color);
	border-radius: 8px;
	height: 40px;
	line-height: 38px;
	white-space: nowrap;
	color: var(--text-primary-color);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 0 46px 0 20px;
	cursor: pointer;
}
.urban-select-wrapper:after {
	content: '';
	position: absolute;
	top: 12px;
	right: 20px;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--text-primary-color);
	border-bottom: 2px solid var(--text-primary-color);
	transform: rotate(45deg);
	pointer-events: none;
}
/* /Select */


/* Formatting */
.mobileonly {
	display: none;
}
.desktoponly {
	display: block;
}
.wideonly {
	width: 100%;
}
/* /Formatting */


/* Parallax */
#urban-parallax {
	height: 60vh;
	background-color: #888;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 0%;
	transition: all 1s;
}
/* /Parallax */


/* Pagination */
.navigation.pagination .screen-reader-text {
	display: none;
}
.navigation.pagination .nav-links .page-numbers {
	display: inline-block;
	text-decoration: none;
	padding: 0 20px;
	line-height: 28px;
	height: 32px;
	background-color: transparent;
	color: #333;
	border: 2px solid var(--text-color);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: bold;
	font-size: 12px;
	margin-right: 10px;
	margin-bottom: 10px;
	cursor: pointer;
}
.navigation.pagination .nav-links .page-numbers.current {
	background-color: var(--text-color);
	color: #fff;
}
.navigation.pagination .nav-links .page-numbers:hover {
	border: 2px solid var(--theme-primary-color) !important;
	color: var(--theme-primary-color) !important;
}
.navigation.pagination .nav-links .page-numbers.current:hover {
	border: 2px solid var(--theme-primary-color) !important;
	background-color: var(--theme-primary-color) !important;
	color: #fff !important;
}
/* /Pagination */


/* Animations */
.customAnim.animFadeUp {
	opacity: 0;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}
.customAnim.animFadeUp.come-in {
	opacity: 1;
	animation: afu-come-in 0.4s ease forwards;
	-webkit-transform: -webkit-translateY(200px);
	transform: translateY(200px);
}
.customAnim.animZoomIn {
	border-radius: 24px;
	overflow: hidden;
	opacity: 0;
	transform: scale(0.6);
	transition: all 0.8s;
}
.customAnim.animZoomIn.come-in {
	opacity: 1;
	transform: scale(1);
}
@keyframes afu-come-in {
	to {
		-webkit-transform: -webkit-translateY(0);
		transform: translateY(0);
	}
}
/* /Animations */


.c-box {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 0;
	grid-row-gap: 0; 
}

.box-white {
	padding: 60px 20px;
	text-align: center;
	color: #fff;
	background-color: #fff;
	color: #0d5f8f;
}
.box-white svg {
	width: 64px;
	height: 64px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.box-white svg path {
	fill: #0d5f8f;
}

.box-blue {
	padding: 60px 20px;
	text-align: center;
	color: #fff;
	background-color: var(--text-primary-color);
	color: var(--text-primary-alt-color);
}
.box-blue svg {
	width: 64px;
	height: 64px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.box-blue svg path {
	fill: var(--text-primary-alt-color);
}

.box-green {
	padding: 60px 20px;
	text-align: center;
	color: #fff;
	background-color: var(--text-secondary-color);
	color: var(--text-secondary-alt-color);
}
.box-green svg {
	width: 64px;
	height: 64px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.box-green svg path {
	fill: var(--text-secondary-alt-color);
}

.box-orange {
	padding: 60px 20px;
	text-align: center;
	color: #fff;
	background-color: var(--text-tertiary-color);
	color: var(--text-tertiary-alt-color);
}
.box-orange svg {
	width: 64px;
	height: 64px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.box-orange svg path {
	fill: var(--text-tertiary-alt-color);
}

.box-silver {
	padding: 60px 20px;
	text-align: center;
	color: #fff;
	background-color: #cedcdb;
	color: #0d5f8f;
}
.box-silver svg {
	width: 64px;
	height: 64px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.box-silver svg path {
	fill: #0d5f8f;
}

.box-peach {
	padding: 60px 20px;
	text-align: center;
	color: #fff;
	background-color: #f8ecd7;
	color: #0d5f8f;
}
.box-peach svg {
	width: 64px;
	height: 64px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.box-peach svg path {
	fill: #0d5f8f;
}

.box-cyan {
	padding: 60px 20px;
	text-align: center;
	color: #fff;
	background-color: #c5e4e7;
	color: #0d5f8f;
}
.box-cyan svg {
	width: 64px;
	height: 64px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.box-cyan svg path {
	fill: #0d5f8f;
}

.box-lamina {
	padding: 60px 20px;
	text-align: center;
	color: #fff;
	background-color: #bbd7b9;
	color: #0d5f8f;
}
.box-lamina svg {
	width: 64px;
	height: 64px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.box-lamina svg path {
	fill: #0d5f8f;
}

.relative {
	position: relative;
}
.absolute {
	position: absolute;
}

.p0 {
	padding: 0 !important;
}
.m0 {
	margin: 0 !important;
}
.pt10 {
	padding-top: 10px !important;
}
.pt20 {
	padding-top: 20px !important;
}
.pt30 {
	padding-top: 30px !important;
}
.pr10 {
	padding-right: 10px !important;
}
.pr20 {
	padding-right: 20px !important;
}
.pr30 {
	padding-right: 30px !important;
}
.pl10 {
	padding-left: 10px !important;
}
.pl20 {
	padding-left: 20px !important;
}
.pl30 {
	padding-left: 30px !important;
}
.pb10 {
	padding-bottom: 10px !important;
}
.pb20 {
	padding-bottom: 20px !important;
}
.pb30 {
	padding-bottom: 30px !important;
}
.py10 {
	padding-top: 10px;
	padding-bottom: 10px;
}
.py20 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.py30 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.mt0 {
	margin-top: 0 !important;
}
.mb0 {
	margin-bottom: 0;
}
.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb25 {
	margin-bottom: 25px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb50 {
	margin-bottom: 50px;
}

.w100 {
	width: 100% !important;
}


.table-styled {
	width: 100%;
	table-layout: fixed;
	text-align: left;
	border-collapse: collapse;
}
.table-styled tr:nth-child(even) {
	background: var(--text-tertiary-alt-color);
}
.table-styled td {
	padding: 10px 20px;
	vertical-align: top;
}


.download-item-desc {
	font-weight: 400 !important;
}

.property-label-1-free {
	background-color: var(--text-secondary-color);
}
.property-label-2-development {
	background-color: var(--text-tertiary-color);
}
.property-label-3-reserved {
	background-color: var(--text-primary-color);
}



/* Responsive */
@media only screen and (max-width: 1280px) {

	.team-items {
		grid-template-columns: repeat(3, 1fr);
	}
	.company-items {
		grid-template-columns: repeat(3, 1fr);
	}

	/* Grid */
	.c-grid.c-grid-cols-6-6.c-grid-left div.c-col:nth-child(1) {
		padding-right: 60px;
	}
	.c-grid.c-grid-cols-6-6.c-grid-right div.c-col:nth-child(2) {
		padding-left: 60px;
	}
	/* /Grid */
	
}
@media only screen and (max-width: 1024px) {

	.news-items {
		grid-template-columns: repeat(2, 1fr);
	}
	.property-items {
		grid-template-columns: repeat(2, 1fr);
	}
	.team-items {
		grid-template-columns: repeat(2, 1fr);
	}
	.team-items-double {
		display: block;
	}
	.team-items-double .team-item {
		margin-bottom: 20px;
	}
	.company-items {
		grid-template-columns: repeat(2, 1fr);
	}
	.download-items {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}

	#headermenu {
		display: none;
	}

	/* Grid */
	.c-grid-cols-6-6 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-grid.c-grid-cols-6-6.c-grid-left div.c-col:nth-child(1) {
		padding-right: 0;
	}
	.c-grid.c-grid-cols-6-6.c-grid-right div.c-col:nth-child(2) {
		padding-left: 0;
	}
	.c-grid.c-grid-cols-6-6.c-grid-left {
		display: flex;
		flex-direction: column-reverse;
	}
	.c-grid-cols-3-3-3-3 {
		grid-template-columns: repeat(2, 1fr);
	}
	/* /Grid */

	/* Columns */
	.c-col-1, .c-col-2, .c-col-3, .c-col-4 {
		width: 50%;
	}
	.c-col-5, .c-col-6, .c-col-7, .c-col-8, .c-col-9, .c-col-10, .c-col-11, .c-col-12 {
		width: 100%;
	}
	/* /Columns */

}
@media only screen and (max-width: 768px) {

	/*
	#footer {
		color: #fff;
		background-color: var(--text-primary-color);
	}
	#footer a {
		color: #fff;
	}
	#footerlogo a svg path {
		fill: #fff;
	}
	#footer .social-nav a svg path {
		fill: #fff;
	}
	#footer .fancyheader ul li a svg path {
		fill: #fff;
	}
	#footerinfo a,
	#footerinfo a:hover {
		color: #fff;
		text-decoration: none;
	}
	*/

	#headerbuttontext {
		visibility: hidden;
	}

	.news-items {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.property-items {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.team-items {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.company-items {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.company-item-row {
		grid-template-columns: 60px 1fr;
	}

	/* Formatting */
	.mobileonly {
		display: block;
	}
	.desktoponly {
		display: none;
	}
	.textlarge {
		font-size: 32px;
		line-height: 40px;
	}

	h1, .h1 {
		font-size: 26px;
		line-height: 34px;
	}
	h2 {
		font-size: 24px;
		line-height: 32px;
	}
	h3 {
		font-size: 22px;
		line-height: 30px;
	}
	h4 {
		font-size: 20px;
		line-height: 28px;
	}
	h5 {
		font-size: 18px;
		line-height: 26px;
	}
	/* /Formatting */

	/* Content */
	.c-content-inner {
		padding: 0 20px;
	}
	/* /Content */

	/* Columns */
	.c-row {
		clear: both;
		margin: 0 0 -20px 0;
	}
	.c-col-1, .c-col-2, .c-col-3, .c-col-4, .c-col-5, .c-col-6,
	.c-col-7, .c-col-8, .c-col-9, .c-col-10, .c-col-11, .c-col-12 {
		width: 100%;
		padding: 0 0 20px 0;
	}
	/* /Columns */

	/* Grid */
	.c-grid {
		clear: both;
		grid-row-gap: 30px;
		width: 100%;
	}
	.c-grid-cols-4-4-4 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-grid-cols-3-3-3-3 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-split {
		grid-template-columns: 100%;
		grid-template-rows: auto;
		grid-column-gap: 0;
		grid-row-gap: 20px;
	}
	/* /Grid */

	/* Spacers */
	.c-spacer {
		clear: both;
		height: 20px;
	}
	.c-spacer-small {
		clear: both;
		height: 5px;
	}
	.c-spacer-half {
		clear: both;
		height: 10px;
	}
	.c-spacer-double {
		clear: both;
		height: 40px;
	}
	.c-spacer-section {
		clear: both;
		height: 80px;
	}
	/* /Spacers */

}
/* Responsive */

