@charset "utf-8";


/* open-sans-300 - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	src: local(''),
	url('../fonts/open-sans-v23-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	url('../fonts/open-sans-v23-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-regular - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: local(''),
	url('../fonts/open-sans-v23-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	url('../fonts/open-sans-v23-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-600 - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	src: local(''),
	url('../fonts/open-sans-v23-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	url('../fonts/open-sans-v23-latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-700 - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	src: local(''),
	url('../fonts/open-sans-v23-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
	url('../fonts/open-sans-v23-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: top;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*********Allgemein**********/
html, body {
	width:100%;
	height:100%;
	color: #494948;
	color: #333;
    font-family: 'Open Sans',Verdana,sans-serif;
    font-size: 15px !important;
    font-weight: 300;
	background-color:rgb(30,27,56);
}
h2 {
    color: #B4CB07;
    font-size: 3em;
    font-weight: 700;
    width: 100%;
}	
h3 {
    color: #5B87C4;
    font-size: 1.25em;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 1em;
}
h4, h5{
	font-size:100%;
	font-weight:600;
}
p {
    margin-bottom: 1em;
}
strong {
    font-weight: 700;
}
a, a:visited {
    color: #5B87C4;
}
a {
    text-decoration: none;
}
.clr{clear:both;}
/********** Header / Navigation ************/
#header{
	position:fixed;
	z-index:999;
	top:0;
	left:0;
	width:100vw;
	box-sizing: border-box;
	height:5.5em;
	background-color:rgb(34,35,66);
	padding-left:4em;
	padding-top:0.5em;
	display: flex;
	grid-gap: 4em;
}
#logo{
	padding-top:0.25em;
	width:15em;
	box-sizing: border-box;
}
#logo img{
	width:100%;
	height:auto;
}
#logo a {
	display: inline-block;
}
#nav, .subNav{
	font-size: 1.1em;
}
#nav ul, .subNav ul{
	margin-top:0.3em;
	display: flex;
	grid-gap: 3em;
}

#nav li.info{
	padding:0 0 0 2.5%;
	position:relative;
}
#nav li.info .infoPopup{
	display:none;
	position:absolute;
	padding:0.25em;
	font-size:0.75em;
	background:#fff;
	color:#000;
	top:2.5em;
	left:4.75em;
	opacity:0;
	width:7em;
}
#nav li.info:hover .infoPopup{
	display:block;
	opacity:1;
	transition: all 200ms ease-in;
}
#nav a, #nav a:visited, .subNav a, .subNav a:visited{
	color:#fff;
}
#nav a:hover, #nav li.active a, #subNav a:hover, #subNav li a.active, a:hover, a.active {
	color:#B4CB07 !important;
}
#nav li.hid, .subNav li.hid{
	display:none; 
	line-height:0;
}
.subNav{
	position:absolute;
	z-index:9999;
	margin-top:2.15em;
	left:20.75em;
}
.subNav li a{
	font-size:1em;
}
.kontakt-parent .subNav,
.section .subNav{
	opacity:0;
}

/*.kontakt-parent:hover .subNav{
	opacity:1;
	-webkit-transition: all 500ms ease-out;
	-moz-transition: all 500ms ease-out;
	-ms-transition: all 500ms ease-out;
	transition: all 500ms ease-out;
}*/

.kontakt-parent.active .subNav,
.section.active .subNav{
	opacity:1;
}

/*.kontakt-parent .subNav {
    top: 0;
    margin-left:0;
    font-size:0.9em;
    padding-left: 0 
}*/
li.kontakt-parent {
	position: relative;
}
.kontakt-parent .subNav {
	top: 0;
	margin-left: 0;
	padding-left: 0;
	left: 0;
	font-size: 0.9em;
	margin-top: 2em;
}

.kontakt-parent .subNav li {
    margin-left:0;
    padding-left: 0 !important;
    padding-right: 0.75em !important;
}

@media screen and (max-width: 950px) {
	#header{
		grid-gap: 2em;
	}

	#logo{
		width:13em;
	}

	.subNav {
		left: 17.25em;
	}

	#nav ul, .subNav ul{
		margin-top:0.3em;
		display: flex;
		grid-gap: 2em;
	}
}

/***********Change of Default fullPage.css*************/
.easing{
	-webkit-transition: all 1000ms ease-out 0s;
	-moz-transition: all 1000ms ease-out 0s;
	-ms-transition: all 1000ms ease-out 0s;
	transition: all 1000ms ease-out 0s;
}

