@charset "utf-8";

/*********
Allgemein
*********/
* {
	font-family: 'AkzidenzGroteskBE-LightCn', 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, 
h2 {
	font-family: 'AkzidenzGroteskBE-BoldCn';
	text-transform: uppercase;
	font-size: 3rem;
	font-weight: normal;
	color: #000;
	margin-bottom: 5px;
	padding-top: 5px;
    text-align: center;
}
.datenschutz-site h1 {
	margin-bottom: 30px;
}
.datenschutz-site h2 {
	font-size: 2rem;
    text-align: left;
	margin-top: 60px;
}

h3 {
	font-size: 2rem; /* 20px 20/16 = 1.25 */
	color: #000;
	text-transform: uppercase;
	margin-bottom: 15px;
	margin-top: 30px;
}

h4 {
	font-family: 'AkzidenzGroteskBE-BoldCn';
	font-size: 1.5rem;
	margin-bottom: 10px;
	margin-top: 20px;
}

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

.bg-black h1, 
.bg-black h2, 
.bg-black h3, 
.bg-black a {
	color: #fff;
}

p {
	font-size: 1.5rem;
	line-height: 1.7rem;
	margin-bottom: 15px;
}

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

p.lead {
	font-size: 1.7rem;
	font-weight: 700;
}

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

p.slogan {
	font-family: 'AkzidenzGroteskBE-Cn';
	text-transform: uppercase;
	font-size: 2rem;
	margin-bottom: 30px;
    text-align: center;
}

.big-text {
	font-family: 'AkzidenzGroteskBE-Cn';
	text-transform: uppercase;
	font-size: 2rem;
	line-height: 3rem;
}

@media 
only screen and (min-width : 220px) and (max-width : 599px) {
	h1, h2 {
		font-size: 2rem; /* 30px 32/16 = 2 */
	}
}

img {
	border: 0;
}

img.full, 
video.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: 20px; /* früher 15px */
	list-style-type: disc;
	font-size: 1.5rem;
}

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

.downloadlist li {
	list-style-type: none;
	padding-left: 0;
	margin-left: 0;
}
.downloadlist li a {
	background-image: url(../img/layout/icon-download.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 13px auto;
	padding-left: 20px;
}

.t-center {
    text-align: center;
}

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

a:hover {
	text-decoration: underline;
}

/* Buttons */
.btn a {
	display: block;
	padding: 15px;
	background: #000;
	color: #fff;
	text-align: center;
	text-decoration: none;
}

.bg-black .btn a {
    background: #fff;
    color: #000;
}

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

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

.btn.inline a {
	display: inline-block;
}

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


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

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

.bg-black {
	background: #000;
}

body .bg-black,
.bg-black p {
	color: #fff;
}

.splash {
	width: 100vw;
	height: 100vh;
	
	display: flex;
	justify-content: center;
	align-items: center;
}

.splash .infos {
	text-align: center;
}

.splash img {
	display: inline;
	width: 120px;
	height: auto;
	margin-bottom: 40px;
}
.splash p {
	text-align: center;
	font-size: 1.5rem;
}

header {
	position: relative;
}

header .logo {
	position: absolute;
	left: 50px;
	top: 50px;
}

.logo img {
	width: auto;
	height: 20vh;
}

header .main-nav {
	position: fixed;
	left: -180px;
	top: 20%;
	width: 180px;
	cursor: pointer;
	z-index: 20;
}
header .main-nav.open {
	left: 0;
}

header .quick-nav {
	position: absolute;
	bottom: 5vh;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 10;
}

header .notfall {
	position: absolute;
	top: 0;
	right: 50px;
}
header .notfall img {
	width: 16vw;
	max-width: 120px;
	min-width: 72px;
	height: auto;
}

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

.content {
	padding: 50px 0;
}
footer {
	padding: 25px 0;
}

footer {
	position: relative;
	width: 100%;
	text-align: center;
}

footer address {
	font-style: normal;
	font-size: 1.2rem;
	padding: 0 20px;
}

@media 
only screen and (min-width : 600px) and (max-width : 1390px) {
	.content-block-center {
		margin-left: 45px;
		margin-right: 45px;
		width: auto;
	}
}

@media 
only screen and (min-width : 600px) and (max-width : 879px) {
	header .quick-nav {
		bottom: 1.5vh;
	}
}

@media only screen and (min-device-width : 220px) and (max-device-width : 815px) and (orientation : landscape) {
	header .main-nav {
		top: 0;
	}
}

@media 
only screen and (min-width : 220px) and (max-width : 599px) {
	body {
		font-size: 90%; 
	}
	.content-block-center {
		margin-left: 20px;
		margin-right: 20px;
		width: auto;
	}
	
	header .logo {
		left: 20px;
		top: 20px;
	}
	header .notfall {
		right: 20px;
	}
	
	header .main-nav {
		left: -120px;
		top: 12%;
		width: 120px;
	}

	.logo img {
		width: 10vw;
		height: auto;
	}
	
	header .quick-nav {
		display: none;
	}
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
}

.skipp {
	position: absolute;
	right: 10px;
	bottom: 10px;
}

.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;
	}
}

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

