/*
Theme Name: ZREU
Author: URBAN PROPAGANDA Communications GmbH
Author URI: https://www.urban-propaganda.de/
Description: Custom responsive theme.
Version: 0.9.0
Tags: php8, wp6
Text Domain: zreu
Domain Path: /languages
*/

:root {
	--text-color: #000;
	--text-white: #fff;
	--text-black: #000;
	--background-color: #fff;
	--primary-color: #063669;
	--secondary-color: #0a1d31;
	--overlay-opacity: rgba(0,0,0,0.25);
}

/*
@font-face {
    font-family: 'Sansation Light';
    src: url('fonts/Sansation-Light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
*/
@font-face {
    font-family: 'Sansation';
    src: url('fonts/Sansation-Regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Sansation Bold';
    src: url('fonts/Sansation-Bold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
/*
@font-face {
    font-family: 'Sansation Light Italic';
    src: url('fonts/Sansation-LightItalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Sansation Italic';
    src: url('fonts/Sansation-Italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Sansation Bold Italic';
    src: url('fonts/Sansation-BoldItalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
*/

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

html, body {
	width: 100%;
    height: 100%;
}
body, input, textarea {
	font-family: 'Sansation', sans-serif;
	font-size: 14px;
	line-height: 28px;
	font-weight: 400;
}
body {
	background-color: var(--background-color);
}
body, input, textarea, a {
	color: var(--text-color);
}
a:hover {
	color: var(--primary-color);
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	font-family: 'Sansation Bold', sans-serif;
	font-weight: 700;
	color: var(--text-color);
}
.textwhite h1, .textwhite h2, .textwhite h3, .textwhite h4, .textwhite h5, .textwhite h6,
.textwhite .h1, .textwhite .h2, .textwhite .h3, .textwhite .h4, .textwhite .h5, .textwhite .h6 {
	color: var(--text-white);
}
strong, b {
	font-family: 'Sansation Bold', sans-serif;
	font-weight: 700;
}
h1, .h1 {
	font-size: 80px;
	line-height: 88px;
}
h2, .h2 {
	font-size: 40px;
	line-height: 48px;
}
h3, .h3 {
	font-size: 24px;
	line-height: 32px;
}
h4, .h4, h5, .h5, h6, .h6 {
	font-size: 18px;
	line-height: 26px;
}

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


/* Header */
#header {
	z-index: 9;
	background-color: #fff;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	transform: translateY(0);
	transition: transform 0.3s;
}
body.header-retracted #header {
	transform: translateY(-100%);
}
body.mainmenu-active #header {
	transform: translateY(0);
}

#headerbar {
	height: 80px;
}

#headerlogo {
	position: absolute;
	top: -1px;
	left: 0;
	width: 90px;
	height: 70px;
}
#headerlogo a {
	height: 71px;
	display: inline-block;
}
#headerlogo svg {
	width: 90px;
	height: 71px;
	display: inline-block;
}

#headermenuwrapper {
	margin-left: 150px;
	margin-right: 120px;
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}
#headermenu {
	text-align: right;
	height: 46px;
	overflow: hidden;
	margin-top: 16px;
}
#headermenu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: inline-block;
}
#headermenu ul li {
	height: 48px;
	float: left;
	padding-right: 60px;
}
#headermenu ul li a {
	color: var(--text-color);
	height: 48px;
	line-height: 48px;
	text-decoration: none;
	text-transform: uppercase;
	font-family: 'Sansation Bold', sans-serif;
	font-weight: 700;
}
#headermenu ul li a:hover {
	color: var(--primary-color);
	text-decoration: none;
}
#headerlinks {
	margin-top: 16px;
}
#headeraccount {
	position: absolute;
	top: 0;
	right: 0;
	width: 32px;
	height: 80px;
	display: inline-block;
	padding-top: 24px;
}
#headeraccount .menu-icon {
	position: relative;
	width: 32px;
	height: 32px;
	cursor: pointer;
}
#headeraccount .menu-icon span {
	position: absolute;
	left: 0;
	right: 0;
	width: 32px;
	height: 4px;
	opacity: 1;
	background-color: var(--text-color);
	transition: all 0.3s;
}
#headeraccount .menu-icon span.a1 {
	top: 4px;
}
#headeraccount .menu-icon span.a2 {
	top: 50%;
	transform: translateY(-50%);
}
#headeraccount .menu-icon span.a3 {
	bottom: 4px;
}
body.mainmenu-active #headeraccount .menu-icon span.a1 {
	transform: rotate(45deg);
	top: 14px;
}
body.mainmenu-active #headeraccount .menu-icon span.a2 {
	opacity: 0;
}
body.mainmenu-active #headeraccount .menu-icon span.a3 {
	transform: rotate(-45deg);
	bottom: 14px;
}
#headeraccount .menu-icon:hover span {
	background-color: var(--primary-color);
}
/* /Header */


