@charset "utf-8";

/*********
Allgemein
*********/
* {
	font-family: 'HelveticaNeueLTPro-Roman', Helvetica, Arial, sans-serif;
}

html {
	height: 100%;
}

a:link,
a:visited,
a:hover,
a:active {
	outline: 0;
}

/*********
Allgemeine Responsive Klassen für Geräte
*********/
/* Desktop */
@media 
only screen and (min-width : 880px) {
	.desktop-off, 
	.tablet-on,
	.phone-on {
		display: none;
	}
	.desktop-on, 
	.tablet-off, 
	.phone-off {
		display: block;
	}
}
/* Tablets */
@media 
only screen and (min-width : 600px) and (max-width : 879px) {
	.tablet-off,
	.desktop-on, 
	.phone-on {
		display: none;
	}
	.tablet-on,
	.desktop-off, 
	.phone-off {
		display: block;
	}
}
/* Mobile */
@media 
only screen and (min-width : 220px) and (max-width : 599px) {
	.phone-off,
	.desktop-on, 
	.tablet-on
	 {
		display: none;
	}
	.phone-on, 
	.desktop-off, 
	.tablet-off {
		display: block;
	}
}

/*********
Allgemeine Content Styles
*********/
h1, h2, h3, p {
	margin: 0;
	padding: 0;
}

h1 {
	font-family: 'HelveticaNeueLTPro-HvCn';
	font-size: 3.25rem;  
	font-weight: normal;
	color: #0181c4;
	margin-bottom: 1.875rem;
}

h2 {
	font-family: 'HelveticaNeueLTPro-HvCn';
	font-size: 3.25rem; /* 30px 32/16 = 2 */
	font-weight: normal;
	color: #0181c4;
	margin-bottom: 2.25rem;
	margin-top: 2.5rem;
}

h3 {
	font-family: 'HelveticaNeueLTPro-HvCn';
	font-size: 2rem; /* 20px 20/16 = 1.25 */
	color: #0181c4;
	margin-bottom: 10px;
	margin-top: 30px;
}

h4 {
	font-family: 'HelveticaNeueLTPro-HvCn';
	font-size: 1.5rem; /* 20px 20/16 = 1.25 */
	color: #0181c4;
	margin-bottom: 5px;
	margin-top: 15px;
}

h2:first-child, 
h3:first-child {
	margin-top: 0;	
} 

p {
	font-family: 'HelveticaNeueLTPro-Roman', Helvetica, Arial, sans-serif;
	font-size: 1.25rem; /* 12px 12/16 = 0.75 */
	line-height: 2rem;
	margin-bottom: 15px;
}

p:last-child {
	margin-bottom: 0;
}

p.lead {
	font-size: 1.5rem;
	line-height: 2.25rem;
	font-weight: normal;
}

p.date {
	font-size: 0.8rem;
}

b, strong {
	font-family: 'Helvetica Neue LT Pro';
}

address {
	display: flex;
	font-style: normal;
}
address p {
	margin-right: 50px;
}

address p span {
	display: inline-block;
	width: 68px;
}

.impressum-datenschutz-site address {
	display: block;
}

.impressum-datenschutz-site h2 {
	font-size: 2.75rem;
}

.center {
	text-align: center;
}

@media 
only screen and (min-width : 600px) and (max-width : 879px) {
	address {
		flex-wrap: wrap;
	}
}

@media 
only screen and (min-width : 220px) and (max-width : 599px) {
	h1 {
		font-size: 2.5rem; /* 30px 32/16 = 2 */
	}
	h2 {
		font-size: 2.4rem; /* 30px 32/16 = 2 */
		margin-bottom: 1.5rem;
	}
	p.lead {
   		font-size: 1.25rem;
    	line-height: 2rem;
    	font-weight: normal;
	}
	p {
    	font-size: 1.2rem;
    	line-height: 1.75rem;
	}
	.impressum-datenschutz-site h2 {
		font-size: 1.75rem;
	}
	.impressum-datenschutz-site h3 {
		font-size: 1.5rem;
	}
	h4 {
		font-size: 1.25rem; /* 20px 20/16 = 1.25 */
	}
	address {
    	display: block;
	}
	address p {
   		margin-right: 0px;
	}
	address p span {
    	display: none;
	}
}

