/*
	Theme Name: TRAUB
	Author: Thomas Schwarz Websolutions
	Author URI: https://www.thomasschwarz-websolutions.de
	Description: Theme for TRAUB
	Version: 1.0

*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:300 16px/1.0 'ProximaNova', Helvetica, Arial, sans-serif;
	font-style: normal;
	letter-spacing: -0.06em;
	color:#000;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	text-decoration:none;
	color: #000;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

h1 {
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	text-transform: uppercase;
	font-size: 1em;
	padding-bottom: 8px;
	margin-bottom: 25px;
}
h1 span {
	font-weight: 200;
}

main p {
	letter-spacing: -0.01em;
	line-height: 1.6;
}
@media screen and (min-width: 1400px) {
	main p {
		font-size: 24px;
		line-height: 1.6;
		
	}
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.main {
	width:100%;
	margin:0 auto;
	padding-top: 145px;
	position:relative;
}
.home .main {
	padding-top: 0;
}
/* header */
.header {
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
	height: 145px;
	margin-bottom: -65px;
}
.home .header {
	background: #fff;
	margin-bottom: -145px;
}
@media screen and (min-width: 1100px) {
	.home .header {
		background: transparent;
	}
}

.clear {

}

/* logo */
.logo {
	position: fixed;
	top: 30px;
	left: 22px;
	z-index: 15;
}
.logo.white .logo-img.black {
	display: none;
}
.logo.black .logo-img.white {
	display: none;
}
.logo a {
	display: block;
}
.logo-img {
	width: 85px;	
	height: 85px;
}
.home .logo .logo-img.black {
	display: block !important;
}
.home .logo .logo-img.white {
	display: none !important;
}
@media screen and (min-width: 1100px) {
	.home .logo .logo-img.black {
		display: none !important;
	}
	.home .logo .logo-img.white {
		display: block !important;
	}
}

/* sidebar */
.sidebar {

}
/* footer */
.footer {

}

/* ==================================== */
/*		  Loading animation
/* ==================================== */
#loading {
	font-family: sans-serif;
	font-weight: bold;
	background: #fff;
	color: #000;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100vw;
	font-size: 60px;
	text-align: center;
	opacity: 1;
	visibility: visible;
	display: block;
	z-index: 999;

	-webkit-transition: all 0.35s;
    	-moz-transition: all 0.35s;
    	-o-transition: all 0.35s;
    	transition: all 0.35s;

	-webkit-transition-delay: z-index 1s;
	-moz-transition-delay: z-index 1s;
	-o-transition-delay: z-index 1s;
	transition-delay: z-index 1s;
}
#loading.loading-hide {
	opacity: 0;
	z-index: -1;
}
#loading .loading-wrapper {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	letter-spacing: -0.06em;
}
#loading #text {
	line-height: 100px;
	display: inline-block;
}

#loading .loading-wrapper .loading-logo {
	background-image: url("./img/logo-black.svg");
	background-repeat: no-repeat;
	background-size: 150px 150px;
	height: 150px;
	max-width: 150px;
	display: inline-block;
	color: transparent;
	line-height: 100px;
}

/* ==================================== */
/*		  	    Menu Button
/* ==================================== */
.menu-button {
	position: fixed;
	width: 50px;
	height: auto;
	top: 60px;
	right: 28px;
	transition: .25s;
	z-index: 101;
	cursor: pointer;
}
.menu-button.black .icon-closed * {
	fill: #000;
}
.menu-button.black .icon-closed svg path.cls-2 {
	stroke: #000;
}

.menu-button .icon-closed {
	display: block;
}

.menu-button .icon-open {
	display: none;
}

.menu-button.open .icon-closed {
	display: none;
}
.menu-button.open .icon-open {
	display: block;
}

.home .menu-button .icon-closed * {
	fill: #000 !important;
}
.home .menu-button .icon-closed svg path.cls-2 {
	stroke: #000 !important;
}
@media screen and (min-width: 1100px) {
	.home .menu-button .icon-closed * {
		fill: #fff !important;
	}
	.home .menu-button .icon-closed svg path.cls-2 {
		stroke: #fff !important;
	}
}

