/*
Theme Name: BLANK Theme
Theme URI: http://digwp.com
Description: This is just a BLANK starter WordPress Theme template -- WordPress v2.9.1
Author: Chris Coyier
Author URI: http://chriscoyier.net
Version: 1
*/
@import url('https://fonts.googleapis.com/css?family=Merriweather:300,400|Roboto:300,300i,400,400i,500,500i');
@media screen {

* { margin: 0; padding: 0; box-sizing: border-box; }
::selection {
  background: #eee1c7; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #eee1c7; /* Gecko Browsers */
}
body { background: #f5f5f5; font: 14px/1.5 'Roboto', Arial, Helvetica, sans-serif; height: 100%; background-image: url(images/background/bedge_grunge.png); -webkit-text-size-adjust: 100%; }
.screen-reader-text { position: absolute; left: -9999px; top: -9999px; }
.clear { clear: both; }
.group:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
* html .group, *:first-child+html .group { zoom: 1; } /* First selector = IE6, Second Selector = IE 7 */

#page-wrap { width: 100%; margin: 0 auto; }
.wrapper {width: 1180px; margin: 0 auto; }
.page .wrapper, .single .wrapper {margin-top: 30px;}

@media (max-width: 1220px) {
.wrapper {width: 100%; margin: 0 auto; padding: 0 20px;}
}

h1, h2, h3 { font-weight: normal; margin: 0 0 10px 0; font-family: 'Merriweather', serif; font-weight: 300;}
h1 { font-size: 2.2em; color: #555;}
h2 { font-size: 1.8em; color: #cc9933;}
h3 { font-size: 1.6em;}
h4 { font-size: 1.2em; margin-bottom: 4px;}
.wrapper>h1 {
	margin-top: 30px;
}
p { margin: 0 0 10px 0;}
a {text-decoration: none; color: #cc9933;	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;}
a:hover { 	color: #806020;
}

.alignleft {
	float: left;
	margin: 0 10px 10px 0;
}

.alignright {
	float: right;
	margin: 0 0 10px 10px;
}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

ul, ol { margin: 0 0 10px 15px; }

.post { }


input[type=text] { }
textarea { }


} /* END screen media */


@media print {

.do-not-print { display: none; }
#comments { page-break-before: always; }

body { width: 100% !important; margin: 0 !important; padding: 0 !important; line-height: 1.4; word-spacing: 1.1pt; letter-spacing: 0.2pt; font-family: Garamond,"Times New Roman", serif; color: #000; background: none; font-size: 12pt; }
h1,h2,h3,h4,h5,h6 { font-family: Helvetica, Arial, sans-serif; }
h1 { font-size: 19pt; }
h2 { font-size:17pt; }
h3 { font-size:15pt; }
h4,h5,h6 { font-size:12pt; }
code { font: 10pt Courier, monospace; }
blockquote { margin: 1.3em; padding: 1em; }
img { display: block; margin: 1em 0; }
a img { border: none; }
table { margin: 1px; text-align:left; }
th { border-bottom: 1px solid #333;  font-weight: bold; }
td { border-bottom: 1px solid #333; }
th, td { padding: 4px 10px 4px 0; }
caption { background: #fff; margin-bottom: 2em; text-align: left; }
thead { display: table-header-group; }
tr { page-break-inside: avoid; }
a { text-decoration: none; color: black; }

} /* END print media */
/*General*/

/*Header*/
#header {
	width: 100%;
	height: 120px;
	background-color: #fff;
	display: flex;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}

#header .navigation {
	width: 40%;
	float: left;
	height: 100%;
	text-transform: uppercase;
	padding: 80px 20px 0;
	order: 1;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}

@media (min-width: 601px) {
.big-logo #header {
	height: 60px;
}

.big-logo #header .navigation {
	padding: 20px 20px 0;
}
}

#header .navigation a {
	color: #999;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
	font-weight: 300;
	cursor: pointer;
	position: relative;
}

#header .navigation a:after {
	content: "";
	width: 0%;
	height: 1px;
	background-color: #cc9933;
	position: absolute;
	bottom:-3px;
	left: 50%;
	float: left;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 500ms;
	transition: all 500ms;
}

#header .navigation a:hover, #header .navigation .current-menu-item a {
	color: #cc9933;
}

#header .navigation a:hover:after, #header .navigation .current-menu-item a:after {
	width: 100%;
	left: 0%;
}


#header .navigation li {
	list-style: none;
	margin: 0;
	display: inline;
	padding: 8px;
}

#header .navigation.right {
	order: 4;
}

#header .navigation.right ul {
	text-align: right;
}


/*Slash for Language Selector
#header .navigation.right li:nth-last-child(1):before {
	content: "/";
	color: #999;
	font-weight: 300;
}


#header .navigation.right li:nth-last-child(2) {
	padding-right: 0;
}

*/

#header #logo {
	width: 20%;
	float: left;
	height: 100%;
	background-image: url(images/logo.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 80%;
	order: 3;
}
@media (min-width: 601px) {
.big-logo #header #logo {
	background-image: none;
}
}

#header #res-navigation {
	display: none;
}

#header #nav-trigger {
	display: none;
}