.controlArrow {
	display:none;
}
#sectionReferenzen .controlArrow {
	display:block;
    background: none repeat scroll 0 0 #222;
    border: 0.05em solid #FFF;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    border-radius: 0.5em;
    color: #FFF;
    font-size: 4em;
    font-weight: 100;
    height: 0.7em;
    left: 0.35em;
    line-height: 50%;
    opacity: 0.5;
    position: absolute;
    text-align: center;
    width: 0.7em;
	margin-top:-1.5em;
	top:100%;
}
#sectionReferenzen .controlArrow:after {
	content:'‹';
}
#sectionReferenzen .controlArrow.next:after {
	content:'›';
}
#sectionReferenzen .controlArrow.next{
	margin-left:1em;
}
.fullPage-slidesNav{
	display:none;
}
#sectionReferenzen .fullPage-slidesNav{
	display:block;
}
.fullPage-slidesNav{
	opacity:1;
	left:0;
	margin-left:1em !important;
}
.fullPage-slidesNav.bottom{
	bottom:0.5em;
}
.fullPage-slidesNav span {
    background-color: rgba(210, 210, 210, 0.5);
	border:none;
	height:10px;
	width:10px;
	left:0;
}
.fullPage-slidesNav .active span {
    background-color: #B4CB07;
}
.fullPage-slidesNav li {
	margin:4px;
}


/***********Content*************/
.section{
	width:auto;
	height:100% !important;
	overflow:hidden;
}
.tableCell{
	position:relative;
	display:block;
}
.article{
	background-color:rgba(247,243,229,.9);
	padding:1.5em 1.5em 0;
	position:absolute;
}
.slide{
	overflow:hidden;
}
.section h2{
	position:absolute;
	text-shadow:.05em .05em .01em rgba(0,0,0,.3);
}


.btnContainer {
	display: grid;
	grid-gap: .5em;
	grid-template-columns: repeat(4, auto);
	margin-bottom: 1.25em;
}

.btnContainer.gr3 {
	grid-template-columns: 1fr 1fr 1fr;
}

.btnContainer button.popupBtn {
	border: none;
	background: rgba(180,203,7,1);
	padding: 0.5em 0.25em;
	color: #333;
	font-size: 0.9em;
}
.popupBtn:hover {
	cursor: pointer;
	background: rgba(180,203,7,.8);
}

a.popupBtn:hover {
	color: #fff !important;
}

.popupContainer {
	position: relative;
	position: fixed;
	z-index: 999999;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(34,35,66,.5);
	backdrop-filter: blur(6px);
	transition: all .3s ease-in-out;
	transform: translateX(100vw);
	padding: 1em;
	box-sizing: border-box;
	opacity: 0;
}

.popupContent:after {
	content: 'X';
	display: block;
	position: absolute;
	top: .5em;
	right: .5em;
	font-size: 1.5em;
	color: #999;
	line-height: 1;
	font-weight: 600;
	cursor: pointer;
}

.popupContainer:hover {
	cursor: pointer;
}

.popupContainer.visible {
	transform: translateX(0);
	opacity: 1;
}

.popupContent {
	display: none;
	font-size: 1.25rem;
	padding: 1.5em;
	background: #fff;
	box-shadow: 0 0 1em #333;
	flex: 1 1 0;
	max-width: 750px;
	max-height: 100vh;
	overflow: auto;
	font-weight: 400;
	transform: translateX(150vw);
	opacity: 1;
	box-sizing: border-box;
	margin: 1em auto;
}

.popupContent:hover {
	cursor: auto;
}

.popupContent.active {
	transform: translateX(0px);
	display: block;
}

.popupContent h4 {
	margin-bottom: .5em;
	font-weight: 700;
	font-size: 1.5em;
	color: #5B87C4;
}

@media screen and (max-width: 500px) {
	.btnContainer {
		grid-template-columns: 1fr 1fr !important;
	}
	.popupContent {
		font-size: .9rem;
	}
	.popupContent h4 {
		font-size: 1.35em;
	}
}
/********* section ***************/
#sectionAgentur.lazy,
#sectionPortfolio.lazy,
#sectionLeistungen.lazy,
#sectionReferenzen.lazy,
#sectionKontakt.lazy,
#sectionAgentur .mobileBG.lazy,
#sectionPortfolio .mobileBG.lazy,
#sectionLeistungen .mobileBG.lazy,
#sectionReferenzen .bg.lazy,
#sectionKontakt .mobileBG.lazy,
#feinschliff .bg.lazy,
#juechter .bg.lazy,
#brauer .bg.lazy,
#jette-rwk .bg.lazy,
#jette-rwk .bg.lazy,
#hm-pcc .bg.lazy,
#egp .bg.lazy,
#it-xy .bg.lazy,
#sequentia .bg.lazy,
#zh-security .bg.lazy,
#seehundstation .bg.lazy,
#beerepoot .bg.lazy,
#poppens .bg.lazy,
#oiliva-greka .bg.lazy,
#heikos-bueroladen .bg.lazy,
#wohntheater .bg.lazy,
#mvz-werlte .bg.lazy,
#seyen .bg.lazy,
#lechtenberg .bg.lazy,
#rechtliche-betreuer .bg.lazy,
#familienservice .bg.lazy,
#pflegedienst-lidia .bg.lazy,
#praxisgemeinschaft-bley-langenhorst .bg.lazy,
#kirchengemeinde_loga .bg.lazy,
#gartenbau-dojen .bg.lazy {
	background: none;
}


