@charset "utf-8";

/*********
Allgemein
*********/
* {
	font-family: 'CordiaNew', 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: 'HandelGotD-Ligh';
	font-size: 2.5rem; /* 40px 40/16 = 2.5 */
	font-weight: 700;
	margin-bottom: 30px;
	text-transform: uppercase;
}

h2 {
	font-family: 'HandelGotD-Ligh';
	font-size: 1.9rem; /* 30px 32/16 = 2 */
	font-weight: 700;
	text-transform: uppercase;
}

.index-site h2 {
	margin-bottom: 30px;
}

#wall h2 {
	font-size: 1rem;
}

h3 {
	font-family: 'HandelGotD-Ligh';
	font-size: 1.25rem; /* 20px 20/16 = 1.25 */
	margin-bottom: 10px;
	margin-top: 30px;
	text-transform: uppercase;
}

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

p {
	font-size: 1.4rem; /* 12px 12/16 = 0.75 */
	margin-bottom: 15px;
}

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

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

.center {
	text-align: center;
}

@media 
only screen and (min-width : 220px) and (max-width : 879px) {
	h1 {
		font-size: 2.2rem;
		margin-bottom: 25px;
	}
	h2 {
		font-size: 1.8rem;
	}
}

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 {
	text-decoration: none;
}

/* Buttons */
.btn a {
	display: block;
	padding: 15px;
	background: #000; /*gem. Screendesign #a3a3a3*/
	color: #fff; 
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 8px;
}

.btn a:hover {
	background: #e20613; /*gem. Screendesign #000*/
}

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

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

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


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

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

.content-block-center {
	width: 100%;
	max-width: 1020px;
	margin-left: auto;
	margin-right: auto;
	
	padding-top: 40px;
	padding-bottom: 40px;
}

header {
	text-align: center;
	background: url(../img/layout/bg-sprialen-alle.png);
	background-size: contain;
	background-repeat: no-repeat;
}

header .content-block-center {
	padding-top: 150px;
	padding-bottom: 150px;
}

.logo {
	width: 40%;
	display: inline-block;
}

.logoadress {
	width: 30%;
	margin-right: 5%;
	float: left;
/*	margin-top: 5%;*/
}

.adresssektion {
	padding-top: 0px;
	padding-bottom: 0px;
	text-align: center;
	font-size: 1.4rem;
	color: #a3a3a3;
	 -moz-text-align-last: justify;
    text-align-last: justify;
	margin-top: 5%;
}

.adresssektion a {
	text-decoration: none;
	color: #a3a3a3;
}

.logoadress.last-child {
	margin-right: 0px;
}

.logoadress.left {
	text-align: left;
}

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

.logoadress.right {
	text-align: right;
}

.content {

}

.content.angebot, 
.content.about, 
.content.kontakt {
	background-image: url(../img/layout/bg-spiralen-rot.png);
	background-position: right top;
	background-repeat: no-repeat;
	background-size: 60% auto;
	padding-top: 120px;
}

.content.about,
.content.kontakt {
	background-image: url(../img/layout/bg-spiralen-gruen.png);
	background-position: left top;

}

.content.angebot.blue {
	background-image: url(../img/layout/bg-spiralen-blau.png);
    background-position: left top;
}

.galerie {
	margin-top: 80px;
}

address {
	overflow: hidden;
	text-align: center;
}

address div {
	text-align: left;
	vertical-align: top;
	display:  inline-block;
	width: 25%;	
}

address div p {
	background: url(../img/layout/icon-ort.svg) no-repeat left 0 top 0.4rem;
	background-size: 15px auto;
	padding-left: 20px;
	font-style: normal;
	line-height: 1.4rem;
	background-position-y: top;
}

address div p.mail {
	background-image: url(../img/layout/icon-mail.svg);
	background-position-y: center;
}
address div p.tel {
	background-image: url(../img/layout/icon-tel.svg);
	margin-bottom: 0px;
	background-position-y: center;
}
address div p.tel a,
address div p.mail a,

a.phone
{
	text-decoration: none;
	color: #000;
}

footer {
	position: relative;
	background: #a3a3a3;
	padding: 30px;
}
footer p {
	padding: 0;
	margin: 0;
}

@media 
only screen and (min-width : 600px) and (max-width : 1110px) {
	.content-block-center {
		margin-left: 45px;
		margin-right: 45px;
		width: auto;
	}
	.content.angebot, 
	.content.about, 
	.content.kontakt {
		background-size: 80% auto;
	}
}

@media 
only screen and (min-width : 220px) and (max-width : 879px) {
	.galerie {
		margin-top: 0;
	}
}