@media (max-width: 1440px) {
#header .navigation {
	width: auto;
	padding-right: 0;
}

#header .navigation.right {
	order: 2;
	padding-left: 0;
}

#header #logo {
	width: 182px;
	margin-left: auto;
}

}

@media (max-width: 920px) {
#header {
	height: 60px;
}

#header #logo {
	width: 70px;
	height: 60px;
	background-image: url(images/logo-signet.png);
	background-size: auto 50%;
}

#header #res-navigation {
	display: block;
	position: absolute;
	width: 400px;
	left: -450px;
	height: 100%;
	background-color: #f7f7f7;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
	z-index: 99;
	text-transform: uppercase;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	-o-transition: all 200ms;
	transition: all 200ms;
}

#header #res-navigation.active {
	left: 0;
}


#header #res-navigation>div {
	margin-top: 60px;
	margin-left: 20px;
}

#header #res-navigation li {
	list-style: none;
	width: 100%;
}

#header #res-navigation li a {
	color: #999;
	font-weight: 300;
	font-size: 1.5em;
	padding-top: 7px;
	float: left;
	width: 100%;
	cursor: pointer;
}

#header .navigation {
	display: none;
}

#header #nav-trigger {
	display: block;
	float: left;
	height: 60px;
	width: 60px;
	position: absolute;
	padding: 10px;
	cursor: pointer;
	z-index: 100;
}

#header #nav-trigger span {
	width: 40px;
	height: 4px;
	background-color: #555;
	float: left;
	top: 28px;
	position: absolute
}

#header #nav-trigger:before, #header #nav-trigger:after {
	content: "";
	width: 40px;
	height: 4px;
	background-color: #555;
	float: left;
	top: 16px;
	position: absolute;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}

#header #nav-trigger:after {
	top: 40px;
}

#header #nav-trigger.active span {
	display: none;
}

#header #nav-trigger.active span, #header #nav-trigger.active:before, #header #nav-trigger.active:after {
	background-color: #999;
}

#header #nav-trigger.active:before, #header #nav-trigger.active:after {
	top: 28px;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#header #nav-trigger.active:after {
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
}

@media (max-width: 450px) {
	#header #res-navigation {
	width: 95%;
	left: -100%;
}

	#header #res-navigation.active {
	left:0;
}

}
/*Home Slider*/

.home #inner-content {
	width: 100%;
	height: calc(100vh - 120px);
}

.home #inner-content .post {
	width: 100%;
	height: 100%;
	position: relative;
}

.home #inner-content #slider {
	height: calc(100vh - 120px);
	position: absolute;
	width: 100%;
	overflow: hidden;
}

.home #inner-content #slider #slider-stage {
	height: calc(100vh - 120px);
	position: absolute;
	left: 0%;
	width: 800%;
}

.home.big-logo #inner-content #slider, .home.big-logo #inner-content #slider #slider-stage {
	height: calc(100vh - 60px);
}

.home #inner-content #slider .slide {
	width: 100vw;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	float: left;
	position: relative;
	overflow: hidden;
}

.home #inner-content #slider .slide .startslide {
	width: 54vw;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	float: left;
	position: absolute;
	overflow: hidden;
	left: 0;
}

.home #inner-content #slider .slide .startslide-overlay {
	position: absolute;
	right: 0;
	width: 60vw;
	height: 100%;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0.4+0,1+20,1+100 */
	background: -moz-linear-gradient(left,  rgba(255,255,255,0.4) 0%, rgba(255,255,255,1) 20%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(255,255,255,0.4) 0%,rgba(255,255,255,1) 20%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(255,255,255,0.4) 0%,rgba(255,255,255,1) 20%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
}

.home #inner-content #slider .slide .startslide-logo {
	position: absolute;
	top: 50%;
	width: 50%;
	height: 300px;
	float: left;
	left: 30%;
	margin-top: -200px;
	background-image: url(images/logo-big.png);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}

@media (max-width: 600px) {
.home #inner-content #slider .slide .startslide {
	width: 100vw;
}
.home #inner-content #slider .slide .startslide-overlay {
	display: none;
}
}

.home #inner-content #slider .slide video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

.home #inner-content #slider .slide-control {
	position: absolute;
	width: 60px;
	height: 60px;
	float: left;
	top: 50%;
	margin-top: -30px;
	z-index: 1;
	cursor: pointer;
	opacity: 0.5;
	-webkit-transition: opacity 300ms;
	-moz-transition: opacity 300ms;
	-o-transition: opacity 300ms;
	transition: opacity 300ms;
}

.home #inner-content #slider .slide-control:hover {
	opacity: 0.8;
}

.home #inner-content #slider .slide-control:before, .home #inner-content #slider .slide-control:after {
	content: "";
	width: 35px;
	height: 4px;
	float: left;
	position: absolute;
	background-color: #fff;
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 17px;
	left: 15px;
}

@media (min-width: 601px) {
.home.big-logo #inner-content #slider .slide-control-right:before, .home.big-logo #inner-content #slider .slide-control-right:after {
	background-color: #555;
}
}

.home #inner-content #slider .slide-control:after {
	top: 39px;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