#sectionHome{
	background:url(../images/bg/home.webp) 50% 50% no-repeat;
	background-size:cover;
}
#sectionHome .article{
	top:55%;
	right:23%;
	width:33em;
}
#sectionAgentur{
	background:url(../images/bg/agentur.webp)  50% 50% no-repeat;
	background-size:cover;
}
#sectionAgentur h2{
	top:23%;
	left:5%;
}
#sectionAgentur .article{
	left:5%;
	top:50%;
	width:34em;
}
#sectionAgentur .typisch .article, #sectionAgentur .team .article, #sectionAgentur .ansprechpartner .article{
	width:23.4em;
	height:17em;
	padding-bottom:1.5em;
}
#sectionAgentur .article.right{
	margin-left:29em;
}
#sectionAgentur .team .article{
	width:26em;
}
#sectionAgentur .ansprechpartner .article{
	width:30em;
}
#button-slideshow {
    bottom: 0;
    position: absolute;
    right: 1.5em;
}
a#cameraButton:hover{
	cursor:pointer;
}
#sectionAgentur .article.imgR{
	padding:5px;
	height:290px;
	width:370px;
	margin-left:32em;
	opacity:1;
	-webkit-transition:all 1.5s ease;
	-moz-transition:all 1.5s ease;
	-ms-transition:all 1.5s ease;
	transition:all 1.5s ease;
}
#sectionAgentur .article.imgR img{
	height:100%;
	width:auto;
}
#sectionAgentur .article.imgR #slideshow ul, #sectionAgentur .article.imgR #slideshow li{
	width:370px !important;
	height:290px !important;
}
.hidden{
	opacity:0 !important;
}
#sectionAgentur .ansprechpartner .article.imgR{
	margin-left:36em;
}
#sectionPortfolio{
	background:url(../images/bg/portfolio.webp)  50% 50% no-repeat;
	background-size:cover;
}
#sectionPortfolio h2{
	top:18%;
	left:5%;
}
#sectionPortfolio .article{
	left:5%;
	top:40%;
	width:34em;
}
#sectionPortfolio .portfolio .article{
	padding-bottom:1.5em;
}
#sectionPortfolio hr {
    background-color: #B4CB07;
    border: medium none;
    color: #B4CB07;
    height: 1px;
    margin: 0;
}
#sectionPortfolio hr:first-of-type {
    margin-top: 2em;
}
#sectionPortfolio .link p {
    margin: 0.6em;
}
#sectionPortfolio .link a, .link a:visited, .link a.active, #sectionReferenzen table a, #sectionReferenzen table a.active {
    color: #333 !important;
}
#sectionPortfolio .article a:hover{
	color:#5B87C4 !important;
	font-weight:600;
}

#sectionPortfolio h2{
	top:5%;
	left:5%;
}

#sectionReferenzen table a:hover{
	color:#5B87C4 !important;
}

#sectionPortfolio .link span {
    display: inline-block;
    width: 31em;
}
#sectionLeistungen{
	background:url(../images/bg/leistungen.webp)  50% 50% no-repeat;
	background-size:cover;
}
#sectionLeistungen h2{
	top:25%;
	left:20%;
}
#sectionLeistungen .article{
	left:20%;
	top:42%;
	width:36em;
}
#sectionLeistungen .aktionen .article{
	width:34.7em;
}
#sectionLeistungen .medien .article{
	width:36em;
}

#sectionReferenzen{
	background:url(../images/bg/referenzen.webp) no-repeat;
	background-position: 0 60px !important;
	background-size:cover;
}
#sectionReferenzen .article{
	padding-bottom:1.5em;
	left:60%;
	margin-left:-22em;
	top:24%;
	width:43em;
}

#sectionReferenzen .article table{
	line-height:135%;
}
#sectionReferenzen .article table td, #sectionReferenzen .article table th{
	vertical-align:top;
	text-align:left;
}
#sectionReferenzen .article table th{
	padding-right:3em;
}
#sectionReferenzen .bg{
	width:85%;
	height:100%;
}
.ref-text {
    background: none repeat scroll 0 0 #fff;
    font-size: 0.9em;
    height: 100%;
    min-width: 25em;
    padding: 6.5em 1.4em 1.4em;
    position: absolute;
    right: 0;
    top: 0;
    width: 15%;
}
.ref-logo {
    margin: 1.75em 0 2.75em;
    text-align: left;
    width: 100%;
}
.ref-logo img {
    border: medium none;
    max-height: 8.5em;
	max-width: 100%;
}
.ref-content {
    margin-top: 1em;
}
.ref-content h4 {
    margin: 1.4em 0 0.25em;
}
.ref-content h5 {
    margin: 0.7em 0 0.25em;
}

#feinschliff .bg{
	background:url(../images/bg/referenzen/feinschliff.jpg) right top;
	background-size:cover;
}

#juechter .bg{
	background:url(../images/bg/referenzen/juechter.jpg) center bottom;
	background-size:cover;
}

#brauer .bg{
	background:url(../images/bg/referenzen/brauer.jpg) right top;
	background-size:cover;
}

#jette-rwk .bg{
	background:url(../images/bg/referenzen/jette-rwk.jpg) center;
	background-size:cover;
}

#hm-pcc .bg {
  background-image:url(../images/bg/referenzen/bg-hm-pcc.jpg);
  background-position:50% 4em;
  background-size:cover;
}

