@charset "UTF-8";

@font-face {
	font-family: 'Work Sans';
	font-style: normal;
	font-weight: 400;
	src: local('Work Sans'), local('WorkSans-Regular'),
	url('../fnt/work-sans-v5-latin-regular.woff2') format('woff2'),
	url('../fnt/work-sans-v5-latin-regular.woff') format('woff');
}

@font-face {
	font-family: 'Work Sans';
	font-style: normal;
	font-weight: 600;
	src: local('Work Sans SemiBold'), local('WorkSans-SemiBold'),
	url('../fnt/work-sans-v5-latin-600.woff2') format('woff2'),
	url('../fnt/work-sans-v5-latin-600.woff') format('woff');
}

* {
	position: relative;
	margin: 0;
	padding: 0;
	font-family: 'Work Sans';
	text-decoration: none;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	box-sizing: border-box;
}

html, body {
	min-height: 100vh;
	overflow-x: hidden;
}

h1,
h2,
h3, 
h4,
h5,
h6 {
	padding: 10px 0;
	font-size: 33px;
	line-height: 38px;
	font-weight: 600;
	color: #d7152e;
}

p, .textright ul {
	padding: 10px 0;
}

p, main li {
	font-size: 18px;
	line-height: 21px;
	color: rgba(0, 0, 0, 1);
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

.textright li a,
main p a { color: #d7152e; }

.textright li {
  padding: 6px 0 6px 30px;
}

.textright li:before {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  top: 12px;
  width: 9px;
  height: 9px;
  background-color: #d7152e;
}

small {
	padding: 10px 0;
	font-size: 14px;
	line-height: 17px;
	font-weight: 600;
	color: #d7152e;
}

small.block {
	display: block;
}

strong {
	font-weight: 600;
}

p a {
	display: inline-block;
	border-bottom: 1px solid rgba(214, 31, 46, 1);
	transition: border-bottom 250ms linear;
}

p a:hover {
	border-bottom: 1px solid rgba(214, 31, 46, 0);
}

.cnt {
	margin: 0 auto;
	width: calc(100% - 80px);
	max-width: 1500px;
}

.btn {
	display: inline-block;
	margin: 0 auto;
	padding: 10px 16px;
	font-size: 18px;
	line-height: 21px;
	color: rgba(255, 255, 255, 1);
	background-color: #d7152e;
	transition: transform 250ms linear;
}

.btn a {
  color: #fff;
}

a.btn:hover {
	transform: translate(5px, 0) skewX(-10deg);
}

header {
	height: 100vh;
}

header #slider {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

header #allslides {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	list-style: none;
	z-index: 1;
	transition: left 1s ease-in-out;
}

header #allslides li {
	display: block;
	float: left;
	width: 100vw;
	height: 100%;
	background-position: center center;
	background-size: cover;
	z-index: 1;
}

header #allslides li.active {
	z-index: 2;
	animation: slideMe 1s ease-in-out forwards;
}

@keyframes slideMe {
  0% { transform: scale(1); box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.75); }
  50% { transform: scale(1.5); box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.75); }
  100% { transform: scale(1); box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.75); }
}

header #slide-left,
header #slide-right {
	display: block;
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	background-position: center center;
	background-size: cover;
	opacity: 0.8;
	z-index: 2;
	transform: translate(0, 10px) scale(1);
	transition: transform 250ms linear,
	opacity 250ms linear;
}

header #slide-left { left: 40px; background-image: url(../gfx/slider-left.svg); }
header #slide-right { right: 40px; background-image: url(../gfx/slider-right.svg); }

header #slide-left:hover,
header #slide-right:hover {
	transform: translate(0, 10px) scale(1.5);
}

header #slide-left.hideMe,
header #slide-right.hideMe {
	display: none;
}

header #slide-left.inactive,
header #slide-right.inactive {
	opacity: 0;
}

header .overlay {
	position: absolute;
	left: 0;
	top: 196px;
	width: 100%;
	height: calc(100vh - 326px);
	background: rgba(0, 9, 15, 0.85);
	visibility: hidden;
	opacity: 0;
	z-index: 2;
	transition: visibility 250ms linear,
	opacity 250ms linear;
}

header .overlay.active {
	visibility: visible;
	opacity: 1;
}

header nav {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 196px;
	background: rgba(0, 9, 15, 0.85);
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	z-index: 2;
	transition: border-bottom 250ms linear;
}

header nav.inactive {
	border-bottom: 1px solid rgba(255, 255, 255, 0);
}

header .cnt {
	height: 100%;
}