/* Main */
#main {
	min-height: 60vh;
}
/* /Main */


/* Footer */
#footer-menu {
	background-color: var(--secondary-color);
}
.c-footer-grid {
	display: grid;
	grid-template-columns: 30% 10% 10% 50%;
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px; 
}
.c-col-grid {
	min-height: 2px;
}
#footer h3,
#footer p {
	color: #c3c3c3 !important;
}
#footermenu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#footermenu ul:after {
	visibility: hidden;
	display: block;
	content: "";
	clear: both;
	height: 0;
}
#footermenu ul li a {
	color: #c3c3c3;
	text-transform: uppercase;
	text-decoration: none;
	margin-bottom: 16px;
	display: inline-block;
	font-family: 'Sansation Bold', sans-serif;
	font-weight: 700;
}
#footermenu ul li a:hover {
	color: #fff;
	text-decoration: none;
}
#footermenu li {
	display: inline-block;
	width: 50%;
	float: left;
}
#footer-copy {
	background-color: var(--primary-color);
	padding: 20px 0;
}
/* /Footer */


/* Main Menu */
#mainmenuoverlay {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	background-color: var(--secondary-color);
	transform: translateY(-100%);
	transition: transform 0.3s;
	z-index: 7;
	height: 100vh;
	overflow-x: hidden;
	overflow-y: auto;
}
body.mainmenu-active #mainmenuoverlay {
	transform: translateY(0);
}
#mainmenuwrapper {
	color: #c3c3c3;
	padding-bottom: 160px;
	position: relative;
	min-height: 100vh;
}
#mainmenuwrapper h3 {
	color: #c3c3c3;
}
#mainmenu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#mainmenu ul li {
	display: block;
	margin-bottom: 30px;
}
#mainmenu ul li a {
	text-decoration: none;
	font-size: 24px;
	line-height: 32px;
	color: #c3c3c3;
	padding-left: 60px;
	height: 48px;
	font-size: 40px;
	line-height: 48px;
	font-family: 'Sansation Bold', sans-serif;
	font-weight: 700;
	display: inline-block;
	background-image: url('data:image/svg+xml,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 13.3" style="enable-background:new 0 0 16 13.3;" xml:space="preserve"><path d="M9.6,13.1L16,6.7L9.6,0.3C9.4,0.1,9.1,0,8.9,0C8.6,0.1,8.4,0.3,8.4,0.5s0,0.5,0.3,0.7L13.4,6H0.7C0.3,6,0,6.3,0,6.7c0,0.4,0.3,0.7,0.7,0.7h12.8l-4.8,4.8c-0.3,0.3-0.3,0.7,0,0.9C8.9,13.4,9.3,13.4,9.6,13.1L9.6,13.1L9.6,13.1z" fill="%23c3c3c3"/></svg>');
	background-size: 28px 28px;
	background-repeat: no-repeat;
	background-position: 0 center;
	transition: background 0.3s;
}
#mainmenu ul li a:hover {
	text-decoration: none;
	color: #fff;
	background-image: url('data:image/svg+xml,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 13.3" style="enable-background:new 0 0 16 13.3;" xml:space="preserve"><path d="M9.6,13.1L16,6.7L9.6,0.3C9.4,0.1,9.1,0,8.9,0C8.6,0.1,8.4,0.3,8.4,0.5s0,0.5,0.3,0.7L13.4,6H0.7C0.3,6,0,6.3,0,6.7c0,0.4,0.3,0.7,0.7,0.7h12.8l-4.8,4.8c-0.3,0.3-0.3,0.7,0,0.9C8.9,13.4,9.3,13.4,9.6,13.1L9.6,13.1L9.6,13.1z" fill="%23ffffff"/></svg>');
	background-position: 10px center;
}
#mainmenufooter {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
}
/* /Main Menu */