/* ==================================== */
/*		  	 Navigaton Menu
/* ==================================== */

.menu-wrap {
	background-color: rgba(0, 0, 0, 0.98);
	position: fixed;
	top: 0;
	height: 100%;
	width: 100%;
	right: -100%;
	font-size: 1em;
	font-weight: 700;
	overflow: auto;
	transition: .25s;
	z-index: 99;
	opacity: .96;
}
.menu-show {
	right: 0;
}
.menu-sidebar {
	position: relative;
	top: 36%;
	transform: translateY(-36%);
}

@media screen and (max-height: 530px) {
	.menu-sidebar {
		top: 20px !important;
		transform: none !important;
	}
}

.menu-sidebar ul {
	list-style:none;
}
.menu-sidebar li {
	padding: 2px 22px 2px;
	display: block;
}
@media screen and (max-height: 530px) {
	.menu-sidebar li {
		/*padding: 6px 22px 6px !important;*/
	}
}
.menu-sidebar li > a:after {
	background: #fff;
	position: relative;
	top: 5px;
	height: 3px;
	width: 0%;
	content: "";
	display: block;

	-webkit-transition: all 0.35s;
    	-moz-transition: all 0.35s;
    	-o-transition: all 0.35s;
    	transition: all 0.35s;
}
.menu-sidebar li > a:hover:after {
	width: 100%;
}
.menu-sidebar li > a {
	color: rgba(255, 255, 255, 0.3);
	font-size: 3em;
	position: relative;
	text-transform: lowercase;
	display: inline-block;

	-webkit-transition: all 0.35s;
    	-moz-transition: all 0.35s;
    	-o-transition: all 0.35s;
    	transition: all 0.35s;
}
@media screen and (max-height: 530px) {
	.menu-sidebar li > a {
		font-size: 2.5em !important;
	}
}
.num {
	color: rgba(255, 255, 255, 0.6);
	padding-right: 20px;
}
.menu-sidebar li:hover > a,
.menu-sidebar li:hover .num {
	color: rgba(255, 255, 255, 1);
}
.menu-sidebar .menu-item-has-children {
	position: relative;
}
.menu-sidebar .menu-item-has-children .sub-menu {
	display: none;
}
.sidebar-menu-arrow::after {
	content: "\f107";
	font-family: 'FontAwesome';
	padding: 10px;
	color: #FFFA3B;
	position: relative;
}
.sidebar-menu-arrow:hover::after {
	cursor: pointer;
	color: #fff;
}
.sidebar-menu-arrow:active::after {
	top: 2px;
}

.social-wrapper {
	border-top: 2px solid rgba(255, 255, 255, 1);
	position: absolute;
	left: 62px;
	right: 62px;
	bottom: 30px;
	padding: 10px 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 16px;
	display: block;
}

.social-wrapper .mobile-link {
	position: relative;
	color: rgba(255, 255, 255, 0.6);
	margin: 40px 0;
	display: block;
}
@media screen and (max-height: 530px) {
	.social-wrapper .mobile-link {
		margin-top: 15px !important;
	}
}

.social-wrapper .social-wrapper-text {
	color: #fff;
}

.social-wrapper .social-menu {
	float: right;
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-block;
}

.social-wrapper .social-menu li {
	position: relative;
	padding-left: 6px;
	margin-left: 2px;
	display: inline-block;
}

.social-wrapper .social-menu li:before {
	background: rgba(255, 255, 255, 0.6);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 2px;
	content: "";
	display: none;
}

.social-wrapper .social-menu li + li:before {
	display: inline-block;
}

.social-wrapper .social-menu li a {
	color: rgba(255, 255, 255, 0.6);

	-webkit-transition: all 0.35s;
    	-moz-transition: all 0.35s;
    	-o-transition: all 0.35s;
    	transition: all 0.35s;
}
.social-wrapper .social-menu li:hover a {
	color: rgba(255, 255, 255, 1);
}