.home #inner-content #slider .slide-control.slide-control-right {
	left: auto;
	right: 0;
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.home #inner-content #slider .link-content {
	background-color: rgba(255,255,255,0.7);
	float: left;
	position: absolute;
	left: 20px;
	bottom: 20px;
	color: #555;
	padding: 20px;
	margin-right:60px;
	-webkit-transition: background-color 300ms;
	-moz-transition: background-color 300ms;
	-o-transition: background-color 300ms;
	transition: background-color 300ms;
}

.home #inner-content #slider .link-content h2 {
	color: #89661f;
}

.home #inner-content #slider .link-content:hover {
	background-color: rgba(255,255,255,1);
}

@media (max-width: 920px) {
.home #inner-content {
	height: calc(100vh - 60px);
}

.home #inner-content #slider {
	height: calc(100vh - 60px);
}

.home #inner-content #slider #slider-stage {
	height: calc(100vh - 60px);
}

.link-content h2 {
	font-size: 1.4em;
}
}

.touchevents #inner-content #slider .link-content {
	float: left;
	position: absolute;
	left: 20px;
	bottom: 20px;
	padding: 20px;
	margin-right:20px;
}

/**/

.projekt-wrapper .item {
	float: left;
	width: 30%;
	margin-right: 5%;
	height: 250px;
	margin-top: 0;
	margin-bottom: 5%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	overflow: hidden;
}

.projekt-wrapper .dummy {
	background-color: #cc9933;
	justify-content: center;
	display: flex;
	text-align: center;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	-o-transition: all 1000ms;
	transition: all 1000ms;
}

.projekt-wrapper .dummy:hover {
	justify-content: flex-start;
}


.projekt-wrapper .dummy strong {
	align-self: center;
	font-size: 1.6em;
	font-weight: normal;
	font-family: 'Merriweather', serif; font-weight: 300;
	color: #fff;
	min-width: 100%;
	padding: 10px 20px;
	position: relative;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	-o-transition: all 1000ms;
	transition: all 1000ms;
}


.projekt-wrapper .dummy strong p {
	margin: 0;
}

.projekt-wrapper .item a {
	float: left;
	width: 100%;
	height: 100%;
}

.projekt-wrapper .item:nth-of-type(3n) {
	margin-right: 0;
}

.projekt-wrapper .item span {
	position: absolute;
	min-width: 100%;
	background-color: rgba(255,255,255,0.8);
	float: left;
	bottom: 0;
	padding: 10px 20px;
	color: #000;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	-o-transition: all 1000ms;
	transition: all 1000ms;
}

.projekt-wrapper .item:hover span{
	min-width: 10px;
}

.taxonomy-select {
	width: 100%;
	float: left;
	clear: both;
	margin-top: 30px;
	margin-bottom: 30px;
}

@media (max-width: 1000px) {
.projekt-wrapper .item {
	width: 47%;
	margin-right: 6%;
	margin-bottom: 6%;
}

.projekt-wrapper .item:nth-of-type(3n) {
	margin-right: 6%;
}

.projekt-wrapper .item:nth-of-type(2n) {
	margin-right: 0;
}

}

@media (max-width: 600px) {
.projekt-wrapper .item {
	width: 100%;
	margin-right: 0%;
}

.projekt-wrapper .item:nth-of-type(3n) {
	margin-right: 0;
}
}

#infscr-loading {
	width: 100%;
	text-align: center;
	float: left;
	clear: both;
	margin-bottom: 40px;
}

#content-nav {
	display: none;
}

#searchform {
	width: 100%;
	height: 0px;
	display: flex;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
	overflow: hidden;
	position: relative;
}

#searchform #s {
	width: 60%;
	height: 40px;
	margin: auto;
	display: inline-flex;
	font-size: 1.6em;
	padding: 6px;
    border: 1px solid rgba(0,0,0,0.15);
    box-shadow: 0px 0px 3px 0px rgba(50,50,50,0.1);
	-webkit-box-shadow: inset 0px 3px 5px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 0px 3px 5px 0px rgba(0,0,0,0.1);
	box-shadow: inset 0px 3px 5px 0px rgba(200,200,200,0.2);
}

#searchform.active {
	height: 140px;
}

.taxonomy-box {
	margin: 0px 0 10px 0;
	width: 100%;
	float: left;
}
#beautiful-taxonomy-filters-form {
	float: left;
}

.beautiful-taxonomy-filters-tax {
	margin-bottom: 8px;
}

.taxonomy-box .search-btn {
	margin-bottom: 20px;
	float: right;
}

@media (max-width: 800px) {
.taxonomy-box .search-btn {
	float: left;
}
}

#beautiful-taxonomy-filters-form label, #beautiful-taxonomy-filters-form button {
	display: none;
}

.beautiful-taxonomy-filters-tax {
	float: left;
	margin-right: 20px;
}

.post-type-archive-aktuelles .taxonomy-box {
	margin-bottom: 12px;
}

.search-btn {
	cursor: pointer;
	height: 28px;
	float: left;
	background-color: #999;
	color: #fff;
	text-align: center;
	padding: 4px 10px;
}

.search-btn:hover {
	background-color: #cc9933;
	color: #fff;
}

