


body {
    background: #ffffff;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    margin: 0; padding: 0;
	color: var(--primary);
    font-size: 1.6em;
	font-weight: 300;
	font-family: var(--font);
}

* {
  box-sizing: border-box;
}

html,
body {
    height: 100%;
}


@media screen and (min-width:576px) {
	body {
      padding-top: 0px;
    font-size:1.8em;
    }
}


@media screen and (min-width:768px) {
	body {
      padding-top: 0px;
        font-size: 2em;
    }
}


header {
    position: relative; 
    width: 100%;
	height: 70vH;
	text-align: center;
} 

header.start {
    position: relative; 
    width: 100%;
	height: auto;
	text-align: center;
	padding-top: 70px;
}

#headerimage img {
    width: 100%;
}

#headerverlauf {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: -webkit-linear-gradient(left, #ba0d14, #e31c1a, #ffcb20);
	background: -o-linear-gradient(left, #ba0d14, #e31c1a, #ffcb20);
	background: linear-gradient(to right, #ba0d14, #e31c1a, #ffcb20);
	mix-blend-mode: multiply;
}

#verlauf {
	width: 100%;
	height: 50px;
	z-index: 1;
	background: -webkit-linear-gradient(left, #ba0d14, #e31c1a, #ffcb20);
	background: -o-linear-gradient(left, #ba0d14, #e31c1a, #ffcb20);
	background: linear-gradient(to right, #ba0d14, #e31c1a, #ffcb20);
	mix-blend-mode: multiply;
}

@media screen and (min-width:768px) {
	#verlauf {
		height: 100px;
	}
}

#imageslider {
	height: 100%;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: auto;
}

.sliderextra {
	width: 100%;
}

.slickslider {
	padding: 0px !important;
}

.slickslider .slide {
    background: #fff;
	height: 70vH;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    background-repeat: no-repeat;
	position: relative;
	padding: 0px !important;
	margin: 0px !important;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-filter: opacity(.7);
    filter: opacity(.7);
}

.slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.slick-slide {
    height: auto;
}

.slick-list {
    padding: 0px !important;
	width: 100%;
}


.slickslider a:hover img {
	-webkit-filter: grayscale(1);
    filter: grayscale(1);
	opacity: 0.5;
}

.slick-arrow {
	color: var(--zero)
}





#teamigmetall {
	width: 100px;
	height: 73px;
	background: url("../images/design/Team-IG-Metall.svg");
	background-size: 100%;
	padding: 0px;
	background-repeat: no-repeat; 
	position: absolute;
	left: 5%;
	bottom: 10%;
}


@media screen and (min-width:992px) {
	#teamigmetall {
		width: 200px;
		height: 146px;
		background: url("../images/design/Team-IG-Metall.svg");
		background-size: 100%;
		padding: 0px;
		background-repeat: no-repeat; 
		position: absolute;
		left: 5%;
		bottom: 10%;
	}
}



#scroller {
	position: absolute;
	display: inline-block;
	left: 0;
	right: 0;
	bottom: 15px;
	z-index: 100;
	text-align: center;
}


@media screen and (min-width:768px) {
	#scroller {
		position: absolute;
		display: inline-block;
		left: 0;
		right: 0;
		bottom: 15px;
		z-index: 100;
		text-align: center;
	}
}

span.scrollerspruch.startseite {
	display: none;
}

@media screen and (min-width:576px) {
	span.scrollerspruch.startseite {
		display: block;
	}
}

span.scrollerspruch {
	display: block;
	margin-bottom: 20px;
	font-family: Knewave;
	color: var(--zero);
	font-size: 1.2em;
	line-height: 120%;
}

@media screen and (min-width:576px) {
	span.scrollerspruch {
		display: block;
		margin-bottom: 20px;
		font-family: Knewave;
		color: var(--zero);
		font-size: 1.2em;
		line-height: 120%;
	}
}

@media screen and (min-width:700px) {
	span.scrollerspruch {
		font-size: 1.8em;
	}
}

@media screen and (min-width:768px) {
	span.scrollerspruch {
		font-size: 2em;
	}
}

@media screen and (min-width:1200px) {
	span.scrollerspruch {
		font-size: 2.5em;
	}
}

@media screen and (min-width:1600px) {
	span.scrollerspruch {
		font-size: 3em;
	}
}

#scroller a {
	display: inline-block;
	text-decoration: none !important;
	outline: none !important;
}

span.scrollerevent {
	display: inline-block;
	font-weight: 900;
	color: var(--zero)
}

span.scrollerarrow {
	display: inline-block;
	background: url("../images/design/scrollerarrow.svg");
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    background-repeat: no-repeat;
    width: 20px;
    height: 10px;
	animation: down 1.5s infinite;
	-webkit-animation: down 1.5s infinite;
}