img {
	border: 0;
}

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

.img-right {
	float: right;
	margin-left: 15px;
	margin-bottom: 15px;
}

.img-left {
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
}

@media 
only screen and (min-width : 220px) and (max-width : 599px) {
	.img-right {
		float: none;
		display: block;
		width: 100%;
		margin-left: 0px;
	}
	.img-left {
		float: none;
		display: block;
		width: 100%;
		margin-right: 0px;
	}
}

ul, ol {
	padding: 0;
	margin: 0;
	margin-bottom: 15px;
} 

li {
	padding-bottom: 10px;
	padding-left: 8px;
	margin-left: 15px;
	list-style-type: disc;
	font-size: 1rem; /* 12px 12/16 = 0.75 */
}

ol li {
	list-style-type: decimal;
}

/*Links*/
a {
	color: #000;
	text-decoration: underline;
}

a:hover {
	color: #333;
	text-decoration: none;
}

a[href^="mailto:"],
a[href^="tel"] {
	color: #000;
}

/* Buttons */
.btn a {
	display: block;
	padding: 15px;
	background: #fff;
	color: #0181c4;
	text-align: center;
	text-decoration: none;
    font-family: 'HelveticaNeueLTPro-HvCn';
    font-weight: normal;
}

.btn a:hover {
	background: #0181c4;
    color: #fff;
}

.btn.inline a {
	display: inline-block;
    margin-top: 40px;
}

.btn.inline.right {
	text-align: right;
}

/*********
Raster-Styles
*********/
body {
	font-size: 100%; /* 16px = 1rem */
	height: 100%;
}

body, img, p, tr, td {
	color: #000;
}

header {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
}

.content-block-center {
	width: 100%;
	max-width: 1620px;
	margin-left: auto;
	margin-right: auto;
}

header .content-block-center {
	display: flex;
	justify-content: space-between;
	padding: 20px 0;
}

.content {
	padding-top: 80px;
	padding-bottom: 80px;
}

.content:last-of-type {
	padding-bottom: 0px;
}

#einleitung {
	padding-top: 60px;
	padding-bottom: 30px;
}

#angebot {
	background-image: url("../img/layout/bg-angebot.jpg");
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: cover;
}

.ct-images {
	position: relative;
}

.grid-1.ct-images:last-of-type {
	margin-bottom: 0;
}

.ct-images .ct-image-1 {
	width: 80%;
	height: auto;
	margin-right: 20%;
}

.ct-images.last-grid .ct-image-1 {
	margin-left: 20%;
	margin-right: 0;
}

.ct-images .ct-image-2 {
	width: 56%;
	height: auto;
	margin-left: 44%;
	margin-top: -370px;
}

.ct-images.last-grid .ct-image-2 {
	margin-left: 0;
}

#logo img {
	width: auto;
	height: 60px;
}