.search-close {
	width: 40px;
	height: 40px;
	float: left;
	cursor: pointer;
	margin: auto 0;
	position: relative;
	right: calc(20% - 30px);
}

.search-close:before, .search-close:after {
	content: "";
	width: 40px;
	height: 4px;
	background-color: #ccc;
	position: absolute;
	float: left;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 18px;
	left: 0px;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}

.search-close:after {
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.search-close:hover:before, .search-close:hover:after {
	background-color: #cc9933;
}


/*Aktuelles*/
.post-aktuelles {
	margin: 0 0 20px 0;
	padding: 20px;
	background-color: #fff;
	float: left;
	width: 100%;
}

.post-aktuelles:last-of-type {
	margin-bottom: 0;
}

.textbox {
	width: 100%;
	float: left;
}

.textbox.column {
	-webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
    -webkit-column-gap: 40px; /* Chrome, Safari, Opera */
    -moz-column-gap: 40px; /* Firefox */
    column-gap: 40px;
}

@media (max-width: 750px) {
.textbox.column {
	-webkit-column-count: 1; /* Chrome, Safari, Opera */
    -moz-column-count: 1; /* Firefox */
    column-count: 1;
    -webkit-column-gap: 0px; /* Chrome, Safari, Opera */
    -moz-column-gap: 0px; /* Firefox */
    column-gap: 0px;
}
}

.images{
	float:right;
	width: 40%;
	margin: 0 0 40px 80px;
}

.bigimage{
	float: left;
	width: 100%;
	margin-bottom: 2%;
}

.bigimage a {
	width: 100%;
	float: left;
}

.bigimage img {
	max-width: 100%;
	width: 100%;
	height: auto;
	float: left;
}

.smallimages{
	float: left;
	width: 100%;
}

.smallimages a {
	float: left;
	width: 32%;
	margin-right: 2%;
}

.smallimages a img {
	width: 100%;
	height: auto;
}

.smallimages a:nth-child(3n) {
	margin-right: 0;
}

@media (max-width: 800px) {
.textbox {
	width: 100%;
	padding-right: 0;
	padding-bottom: 40px;
}
.images{
	width: 100%;
}
}

@media (max-width: 550px) {
.smallimages a {
	float: left;
	width: 48%;
	margin-right: 4%;
}
.smallimages a:nth-child(3n) {
	margin-right: 4%;
}
.smallimages a:nth-child(2n) {
	margin-right: 0;
}
}
/*Projekte Details (single)*/
	/*header*/
.single-projekte #header {
	height: 60px;
}

.single-projekte #header #logo {
	width: 20%;
	height: 60px;
	background-image: url(images/logo-signet.png);
	background-size: auto 70%;
}

.single-projekte #header .navigation {
    padding-top: 20px;
}

@media (max-width: 1140px) {
.single-projekte #header #logo {
	width: 60px;
}
}

	/*wrapper, infobox and buttons*/

#projekte-single-wrapper {
	width: 100vw;
	height: calc(100vh - 60px);
	float: left;
	overflow: hidden;
	position: relative;
}

#projekte-single-info-box {
	width: 40%;
	height: 100%;
	position: absolute;
	top: 0;
	right: -50%;
	padding: 40px 40px 100px 6%;
	-webkit-transition: all 500ms;
	-moz-transition: all 500ms;
	-o-transition: all 500ms;
	transition: all 500ms;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0.4+0,1+20,1+100 */
	background: -moz-linear-gradient(left,  rgba(255,255,255,0.4) 0%, rgba(255,255,255,1) 20%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(255,255,255,0.4) 0%,rgba(255,255,255,1) 20%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(255,255,255,0.4) 0%,rgba(255,255,255,1) 20%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
	z-index: 10;
	overflow-y: auto;
}

#projekte-single-info-box.active {
	right: 0%;
}


.projekte-single-navigation {
	position: absolute;
	margin-top: calc(50vh - 90px);
	width: 60px;
	height: 60px;
	float: left;
	top: 0;
	left: 0;
	cursor: pointer;
	opacity: 0.5;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
	z-index: 5;
}

.projekte-single-navigation:hover {
	opacity: 0.8;
}

.projekte-single-navigation:before, .projekte-single-navigation:after {
	content: "";
	width: 35px;
	height: 4px;
	float: left;
	position: absolute;
	background-color: #333;
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 17px;
	left: 15px;
}

.projekte-single-navigation:after {
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 39px;
}