/* ==================================== */
/*		  	  Projects Grid
/* ==================================== */
.projects-wrapper  {
	position: relative;
	display: block;
	margin: 0 -30px;

	line-height: 0;
	-webkit-column-count: 1;
	-webkit-column-gap:   2px;
	-moz-column-count:    1;
	-moz-column-gap:      2px;
	column-count:         1;
	column-gap:           2px;  
}
.projects-wrapper.one-column {
	-webkit-column-count: 1;
	-moz-column-count:    1;
	column-count:         1;
}

.projects-wrapper .project-item {
	position: relative;
	margin-bottom: 2px;
	display: inline-block;
	cursor: pointer;

	width: 100% !important;
	height: auto !important;
}
.projects-wrapper .project-item:last-child {
	margin-bottom: 0;
}

.projects-wrapper .project-item .project-title {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	text-align: center;
	color: #fff;
	display: block;
	opacity: 0;
	padding: 0 5px;
	font-size: 20px;

	transform: translateY(-50%);

	-webkit-transition: all 0.35s;
    	-moz-transition: all 0.35s;
    	-o-transition: all 0.35s;
    	transition: all 0.35s;
}

.projects-wrapper .project-item .project-title .project-magnifier {
	margin: 0 auto;
	display: block;
}

.projects-wrapper .project-item img {
	width: 100%;
	height: auto;
}

.projects-wrapper .project-item a {
	position: relative;
	display: block;
}

.projects-wrapper .project-item a:before {
	background: rgba(0, 0, 0, 0.9);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	display: block;
	opacity: 0;

	-webkit-transition: all 0.35s;
    	-moz-transition: all 0.35s;
    	-o-transition: all 0.35s;
    	transition: all 0.35s;
}

.projects-wrapper .project-item:hover a:before,
.projects-wrapper .project-item:hover .project-title {
	opacity: 0;
}

.project-article {
	margin-top: 0;
	margin-bottom: 0;
}

.home .project-article {
	margin-top: 145px;
	display: block;
}
.home .home-slider {
	display: none;
}

/* ==================================== */
/*		  	       Lightbox
/* ==================================== */

.lightboxOverlay {
	opacity: 0.98 !important;
	height: 100vh !important;
	width: 100vw !important;
	position: fixed;
	overflow: hidden;
}

.lb-dataContainer .lb-closeContainer {
	position: absolute;
	top: 0;
	right: 0;
	padding: 15px;
	z-index: 99;
}
.lb-dataContainer .lb-closeContainer .lb-close {
	background-image: url("./img/icons/close.png") !important;
	background-size: contain;
	background-repeat: no-repeat;
	height: 20px !important;
	width: 20px !important;
}

.lb-dataContainer .lb-details {
	position: relative;
	top: -36px;
	color: #000;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	text-align: right !important;
	width: 100% !important;
}
.lb-dataContainer .lb-details .lb-caption {
	font-size: 16px !important;
}

.lb-outerContainer {
	border-radius: 0 !important;
	width: 100% !important;
	height: auto !important;
	padding: 40px;
}

.lb-outerContainer img {
	margin: 0 auto;
}

.lb-nav a:before {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: #fff;
	background-image: url("./img/icons/traub_pfeil_weiss.svg") !important;
	background-repeat: no-repeat !important;
	background-size: 50px;
	height: 60px;
	width: 120px;
	content: "";
	display: block;
}
.lb-nav a.lb-next:before {
	background-position: left 10px center;
	right: 0;
}
.lb-nav a.lb-prev:before {
	background-position: left 10px center;
	left: 0;
	transform: translateY(-50%) rotate(180deg);
}

.lb-loader .lb-cancel {
	background-image: url("./img/icons/loading.gif");
}

.lightbox .lb-image {
	max-width: 100%;
}

/* ==================================== */
/*		  	 Helper Classes
/* ==================================== */