header .mainnav {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 140px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

header .mainnav ul {
	position: absolute;
	display: inline-block;
	right: 0;
	top: 0;
	height: 139px;
}

header .mainnav li {
	display: inline-block;
	float: left;
	height: 139px;
	border-right: 1px solid rgba(255, 255, 255, 0.5);
}

header .mainnav li:first-child {
	border-left: 1px solid rgba(255, 255, 255, 0.5);
}

header .mainnav li a {
	display: block;
	padding: 0 25px;
	line-height: 139px;
	background-color: rgba(255, 255, 255, 0);
	transition: background-color 250ms linear;
}

header .mainnav li a:hover,
header .mainnav li.hassub a.active,
header .mainnav li a.active {
	background-color: rgba(255, 255, 255, 0.2);
}

header .mainnav li.hassub a:before {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 75%;
	width: 18px;
	height: 10px;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url(../gfx/menu-arrow.svg);
	opacity: 0.25;
	transform: translate(-50%, 0);
	transition: opacity 250ms linear,
	transform 250ms linear;
}

header .mainnav li.hassub a:hover:before,
header .mainnav li.hassub a.active:before {
	opacity: 1;
	transform: translate(-50%, 50%);
}

header .mainnav li a img {
	display: inline-block;
	width: auto;
	height: 44px;
	vertical-align: middle;
	transition: transform 250ms linear;
}

header .mainnav li a:hover img,
header .mainnav li a.active img {
	transform: translate(5px, 0) skewX(-10deg);
}

header .mainnav li a.product-speedwall img {
	width: 183px;
}

header .mainnav li a.product-speedfloor img {
	width: 204px;
}

header .mainnav li a.product-speedcomplete img {
	width: 288px;
}

header .submenu {
	display: table;
	position: absolute;
	left: 0;
	top: 139px;
	padding-top: 1px;
	width: 100%;
	height: calc(100vh - 269px);
	visibility: hidden;
	opacity: 0;
	z-index: 10;
	transition: visibility 150ms linear,
	opacity 150ms linear;
}

header .submenu.active {
	visibility: visible;
	opacity: 1;
	transition: visibility 750ms linear,
	opacity 750ms linear;
}

header .submenu li {
	display: table-cell;
	width: 50%;
	height: 100%;
	text-align: center;
	vertical-align: middle;
}

header .submenu li,
header .submenu li * {
	color: rgba(255, 255, 255, 1);
}

header .submenu li p {
	margin: 0 auto;
	font-size: 16px;
	line-height: 19px;
	width: 80%;
	max-width: 550px;
}

header .submenu li {
	border-right: 1px solid rgba(255, 255, 255, 0.5);
}

header .submenu li:last-child {
	border-right: none;
}

header .submenu li a {
	display: table;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0);
	transition: background-color 250ms linear;
}

header .submenu li a:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

header .submenu li a span {
	display: table-cell;
	vertical-align: middle;
}

header .submenu li a span img {
	display: block;
	margin: 0 auto 40px auto;
	width: auto;
	height: 86px;
	transition: transform 250ms linear;
}

header .submenu li:first-child a span img {
	width: 455px;
}

header .submenu li:last-child a span img {
	width: 472px;
}

header .submenu li a:hover span img {
	transform: translate(10px, 0) skewX(-10deg);
}

header .anfrage-menu {
  position: absolute;
  top: 196px;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: #fff;
  text-align: center;
  padding: 40px;
}

header .anfrage-menu p {
  max-width: 1500px;
  margin: 0 auto;
}

header .anfrage-menu > strong {
  display: block;
}

header .anfrage-menu > strong:first-child {
  font-size: 26px;
}

header .anfrage-menu > strong:nth-child(2) {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 10px;
}

header .anfrage-menu span.btn {
  margin-top: 20px;
}

header .logo {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	width: 299px;
	height: 100px;
	transform: translate(0, -50%);
}

header .logo img {
	display: inline-block;
	width: 299px;
	height: 100px;
	transition: transform 250ms linear;
}

header .logo:hover img {
	transform: translate(10px, 0) skewX(-10deg);
}

header .slogan {
	display: inline-block;
	position: absolute;
	left: 245px;
	top: 50%;
	width: 106px;
	height: 26px;
	opacity: 0.5;
	transform: translate(0, 4px);
	transition: opacity 250ms linear,
	transform 250ms linear;
}

header .slogan.active {
	opacity: 1;
	transform: translate(5px, 4px) skewX(-10deg);
}

header .asidenav {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 55px;
	text-align: right;
	transition: opacity 250ms linear;
}