.footersocial {
	padding-left: 60px;
}
.footercopy {
	text-align: right;
}
.footersocial ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: block;
}
.footersocial ul:after {
	visibility: hidden;
	display: block;
	content: "";
	clear: both;
	height: 0;
}
.footersocial ul li {
	float: left;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	margin-bottom: 20px;
}
.footersocial ul li a {
	display: inline-block;
	width: 30px;
	height: 30px;
	opacity: 1;
	transition: opacity 0.3s;
}
.footersocial ul li a:hover {
	opacity: 0.75;
}
.footersocial ul li a img {
	display: inline-block;
	width: 30px;
	height: 30px;
}


.c-content-center {
	width: 100%;
	max-width: 1360px;
	margin: 0 auto;
}
.c-content-center-wide {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
}
.c-content-inner {
	padding: 0 80px;
}

.c-spacer {
	clear: both;
	height: 40px;
}
.c-spacer-half {
	clear: both;
	height: 20px;
}
.c-spacer-double {
	clear: both;
	height: 80px;
}
.c-spacer-section {
	clear: both;
	height: 160px;
}

.c-spacer-header {
	height: 80px;
}

.c-dotted-right {
	background-image: url('/wp-content/themes/zreu/images/dot.gif');
	background-repeat: repeat-y;
	background-position: right top;
}
.c-dotted-bottom {
	background-image: url('/wp-content/themes/zreu/images/dot-bottom.gif');
	background-repeat: repeat-x;
	background-position: left bottom;
}


/* Page */
.page-header {
	background-color: #888;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.page-header .page-header-content {
	background-color: var(--overlay-opacity);
}
/* /Page */


/* Button */
.up-button {
	display: inline-block;
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
	text-decoration: none;
	padding: 0 50px 0 20px;
	position: relative;
	text-transform: uppercase;
	min-height: 44px;
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;                            
}
.up-button span.text {
	display: inline-block;
	transform: translateX(16px);
	transition: transform 0.3s;
	color: var(--text-white);
	line-height: 44px;
	white-space: nowrap;
	letter-spacing: 1px;
	font-family: 'Sansation Bold', sans-serif;
	font-weight: 700;
}
.up-button span.icon {
	position: absolute;
	display: inline-block;
	top: 14px;
	right: 20px;
	width: 16px;
	height: 16px;
	opacity: 0;
	margin: 0;
	padding: 0;
	transition: opacity 0.3s;
	line-height: 16px;
}
.up-button.download span.icon {
	transform: rotate(90deg);
	top: 14px;
}
.up-button.external span.icon {
	transform: rotate(-45deg);
	top: 15px;
}
.up-button span.icon svg {
	width: 16px;
	height: 16px;
	margin: 0;
	padding: 0;
	display: inline-block;
	fill: var(--text-white);
}
.up-button:hover {
	text-decoration: none;
}
.up-button:hover span.icon {
	opacity: 1;
}
.up-button:hover span.text {
	transform: translateX(0);
}
.up-button.outlined {
	background-color: transparent;
}
.up-button.outlined span.text {
	color: var(--primary-color);
}
.up-button.outlined span.icon svg {
	fill: var(--primary-color);
}
/* /Button */