@keyframes down {
	0% {
		transform: translate(0);
	}
	20% {
		transform: translateY(10px);
	}
	40% {
		transform: translate(0);
	}
}

@-webkit-keyframes down {
	0% {
		transform: translate(0);
	}
	20% {
		transform: translateY(10px);
	}
	40% {
		transform: translate(0);
	}
}





#socialmedia {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1000;
    font-size: 50px;
}

@media screen and (min-width:768px) {
	#socialmedia {
        right: 25px;
    }
}

#socialmedia a {
    color: var(--secondary);
    display: inline;
    margin-left: 5px !important;
    margin-right: 5px !important;
}

@media screen and (min-width:768px) {
	#socialmedia a {
        margin-left: 7px !important;
        margin-right: 7px !important;
    }
}

#socialmedia a:hover {
    color: var(--tertiary);
    text-decoration: none;
}


a[href^="tel"]:link,
a[href^="tel"]:visited, 
a[href^="tel"]:hover {
    text-decoration: none;
    color: var(--primary);
}




a {
    color: var(--secondary);
	outline: none;
    text-decoration: none;
}

a:hover, a:focus, a:visited, a:visited:hover {
    color: var(--secondary);
    text-decoration: underline;
	outline: none;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}


@media (min-width:768px) {
    .container {
        width: auto;
    }
}

@media (min-width:992px) {
    .container {
        width: auto;
    }
}

@media (min-width:1200px) {
    .container {
        width: 1170px;
    }
}







/* TRENNER */


.trenner { display: inline-block; }
.break1 { display: inline; content:' '; clear: none; }

@media screen and (min-width:1200px) {
	.trenner { display: none; }
	.break1 { display: block; }
}





ul {
	margin-bottom: 1.2em;
	padding-inline-start: 25px;
}


.eyecatcherbox {
	position: relative;
}

@media (min-width:1200px) {
.eyecatcher {
	position: absolute;
	right: -60px;
	top: -200px
	}
}

/* SECTION */

section { 
    background-color: var(--zero); 
    padding: 30px 0px 0px 0px; 
}

section.hg {
    background-color: var(--light); 
}


@media (min-width:768px) {
    section { 
        padding: 150px 0px 100px 0px; 
    }
}


section#wir {
	background-color: var(--tertiary);
}

section#themen {
	color: var(--zero);
	background: -webkit-linear-gradient(left, #ba0d14, #e31c1a, #ffcb20);
	background: -o-linear-gradient(left, #ba0d14, #e31c1a, #ffcb20);
	background: linear-gradient(to right, #ba0d14, #e31c1a, #ffcb20);
}



@media screen and (min-width:480px) and (max-width:767px) {
	section#themen .col-xs-12 {
		width: 50%;
	}
}



section#themen h1 {
	color: var(--zero);
}


.themenbox {
	position:relative;
	width: 100%;
	border: 2px solid var(--zero);
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

@media screen and (max-width:479px) {
	.themenbox {
		margin-bottom: 15px;
	}
}
 
.themenbox:before {
	content: "";
	display:block;
	padding-top: 100%;
}

.themencontent {
	width: 100%;
	text-align: center;
	color: var(--zero);
}

.themencontent h3 {
	text-transform: uppercase;
	color: var(--zero);
	line-height: 120%;
	font-weight: 900;
	margin-top: -30px;
		font-size: 1.2em;
}

@media screen and (min-width:320px) {
	.themencontent h3 {
		font-size: 1.4em;
	}
}

.themenlink {
	position: absolute;
	bottom: 5px;
	left: 0px;
	right: 0px;
}



.themenlink a {
	text-decoration: none;
	color: var(--zero);
	line-height: 120%;
	font-weight: 400;
	letter-spacing: 1px;
	position: relative;
}

.themenlink a::after {
    content: '';
    position: absolute;
    top: 50%;
	margin-top: -6px;
    right: -15px;
    width: 0px;
	height: 0px;
	-webkit-transform:rotate(360deg);
	border-style: solid;
	border-width: 7px 0 7px 7px;
	border-color: transparent transparent transparent var(--zero);
}

.themenlink a:hover {
    text-decoration: none;
	color: var(--secondary);
	background-color: var(--zero);
	padding: 0px 2px 0px 2px;
	line-height: 90%;
}
 
/*
.themenbox .themencontent {
 	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
*/

/*
.themenbox .themencontent {
	position:absolute;
	top: 0;
	left: 0.9375em;
	right: 0.9375em;
	bottom: 0;
}
*/



section#unsere h1 {
	color: var(--zero);
}