#egp .bg{
	background:url(../images/bg/referenzen/egp-leer.jpg) right top;
	background-size:cover;
}

#it-xy .bg{
	background:url(../images/bg/referenzen/it-xy.jpg) left top;
	background-size:cover;
}

#sequentia .bg{
	background:url(../images/bg/referenzen/sequentia.jpg) left bottom;
	background-size:cover;
}

#zh-security .bg{
	background:url(../images/bg/referenzen/zh-security.jpg) left center;
	background-size:cover;
}

#seehundstation .bg{
	background:url(../images/bg/referenzen/seehundstation.jpg) center top;
	background-size:cover;
}

#beerepoot .bg{
	background:url(../images/bg/referenzen/beerepoot.jpg) 65% top;
	background-size:cover;
}

#poppens .bg{
	background:url(../images/bg/referenzen/poppens.jpg) center top;
	background-size:cover;
}

#oiliva-greka .bg{
	background:url(../images/bg/referenzen/oiliva-greka.jpg) right bottom;
	background-size:cover;
}

#oiliva-greka .ref-logo{
	text-align: center;
    margin-bottom: 2em;
}

#oiliva-greka .ref-logo img{
	max-height: 12em;
}

#heikos-bueroladen .bg{
	background:url(../images/bg/referenzen/heikos-bueroladen.jpg) left center;
	background-size:cover;
}

#wohntheater .bg{
	background:url(../images/bg/referenzen/wohntheater.jpg) center top;
	background-size:cover;
}

#mvz-werlte .bg{
	background:url(../images/bg/referenzen/mvz-werlte.png) left center;
	background-size:cover;
}

#seyen .bg{
	background:url(../images/bg/referenzen/seyen.jpg) center top;
	background-size:cover;
}

#lechtenberg .bg{
	background:url(../images/bg/referenzen/lechtenberg.jpg) center top;
	background-size:cover;
}

#rechtliche-betreuer .bg{
	background:url(../images/bg/referenzen/rechtliche-betreuer.jpg) center bottom;
	background-size:cover;
}

#familienservice .bg{
	background:url(../images/bg/referenzen/familienservice.jpg) left top;
	background-size:cover;
}

#pflegedienst-lidia .bg{
	background:url(../images/bg/referenzen/pflegedienst-lidia.jpg) left top;
	background-size:cover;
}

#praxisgemeinschaft-bley-langenhorst .bg{
	background:url(../images/bg/referenzen/impressionen-4-large.jpg) center;
	background-size:cover;
}

#kirchengemeinde_loga .bg{
	background:url(../images/bg/referenzen/kirchengemeinde_loga.jpg) left top;
	background-size:cover;
}

#jw-polymer .bg{
	background: url(../images/bg/referenzen/jw-polymertechnik.jpg) left bottom  no-repeat;
	background-size:cover;
}

#kirchengemeinde_loga .ref-logo{
	margin-bottom: 2em;
}

#kirchengemeinde_loga .ref-logo img{
	max-height: 10em;
}

#gartenbau-dojen .bg{
	background:url(../images/bg/referenzen/gartenbau-dojen.jpg) left center;
	background-size:cover;
}


#sectionKontakt{
	background:url(../images/bg/kontakt.webp)  50% 50% no-repeat;
	background-size:cover;
}
#sectionKontakt .article{
	left:35%;
	top:22%;
	width:34em;
}
#sectionInfo #slideInfo .article{
	left:50%;
	margin-left:-33em;
	top:20%;
	width:100%;
	background:none;
	color:#fff;
}
#sectionInfo .article h3.large{
	font-size:2em;
	font-weight:300;
	line-height:150%;
}
.infoColumn{
	line-height:150%;
	float:left;
	margin:2.5em 5em 0 0;
}
.infoColumn strong{
	line-height:3em;
}
#footer{
	position:absolute;
	display: flex;
	grid-gap: 5em;
	bottom:0;
	background-color:#222342;
	font-size:0.85em;
	padding-left:4em;
	width:100%;
	color:#fff;
	z-index:999;
	padding: 1em;
	line-height: 1.4;
	justify-content: center;
}
#footer .footerInnerContainer{
	display: grid;
	grid-template-columns: auto;
	grid-column-gap: 5em;
	grid-row-gap: 1em;
	justify-content: center;
}

#footer .copy{
	grid-column: 1 / span 4;
}

@media screen and (max-width: 950px) {
	#footer .footerInnerContainer{
		grid-template-columns: repeat(2, auto);
		grid-column-gap: 2em;
	}
	#footer .copy{
		grid-column: 1 / span 2;
	}
}

@media screen and (max-width: 500px) {
	#footer {
		display: block;
	}
	#footer .footerInnerContainer{
		margin-bottom: 1em;
	}
}

#footer p{
	margin: 0;
}

#sectionImpressum .article,
#sectionDatenschutz .article {
    height: 65%;
    left: 50%;
    margin:  -25em;
    margin-top: 7em;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 1.5em;
    position: absolute;
    width: 50em;
}