.list li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

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

.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;
}

.list.service {
	margin-top: 50px;
}

.list.service li, 
.list.teamwork li {
	background: #1a1a1a;
	padding: 20px;
	width: calc(31% - 40px);
}

.list.teamwork {
    margin-bottom: 30px;
}
.list.teamwork li {
    background: #d7d7d7;
}

.list .info {
	padding: 30px;
}

.list.team, 
.list.news, 
.list.drei-spalten {
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
}

.list.team li, 
.list.news li {
	background: #1a1a1a;
}

.list.news .more {
	font-size: 1.2rem;
}

@media 
only screen and (min-width : 600px) 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.service li, 
    .list.teamwork li {
		width: calc(48.25% - 40px);
	}
	.list.drei-spalten.service li:nth-child(3n), 
    .list.drei-spalten.teamwork li:nth-child(3n) {
		width: 100%;
		margin-right: 0;
	}
	.front .list.news li:nth-child(3n) {
		display: none;
	}
	
}

@media 
only screen and (min-width : 220px) and (max-width : 599px) {
	.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
	}
}

/* Job-Kampagne */
.jobvideo {
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
}

.map {
	display: flex;
}
.map div {
	width: 50%;
	height: 400px;
	position: relative;
}
.map div:first-child {
	border-right: 1px solid #000000;
}
@media 
only screen and (min-width : 220px) and (max-width : 599px) {
	.map {
		flex-flow: column;
	}
	.map div {
		width: 100%;
		height: 300px;
	}
	.map div:first-child {
		border-right: 0;
		border-bottom: 1px solid #000000;
	}
}
.map h3,
.map a {
	text-align: center;
	position: absolute;
	color: #ffffff;
	background-color: #000000;
	padding: 10px 20px;
	margin-left: 50%;
	transform: translateX(-50%);
}
.map a {
	font-size: 1.2rem;
	bottom: 10px;
	text-decoration: none;
}
.map a:hover {
	background-color: #1a1a1a;
}
.map img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.mosparo__container {
	max-width: 100%;
}
.mosparo__label {
	font-size: 1.2rem !important;
	line-height: 1.2rem !important;
}

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

.main-nav {
	background: url(../img/layout/icon-menu.svg) right no-repeat;
	background-size: 50px auto;
	padding-right: 50px;
}

.main-nav ul {
	background: #000;
	padding: 50px;
}

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

.main-nav li a {
	display: block;
	padding: 5px 0;
	color: #aaa;
	font-size: 1.5rem;
	text-transform: uppercase;
	text-decoration: none;
}

.main-nav li.social {
	display: flex;
	justify-content: space-between;
}
.main-nav li.social a svg {
	height: 1.2rem;
	width: auto;
}

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

.main-nav li a.active {
	font-size: 2rem;
}

p.social a {
	margin-right: 5px;
}
p.social a:hover svg {
	color: #1a1a1a;
}
p.social svg {
	height: 1.5rem;
	width: auto;
}

.quick-nav ul li {
	display: inline-block;
	margin: 0 15px;
	padding: 0;
	background-color: #000;
	width: 160px;
}
.quick-nav ul li:hover, 
.quick-nav ul li.active {
	background-color: #1a1a1a;
}

.quick-nav ul li a {
	display: block;
	text-align: center;
	text-decoration: none;
	font-size: 2rem;
	color: #fff;
	text-transform: uppercase;
	padding: 20px;
}
.quick-nav ul li a img {
	height: 1.7rem;
	width: auto;
}


@media 
only screen and (min-width : 600px) and (max-width : 879px) {
	.main-nav {
		background-size: 40px auto;
		padding-right: 40px;
	}
	.quick-nav ul li {
		margin: 0 10px;
		width: 120px;
	}
	.quick-nav ul li a {
		font-size: 1.5rem;
		padding: 15px;
	}
}
@media 
only screen and (min-width : 220px) and (max-width : 599px) {
	.main-nav {
		background-size: 30px auto;
		padding-right: 30px;
	}
	.main-nav ul {
		padding: 25px;
	}
	.main-nav li a {
		font-size: 1.2rem;
	}
	.main-nav li a.active {
		font-size: 1.6rem;
	}
	.main-nav li.social a svg {
		height: 0.9rem;
	}
}

/*********
Accordion
*********/
.ct-accordion {
	margin-bottom: 20px;
}

.ui-corner-all, 
.ui-corner-top, 
.ui-corner-left, 
.ui-corner-tl {
	
}

.ui-accordion .ui-accordion-header {
	background: #1a1a1a;
	text-transform: initial;
	font-size: 1.5rem;
	display: flex;
}

.ui-icon {
	width: 16px;
	height: 16px;
	background-image: url("../libs/jquery-ui/images/ui-icons_ffffff_256x240.png");
	flex-shrink: 0;
	margin-top: .25em;
	margin-right: .25em;
}