header .asidenav.inactive {
	opacity: 0;
}

header .asidenav .cnt {
	transform: translate(14px, 0);
}

header .asidenav ul,
header .asidenav li {
	display: inline-block;
	height: 55px;
}

header .asidenav li {
	display: inline-block;
	float: left;
	height: 55px;
}

header .asidenav li,
header .asidenav li a {
	font-size: 16px;
	line-height: 55px;
	font-weight: 400;
	color: rgba(255, 255, 255, 1);
}

header .asidenav a {
	display: block;
	padding: 0 14px;
	background-color: rgba(255, 255, 255, 0);
	transition: background-color 250ms linear;
}

header .asidenav a.green,
header .asidenav a.red {
	padding-left: 42px;
	font-weight: 600;
}

header .asidenav a.green:before,
header .asidenav a.red:before {
	content: '';
	display: block;
	position: absolute;
	left: 14px;
	top: 50%;
	width: 22px;
	height: 22px;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	transform: translate(0, -50%);	
	transition: transform 250ms linear;
}

header .asidenav a.green:hover:before,
header .asidenav a.red:hover:before {
	transform: translate(0, -50%) scale(1.25);
}

header .asidenav a.green {
	color: #1cb540;
}

header .asidenav a.green:before {
	background-image: url(../gfx/green-globe.svg);
}

header .asidenav a.red {
	color: #d7152e;
}

header .asidenav a.red:before {
	background-image: url(../gfx/red-phone.svg);
}

header .asidenav a:hover,
header .asidenav li.activenav a {
	background-color: rgba(255, 255, 255, 0.2);
}

header .claim {
	position: absolute;
	left: 0;
	bottom: 0;
	padding-top: 24px;
	width: 100%;
	height: 130px;
	background: rgba(0, 9, 15, 0.85);
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	z-index: 2;
}

header .claim strong {
	display: block;
	margin: 0 auto;
	font-size: 26px;
	line-height: 34px;
	font-weight: 600;
	color: rgba(255, 255, 255, 1);
	text-align: center;
	transition: opacity 250ms linear;
}

header .claim.inactive strong {
	opacity: 0;
}

header .claim strong:last-child {
	font-size: 40px;
	line-height: 48px;
}

header #startscreen {
	display: table;
	width: 100%;
	height:100%;
}

header #startscreen a {
	display: table-cell;
	width: 50%;
	height: 100%;
	text-align: center;
	vertical-align: middle;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

header #startscreen a span:first-child {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 196px;
	width: 100%;
	height: calc(100% - 326px);
	background-color: rgba(0, 9, 15, 0);
	z-index: 1;
	transition: background-color 250ms linear;
	pointer-events: none;
}

header #startscreen a span.border {
	border-left: 1px solid rgba(255, 255, 255, 0.5);
}

header #startscreen a:hover span:first-child {
	background-color: rgba(0, 9, 15, 0.85);
}

header #startscreen a span:last-child {
	position: absolute;
	left: 50%;
	top: 50%;
	padding: 10px 15px 0 15px;
	text-align: center;
	transform: translate(-50%, calc(-50% + 33px));
	z-index: 2;
	pointer-events: none;
	background-color: rgba(0, 9, 15, 0.85);
	transition: background-color 250ms linear;
}

header #startscreen a:hover span:last-child {
	background-color: rgba(0, 9, 15, 0);
}

header #startscreen a span img {
	display: inline-block;
	width: auto;
	height: 60px;
	transition: transform 250ms linear;
}

header #startscreen a:hover span img {
	transform: translate(10px, 0) skewX(-10deg);
}

header #startscreen a * {
	color: rgba(255, 255, 255, 1);
	white-space: nowrap;
}

body#bodystart .onlyfloor {
	display: none;
}

body#bodyfloor .onlystart {
	display: none;
}

header #startscreen.inactive {
	display: none !important;
}

main .thirds,
footer .thirds {
	display: table;
	width: 100%;
	height: auto;
}

main .thirds.white {
	min-height: 33vw;
}

@media(min-width: 1181px) {
  @-moz-document url-prefix() {
    main .thirds.white { height: 33vw; }
  }
}

main .thirds .one,
main .thirds .two,
footer .thirds .one,
footer .thirds .two {
	display: table-cell;
	padding: 20px;
	vertical-align: middle;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: background-color 250ms linear;
}

main .thirds .one,
footer .thirds .one {
	width: 33%;
}

main .thirds .one,
main .thirds .one *,
footer .thirds .one,
footer .thirds .one * {
	text-align: center;
}