.projekte-single-navigation.next {
	right: 0;
	left: auto;
	-webkit-transition: all 500ms;
	-moz-transition: all 500ms;
	-o-transition: all 500ms;
	transition: all 500ms;
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.projekte-single-navigation.next.active {
	right: 40%;
}


.projekte-single-info-box-trigger {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	float: left;
	cursor: pointer;
	z-index: 10;
	opacity: 0.5;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
	z-index: 20;
	border: 4px solid #333;
	color: #333;
	text-align: center;
	font-size: 32px;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
}

.projekte-single-info-box-trigger:before, .projekte-single-info-box-trigger:after {
	content: "";
	width: 4px;
	height: 18px;
	background-color: #333;
	position: absolute;
	top: 15px;
	left: 19px;
	-webkit-border-radius:1px;
	-moz-border-radius:1px;
	border-radius:1px;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}

.projekte-single-info-box-trigger:after {
	height: 4px;
	top: 9px;
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	border-radius:2px;
}

.projekte-single-info-box-trigger:hover {
	opacity: 0.8;
	background-color: rgba(255,255,255,0.5);
}

.slider-dots {
	height: 14px;
	position: absolute;
	bottom:30px;
	margin: 0 auto;
	z-index: 10;
	transform: translate(-50%, -50%);
	margin-left: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slider-dots .dot {
	width: 14px;
	height: 14px;
	float: left;
	margin-right: 8px;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
	border: 2px solid #fff;
	cursor: pointer;
	opacity: 0.5;
}

.slider-dots .dot:hover {
	background-color: rgba(255,255,255,0.5);
	opacity: 0.8;
}

.slider-dots .dot.active {
	background-color: rgba(255,255,255,0.5);
}

.slider-dots .dot:last-child {
	margin-right: 0;
}

		/*active trigger*/

.projekte-single-info-box-trigger.active {
	background-color: rgba(0,0,0,0.5);
}

.projekte-single-info-box-trigger.active:before, .projekte-single-info-box-trigger.active:after {
	width: 4px;
	height: 30px;
	background-color: #fff;
	top: 6px;
	left: 19px;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	border-radius:0;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.projekte-single-info-box-trigger.active:after {
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}


/*res*/
@media (max-width: 1100px) {
#projekte-single-info-box {
	width: 80%;
	right: -90%;
}

.projekte-single-navigation.active {
	display: none;
}
}

@media (max-width: 600px) {
#projekte-single-info-box {
	width: 95%;
	right: -100%;
}
}



	/*inner stage*/

.projekte-single-stage {
	width: 2000%;
	height: 100%;
	float: left;
	position: absolute;
	left: 0;
	top: 0;
}

.projekte-single-slide {
	width: 100vw;
	height: 100%;
	float: left;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.projekte-single-slide .subline {
	position: absolute;
	background-color: rgba(255,255,255,0.8);
	left: 20px;
	bottom: 30px;
	padding: 8px 16px;
	max-width: 30%;
}

.projekte-single-slide .subline.active {
	display: none;
}

.projekte-single-slide .subline p {
	margin: 0;
}

@media (max-width: 800px) {
.slider-dots {
    height: 14px;
    position: absolute;
    bottom: 0px;
    margin: 0 auto;
    z-index: 10;
    transform: translate(-50%, -50%);
    margin-left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.projekte-single-slide .subline {
	max-width: calc(100% - 40px);
	bottom: 25px;
	font-size: 12px;
}


}

/*Touchevents active*/
.touchevents .projekte-single-navigation, .touchevents .slide-control {
	display: none;
}
/*Page*/
.page {
	color: #555;
}
/*Kontakt*/
.kontakt{
	width: 30%;
	float: left;
	margin-right: 6%;
}

.map{
	float: left;
	position: relative;
	width: 64%;
	height: 400px;
}

.formular{
	float: left;
	width: 64%;
	margin-left: 36%;
	margin-top: 60px;
}

.map iframe{
	width: 100%;
	height: 100%;

}

@media (max-width: 800px) {
.kontakt{
	width: 100%;
	margin-right: 0%;
}

.map{
	width: 100%;
	height: 250px;
}

.formular{
	width: 100%;
	margin-left: 0%;
}
}

.wpcf7-form-control{
	width: 100%;
	height: 30px;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	padding: 6px;
    border: 1px solid rgba(0,0,0,0.15);
    box-shadow: 0px 0px 3px 0px rgba(50,50,50,0.1);
	-webkit-box-shadow: inset 0px 3px 5px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 0px 3px 5px 0px rgba(0,0,0,0.1);
	box-shadow: inset 0px 3px 5px 0px rgba(200,200,200,0.2);
	background-color: #fefefe;
}

.wpcf7-form-control.wpcf7-textarea{
	height: 200px;
}

.wpcf7-form-control.wpcf7-submit{
	cursor: pointer;
	height: 30px;
	float: right;
	width: auto;
	background-color: #999;
	color: #fff;
	text-align: center;
	padding: 1px 10px;
	margin-bottom: 10px;
	border: 0;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}

.wpcf7-form-control.wpcf7-submit:hover{
	background-color: #cc9933;
}

.wpcf7-not-valid {
	-webkit-box-shadow: 0px 0px 4px 0px rgba(255,0,0,0.8);
	-moz-box-shadow: 0px 0px 4px 0px rgba(255,0,0,0.8);
	box-shadow: 0px 0px 4px 0px rgba(255,0,0,0.8);
}

.wpcf7-not-valid-tip {
	padding: 2px 6px;
    border: 1px solid rgba(0,0,0,0.15);
    box-shadow: 0px 0px 3px 0px rgba(50,50,50,0.1);
	float: left;
	margin-top: 10px;
	margin-bottom: 16px;
	-webkit-border-radius:7px;
	-moz-border-radius:7px;
	border-radius:7px;
	position: relative;
	color: #000 !important;
}

.wpcf7-not-valid-tip:after, .wpcf7-not-valid-tip:before {
	bottom: 100%;
	left:9px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.wpcf7-not-valid-tip:after {
	border-color: rgba(136, 183, 213, 0);
	border-bottom-color: #fff;
	border-width: 6px;
	margin-left: -6px;
}
.wpcf7-not-valid-tip:before {
	border-color: rgba(194, 225, 245, 0);
	border-bottom-color: rgba(0,0,0,0.17);
	border-width: 7px;
	margin-left: -7px;
}


.datenschutz{
	float: left;
	margin-top: 60px;
	width: 100%;


}

.map:before {
	position: absolute;
	width: 100%;
	height: 100%;
	float: left;
	content: "";
}

.map.clicked:before {
	display: none;
}

@media (max-width: 900px){
.kontakt{
	width: 30%;
}
.formular{
	width: 64%;
}
}

@media (max-width: 550px){
.formular, .kontakt{
	width: 100%;
	margin-right: 0;
}

.wpcf7-form-control.wpcf7-submit{
	padding: none;
}
}

/*Swipe Icon*/
#swipe-icon {
	position: absolute;
	width: 100px;
	height: 100px;
	z-index: 30;
	margin: -80px 0 0 0;
	right: -50px;
	top: 50%;
	opacity: 0;
	display: none;
}

.touchevents #swipe-icon {
	display: block;
}

#swipe-icon span {
	position: absolute;
	width: 50px;
	height: 4px;
	top: 48px;
	right: 0;
	background-color: #fff;
}

#swipe-icon span:before, #swipe-icon span:after {
	content: "";
	width: 4px;
	height: 25px;
	position: absolute;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: -18px;
	right: 40px;
	background-color: #fff;
}