#map {
	margin-top: 40px;
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
}
@media 
only screen and (min-width : 600px) and (max-width : 1690px) {
	.content-block-center {
		margin-left: 45px;
		margin-right: 45px;
		width: auto;
	}
}
@media 
only screen and (min-width : 600px) and (max-width : 879px) {
	.ct-images .ct-image-1 {
		width: 100%;
		margin-bottom: 15px;
	}
	.ct-images.last-grid .ct-image-1 {
		margin-left: 0%;
	}
	.ct-images .ct-image-2 {
		width: 100%;
		margin-top: 0;
		margin-left: 0;
	}
	.grid-1.last-grid.ct-images {
		margin-bottom: 0;
	}
	.content:last-of-type {
		padding-top: 0px;
	}
}
@media 
only screen and (min-width : 220px) and (max-width : 599px) {
	body {
		font-size: 90%; 
	}
	.image-full {
		margin-top: 55px;
	}
	section#einleitung {
		padding-top: 30px;
	}
	.content-block-center {
		margin-left: 20px;
		margin-right: 20px;
		width: auto;
	}
	.content {
    	padding-top: 60px;
    	padding-bottom: 60px;
		text-align: center;	
	}
	#angebot {
		padding-top: 0;
		padding-bottom: 0;
	}
	#angebot .grid-2 {
		display: flex;
		flex-wrap: wrap;
	}
	#angebot .grid-2 .ct-images {
		order: 2;
	}
	#angebot .grid-2 .text {
		order: 1;
	}
	#kontakt {
		padding-top: 0;
	}
	#map {
		margin-top: 60px;
	}
	.ct-images.last-grid .ct-image-1 {
		margin-left: 20%;
	}
	.ct-images.last-grid .ct-image-2 {
   		margin-left: 0;
    	margin-right: 44%;	
	}
	
	.ct-images .ct-image-2 {
		margin-top: -25%;
	}
	.grid-1.ct-images:last-of-type {
	margin-bottom: 60px;
	}
}

footer {
	position: relative;
	padding: 20px;
}

footer p {
	text-align: right;
}

.skipp {
	position: absolute;
	left: 20px;
	bottom: 20px;
}

.skipp img {
	display: block;
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	/* IE 5-7 */
	filter: alpha(opacity=70);
	/* Netscape/FireFox */
	-moz-opacity: 0.7;
	/* Safari 1.x */
	-khtml-opacity: 0.7;
	/* aktuelle Browser */
	opacity: 0.7;
}
@media 
only screen and (min-width : 220px) and (max-width : 599px) {
	.skipp {
		display: none;
	}
	footer p {
    text-align: center;
	}
}

/*********
Tools & spezifische Content-Styles
*********/
ul.list {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.list li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	margin-right: 0%;
	margin-bottom: 3.5%;
}

.list li a {
	text-decoration: none;
	display: inline-block;
}

.list.sieben-spalten li {
	width: 11.28%;
	margin-right: 3.5%;
	margin-bottom: 3.5%;
	float: left;
}

.list.sieben-spalten li:nth-child(7) {
	margin-right: 0px;
}

.list.vier-spalten li {
	width: 22.375%;
	margin-right: 3.5%;
	margin-bottom: 3.5%;
	float: left;
}

.list.drei-spalten li {
	width: 31%;
	margin-right: 3.5%;
	margin-bottom: 3.5%;
	float: left;
}

.list.zwei-spalten li, 
.list.zwei-spalten.news.front li {
	width: 48.25%;
	margin-right: 3.5%;
	margin-bottom: 3.5%;
	float: left;
}

.list.vier-spalten li:nth-child(4n),
.list.drei-spalten li:nth-child(3n), 
.list.zwei-spalten li:nth-child(2n), 
.list.zwei-spalten.news.front li:nth-child(2n) {
	margin-right: 0;
}

ul.kunden {
	 display: flex;
    align-items: center;
	margin-bottom: 0px;
	margin-top: 100px;
}

ul.kunden.list.sieben-spalten li {
	margin-bottom: 0%;
}

ul.kunden.list.sieben-spalten li img {
	width: 100%;
}

@media 
only screen and (min-width : 700px) and (max-width : 879px) {
	.list.vier-spalten li, 
	.list.vier-spalten li:nth-child(4n), 
	.list.drei-spalten li, 
	.list.drei-spalten li:nth-child(3n) {
		width: 48.25%;
		margin-right: 3.5%;
	}
	.list.vier-spalten li:nth-child(2n), 
	.list.drei-spalten li:nth-child(2n) {
		margin-right: 0;
	}
	.list.sieben-spalten li {
		width: 22.375%;
		width: calc(22.375% - 60px);
		margin-right: 3.5%;
		margin-bottom: 3.5%;
		float: left;
	}
	.list.sieben-spalten li:nth-child(4n) {
		margin-right: 0;
	}
	.list.sieben-spalten li:nth-child(1),
	.list.sieben-spalten li:nth-child(2),
	.list.sieben-spalten li:nth-child(3),
	.list.sieben-spalten li:nth-child(4){
		padding-bottom: 7%;
	}
	ul.kunden {
		flex-wrap: wrap;
		align-items: stretch;
	}
	ul.list.sieben-spalten.kunden li {
		border: 0px;
		padding: 30px;
		background:rgba(244,244,244,1.00);
		margin-bottom: 3.5%;
		display: flex;
	}
	ul.list.sieben-spalten.kunden li a {
		    align-items: center;
		display: flex;
	}
}