@media only screen and (max-width: 1180px) {
body {
    font-size: 13px !important;
}
#sectionAgentur .typisch .article, #sectionAgentur .team .article, #sectionAgentur .ansprechpartner .article {
    height: 20em;
}
#sectionAgentur .typisch .article.imgR, #sectionAgentur .team .article.imgR, #sectionAgentur .ansprechpartner .article.imgR {
    height: 22.5em;
	width:28.7em;
}

}
@media screen and (max-width: 850px), screen and (max-height: 840px) {
body {
    font-size: 12.5px !important;
}
#nav li, .subNav li{
	padding: 0 1%;
}
/*#nav, .subNav{
	margin-left:245px;
}*/
#sectionAgentur .ansprechpartner .article.imgR {
    margin-left: 34.5em;
}
#sectionAgentur .typisch .article, #sectionAgentur .team .article, #sectionAgentur .ansprechpartner .article {
    height: 20em;
}
#sectionAgentur .typisch .article.imgR, #sectionAgentur .team .article.imgR, #sectionAgentur .ansprechpartner .article.imgR {
    height: 22.5em;
	width:28.7em;
}
#sectionAgentur .article.imgR #slideshow ul, #sectionAgentur .article.imgR #slideshow li{
	height:22.5em !important;
	width:28.7em !important;
}
#sectionAgentur .article.imgR {
    margin-left: 31em;
}
#sectionLeistungen .article, #sectionLeistungen h2, #sectionKontakt .article {
    left: 8%;
}
#sectionInfo #slideInfo .article {
    left: 0;
    margin-left: 1em;
    width: 100%;
	top:8%;
}
.infoColumn {
    line-height: 130%;
    margin-top:0;
}
#slideInfo .infoColumn {
	margin-right:2em;
}
#footer .infoColumn{
	margin-top:0.5em;
	margin-right:2em;
}
#footer .infoColumn p{
	margin-bottom:0.5em;
}
#footer p#copyright{
	margin-bottom:0.5em;
}
}
@media only screen and (max-width: 755px) {
#slideInfo .infoColumn {
	margin-right:5em;
}
#logo{
	width:14em;
}

#nav, .subNav {
    font-size: 1em;
}
#sectionAgentur .team .article {
    width: 24em;
	height:20em;
}
#sectionAgentur .ansprechpartner .article {
	height:20em;
}
#sectionAgentur .article.imgR {
    margin-left: 28em;
}
}
/***** Animation *****/
#sectionAgentur.active,#sectionPortfolio.active,#sectionLeistungen.active,#sectionReferenzen.active,#sectionKontakt.active{
	background-position: top;
}
.section.moveDown{
	background-position: center -300px !important;
}
.section.moveUp{
	background-position: center 300px !important;
}
.section.active,.section.active.moveUp,.section.active.moveDown{
	background-position: center top !important;
}
#superContainer{
	-webkit-transition: all 800ms ease-out 0s;
	-moz-transition: all 800ms ease-out 0s;
	-ms-transition: all 800ms ease-out 0s;
	transition: all 800ms ease-out 0s;
}
.section, .slide, .section h2{
	-webkit-transition: all 1000ms ease-out .6s;
	-moz-transition: all 1000ms ease-out .6s;
	-ms-transition: all 1000ms ease-out .6s;
	transition: all 1000ms ease-out .6s;
}
.section.moveUp .slide{
	margin-top:400px;
}
.section.moveUp.active .slide{
	margin-top:0;
}
#sectionAgentur.moveDown .slide h2,#sectionPortfolio.moveDown h2,#sectionLeistungen.moveDown h2{
	top:100%;
}
#sectionAgentur.moveDown.active .slide h2, #sectionAgentur.moveUp.active .slide h2,#sectionAgentur.active h2{
	top:23%;
}
#sectionPortfolio.moveDown.active h2, #sectionPortfolio.moveUp.active h2,#sectionPortfolio.active h2{
	top:18%;
}
#sectionLeistungen.moveDown.active h2, #sectionLeistungen.moveUp.active h2,#sectionLeistungen.active h2{
	top:25%;
}
#sectionAgentur.moveUp .slide h2,#sectionPortfolio.moveUp h2,#sectionLeistungen.moveUp h2{
	top:75%;
}
#sectionReferenzen h2{
	top:15%;
	left: 5%;
}
.section .article{
	-webkit-transition: all 700ms ease-out 0.6s;
	-moz-transition: all 700ms ease-out 0.6s;
	-ms-transition: all 700ms ease-out 0.6s;
	transition: all 700ms ease-out 0.6s;
}
.article.right{
	-webkit-transition: all 900ms ease-out .6s;
	-moz-transition: all 900ms ease-out .6s;
	-ms-transition: all 900ms ease-out .6s;
	transition: all 900ms ease-out .6s;
}

#sectionAgentur .slide .article{
	left:50%;
}
#sectionAgentur .slide.active .article{
	left:5%;
}
#sectionAgentur .slide .article.right {
    margin-left: 100%;
}
#sectionAgentur .slide.active .article.right {
    margin-left: 31em;
}
#sectionAgentur .slide.ansprechpartner.active .article.right {
    margin-left: 36em;
}

