/*****************************************
				  SLIDER
„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„*/

.f_slider {
	width: 100%;
	height: 650px;
	position: relative;
	overflow: hidden;
}
.f_cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.f_slid {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -100;
	opacity: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-transition: all 0.5s ease-in;
		 -o-transition: all 0.5s ease-in;
			transition: all 0.5s ease-in;
}
.f_h1 {
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 30%;
	left: 110%;
	text-transform: uppercase;
	font-size: 3em;
	color: #fff;
	text-shadow: 0 0 10px #9d9c9c;
	animation-delay: 1s;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}
.f_h2 {
	font-size: 0.6em;
	color: #fff;
}
.f_slid a {
	position: absolute;
	bottom: -50%;
	left: calc(50% - 80px);
	display: block;
	padding: 10px 30px;
	background-color: #FF8E00;
	color: #fff;
	animation-delay: 1.8s;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
	-webkit-transition: background-color 0.2s ease-in;
		 -o-transition: background-color 0.2s ease-in;
			transition: background-color 0.2s ease-in;
}
.f_cover a {
	position: absolute;
	bottom: -50%;
	left: calc(50% - 80px);
	display: block;
	padding: 10px 30px;
	background-color: #FF8E00;
	color: #fff;
	animation-delay: 1.8s;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
	-webkit-transition: background-color 0.2s ease-in;
		 -o-transition: background-color 0.2s ease-in;
			transition: background-color 0.2s ease-in;
}
.f_slid a:hover {
	background-color: #223544;
}
@keyframes f_h1 {
	from {left: 110%; opacity: 0}
	to {left: 0%; opacity: 1}
}
@keyframes f_link {
	from {bottom: -50%; opacity: 0}
	to {bottom: 20%; opacity: 1}
}

input[name="f_slider"] {display: none}

.f_slid_steuerung_zurueck, .f_slid_steuerung_weiter {
	position: absolute;
	bottom: 30%;
	z-index: 99;
	cursor: pointer;
	display: none;
}
.f_slid_steuerung_zurueck {
	left: 5%;
}
.f_slid_steuerung_weiter {
	right: 5%;
}
.f_pfeil-links, .f_pfeil-rechts {
	width: 60px;
	height: 60px;
	border-color: ;
}
.f_pfeil-links {
	border-top: solid 10px rgba(255,255,255,0.5);
	border-left: solid 10px rgba(255,255,255,0.5);
	transform: rotate(-45deg);
}
.f_pfeil-rechts {
	border-bottom: solid 10px rgba(255,255,255,0.5);
	border-right: solid 10px rgba(255,255,255,0.5);
	transform: rotate(-45deg);
}

/*********************************************************
						RESPONSIVE
„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„„*/

@media (max-width: 800px) {
	.f_h1 {font-size: 2em}
	.f_slider {height: 200px}
	.f_slid_steuerung_zurueck, .f_slid_steuerung_weiter {bottom: 5%}
	.f_pfeil-links, .f_pfeil-rechts {
		width: 30px;
		height: 30px;
	}
}