main .thirds.white a {
	background-color: rgba(0, 0, 0, 0);
}

main .thirds.white a:hover {
	background-color: rgba(0, 0, 0, 1);
}

main .thirds.textright { border-top: 1px solid rgba(0, 0, 0, 0.25); }

main .thirds.black a,
main .thirds.textright .two {
	background-color: rgba(0, 0, 0, 1);
}

main .thirds.textright.whiteright .two {
  background-color: rgba(255, 255, 255, 1);
}

main .thirds.black a:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

main .thirds a p {
	padding: 25px 0;
	transition: color 250ms linear;
}

main .thirds .one p {
	margin: 0 auto;
	max-width: 80%;
}

main .thirds.black p,
main .thirds.textright .two p {
	color: rgba(255, 255, 255, 1);
}

main .thirds.textright.whiteright .two p {
	color: rgba(0, 0, 0, 1);
}

main .thirds.textright.whiteright .one {
  background-position: center center;
  background-size: cover;
}

main .thirds.white a:hover p {
	color: rgba(255, 255, 255, 1);
}

main .thirds.black a:hover p {
	color: rgba(0, 0, 0, 1);
}

main .thirds a img,
main .thirds .one img,
footer img.logo {
	margin: 0 auto;
	display: inline-block;
	width: auto;
	height: 44px;
	transition: transform 250ms linear;
}

footer img.logo {
	width: 299px;
	height: 100px;
}

main .thirds a:hover img {
	transform: translate(5px, 0) skewX(-10deg);
}

main .thirds a:hover .btn {
	transform: translate(5px, 0) skewX(-15deg);
}

main .thirds a h2 {
	padding: 0;
	transition: transform 250ms linear;
}

main .thirds a:hover h2 {
	transform: translate(10px, 0) skewX(-20deg);
}

main .thirds .two {
	padding: 80px 0;
	width: 67%;
}

main .thirds.textleft,
main .thirds.textleft a {
	text-align: right;
}

main .thirds.textleft a * {
	text-align: left;
}

main .thirds .two .cnt {
	display: inline-block;
	margin: 0;
	padding-right: 40px;
	width: calc(67vw - ((100vw - 1500px) / 2));
	max-width: calc(100% - 40px);
}

main .thirds.textright .two .cnt {
	display: inline-block;
	margin: 0;
	padding-left: 40px;
	width: calc(67vw - ((100vw - 1500px) / 2));
	max-width: calc(100% - 40px);
}

.mirror .one {
	background-color: rgba(0, 0, 0, 1) !important;
}

.mirror .one p {
	color: rgba(255, 255, 255, 1) !important;
}

main .thirds.textright.mirror .two p {
	color: rgba(0, 0, 0, 1);
}

.mirror .two {
	background-color: rgba(255, 255, 255, 1) !important;
}

.mirror .two ul {
	list-style: none !important;
}

main .three {
	text-align: center;
}

main .three img {
	margin: 80px auto;
	display: inline-block;
	width: auto;
	height: 44px;
}

main .three ul {
	display: table;
}

main .three ul li {
	display: table-cell;
	width: 33%;
}

main .three ul li,
main .three ul li * {
	text-align: left;
}

main .three ul li:before {
	content: '';
	display: block;
	position: absolute;
	left: -12%;
	top: -5px;
	width: 50%;
	height: 65px;
	background-position: left top;
	background-size: contain;
	background-repeat: no-repeat;
	opacity: 0.3;
}

main .three ul li:nth-child(1):before {
	background-image: url(../gfx/usp-01.svg);
}

main .three ul li:nth-child(2):before {
	left: -3%;
	background-image: url(../gfx/usp-02.svg);
}

main .three ul li:nth-child(3):before {
	left: 2%;
	background-image: url(../gfx/usp-03.svg);
}

main .thirds.textright .two li {
	color: #ffffff;
	list-style: none;
}

main .three ul li:nth-child(1) {
	padding-right: 5%;
}

main .three ul li:nth-child(2) {
	padding-left: 3%;
	padding-right: 3%;
	width: 34%
}

main .three ul li:nth-child(3) {
	padding-left: 5%;
}

main .three a {
	display: block;
	margin-top: 80px;
	padding: 55px 0;
	background-color: rgba(0, 0, 0, 1);
	transition: background-color 250ms linear;
}

main .three a:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

main .three a .btn {
	transition: transform 250ms linear;
}

main .three a:hover .btn {
	transform: translate(5px, 0) skewX(-15deg);
}