@media 
only screen and (min-width : 220px) and (max-width : 599px) {
	body {
		font-size: 90%; 
	}
	header .content-block-center {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.logo {
		width: 60%;
		display: inline-block;
	}
	.content-block-center {
		margin-left: 30px;
		margin-right: 30px;
		width: auto;
	}
	address div {
		width: 100%;	
	}
	address div:first-child {
		margin-bottom: 15px;
	}
	.content.angebot, 
	.content.about, 
	.content.kontakt {
		background-size: 90% auto;
	}
}

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

/* Produkte/Angeobte */
.list.produkte a {
	position: relative;
	display: block;
}
.list.produkte img {
	display: block;
	width: 100%;
	height: auto;
}

.list.produkte div {
	display: none;
}

.list.produkte a:hover div {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
	
	text-align: center;

	background: #e20613; /*gem. Screendesign #000*/
	border-radius: 60px;
}

.list.produkte a div span {
	display: block;
	width: 100%;
	text-align: center;
	color: #fff;
	margin-top: 43%; /*vorher mit 1.4rem line-height 40%*/
	font-size: 1.1rem;
	line-height: 1.1rem;
}

.list.produkte a div span.spez {
	margin-top: 35%;
}

/* Team */
.list.team li {
	
	position: relative;
}

/*** TEAM bis Bilder geliefert werden auskommentiert ***/
.list.team div {
	/*display: none;*/
}

.list.team a {
	display: block;
}

.list.team a:hover div {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	text-align: center;
}

/*** TEAM bis Bilder geliefert werden ***/
.list.team a div {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	text-align: center;
}

.list.team a div span {
	display: inline-block;
	padding-top: 20%;
	font-size: 1.1rem;
	color: #bcbcbc;
}

@media 
only screen and (min-width : 220px) and (max-width : 879px) {
	.list.produkte div {
		display: block;
		text-align: center;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.list.produkte a div, 
	.list.produkte a:hover div{
		position: relative;
		background-color: transparent;
		border-radius: 0;
		line-height: 1.2rem;
	}

	.list.produkte a div span {
		display: block;
		width: auto;
		margin-top: 0;
		color: #000;
	}
	
	.list.produkte a div span.spez {
		margin-top: 0;
	}
		
}

@media 
only screen and (min-width : 600px) and (max-width : 879px) {
	.list.drei-spalten li, 
	.list.drei-spalten li:nth-child(3n) {
		width: 48.25%;
		margin-right: 3.5%;
	}
	.list.drei-spalten li:nth-child(2n) {
		margin-right: 0;
	}
	#wall .list.drei-spalten li:nth-child(3){
		display: none;
	}
	
}

@media 
only screen and (min-width : 220px) and (max-width : 599px) {
	.list.vier-spalten li, 
	.list.vier-spalten li:nth-child(4n) {
		width: 48.25%;
		margin-right: 3.5%;
	}
	.list.vier-spalten li:nth-child(2n) {
		margin-right: 0;
	}
	
	.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) {
		width: 100%;
		margin-right: 0%;
		float: none;
		display: block
	}
	
	#wall .list.drei-spalten li {
		margin-bottom: 40px;
	}
	
	#wall .list.drei-spalten li:nth-child(2),
	#wall .list.drei-spalten li:nth-child(3){
		display: none;
	}
	
	/*.list.team div {
		display: block;
	}
	
	.list.team a div, 
	.list.team a:hover div {
		display: block;
		position: relative;
		width: auto;
		height: auto;
		background-color: transparent;
		text-align: center;
	}
	.list.team a div span {
		padding-top: 10px;
		padding-bottom: 10px;
		color: #000;
		line-height: 1.2rem;
	}*/
}

/*********
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 {
	display: block;
	background: #000;
	padding: 5px;
	margin-right: 10px;
	color: #fff;
	font-size: 1rem;
	text-decoration: none;
}

.main-nav li a.active, 
.main-nav li a:hover {
	background: #C00003;
}

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

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: #e3b2b3;
}

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


td {
	margin: 0;
	padding: 2px;
	border-bottom: 1px dotted #333;
	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;	
	font-size: 0.75rem;
	margin-bottom: 5px;
}

label.inline {
	display: inline;
}

input, 
select, 
textarea {
	background-color: #fff;
	color: #000;
	border: 0;
	padding: 8px;
	font-size: 0.75rem;
	width: 100%;
	margin-bottom: 8px;
}

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

textarea {
	height: 120px;
}

input:focus {
	/*border-color: #2A8E01;*/
}

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"] {
	background-color: #fff;
	width: 100%;
}

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

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

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

@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 (max-width: 879px){
	.masonry-box[data-columns]::before {
		content: '2 .column.size-1of2';
	}
}

@media screen and (min-width: 220px) and (max-width: 599px) {
	.masonry-box .box-item {
		margin-bottom: 15px;

	}
}