.mobile-reverse {
	flex-flow: column-reverse;
}
.about-text {
	margin-top: 45px;
}
@media screen and (max-width: 1100px) {
	.hide-mobile {
		display: none !important;
	}
	.about-text {
		margin-top: -20px;
	}
}


@media screen and (max-width: 1100px) {
	.wp-block-columns.has-2-columns {
		flex-wrap: wrap;
	}
	.wp-block-columns.has-2-columns .wp-block-column {
		flex-basis: 100%;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}


/*Hamburger Button*/
.black {
	color: #000;
	border-color: #000;
}
.toggle-button .menu-bar-middle .black {
	background-color: #000;
}
.white {
	color: #fff;
	border-color: #fff;
}
.toggle-button .menu-bar-middle .white {
	background-color: #fff;
}

.menu-first {
	content: "M";
	font-size: 23px;
	font-weight: 600;
	position: fixed;
	z-index: 15;
	right: 74px;
	top: 60px;
}
.menu-first:hover {
	cursor: pointer;
}
.menu-last {
	font-size: 23px;
	font-weight: 600;
	position: fixed;
	z-index: 15;
	right: 20px;
	top: 60px;
	letter-spacing: 0em;
}
.menu-last:hover {
	cursor: pointer;
}
.toggle-button {
	position: fixed;
	width: 60px;
	height: auto;
	top: 63px;
	right: 20px;
	transition: .25s;
	z-index: 101;
}
.toggle-button:hover {
	cursor: pointer;
}
.toggle-button .menu-bar {
	border-radius: 2px;
	width: 80%;
	transition: .5s;
}
.toggle-button .menu-bar-top {
	border: 4px solid;
	border-bottom: none;
	top: 0;
}
.toggle-button .menu-bar-middle {
	border: 2px solid;
	margin-top: 8px;
	margin-bottom: 8px;
	top: 4px;
}
.toggle-button .menu-bar-bottom {
	border: 4px solid;
	border-top: none;
	top: 22px;
}
.button-open {
	right: 25px;
}
.button-open .menu-bar {
	color: #fff;
}
.button-open .menu-bar-top {
	transform: rotate(45deg) translate(8px, 8px);
	transition: .5s;
}
.button-open .menu-bar-middle {
	transform: translate(230px);
	transition: .1s ease-in;
	opacity: 0;
}
.button-open .menu-bar-bottom {
	transform: rotate(-45deg) translate(9px, -9px);
	transition: .5s;
}



/* Text Block */
.wrapper {
	width: 40%;
	margin: 100px auto 0;
	color: #83828D;
}
.wrapper .text {
	padding: 30px;
}
.wrapper .text .heading {
	margin-bottom: 40px;
	font-size: 2em;
}
.wrapper .text p {
	line-height: 1.6em;
}
.wrapper .text .buttons {
	margin-top: 40px;
}

/* Buttons */
.wrapper .buttons .button {
	display: inline-block;
	margin-right: 20px;
	padding: 20px 25px;
	border-radius: 2em;
	background-color: #70CE64;
	color: #fff;
	font-size: .9em;
	font-weight: 700;
	transition: background-color .3s;
}
.wrapper .buttons .button-secondary {
	background-color: #FF6746;
}
.wrapper .buttons .button-primary:hover {
	background-color: #84D07A;
}
.wrapper .buttons .button-secondary:hover {
	background-color: #FF7D60;
}

/*Active state for the buttons*/
.wrapper .buttons .button-primary:active {
	background-color: #70CE64;
}
.wrapper .buttons .button-secondary:active {
	background-color: #FF6746;
}

/*Icons*/
.wrapper .buttons .button span {
	position: relative;
	display: inline-block;
	padding-right: 20px;
}
.wrapper .buttons .button span::after {
	position: absolute;
	font-family: "FontAwesome";
	right: -3px;
	font-size: 14px;
	top: 0;
	transition: top .3s, right .3s;
}
.wrapper .buttons .button-primary span::after {
	content: "\f019";
}
.wrapper .buttons .button-secondary span::after {
	content: "\f178";
}
/*Slight icons animation*/
.wrapper .buttons .button-primary:hover span::after {
	top: 4px;
}
.wrapper .buttons .button-secondary:hover span::after {
	right: -6px;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

.slides {
	padding: 0;
	margin: 0;
}

.slides img {
	min-height: 100vh;
	position: fixed;
	object-fit: cover;
	min-width:100%;
}
.all-cta {
	position: fixed;
	z-index:15;
	right: 30px;
	bottom: 30px;
	font-size: 0.9em;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}
.all-cta a {
	color: #fff;
}

.mute-wrapper {
	position: fixed;
	z-index: 15;
	left: 30px;
	bottom: 30px;
}
.mute-wrapper .mute-btn, .mute-wrapper .unmute-btn {
	display: none;
}
.mute-wrapper .mute-btn.active, .mute-wrapper .unmute-btn.active {
	display: block;
}
.mute-wrapper .mute-btn svg, .mute-wrapper .unmute-btn svg {
	width: 68px;
	cursor: pointer;
}

.fullscreen-wrapper {
	position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.fullscreen-wrapper iframe {
	width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

main[role=projects], article {
	margin: 0 30px;
}

article h2 {
	text-transform: uppercase;
	font-size: 2.0em;
	line-height: 1.2;
}

p {
	line-height: 1.8;
}
p a {
	font-weight: 600;
	padding-top: 10px;
}

#post-6 .wp-block-column:not(:last-child) {
	padding-right: 20px;
}

.post-detail {
	text-transform: uppercase;
	font-size: 1em;
	padding-top: 25px;
}
.back {
float: left;
font-weight: 600;
}
.post-info {
	float: right;
	font-weight: 600;
}
.post-info p {
	display: inline;
	font-weight: 200;
}

.left-column {
	width: 50%;
	float: left;
	padding-right: 10px;
}

.right-column {
	width: 50%;
	float: left;
	padding-left: 10px;
}

.inner {
	margin-bottom: 20px;
	box-sizing: border-box;
	position: relative;
}
.inner:hover .inner-hover{
	display: block;
}
.inner-hover {
	display: none;
	text-transform: uppercase;
	position: absolute;
	background: #fff;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	font-weight: 600;
	text-align: center;
}
.inner-hover span {
	position: relative;
 	top: 50%;
}
.inner-hover p {
	font-weight: 200;
	display: inline;
}

.project-title {
	float: right;
}
.project-title p {
	display: inline;
}

/* Grid style */
.display-posts-listing.grid {
	display: grid;
	grid-gap: 20px;
}

.display-posts-listing.grid .title {
	display: none;
}

.display-posts-listing.grid img {
	display: block;
	max-width: 100%;
	height: auto;
}
@media (min-width: 600px) {
	.display-posts-listing.grid {
		grid-template-columns: repeat( 2, 1fr );
	}
}

@media (min-width: 1024px) {
	.display-posts-listing.grid {
		grid-template-columns: repeat( 2, 1fr );
	}
}

/*------------------------------------*\
    Project Pagination
\*------------------------------------*/

.pagination {
	float: right;
	margin-top: -60px;
	width: 120px;
	position: relative;
}
.prev-post {
	position: relative;
	width: 60px;
	height: 60px;
	background: #000;
	float: left;
}
.prev-post:before {
	color: #fff;
	position: absolute;
	top: 22px;
	left: 0;
	right: 0;
	text-align: center;
	content: '\003c';
	display: block;
	font-weight: bold;
	z-index: 9;
}
.prev-post a {
	position: relative;
	z-index: 99;
	text-decoration: none;
	display: block;
	height: 100%;
}
.next-post {
	position: relative;
	width: 60px;
	height: 60px;
	background: #000;
	float: right;
}
.next-post:before {
	color: #fff;
	position: absolute;
	top: 22px;
	left: 0;
	right: 0;
	text-align: center;
	content: '\003e';
	display: block;
	font-weight: bold;
	z-index: 9;
}
.next-post a {
	position: relative;
	z-index: 99;
	text-decoration: none;
	display: block;
	height: 100%;
}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'ProximaNova';
	src:url('fonts/ProximaNova-Regular.ttf');
	src:url('fonts/ProximaNova-Regular.ttf?#iefix') format('truetype');
    font-weight:normal;
    font-style:normal;
}
@font-face {
	font-family:'ProximaNova';
	src:url('fonts/ProximaNova-Bold.ttf');
	src:url('fonts/ProximaNova-Bold.ttf?#iefix') format('truetype');
    font-weight:bold;
    font-style:normal;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {

}
@media only screen and (min-width:480px) {
	.menu-sidebar li > a {
		font-size: 4em;
	}
	.projects-wrapper  {
		-webkit-column-count: 2;
		-moz-column-count:    2;
		column-count:         2; 
	}
}
@media only screen and (min-width:600px) {
	.projects-wrapper {
		margin: 0;
	}
	.projects-wrapper .project-item:hover a:before,
	.projects-wrapper .project-item:hover .project-title {
		opacity: 1;
	}
	.mobile-reverse {
		flex-flow: inherit; 
	}

	.menu-wrap {
		width: 500px;
		right: -500px;
	}
	.menu-wrap.menu-show {
		right: 0;
	}
	.menu-sidebar li > a {
		font-size: 4em;
	}
	.social-wrapper .mobile-link {
		margin: 30px 0 0 0;	
	}

}
@media only screen and (min-width:768px) {
	.projects-wrapper  {
		-webkit-column-count: 3;
		-moz-column-count:    3;
		column-count:         3; 
		-webkit-column-gap:   2px;
		-moz-column-gap:      2px;
		column-gap:           2px; 
	}
	.projects-wrapper.two-columns, .projects-wrapper.one-column {
		-webkit-column-count: 2 !important;
		-moz-column-count:    2 !important;
		column-count:         2 !important; 
	}
}
@media only screen and (min-width:1024px) {

}
@media only screen and (min-width:1100px) {
	.header {
		background: transparent;
		position: relative;
	}
	.main {
		padding-top: 0;
	}
	section, .article {
		margin: 0 130px 0 130px;
	}
	.home-slider section {
		margin: 0;
	}
	article h2 {
		font-size: 3em;
	}
	.menu-sidebar {
		top: 50%;
		transform: translateY(-50%);
	}
	.menu-sidebar li {
		padding: 9px 22px 9px;	
	}
	.home .project-article {
		display: none;
	}
	.home .home-slider {
		display: block;
	}
}
@media only screen and (min-width:1280px) {

}
@media only screen and (min-width:1400px) {
	.menu-wrap {
		width: 600px;
		right: -600px;
	}
	.menu-sidebar li > a {
		font-size: 5em;
	}
	article h2 {
		font-size: 4em;
	}
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}
.referenzen-video {
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
	background-color: rgba(0,0,0,.9);
}
.referenzen-video iframe {
	max-width: 90vw;
    margin: auto;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.referenzen-video .close-icon {
	display: block;
	background-color: transparent;
    background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%09%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21%204.41L19.59%203%2012%2010.59%204.41%203%203%204.41%2010.59%2012%203%2019.59%204.41%2021%2012%2013.41%2019.59%2021%2021%2019.59%2013.41%2012%2021%204.41z%22/%3E%0A%3C/svg%3E);
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    border: 0;
    cursor: pointer;
    height: 30px;
    opacity: .6;
    overflow: hidden;
    padding: 0;
    position: fixed;
    right: 25px;
    text-align: center;
    text-indent: 100%;
    top: 25px;
    white-space: nowrap;
    width: 30px;
    z-index: 9999;
}

.projects-wrapper .project-item .vimeo-video:before {
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    display: block;
    opacity: 0;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
}
@media only screen and (min-width: 600px) {
	.projects-wrapper .project-item:hover .vimeo-video:before {
		opacity: 1;
	}
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