.whitebtn a {
	display: block;
	padding: 55px 0;
	text-align: center;
	background-color: rgba(0, 0, 0, 0);
	transition: background-color 250ms linear;
}

.whitebtn a:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.whitebtn .btn {
	transition: transform 250ms linear;
}

.whitebtn a:hover .btn {
	transform: translate(5px, 0) skewX(-15deg);
}

main .textmid {
	text-align: center;
  	width: calc(100% - 40px);
  	max-width: 1000px;
  	margin: 0 auto;
  	margin-bottom: 80px;
}

main .textmid img {
	margin: 80px auto;
	display: inline-block;
	width: auto;
	height: 44px;
}

.gallery {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
	padding: 55px 0;
	height: calc((100vw - 360px) / 5 + 110px);
	background-color: rgba(0, 0, 0, 1);
}

.gallery.videogallery {
	background-image: url(../gfx/videobg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.gallery .gal-left,
.gallery .gal-right {
	display: block;
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	background-position: center center;
	background-size: cover;
	z-index: 2;
	transform: translate(0, -50%) scale(1);
	transition: transform 250ms linear,
	opacity 250ms linear,
	visibility 250ms linear;
}

.gallery .gal-left { left: 40px; background-image: url(../gfx/gal-left.svg); }
.gallery .gal-right { right: 40px; background-image: url(../gfx/gal-right.svg); }

.gallery .gal-left:hover,
.gallery .gal-right:hover {
	transform: translate(0, -50%) scale(1.5);
}

.gallery .gal-left.hideMe,
.gallery .gal-right.hideMe {
	display: none;
}

.gallery .gal-left.inactive,
.gallery .gal-right.inactive {
	opacity: 0;
	visibility: hidden;
}

.gallery .holder {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: 0 auto;
	width: calc(100% - 260px);
	height: calc((100vw - 360px) / 5);
	overflow: hidden;
	transform: translate(-50%, -50%);
}

.gallery ul {
	display: table;
	width: auto;
	white-space: nowrap;
	transition: transform 500ms linear;
}

.gallery li {
	display: table-cell;
	padding: 0 10px;
	width: calc((100vw - 360px) / 5 + 20px);
	height: calc((100vw - 360px) / 5);
	text-align: center;
}

.gallery li a {
	display: inline-block;
	margin: 0 auto;
	width: calc((100vw - 360px) / 5);
	height: calc((100vw - 360px) / 5);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: opacity 250ms linear;
}

.gallery li a:hover {
	opacity: 0.75;
}

.gallery.videogallery li a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.65);
	transition: opacity 250ms linear;
}

.gallery.videogallery li a:hover:before {
	opacity: 0.5;
}

.gallery.videogallery li a:hover {
	opacity: 1;
}

.gallery.videogallery li a:after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 30%;
	height: 30%;
	background-image: url(../gfx/some-logo-y.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transform: translate(-50%, -50%);
}

.gallery.videogallery li a span {
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50px;
	padding: 0 15px;
	text-align: center;
	color: #ffffff;
	font-size: 14px;
	line-height: 17px;
	white-space: normal;
	font-weight: 600;
}