.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-s { background-position: -65px -16px; }

.ui-accordion .ui-accordion-content {
	padding: 1.25em 2.5em;
	hyphens: auto;
	
	-webkit-hyphenate-limit-before: 3; /* For Safari */
	-webkit-hyphenate-limit-after: 4; /* For Safari */
	hyphenate-limit-chars: 10 3 4;
}

/*********
Tabellen
*********/
table, tbody, thead {
	width: 100%;
	padding: 0;
	margin: 0;
	border: 0px;
	margin-bottom: 15px;
}

tr, td, th {
	border: 0px;
}

/*tr:nth-child(even) {
	background-image:url(../img/layout/bg_weiss60.png);
}*/

tr {
	padding: 0px;
	margin: 0px;
}

tr:hover {
	background-color: #A4A4A4;
}

th {
	padding: 8px;
	border-bottom: 1px solid #000;
	vertical-align: top;
	text-align: left;
	color: #fff;
	font-weight: bold;
	background-color: #333;
}


td {
	margin: 0;
	padding: 8px;
	border-bottom: 1px dotted #000;
	vertical-align: top;
	text-align: left;
}

/*********
Formulare
*********/
form {
	overflow: hidden;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

form p {
	padding-bottom: 10px;
}

legend {
	padding: 0;
	margin: 0;
	margin-bottom: 7px;
	font-size: 1rem;
	text-transform: uppercase;
}

label {
	display: block;	
	margin-bottom: 5px;
}

label.inline {
	display: inline;
}

input, 
select, 
textarea {
	background-color: #A4A4A4;
	color: #000;
	border: 0;
	padding: 8px;
	width: 100%;
	margin-bottom: 8px;
}

/* Autocomplete Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus
input:-webkit-autofill, 
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 0;
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0 0 #000 inset;
  transition: background-color 5000s ease-in-out 0s;
}

input, 
textarea {
	width: 90%;
	width: calc(100% - 16px);
}

textarea {
	height: 120px;
}

input:focus,
textarea:focus {
	border-color: #333;
	outline: none;
}

input[type="checkbox"], 
input[type="radio"] {
	width: auto;
	margin-right: 5px;
	border: 0;
}

input[type="checkbox"] {
	border: 0;
	background: #fff;
	padding: 0px;
}

input[type="submit"], 
button[type="submit"] {
	width: 100%;
	background: #333;
	color: #fff;
}

input[type="submit"]:hover {
}

input.pflicht, 
textarea.pflicht {
	/*border-right: 3px solid #000;*/
}

.validationerror {
	background: #830b14;
	color: #fff;
	padding: 8px;
	margin-bottom: 1px;
	width: 50%;	

}

.left {
	text-align: left;
}

p.form-half,
p.error.form-half {
	width: 47.5%;
	margin-right: 5%;
	float: left;
}

p.form-half.last-column,
p.error.form-half.last-column {
	margin-right: 0px;
	
}

@media 
only screen and (min-width : 220px) and (max-width : 879px) {
	input, 
	select,
	textarea,
	input[type="submit"],
	button[type="submit"],
	input[type="submit"]:hover, 
	.validationerror
	 {
		width: 90%;
		width: calc(100% - 16px);
	}

	input, 
	select, 
	input[type="submit"],
	button[type="submit"],
	input[type="submit"]:hover {
		width: 100%;
	}
}

/*********
Masonry Box-System
*********/
.masonry-box {
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.masonry-box .box-item {
	margin-bottom: 35px;
	
}

/* Salvattore - Masonry */
/* These are the classes that are going to be applied: */
.masonry-box .column { 
	float: left;
}

.masonry-box .size-1of4, 
.masonry-box .size-1of3, 
.masonry-box .size-1of2 { 
	margin: 0;
	padding: 0;
	float: left;
	width: 22.375%;
	margin-right: 3.5%;
}

.masonry-box .size-1of3 { 
	width: 31%;
}

.masonry-box .size-1of2 {
	width: 48%;
	margin-right: 4%;
}

.masonry-box .size-1of1 {
	width: 100%;
	margin-right: 0;
}

.masonry-box .size-1of4:nth-child(4n), 
.masonry-box .size-1of3:nth-child(3n), 
.masonry-box .size-1of2:nth-child(2n) {
	margin-right: 0;
}

@media screen and (min-width: 880px) and (max-width: 5000px) {
	.masonry-box[data-columns]::before {
		content: '3 .column.size-1of3';
	}
	.vier-spalten.masonry-box[data-columns]::before {
		content: '4 .column.size-1of4';
	}
}
@media screen and (min-width: 600px) and (max-width: 879px) {
	.masonry-box[data-columns]::before {
		content: '2 .column.size-1of2';
	}
}
@media screen and (max-width: 599px){
	.masonry-box[data-columns]::before {
		content: '1 .column.size-1of1';
	}
}