#button-up {
	transform: rotate(-90deg);
	font-size:3.5em;
	font-weight:300;
	position:absolute;
	top: 1rem;
	right: 3rem;
}
#button-up a, #button-up a:visited{
	display:block;
	width:1em;
	height:1em;
	border:2px solid rgb(255,255,255);
	border:2px solid rgba(255,255,255,0.35);
	border-radius:1em;
	background:rgb(1,1,1);
	background:rgba(1,1,1,0.25);
	text-align:center;
	line-height:75%;
}
#button-up a:hover{
	color:rgb(180,203,7);
}

.cc_message {
    text-align: center;
}

.section.active .da-btn {
	opacity: 1;
}

/*.da-btn {
	position: fixed;
	opacity: 0;
	bottom: .3em;
	background: white;
	left: 5.5em;
	border-radius: 0.5em 0.5em 0 0;
	overflow: hidden;
	text-align: center;
	transition: opacity .5s ease-in-out;
}*/

.da-btn {
	position: fixed;
	opacity: 0;
	bottom: .5em;
	left: 5.5em;
	transition: opacity .5s ease-in-out;
}

.da-btn .popupBtn:hover {
	background: none;
}

.da-btn span {
	display: block;
	font-size: 0.85em;
	font-weight: 400;
	margin: 0;
	padding: 0.25em .75em;
	background: #d32229;
	color: #fff;
}

.da-btn img {
	height: auto;
	width: 200px;
}

.da-btn.footer {
	position: relative;
	bottom: 0;
	top: 0;
	left: 0;
	margin-top: 0;
}

.da-btn.footer img {
	height: auto;
	width: 150px;
}

@media screen and (max-width: 768px) {
	.da-btn {
		position: relative;
		bottom: 0;
		top: 0;
		left: 0;
		margin-top: 3em;
	}
}

/**********************************
          mobile Ansicht
 **********************************/

/********* section ***************/
.mobileBG {
    display: none;
}
#mobileFooter {
    display: none;
}
.mobileVisible {
    display: none;
}
.typischContainer {
    height: 100vh;
}