footer {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

footer .thirds {
	background: rgba(0, 9, 15, 0.85);
}

footer .thirds.contact {
	min-height: 350px;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

footer .thirds.legal {
	min-height: 120px;
}

footer .contact .one {
	border-right: 1px solid rgba(255, 255, 255, 0.5);
}

footer .thirds .two {
	padding-left: 80px;
}

footer p,
footer p * {
	color: rgba(255, 255, 255, 1);
}

footer .phone,
footer .mail {
	display: inline-block;
	margin-left: 28px;
}

footer .phone:before,
footer .mail:before {
	content: '';
	display: block;
	position: absolute;
	left: -28px;
	top: 50%;
	width: 20px;
	height: 20px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transform: translate(0, -50%);
}

footer .phone:before {
	background-image: url(../gfx/red-phone.svg);
}

footer .mail:before {
	background-image: url(../gfx/red-mail.svg);
}

footer .phone {
	margin-right: 20px;
}

footer .legal .one ul,
footer .legal .one ul li,
footer .legal .one ul li a,
footer .legal .one ul li img {
	display: inline-block;
}

footer .legal .one a {
	float: left;
	margin: 0 4px;
	transition: opacity 250ms linear;
}

footer .legal .one a:hover {
	opacity: 0.5;
}

footer .legal .one a,
footer .legal .one img {
	width: 38px;
	height: 38px;
}

footer small {
	color: #d7152e;
}

.chessboard {
	
}

.chessboard ul {
	display: table;
	width: 100vw;
	height: auto;
	min-height: 33vw;
}

@media(min-width: 1181px) {
  @-moz-document url-prefix() {
    .chessboard ul { height: 33vw; }
  }
}

.chessboard li {
	display: table-cell;
	padding: 40px;
	width: 33vw;
	text-align: center;
	vertical-align: middle;
	height: 100%;
}

.chessboard strong { color: #d7152e !important; font-size: 22px !important; line-height: 25px !important; display: inline-block !important; padding-bottom: 10px !important; }

.chessboard ul:nth-child(odd) li:nth-child(odd),
.chessboard ul:nth-child(even) li:nth-child(even) {
	background-color: rgba(0, 0, 0, 1);
}

.chessboard ul:nth-child(odd) li:nth-child(odd),
.chessboard ul:nth-child(odd) li:nth-child(odd) *,
.chessboard ul:nth-child(even) li:nth-child(even),
.chessboard ul:nth-child(even) li:nth-child(even) * {
	color: rgba(255, 255, 255, 1);
}

.chessboard ul:nth-child(odd) li:nth-child(odd) h1,
.chessboard ul:nth-child(odd) li:nth-child(odd) h1 *,
.chessboard ul:nth-child(odd) li:nth-child(odd) h2,
.chessboard ul:nth-child(odd) li:nth-child(odd) h2 *,
.chessboard ul:nth-child(odd) li:nth-child(odd) h3,
.chessboard ul:nth-child(odd) li:nth-child(odd) h3 *,
.chessboard ul:nth-child(odd) li:nth-child(odd) h4,
.chessboard ul:nth-child(odd) li:nth-child(odd) h4 *,
.chessboard ul:nth-child(odd) li:nth-child(odd) h5,
.chessboard ul:nth-child(odd) li:nth-child(odd) h5 *,
.chessboard ul:nth-child(odd) li:nth-child(odd) h6,
.chessboard ul:nth-child(odd) li:nth-child(odd) h6 *,
.chessboard ul:nth-child(even) li:nth-child(even) h1,
.chessboard ul:nth-child(even) li:nth-child(even) h1 *,
.chessboard ul:nth-child(even) li:nth-child(even) h2,
.chessboard ul:nth-child(even) li:nth-child(even) h2 *,
.chessboard ul:nth-child(even) li:nth-child(even) h3,
.chessboard ul:nth-child(even) li:nth-child(even) h3 *,
.chessboard ul:nth-child(even) li:nth-child(even) h4,
.chessboard ul:nth-child(even) li:nth-child(even) h4 *,
.chessboard ul:nth-child(even) li:nth-child(even) h5,
.chessboard ul:nth-child(even) li:nth-child(even) h5 *,
.chessboard ul:nth-child(even) li:nth-child(even) h6,
.chessboard ul:nth-child(even) li:nth-child(even) h6 * {
	color: #d7152e;
}

.chessboard ul:nth-child(odd) li:nth-child(even),
.chessboard ul:nth-child(even) li:nth-child(even) {
	width: 34%;
}

#trigger, #overlay {
	display: none;
}

.issub { display: none !important; }

.chessboard + .whitebtn,
.whitebtn + .chessboard { border-top: 1px solid rgba(0, 0, 0, 0.25); }
.whiteright + .whitebtn,
.whiteright .chessboard { border-top: 1px solid rgba(0, 0, 0, 0.25); }

.walldescbg {
	width: 100vw;
	height: 50vw;
	background-image: url(../gfx/wallBG.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.walldescbg .dot {
	display: block;
	position: absolute;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-image: url(../gfx/dotbg.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border: 2px solid #d61f2e;
	transform: translate(-50%, -50%);
	cursor: pointer;
	animation: dotblink 4s linear infinite;
}

@keyframes dotblink {
	0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
	50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.2); }
	100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

main .thirds.textright.mirror .two li {
color: #000000;

}

.walldescbg h2 {
	font-size: 20px;
	line-height: 23px;
}

.walldescbg p {
	font-size: 14px;
	line-height: 17px;
}

#dotexplain {
	position: absolute;
	width: auto;
	max-width: 20vw;
	height: auto;
	background: #ffffff;
	padding: 15px 25px;
	transform: translate(44px, -50%);
}

#dotexplain:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	width: 16px;
	height: 16px;
	background: #ffffff;
	transform: translate(-8px, -50%) rotate(45deg);
}

.dot_a {
	left: 14vw;
	top: 11vw;
}

.dot_b {
	left: 52.5vw;
	top: 21vw;
}

.dot_c {
	left: 76vw;
	top: 15vw;
}

.dot_d {
	left: 42vw;
	top: 40vw;
}

.dot_e {
	left: 74vw;
	top: 42vw;
}

.rnb {
  display: inline-block;
  position: absolute;
  left: 20%;
  top: 139px;
  z-index: 3;
}

#rnb {
  display: inline-block;
  /*position: absolute;
  left: 20%;
  top: 139px;*/
  width: 240px;
  height: 117px;
  z-index: 2;
  transition: opacity 250ms linear;
}

#rnb.inactive { opacity: 0; }

@media(max-width: 1470px) { .rnb { left: 40px; } }
@media(max-width: 1210px) { .rnb { top: 195px; } }
@media(max-width: 1070px) { .rnb { top: 139px; } }
@media(max-width: 680px) { .rnb { top: 89px; left: 50%; transform: translate(-50%, 0); } }

.slogan { display: none !important; }

html:lang(en) .onlyde { display: none !important;}
html:lang(de) .onlyen { display: none !important;}

.einsatz ul {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #ffffff;
}

.einsatz li {
	list-style: none;
	min-width: 33%;
	height: 25vw;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-bottom: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
}

.einsatz li a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 9, 15, 0);
	transition: background-color 250ms linear;
}