#swipe-icon span:after {
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: -3px;
}

/*iphone case*/
.iphone .home #inner-content {
	height: calc(100vh - 100px);
}

.iphone .home #inner-content #slider {
	height: calc(100vh - 100px);
}

.iphone .home #inner-content #slider #slider-stage {
	height: calc(100vh - 100px);
}

.iphone #projekte-single-wrapper {
	height: calc(100vh - 100px);
}

/*leistungen*/
	.white-box {
		background-color: #fff;
		float: left;
		width: 100%;
		margin: 0 0 5% 0;
		padding: 20px;
	}


.leistungen {
	margin: 0 0 5% 0;
	padding: 20px;
	background-color: #fff;
	float: left;
	width: 100%;
}

.leistungen_text {
	width: 48%;
	float: left;
	margin-right: 4%;
}

.leistungen_bilder{
	float: left;
	width: 48%;
}

.leistungen_bilder .leistungen_bild {
	float: left;
	width: 23.5%;
	height: 23.5%;
	margin: 0 2% 2% 0;
}

.leistungen_bilder .leistungen_bild img {
	width: 100%;
	height: auto;
	float: left;
}

.leistungen_bilder .leistungen_bild:first-child {
	width: 74.5%;
	height: 74.5%;
	float: right;
	margin: 0;
	overflow: hidden;
}

.leistungen_bilder .leistungen_bild:last-child {
	margin-bottom: 0;
}

.leistungen-projekte {
	text-align: right;
}

@media (max-width: 800px) {
.leistungen_text {
	width: 100%;
	margin-right: 0;
}

.leistungen_bilder{
	width: 100%;
	margin-top: 20px;
}
}

.headline {
	margin-top: 40px;
}

/*Jobs*/
.job-1 {
	width: 47%;
	float: left;
	margin-right: 6%;
}

.job-2 {
	width: 47%;
	float: left;
}

.jobs-stellenanzeige {
	width: 100%;
	margin-bottom: 8px;
	float: left;
	cursor: pointer;
	color: inherit;
}

.jobs-stellenanzeige strong {
	color: #cc9933;
}

.jobs-btn {
	float: right;
	cursor: pointer;
	height: 24px;
	background-color: #999;
	color: #fff;
	text-align: center;
	padding: 2px 10px;
	margin-top: 8px;
}

.jobs-stellenanzeige:hover .jobs-btn {
	background-color: #cc9933;
	color: #fff;
}

@media (max-width: 800px) {
.job-1 {
	width: 100%;
	margin-right: 0%;
}

.job-2 {
	width: 100%;
}
}


/*Dropdowns*/

.beautiful-taxonomy-filters-tax {
    width: 200px;
}

.select2-container {
	width: 200px !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid rgba(0,0,0,0.15) !important;
    border-radius: 0px !important;
    box-shadow: 0 1px 1px rgba(50,50,50,0.1);
}

.select2-container--open .select2-dropdown--below {
    border-radius: 0px !important;
    border: 1px solid rgba(0,0,0,0.17) !important;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    margin-top: 10px;
}