@media screen and ( max-width: 768px) {
    
    body {
        font-size: 16px;
        line-height: 1.4;
        background: #fff;
    } 
    #header {
        height: 4rem;
    }

    .mobileHidden {
        display: none;
    }
    .mobileVisible {
        display: block;
    }
    
    #navBtn {
        position: fixed;
        top: 1.5em;
        right: 1em;
        width: 2.25em;
        padding: 0.5em;
        z-index: 999;
    }
    
    #navBtn span {
        display: block;
        height: 3px;
        width: 100%;
        background: #fff;
        margin-bottom: .5em;
    }
    
    #mobileNav {
        position: fixed;
        top: 0;
        left: 0;
        padding: 1em;
        width: calc(100vw - 2em);
        min-height: calc(100vh - 2em);
        max-height: calc(100vh - 2em);
        margin: 0;
        color: #fff;
        background: rgb(34,35,66);
        font-size: 1.25rem;
        transition: all .2s ease-in;
        overflow-y: scroll;
    } 
    
    #mobileNav.close{
        top: 100vh;
    } 
    
    #mobileNav .subMenu {
        font-size: 0.8em;
        margin-left: 1em;
    }
    
    #mobileNav > ul > li {
        border-bottom: 1px solid #fff;
        padding: 0.25em;
    }
    
    #mobileNav a {
        color: #fff;
    }
    
    #mobileFooter {
        display: block;
        position: fixed;
        left: 0;
        bottom: 0;
        padding: .5rem .5rem 0;
        font-size: 0.85em;
        width: 100vw;
        color: #fff;
        background: rgb(34,35,66);
		box-sizing: border-box;
		text-align: center;
    }
    
    #logo {
        width: 10rem;
        margin: 0 1.5rem 0 0;
    }

    h2 {
        color: #B4CB07;
        font-size: 1.25rem;
        font-weight: 700;
        width: 100%;
        margin: 0 !important;
        padding: .5rem 1rem;
        text-shadow: none !important;
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
    }
    
    h3 {
        margin-bottom: .5em;
    }
    
    
    .section, .slide, .section h2 {
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        transition: none;
    }
        
   .article{
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: auto !important;
        background: #fff;
       height: auto !important;
        max-height: calc(100vh - 50vw - 14rem) !important;
        padding: 0.5rem 1rem 1.5rem 1rem !important;
        margin: 0 !important;
        overflow-y: scroll;
           max-width: calc(100vw - 2.5rem );
    }
    .article:after {
        content="";
        display: block;
        height: 3rem;
        width: 100%;
    }
	#sectionHome .article,
    #sectionKontakt .article,
    #sectionDatenschutz .article,
    #sectionImpressum .article {
        max-height: calc(100vh - 50vw - 10.25rem) !important;
    }
    #sectionInfo #slideInfo .article {
        padding-bottom: 12em !important;
		box-sizing: border-box;
    }

	/*#sectionKontakt .typischContainer {*/
    /*    max-height: calc(100vh - 50vw - 8rem) !important;*/
    /*}*/

	.typischContainer {
		height: auto;
		/*max-height: calc(100vh - 50vw - 12rem) !important;*/
		overflow-y: scroll;
		padding-bottom: 1rem;
	}
    
    #sectionAgentur .typisch .article, #sectionAgentur .team .article, #sectionAgentur .ansprechpartner .article {
        height: auto;
        padding-bottom: 0 !important;
    }
    
    #sectionAgentur .article.imgR #slideshow ul, 
    #sectionAgentur .article.imgR #slideshow li {
        max-width:90vw !important;
        height: auto !important;
    }

    
    /* #sectionReferenzen .article table {
        display: none;
    } */
    .section,
    .section.active {
        background: none !important;
    }
    
    .mobileBG {
        display: block;
        width: 100vw;
        height: 50vw;
        margin-top: 4rem;
    }
    
    #sectionPortfolio .link span {
        display: inline-block;
        width: calc(100vw - 6em);
    }
    #sectionPortfolio hr:first-of-type {
        margin-top: 1em;
    }
    
    #sectionPortfolio .link p {
        margin: 0.25em;
    }

    #sectionReferenzen .typischContainer {
        max-height: calc(100vh - 4rem) !important;
    }
    
    #sectionReferenzen .article {
        max-height: 100% !important;
        padding-bottom: 4rem !important;
    }
    
    #sectionReferenzen .article table th {
        padding-right: 1em;
    }
    
    #sectionReferenzen .fullPage-slidesNav {
        display: none;
    }
    
    #sectionReferenzen .bg {
        width: 100vw;
        height: 50vw;
        margin-top: 4.0rem;
    }
    
    #sectionReferenzen .ref-text {
        position: relative;
        width: auto;
        padding: 0rem 1rem 1rem 1rem;
        overflow: auto;
    }
    
    #sectionReferenzen .controlArrow {
        left: auto;
        right: 1rem;
        top: calc(45vw + 6rem);
    }
    
    #sectionReferenzen .controlArrow.prev {
        right: 4rem;
        
    }
    
    .ref-logo {
        margin: 0.5em;
        text-align: left;
        width: 100%;
    }
    
    .ref-logo img {
        border: medium none;
        max-height: 4.0rem;
        max-width: 100%;
    }
    #sectionDatenschutz .article,
    #sectionImpressum .article,
    #sectionInfo #slideInfo .article {
        margin-top: 4.5rem !important;
        width: auto !important; 
        max-height: calc(100vh - 8.5rem) !important;
        color: inherit;
        overflow: auto;
    }
    
    #sectionInfo .article h3.large {
        font-size: calc(100vw * 0.045);
        font-weight: 300;
        line-height: 150%;
    }
    
        
    #sectionHome .mobileBG {
        background:url(../images/bg/home-mobile.webp) no-repeat;
        background-size: cover;
    }
    #sectionAgentur .mobileBG{
        background:url(../images/bg/agentur-mobile.webp) no-repeat;
        background-size:cover;
    }
    
    #sectionPortfolio .mobileBG{
        background:url(../images/bg/portfolio-mobile.webp) no-repeat;
        background-size:cover;
    }
    
    #sectionLeistungen .mobileBG{
        background:url(../images/bg/leistungen-mobile.webp) no-repeat;
        background-size:cover;
    }
    
    #sectionReferenzen .bg{
        background:url(../images/bg/referenzen-mobile.webp) no-repeat top left;
        background-size:cover;
    }
    
    #sectionKontakt .mobileBG{
        background:url(../images/bg/kontakt-mobile.webp) no-repeat bottom;
        background-size:cover;
    }
    
    /******** Referenzbilder ********/
    
    #feinschliff .bg {
        background: url(../images/bg/referenzen/feinschliff.jpg) 0% 25% no-repeat;
        background-size: cover;
    }
    
    #juechter .bg {
        background: url(../images/bg/referenzen/juechter.jpg) center bottom no-repeat;
        background-size: cover;
    }

    #brauer .bg{
        background:url(../images/bg/referenzen/brauer.jpg) 0% 65%  no-repeat;
        background-size:cover;
    }

    #jette-rwk .bg{
        background:url(../images/bg/referenzen/jette-rwk.jpg) center no-repeat;
        background-size:cover;
    }

    #jw-polymer .bg{
        background: url(../images/bg/referenzen/jw-polymertechnik.jpg) left bottom  no-repeat;
        background-size:cover;
    }

    #hm-pcc .bg {
      background:url(../images/bg/referenzen/bg-hm-pcc.jpg) top center no-repeat;
      background-size:cover;
    }

    #egp .bg{
        background:url(../images/bg/referenzen/egp-leer.jpg) 0% 35%  no-repeat;
        background-size:cover;
    }

    #it-xy .bg{
        background:url(../images/bg/referenzen/it-xy.jpg) 0% 15%  no-repeat;
        background-size:cover;
    }

    #sequentia .bg{
        background:url(../images/bg/referenzen/sequentia.jpg) 80% top  no-repeat;
        background-size:cover;
    }

    #zh-security .bg{
        background:url(../images/bg/referenzen/zh-security.jpg) left center  no-repeat;
        background-size:cover;
    }

    #seehundstation .bg{
        background:url(../images/bg/referenzen/seehundstation.jpg) 50% 40%  no-repeat;
        background-size:cover;
    }

    #beerepoot .bg{
        background:url(../images/bg/referenzen/beerepoot.jpg) 65% top  no-repeat;
        background-size:cover;
    }

    #poppens .bg{
        background:url(../images/bg/referenzen/poppens.jpg) 50% 30% no-repeat;
        background-size:cover;
    }

    #oiliva-greka .bg{
        background:url(../images/bg/referenzen/oiliva-greka.jpg) 50% 60%  no-repeat;
        background-size:cover;
    }

    #sectionReferenzen #oiliva-greka .ref-logo{
        text-align: left;
        margin-bottom: 0em;
    }

    #sectionReferenzen #oiliva-greka .ref-logo img{
        max-height: 7em;
    }

    #heikos-bueroladen .bg{
        background:url(../images/bg/referenzen/heikos-bueroladen.jpg) left center  no-repeat;
        background-size:cover;
    }

    #wohntheater .bg{
        background:url(../images/bg/referenzen/wohntheater.jpg) center top  no-repeat;
        background-size:cover;
    }

    #mvz-werlte .bg{
        background:url(../images/bg/referenzen/mvz-werlte.png) left center  no-repeat;
        background-size:cover;
    }

    #seyen .bg{
        background:url(../images/bg/referenzen/seyen.jpg) center top no-repeat;
        background-size:cover;
    }

    #lechtenberg .bg{
        background:url(../images/bg/referenzen/lechtenberg.jpg) 50% 65% no-repeat;
        background-size:cover;
    }

    #rechtliche-betreuer .bg{
        background:url(../images/bg/referenzen/rechtliche-betreuer.jpg) center bottom no-repeat;
        background-size:cover;
    }

    #familienservice .bg{
        background:url(../images/bg/referenzen/familienservice.jpg) left top no-repeat;
        background-size:cover;
    }

    #pflegedienst-lidia .bg{
        background:url(../images/bg/referenzen/pflegedienst-lidia.jpg) left top no-repeat;
        background-size:cover;
    }

	
	#sectionReferenzen * .bg.lazy {
		background: none;
	}
    
    
} /*** End media queries (max-width:450px) ***/