/* Home Hero */
.home-hero {
	background-color: #888;
	position: relative;
}
.home-hero-video {
	min-height: 75vh;
	position: relative;
	overflow: hidden;
}
.home-hero-video video {
	position: absolute;
	right: 50%;
	bottom: 50%;
	min-width: 100%;
	min-height: 100%;
	-webkit-transform: translate(50%,50%);
	transform: translate(50%,50%);
}
.home-hero-image {
	min-height: 75vh;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.home-hero-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--overlay-opacity);
}
.home-hero-content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 60px 0;
}
/* /Home Hero */


/* Team */
.team-photo-wrapper {
	width: 100%;
	max-width: 400px;
}
.team-photo {
	width: 100%;
	padding-bottom: 125%;
	background-color: #888;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.team-social ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.team-social ul li {
	width: 30px;
	height: 30px;
	float: left;
	margin: 0 20px 20px 0;
	padding: 0;
}
.team-social ul li a {
	display: inline-block;
	transition: opacity 0.3s;
	opacity: 1;
}
.team-social ul li a:hover {
	opacity: 0.75;
}
.team-social ul li img {
	width: 30px;
	height: 30px;
	display: inline-block;
}
.team-contact a {
	display: inline-block;
	height: 36px;
	line-height: 36px;
	position: relative;
	padding-left: 32px;
	color: var(--text-color);
	text-transform: uppercase;
	letter-spacing: 1px;
}
.team-contact a:hover {
	color: var(--primary-color);
}
.team-contact a img {
	display: inline-block;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 10px;
	left: 0;
}
.team-content ul {
	padding-left: 20px;
}
.team-content li {
	padding-left: 10px;
}
/* /Team */


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

.desktoponly {
	display: block;
}
.mobileonly {
	display: none;
}

.textleft {
	text-align: left;
}
.textright {
	text-align: right;
}
.textcenter {
	text-align: center;
}
.textupper {
	text-transform: uppercase;
}
.textlower {
	text-transform: lowercase;
}
.textnowrap {
	white-space: nowrap;
}
.textwhite,
.textwhite a {
	color: var(--text-white);
}
.textblack {
	color: var(--text-black);
}
.textsmall {
	font-size: 12px !important;
	line-height: 16px;
}
.textbig {
	font-family: 'Sansation Bold', sans-serif;
	font-weight: 700;
	font-size: 80px;
	line-height: 88px;
}
.textbold {
	font-family: 'Sansation Bold', sans-serif;
	font-weight: 700;
}
.textnodecoration,
.textnodecoration:active,
.textnodecoration:hover {
	text-decoration: none;
}
.textparagraph h1, .textparagraph .h1, .textparagraph h2, .textparagraph .h2, .textparagraph h3, .textparagraph .h3,
.textparagraph h4, .textparagraph .h4, .textparagraph h5, .textparagraph .h5, .textparagraph h6, .textparagraph .h6,
.textparagraph p {
	margin-bottom: 20px !important;
}

/* Default Columns with Gutter */
.c-row { clear: both; margin: 0 0 -40px -40px; }
.nogutter .c-row { margin: 0; }
.c-row:after { content: ''; display: block; clear: both; }
.c-clear { clear: both; }
.c-center { text-align: center; }
.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 0 40px 40px;
}
.nogutter .c-row .c-col-1, .nogutter .c-row .c-col-2, .nogutter .c-row .c-col-3,
.nogutter .c-row .c-col-4, .nogutter .c-row .c-col-5, .nogutter .c-row .c-col-6,
.nogutter .c-row .c-col-7, .nogutter .c-row .c-col-8, .nogutter .c-row .c-col-9,
.nogutter .c-row .c-col-10, .nogutter .c-row .c-col-11, .nogutter .c-row .c-col-12 {
	padding: 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%; }