.select2-container--open .select2-dropdown--below:after, .select2-container--open .select2-dropdown--below:before {
	bottom: 100%;
	left:50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.select2-container--open .select2-dropdown--below:after {
	border-color: rgba(136, 183, 213, 0);
	border-bottom-color: #fff;
	border-width: 6px;
	margin-left: -6px;
}
.select2-container--open .select2-dropdown--below:before {
	border-color: rgba(194, 225, 245, 0);
	border-bottom-color: rgba(0,0,0,0.17);
	border-width: 7px;
	margin-left: -7px;
}

.select2-container--default .select2-selection--single:focus, .select2-container--default .select2-selection--single:focus{
    outline: none;
}

.select2-results__option[aria-selected] {
    color: #777 !important;
    border-bottom: 1px solid rgba(200,200,200,0.2);
}

.select2-results__option:last-child {
    border-bottom: 0px solid #fff;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: rgba(200,200,200,0.2) !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: rgba(200,200,200,0.2) !important;
    color: #cc9933 !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color:#888 transparent transparent transparent !important;
	border-width: 5px 4px 0 4px !important;
}

/*CF7 FILE*/

div.wpcf7 input[type="file"] {
	background-color: #fefefe;
}

/*HIER PRIVATE FILTER AUSBLENDEN*/
#beautiful-taxonomy-filters-tax-leistungen_bereiche, #beautiful-taxonomy-filters-tax-leistung {
	display: none;
}

.logged-in #beautiful-taxonomy-filters-tax-leistungen_bereiche, .logged-in #beautiful-taxonomy-filters-tax-leistung {
	display: inline;
}


/*Unternehmen (Timeline)*/
.milestone ul {
	list-style: none;
	margin: 0;
}

.milestone li {
	margin-bottom: 6px;
}

/*Column System*/
.col-sys-50-50-col, .col-sys-40-60-col, .col-sys-60-40-col {
	width: 100%;
	float: left;
}

.col-sys-col-50 {
	width: 48%;
	float: left;
	margin-right: 4%;
}

.col-sys-col-40 {
	width: 38%;
	float: left;
	margin-right: 4%;
}

.col-sys-col-60 {
	width: 58%;
	float: left;
	margin-right: 4%;
}

.col-sys-bild {
	width: 22%;
	float: left;
	margin-right: 4%;
}

.col-sys-bild:nth-child(4n) {
	margin-right: 0;
}

.col-sys-bild img {
	max-width: 100%;
	height: auto;
}

.col-sys-col-40:last-child, .col-sys-col-50:last-child, .col-sys-col-60:last-child {
	margin-right: 0;
}

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

.col-sys {
	width: 100%;
	float: left;
}


.col-sys-breaker {
	width: 100%;
	float: left;
	margin-bottom: 60px;
}

.col-sys:last-child {
	margin-bottom: 0;
}

.col-sys-projekte h3 {
	font-size: 1.3em;
}







.col-sys .item {
	float: left;
	width: 22%;
	margin-right: 4%;
	height: 188px;
	margin-top: 0;
	margin-bottom: 5%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	overflow: hidden;
}

.col-sys .dummy {
	background-color: #473614;
	text-align: center;
	justify-content: center;
	display: flex;
	padding: 20px;
}

.col-sys .dummy strong {
	align-self: center;
	font-size: 1.6em;
	font-weight: normal;
	font-family: 'Merriweather', serif; font-weight: 300;
	color: #fff;
}

.col-sys .item a {
	float: left;
	width: 100%;
	height: 100%;
}

.col-sys .item:nth-of-type(4n) {
	margin-right: 0;
}

.col-sys .item span {
	position: absolute;
	min-width: 100%;
	background-color: rgba(255,255,255,0.8);
	float: left;
	bottom: 0;
	padding: 10px 20px;
	color: #000;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	-o-transition: all 1000ms;
	transition: all 1000ms;
}


.col-sys .item:hover span{
	min-width: 10px;
}

@media (max-width: 1000px) {
.col-sys .item {
	width: 48%;
	height: 188px;
}

.col-sys .item:nth-of-type(2n) {
	margin-right: 0;
}
}

@media (max-width: 800px) {
.col-sys-col-40, .col-sys-col-50, .col-sys-col-60 {
	margin-right: 0;
	width: 100%;
}
}

@media (max-width: 500px) {
.col-sys .item {
	width: 100%;
	height: 188px;
	margin-right: 0;
	background-image: none !important;
	background-color: transparent;
	height: auto;
	margin-bottom: 3px;
}

.col-sys .item span {
	position: relative;
	height: auto;
	padding: 0;
	background-color: transparent;
	color: #555;
}
.col-sys .item span:hover {
	color: #806020;
}

.col-sys br {
	display: none;
}
}

.white-box img{
	max-width: 100%;
	height: auto;
}

/*Kontakt Box*/
.kontakt-box-wrapper {
	width: 100%;
	float: left;
	text-align: center;
}

.kontakt-box {
	display: inline-block;
}

.kontakt-person {
	text-align: center;
	float: left;
	margin-right:80px;
}

.kontakt-person:last-child {
	margin-right: 0;
}

.kontakt-person img {
	height: auto;
	max-width: 100%;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;

}

/*Leistungen Bilderslider*/
.bilder-slider {
	width: 100%;
	height: 350px;
	overflow: hidden;
	float: left;
	margin-bottom: 20px;
	position: relative;
}

.zitat-slider {
	height: 300px;
	margin-bottom: 0;
}