@media 
only screen and (min-width : 220px) and (max-width : 699px) {
	.list.zwei-spalten li, 
	.list.zwei-spalten.news.front li, 
	.list.zwei-spalten li:nth-child(2n), 
	.list.zwei-spalten.news.front li:nth-child(2n),
	.list.drei-spalten li, 
	.list.drei-spalten li:nth-child(3n), 
	.list.drei-spalten li:nth-child(2n), 
	.list.vier-spalten li, 
	.list.vier-spalten li:nth-child(4n), 
	.list.vier-spalten li:nth-child(2n) {
		width: 100%;
		margin-right: 0%;
		float: none;
		display: block
	}
	.list.sieben-spalten li {
		width: 46.5%;
		width: calc(46.5% - 100px);
		margin-right: 3.5%;
		padding-bottom: 3.5%;
		float: left;
	}
	.list.sieben-spalten li:nth-child(2n) {
		margin-right: 0;
	}
	.list.seiben-spalten li:last-child {
		padding-bottom: 0;
	}
	ul.kunden {
		flex-wrap: wrap;
		align-items: stretch;
	}
	ul.list.sieben-spalten.kunden li {
		border: 0px;
		padding: 50px;
		background:rgba(244,244,244,1.00);
		margin-bottom: 3.5%;
		display: flex;
	}
	ul.list.sieben-spalten.kunden li a {
		align-items: center;
		display: flex;
	}
}

/* Bilder-Galerie */
#impressionen-bilder a {
    position: relative;
}

#impressionen-bilder a div.mask {
    display: none;
}

#impressionen-bilder a:hover div.mask {
	display: flex;
    flex-direction: column;
    justify-content: flex-end;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	text-align: left;
}

#impressionen-bilder a div.mask:before {
	content: url("../img/layout/arrow-referenzen.png");
	color: white;
	position: absolute;
	top: 25px;
	right: 25px;
}

#impressionen-bilder a div.mask span {
	text-align: right, end;
    display: inline-block;
	font-size: 1rem;
	color: #f6f6f6;
	padding:25px;
	font-family: 'HelveticaNeueLTPro-Roman', Helvetica, Arial, sans-serif;
}

.slick-dots li.slick-active button:before {
    opacity: 1.0;
    color: #0181c4 !important;
	font-size: 10px;
}

.slick-dots li button:before {
	opacity: 0.75 !important;
}

.slick-dots {
	bottom: -50px !important;
}

iframe {
	padding-top: 80px;
}

/*********
Navigation
*********/
.main-nav ul {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.main-nav ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	float: left;
}

.main-nav li a {
	font-family: 'HelveticaNeueLTPro-HvCn';
	display: block;
	margin-left: 45px;
	color: #000;
	font-size: 1.2rem;
	text-decoration: none;
}

.main-nav li:first-child a {
	margin-left: 0px;
}

.main-nav li a.active, 
.main-nav li a:hover {
	color: #0181c4;
}

@media 
only screen and (min-width : 600px) and (max-width : 800px) {
	.main-nav li a {
		margin-left: 25px;
	}
}

@media 
only screen and (min-width : 220px) and (max-width : 599px) {
	.main-nav ul li {
		float: none;
		text-align: right;
	}
	.main-nav li a {
		margin-left: 0px;
		margin-bottom: 5px;
		font-size: 1.25rem;
	}
}