/* /Default Columns with Gutter */


/* Custom Animation */
.customAnim.animFadeUp {
	opacity:0;
	-webkit-transition: opacity 2s;
	-moz-transition: opacity 2s;
	-o-transition: opacity 2s;
	transition: opacity 2s;
}
.customAnim.animFadeUp.come-in {
	opacity:1;
	animation: afu-come-in 2s ease forwards;
	-webkit-transform: -webkit-translateY(100px);
	-moz-transform: -moz-translateY(100px);
	-ms-transform: -ms-translateY(100px);
	-o-transform: -o-translateY(100px);
	transform: translateY(100px);
}
.customAnim.animFadeIn {
	opacity:0;
	-webkit-transition: opacity 2s;
	-moz-transition: opacity 2s;
	-o-transition: opacity 2s;
	transition: opacity 2s;
}
.customAnim.animFadeIn.come-in {
	opacity: 1;
}
.customAnim.animSpeeded {
 	-webkit-animation-duration: 1s !important;
 	-moz-animation-duration: 1s !important;
 	-o-animation-duration: 1s !important;
	animation-duration: 1s !important;
}
@keyframes afu-come-in {
	to {
		-webkit-transform: -webkit-translateY(0);
		-moz-transform: -moz-translateY(0);
		-ms-transform: -ms-translateY(0);
		-o-transform: -o-translateY(0);
		transform: translateY(0);
	}
}
/* Custom Animation */


/* Responsive */
@media all and (max-width:1600px) {
}
@media all and (max-width:1280px) {
}
@media all and (max-width:1024px) {
	h1, .h1 {
		font-size: 60px;
		line-height: 68px;
	}
	.c-content-inner {
		padding: 0 40px;
	}
	.home-hero-content {
		padding: 40px 0;
	}
}
@media all and (max-width:768px) {
	#headermenuwrapper {
		display: none;
	}

	h1, .h1 {
		font-size: 40px;
		line-height: 48px;
	}

	.footersocial {
		padding-left: 0;
	}
	.footercopy {
		text-align: left;
	}

	.c-content-inner {
		padding: 0 20px;
	}
	.c-spacer-double {
		height: 40px;
	}
	.c-spacer-section {
		height: 80px;
	}
	.c-spacer-header {
		height: 80px;
	}

	.c-footer-grid {
		display: block;
	}

	#mainmenu ul li a {
	  padding-left: 60px;
	  font-size: 20px;
	  background-size: 16px 16px;
	}
	#mainmenu ul li {
		margin-bottom: 0;
	}

	.c-row { margin: 0 0 -20px -20px; }
	.nogutter .c-row { margin: 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 {
		padding: 0 0 20px 20px; width: 100%;
	}
	.nogutter .c-row .c-col-1, .nogutter .c-row .c-col-2, .nogutter .c-row .c-col-3,
	.nogutter .c-row .c-col-4, .nogutter .c-row .c-col-5, .nogutter .c-row .c-col-6,
	.nogutter .c-row .c-col-7, .nogutter .c-row .c-col-8, .nogutter .c-row .c-col-9,
	.nogutter .c-row .c-col-10, .nogutter .c-row .c-col-11, .nogutter .c-row .c-col-12 {
		padding: 0;
	}

	.desktoponly {
		display: none;
	}
	.mobileonly {
		display: block;
	}
}
/* /Responsive */


/* Shortcuts */
.m0 {
	margin: 0;
}
.mt0 {
	margin-top: 0;
}
.mb0 {
	margin-bottom: 0;
}
.mt20 {
	margin-top: 20px;
}
.p0 {
	padding: 0;
}
.pt0 {
	padding-top: 0;
}
.pt20 {
	padding-top: 20px;
}
.pb0 {
	padding-bottom: 0;
}
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}
.block {
	display: block;
}
.inline-block {
	display: inline-block;
}
/* /Shortcuts */