.zitat-slider .zitat {
	font-size: 1.6em;
	font-weight: 300;
	font-family: 'Merriweather', serif;
	text-align: center;
	padding: 0 1%;
	height: auto;
}

.zitat-slider .zitat span {
	width: 100%;
	font-size: 0.8em;
	text-align: right;
	float: left;
	margin-top: 20px;
	color: #c93;
}

.bilder-slider-stage {
	width: 1000%;
	height: 100%;
	float: left;
	position: absolute;
}

.bilder-slider-bild {
	width: 10%;
	height: 100%;
	float: left;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

/*Submenu*/
.sub-menu-box {
	width: 100%;
	background-color: #fff;
	float: left;
	padding: 0px 10px 10px 43px;
	margin-bottom: 20px;
	top: 0;
	z-index: 99999;
}

.sub-menu-box.fixed {
	padding: 10px 10px 10px 43px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}

.sub-menu-box a {
	text-transform: uppercase;
	font-weight: 300;
	color: #999;
	margin-right: 20px;
	position: relative;
}

.sub-menu-box a:hover {
	color: #cc9933;
}

.sub-menu-box a:after {
	content: "";
	width: 0%;
	height: 1px;
	background-color: #cc9933;
	position: absolute;
	bottom:-3px;
	left: 50%;
	float: left;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}


.iphone .sub-menu-box a:after {
 display: none;
}

.sub-menu-box a:hover:after {
	width: 100%;
	left: 0%;
}

@media (max-width: 920px) {
.sub-menu-box {
	padding: 5px 10px 10px 10px;
}
}

/*Unternehmen Bild + Text */
.col-sys-col-bild {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	float: left;
	height: 300px;
	padding: 20px;
	margin-bottom: 20px;
	position: relative;
}

.col-sys-col-text {
	float: right;
	background-color: rgba(255,255,255,0.8);
	padding: 14px 20px;
	position: absolute;
	bottom: 20px;
	left: 20px;
}

.col-sys-col-text ul {
	margin-bottom: 0;
}

@media (max-width: 600px) {
.col-sys-col-bild {
	height: auto;
	padding: 20px;
}

.col-sys-col-text {
	position: relative;
	bottom:0px;
	left: 0px;
	width: 100%;
	margin-top: 150px;
}
}

/*Unternehmen Kundenlogos */
.col-sys .col-sys-kunden {
	width: 100%;
	float: left;
}

.col-sys-kunden .kunde {
	width: 22%;
	height: 100px;
	float: left;
	text-align: center;
	margin-right: 4%;
	margin-bottom: 16px;
	position: relative;
}

.col-sys-kunden .kunde:nth-child(4n) {
	margin-right: 0;
}

.col-sys-kunden .kunde img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

@media (max-width: 700px) {
.col-sys-kunden .kunde {
	width: 48%;
}

.col-sys-kunden .kunde:nth-child(2n) {
	margin-right: 0;
}
}

#fancybox-title-over {
    background: rgba(255,255,255,.7) !important;
    color: #000 !important;
}

.aktuelles-wrapper {
	background-color: #fff;
	width: 100%;
	float: left;
	margin-bottom: 40px;
}

#fancybox-close {
	background: none !important;
    background: rgba(255,255,255,.7) !important;
	right: 10px !important;
	top: 10px !important;
	width: 40px !important;
	height: 40px !important;
	position: absolute;
}

#fancybox-close:before, #fancybox-close:after {
	content: "";
	width: 30px;
	height: 4px;
	background-color: #000;
	float: left;
	position: absolute;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	left: 5px;
	top: 17px;
}

#fancybox-close:after {
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#fancybox-right:hover span {
	background: none !important;
	background-color: rgba(255,255,255,.7) !important;
	width: 40px !important;
	height: 40px !important;
	right: 10px !important;
}

#fancybox-right:hover span:before, #fancybox-right:hover span:after {
	content: "";
	width: 19px;
	height: 4px;
	background-color: #000;
	float: left;
	position: absolute;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	right: 8px;
	top: 12px;
}

#fancybox-right:hover span:after {
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 23px;
}

#fancybox-left:hover span {
	background: none !important;
	background-color: rgba(255,255,255,.7) !important;
	width: 40px !important;
	height: 40px !important;
	left: 10px !important;
}


#fancybox-left:hover span:before, #fancybox-left:hover span:after {
	content: "";
	width: 19px;
	height: 4px;
	background-color: #000;
	float: left;
	position: absolute;
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	left: 8px;
	top: 12px;
}

#fancybox-left:hover span:after {
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 23px;
}

.col-sys-text-bild-col p {
	margin: 0;
}


/*Custom Media Archive*/
.tax-media_category .white-box {
	margin-top: 30px;
}

.tax-media_category .post {
	float: left;
	width: 15%;
	margin-right: 2%;
	height: 130px;
	overflow: hidden;
	margin-bottom: 2%;
}

.tax-media_category .post:nth-of-type(6n) {
	margin-right: 0;
}

/*Dropdown hack*/
.sub-menu {
	display: none;
	background-color: #fff;
	border: 1px solid #ddd;
	position: absolute;
	right: 0;
	width: 60px;
}

.menu-item-language {
	position: relative;
}

li:hover .sub-menu {
	display: block;
}