@media screen and (min-width: 769px) {
	#sectionReferenzen .typischContainer {
        display:flex;
		align-items: stretch;
		height: 100vh;
		width: 100vw;
    }
    
    #sectionReferenzen .bg {
		width: auto;
		flex: 1;
    }
	.ref-text {
		position: relative;
	}
}

/*** Start Cookie Banner ***/
.cc_container {
    background: rgba(45,45,45,0.95) !important;
}

a.cc_btn.cc_btn_accept_all {
    border: 1px solid #fff;
    background: none;
    border-radius: 0;
    color: #fff;
}

input[type="checkbox"] {
    margin-top: 10px;
    margin-right: 15px;
    float: left;
}
label {
    display: inline-block;
    max-width: 90%;
}
code {
    color: orange;
    font-family: monospace;
    font-size: 16px;
    background: #f7f7f7;
    padding: 3px 5px;
    border-radius: 3px;
    border: 1px solid #ebebeb;
}
button#ihavecookiesBtn {
    margin-left: 0px !important;
}
/* Cookie Dialog */
#gdpr-cookie-message {
    position: fixed;
    right: 30px;
    bottom: 30px;
    max-width: 22em;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 6px 6px rgba(0,0,0,0.25);
    margin-left: 30px;
    font-family: inherit;
    z-index: 9999;
}
#gdpr-cookie-message h4 {
    color: #5B87C4;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 10px;
}
#gdpr-cookie-message h5 {
    color: #5B87C4;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: none;
}
#gdpr-cookie-message p, #gdpr-cookie-message ul {
    color: inherit;
    font-size: 0.9em;
    line-height: 1.5em;
}
#gdpr-cookie-message p {
    margin-top: 0;
}
#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: right;
}
#gdpr-cookie-message li {
    width: 49%;
    display: inline-block;
}
#gdpr-cookie-message a {
    color: #5B87C4;
    text-decoration: underline;
    padding-bottom: 2px;
    border-bottom: 1px dotted rgba(255,255,255,0.75);
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message a:hover {
    color: white;
    border-bottom-color: #B4CB07;
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message button,
button#ihavecookiesBtn {
    border: none;
    background: #B4CB07;
    color: white;
    font-family: 'Quicksand', sans-serif;
    padding: 7px;
    border-radius: 3px;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message button:hover {
    background: white;
    color: #B4CB07;
    transition: all 0.3s ease-in;
}
button#gdpr-cookie-advanced {
    background: white;
    color: #5B87C4;
}
#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}
#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
}

#against-war {
	position: fixed;
	width: 30vw;
	max-width: 200px;
	z-index: 999;
	transform: rotate(5deg);
	left: 69rem;
	top: 2.25rem;
}

@media screen and (max-width: 1180px) {
	#against-war {
		left: auto;
		right: 1rem;
		top: 4rem;

	}
}