.einsatz li a:hover {
	background-color: rgba(0, 9, 15, 0.85);
}

.einsatz li:nth-child(3n+3) {
	border-right: none;
}

.einsatz li:nth-child(3n+2) {
	flex-grow: 1;
}

.einsatz li span {
	display: inline-block;
	background-color: rgba(0, 9, 15, 0.85);
	padding: 10px 15px;
	position: absolute;
	left: 20px;
	top: 20px;
	color: #ffffff;
	transition: background-color 250ms linear;
}

.einsatz li a:hover span {
	background-color: rgba(0, 9, 15, 0);
}

.vd {
  height: auto;
  width: 100vw;
  background-color: rgba(0, 0, 0, 1);
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.vd video {
  width: 820px;
  height: auto;
}

.award {
  display: inline-block;
}

.award img {
  position: absolute;
  height: 60px;
  left: 340px;
  top: 25px;
}

.sofortkontakt {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 40px 0 0;
  position: absolute;
  top: 0;
  right: 490px;
  color: #fff;
  font-weight: bold;
	height: 100%;
background-image: url("/fileadmin/template/gfx/speed-header.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left center;



}

.sofortkontakt > a {
  display: inline-block;
}

.sofortkontakt img {
	display: inline-block;
	width: auto;
	height: 80px;
}

.sofortkontakt img + a { margin-left: 40px;}

/* Cookie-Banner */

.cookie-consent-container .buttons .btn--primary {
background: #72c14d !important;
border: 2px solid #72c14d !important;
  transition: opacity 400ms ease !important;
}

.cookie-consent-container .buttons .btn--primary:hover {
background: #72c14d !important;
border: 2px solid #72c14d !important;
  opacity: 0.5 !important;
  transition: opacity 400ms ease !important;
}

.cookie-consent-container .label input:checked~.checkmark {
background-color: #72c14d !important;
}

#cookie-consent * {
  font-family: 'Work Sans' !important;
}

.cookie-headline {
  font-size: 22px !important;
color: #2c2c2b !important;
  font-weight: bold !important;
}

.cookie-consent-container p {
  font-size: 16px;
  color: #999;
}

.cookie-consent-container .consent-modal .footer-links {
  display: block;
  width: 100%;
  line-height: 90%;
  color: #999;
  font-weight: 300;
}

.cookie-consent-container a, .cookie-consent-container a:visited, .cookie-consent-container a:active, .cookie-consent-container a:focus, .cookie-consent-container a:focus:active {
  color: #999;
  text-decoration: none;
}

/* Störer */

.notvis {
  display: none;
}

.stoerer {
  width: 100%;
  height: auto;
  position: absolute;
  top: 140px;
  left: 0;
  background-image: url('/fileadmin/template/gfx/urlaub-strand.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 11;
  padding: 40px;
}

.stoerer h2 {
  color: #fff;
  font-size: 3rem;
  max-width: 400px;
  line-height: 3rem;
}

.stoerer p {
  color: #fff;
  font-size: 1.4rem;
  line-height: 2rem;
}

.stoerer p strong {
  color: #d7152e;
  background-color: #fff;
  padding: 1px 2px;
}

#closestoerer {
  position: absolute;
  top: 40px;
  right: 40px;
  background-color: #d7152e;
  padding: 10px 10px 6px 10px;
  transition: 300ms ease-out;
}

#closestoerer img {
  height: 30px;
  width: 30px;
}