section#kontakt a { color: var(--primary) !important; text-decoration: none; }
section#kontakt a:hover { color: var(--secondary) !important; text-decoration: none; }
section#kontakt a:visited { color: var(--primary) !important; }
section#kontakt a:visited:hover { color: var(--secondary) !important; text-decoration: none; }
section#kontakt a:focus { color: var(--primary) !important; }

section#kontakt a[href^="tel"]:link,
a[href^="tel"]:visited  {
    text-decoration: none;
    color: var(--primary);
}

section#kontakt  
a[href^="tel"]:hover {
    text-decoration: none;
    color: var(--secondary);
}


button {
	position: relative;
	padding-right: 26px !important;
}

button span::after {
    content: '';
    position: absolute;
    top: 50%;
	margin-top: -6px;
    right: 10px;
    width: 0px;
	height: 0px;
	-webkit-transform:rotate(360deg);
	border-style: solid;
	border-width: 7px 0 7px 7px;
	border-color: transparent transparent transparent var(--zero);
}


/* CONTENT */

.nopadding { padding: 0px; }


.listen { 
    display: block;
    list-style-type: none;
    margin: 0px 0px 20px 0px;
    padding: 0;
}

.listen li {
    display: block;
    padding-left: 0px;
    position: relative;
	margin-left: 40px;
	margin-bottom: 5px
}

.listen li:before {
    color: #888;
    /* content: "\f14a"; */
    content: "\f00c";
    font-family: FontAwesome;
	margin-right: 7px;
	margin-left: -20px;
}


.fillcontentheader {
    width: 100%;
    height: 210px;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    background-repeat: no-repeat;
	position: relative;
}

@media screen and (min-width:768px) {
	.fillcontentheader { height: 350px; }
}

@media screen and (min-width:992px) {
	.fillcontentheader { height: 400px; }
}




.fill {
    width: 100%;
    height: 100%;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    background-repeat: no-repeat;
}