#closestoerer:hover {
  cursor: pointer;
  opacity: 0.5;
  transition: 300ms ease-out;
}

.flyer {
  display: none;
  position: fixed;
  top: 50%;
  right: 40px;
  z-index: 789;
  transform: translate(0, -50%) scale(1);
}

.flyer a {
  display: block;
  position: relative;
}

.flyer a:first-child {
  margin-bottom: 20px;
}

.flyer a:hover {
  cursor: pointer;
}

.flyer a:hover > span {
  display: block;
  margin-right: 20px;
}

.flyer a img {
  display: block;
  height: 80px;
  width: 80px;
  transform: scale(1);
  transition: transform 250ms linear, visibility 250ms linear;
}

.flyer a img:hover {
  transform: scale(1.2);
}

.flyer span {
  display: none;
  opacity: 1;
  transition: transform 250ms linear, visibility 250ms linear;
  position: absolute;
  right: 100%;
  top: 0;
  font-size: 30px;
  padding: 22px;
  background-color: #d7152e;
  color: #fff;
  border-radius: 40px;
}

/* Formular */

#kontaktform {
  width: calc(100% - 80px);
  max-width: 1500px;
  margin: 80px auto;
}

#kontaktform h3 {
  margin-bottom: 20px;
  
}

#kontaktform h3:first-child { text-align: center; }

#kontaktform h4 {
  color: rgba(0, 9, 15, 1);
  font-size: 26px;
}

#kontaktform input {
  font-size: 18px;
  padding: 10px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

#kontaktform input::placeholder, #kontaktform textarea::placeholder {
  font-size: 18px;
  color: rgba(0, 9, 15, 1);
}

#kontaktform .materialanfrage, #kontaktform .mietprodukte {
  display: table;
  width: 100%;
  margin-bottom: 20px;
}

#kontaktform .materialanfrage div, #kontaktform .mietprodukte div {
  display: table-cell;
  width: 50%;
}

#kontaktform .materialanfrage div:first-child, #kontaktform .mietprodukte div:first-child {
  padding-right: 50px;
}

#kontaktform .materialanfrage div:last-child, #kontaktform .mietprodukte div:last-child {
  padding-left: 50px;
	border-left: 2px solid rgba(0, 0, 0, 0.1);
}

#kontaktform .materialanfrage input {
  display: block;
  width: 100%;
}

#kontaktform .mietprodukte input {
  width: 20%;
}

#kontaktform .mietprodukte div p {
  display: inline-block;
  width: 80%;
  vertical-align: middle;
}

#kontaktform textarea {
  width: 100%;
  height: 400px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  padding: 10px;
  font-size: 18px;
}

#kontaktform input#btn {
  width: 100%;
  font-size: 26px;
  background-color: #d7152e;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 20px;
  margin-top: 20px;
  transition: transform 250ms linear;
}

#kontaktform input#btn:hover {
  cursor: pointer;
  transform: translate(5px, 0) skewX(-15deg);
  transition: transform 250ms linear;
}

#kontaktform .radio-center {
  text-align: center;
  margin-bottom: 30px;
}

#kontaktform .radio-center label {
  font-size: 18px;
  padding: 0 20px 0 10px;
}

#kontaktform .radio-center label:last-child {
  padding-right: 0;
}

#kontaktform .radio-center p {
  font-size: 18px;
}

#kontaktform .grundriss {
  margin-bottom: 30px;
}

#kontaktform .grundriss input {
  display: block;
}

hr.kk {
	margin: 70px 0;
height: 2px;
background: rgba(0, 0, 0, 0.1);
}

header .anfrage-menu {
	padding: 40px 120px 40px 40px;
}

#coseanfrage {
	position: absolute;
	right: 40px;
	top: 40px;
	width: 60px;
height: 60px;
background: #d7152e;
	border-radius: 50%;
	display: inline-block;
}

#coseanfrage:before,
#coseanfrage:after {
	content: '';
	display: inline-block;
	width: 30px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	
}

#coseanfrage:before { transform: translate(-50%, -50%) rotate(-45deg);}
#coseanfrage:after { transform: translate(-50%, -50%) rotate(45deg);}

@media(min-width: 1071px) {
#anfrageform header {
height: 50vh;
	min-height: 500px;
}
}




.rnb { display: none !important; }