.fillcontent {
    width: 100%;
    height: 200px;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (min-width:768px) {
	.fillcontent { height: 300px; }
}

@media screen and (min-width:992px) {
	.fillcontent { height: 400px; }
}


.mainsolo {
  width: 100%;
  position: relative; 
  background: #ffffff;
  padding: 20px 0px 0px 0px;
}


@media screen and (min-width:768px) {
	.mainsolo { padding: 30px 0px 0px 0px; }
}

@media screen and (min-width:992px) {
	.mainsolo { padding: 40px 0px 0px 0px; }
}


.row { margin-bottom: 30px; }

@media screen and (min-width:992px) {
	.row { margin-bottom: 50px; }
}



.textbox {
	background-color: var(--tertiary);
	padding: 18px 15px 5px 15px;
	margin-bottom: 15px;
	margin-top: 15px;
}

@media screen and (min-width:768px) {
	.textbox {
		padding: 28px 25px 15px 25px;
	}
}

.textboxspezial {
	background-color: var(--tertiary);
	padding: 18px 10px 1px 50px;
	position: relative;
	margin-bottom: 15px;
}

@media screen and (min-width:768px) {
	.textboxspezial {
		margin-bottom: 30px;
		padding: 28px 25px 15px 50px;
	}
}

.textboxspezial span {
	color: var(--zero);
	position: absolute;
	left: 10px;
	top: 10px;
	font-weight: 900;
  	border-radius: 30px;
	width: 30px;
	background-color: var(--secondary);
	text-align: center;
}

.textbox.verlauf {
	background: -webkit-linear-gradient(left, #ba0d14, #e31c1a, #ffcb20);
	background: -o-linear-gradient(left, #ba0d14, #e31c1a, #ffcb20);
	background: linear-gradient(to right, #ba0d14, #e31c1a, #ffcb20);
}

.textbox.verlauf,
.textbox.verlauf h2  {
	color: var(--zero) !important
}

.textbox ul>li {
	margin-bottom: 0.5em;
}
	


@media screen and (min-width:768px) {
  
	.row-eq-height-extra {
	  display: -webkit-box;
	  display: -webkit-flex;
	  display: -ms-flexbox;
	  display: flex;
      align-items: flex-start;
		flex-direction: row;
	}
	
	.row-eq-height-extra .textbox {
		height: 100%;
	}
	
	.row-eq-height-extra .col-sm-6 {
		align-self: stretch;
	}
}


/* BUTTON */

.btn {
    display: inline-block;
    padding: 8px 16px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 1em;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 0px solid transparent;
    border-radius: 0px;
    color:  var(--zero);
    text-decoration: none;
    background-color: var(--secondary);
	font-weight: 600;
}

.btn.active.focus, 
.btn.active:focus, 
.btn.focus, 
.btn:active.focus,
.btn:active:focus, 
.btn:focus {
    color:  var(--zero);
    outline: none !important;
    outline-offset: 0px !important;
}

.btn:hover {
    color: var(--zero) !important;
    border-color: var(--primary) !important;
    background-color: var(--primary) !important;
    text-decoration: none;
}

.btn:visited {
    color: var(--zero) !important;
    border-color: var(--secondary);
    background-color: var(--secondary);
    text-decoration: none;
}

.btn:visited:hover {
    color: var(--zero) !important;
    border-color: var(--primary) !important;
    background-color: var(--primary) !important;
    text-decoration: none;
}

.btn.active, 
.btn:active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0);
    box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0);
}

.btn.disabled, 
.btn[disabled], 
fieldset[disabled] .btn {
    pointer-events: none;
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65
}

.btn-default {
    color: var(--zero);
    background-color: var(--secondary);
    border-color: var(--secondary);
    margin-top: 15px;
}

.btn-default.active, 
.btn-default.focus, 
.btn-default:active, 
.btn-default:focus,
.btn-default:hover, 
.open > .dropdown-toggle.btn-default {
    color: var(--zero);
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-default.active, 
.btn-default:active, 
.open > .dropdown-toggle.btn-default {
    background-image: none
}

.btn-default.disabled, 
.btn-default.disabled.active, 
.btn-default.disabled.focus,
.btn-default.disabled:active, 
.btn-default.disabled:focus, 
.btn-default.disabled:hover,
.btn-default[disabled], 
.btn-default[disabled].active, 
.btn-default[disabled].focus,
.btn-default[disabled]:active, 
.btn-default[disabled]:focus, 
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default, 
fieldset[disabled] .btn-default.active,
fieldset[disabled] .btn-default.focus, 
fieldset[disabled] .btn-default:active,
fieldset[disabled] .btn-default:focus, 
fieldset[disabled] .btn-default:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color:var(--zero);
}

.btn-default .badge {
    color: var(--zero);
    background-color: var(--secondary);
}

.btn-default span {
    margin-right: 15px;
}

.btn a {
    text-decoration: none !important;
}





p {
    line-height: 1.6em;
    margin-bottom: 1.2em;
}

p.bu {
	font-size: 1em;
	font-style: italic;
}

h1,
h2,
h3 {
	font-weight: normal;
	margin-bottom: 10px;
}

h1 { 
	color: var(--secondary);
	font-size: 24px; 
	font-weight: 900;
    line-height: 95%; 
    text-transform: uppercase;
}

h2 { 
	font-size: 20px; 
	margin-top: 0px;
}

h3 { 
	font-size: 17px;
    margin-top: 5px;
    line-height: 120%;
    margin-bottom: 5px !important;
    
}

@media screen and (min-width:768px) {
	h1,
	h2,
	h3 {
		margin-bottom: 15px;
	}
	h1 { font-size: 40px; }
	h2 { font-size: 30px; }
	h3 { font-size: 25px; }
}

@media screen and (min-width:992px) {
	h2 { font-size: 25px; }
}

@media screen and (min-width:1100px) {
	h2 { font-size: 30px; }
}
	


h2 {
    color: var(--secondary);
	font-weight: 900;
}


/* FOOTER */

footer {
	width: 100%;
	padding: 20px 15px 6px 15px;
    text-align: center;
	background: -webkit-linear-gradient(left, #ba0d14, #e31c1a, #ffcb20);
	background: -o-linear-gradient(left, #ba0d14, #e31c1a, #ffcb20);
	background: linear-gradient(to right, #ba0d14, #e31c1a, #ffcb20);
}

@media (max-width:767px) {
    .col-sm-6.text-left {
        text-align: center;
        margin-bottom: 15px;
    }	
    .col-sm-6.text-right {
        text-align: center;
    }
    .col-sm-6.text-right a {
        margin-left: 0px;
        margin-right: 0px;
    }
}

footer .row {
	margin-bottom: 0px;
}

footer p {
	color: var(--zero);
    margin-bottom: 10px;
	font-size: 0.8em; 
	line-height: 100%;
}

footer a { color: var(--zero); text-decoration: none; }
footer a:hover { color: var(--primary); text-decoration: none; }
footer a:visited { color: var(--primary); }
footer a:visited:hover { color: var(--primary); text-decoration: none; }
footer a:focus { color: var(--primary); }

footer span.imp { 
	margin-left: 5px; 
	margin-right: 5px; 
}

footer p.firmierung {
	font-size: 1em; 
	margin-bottom: 0px;
	font-weight: 900;
	text-transform: uppercase;
}





