:root 
{
	--blue: #006292;
	--darkblue: #002e48;
	--grey: #e9eff2;
	--gradient: linear-gradient(90deg, rgba(0,46,72,1) 12%, rgba(0,98,146,1) 56%, rgba(255,255,255,0) 100%);
}

* 
{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body 
{
	font-size: 1.15em;
	color: var(--darkblue);
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	line-height: 1.85;
	overflow-x: hidden;
}

::selection 
{
	background-color: var(--blue);
 	color: #fff;
}

::-moz-selection 
{
  	background-color: var(--blue);
 	color: #fff;
}

h1
{
	font-weight: 700;
	color: var(--blue);
	display: inline-block;
	font-size: 3em;
	padding: 0.2em 0em 0.16em;
	font-family: 'Roboto', sans-serif;
	line-height: 1.45;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	-moz-box-decoration-break: clone;
	border-top: 0.145em solid var(--blue);
	border-bottom: 0.145em solid var(--blue);
}

h1 + h3
{
	margin-top: 0.8em;
}

#opener h1
{
	color: #fff;
	border-color: #fff!important;
}

#opener.product h1
{
	color: var(--blue);
	border-color: var(--blue)!important;
}

h2, h3
{
	font-weight: 700;
	line-height: 1.5;
	font-size: 2.5em;
}

h3
{
	font-size: 1.8em;
}

h2 strong, h3 strong
{
	color: var(--blue);
}

#quickFlex h3
{
	font-size: 1.3em;
}

p + p, ul + p
{
	margin-top: 1em;
}

h2 + p, h2 + ul, h3 + p, h3 + ul
{
	margin-top: 0.5em;
}

.wrap
{
	max-width: 1360px;
	display: block;
	margin: auto;
	padding: 0px 40px;
	position: relative;
}

#header
{
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	background-color: #fff;
	z-index: 1000000000;
	box-shadow: 0px 0px 40px rgba(0,0,0,0.1);
}

#headerSpace
{
	height: 135px;
}

#logo
{
	position: absolute;
	height: 100%;
	padding: 39px 0px 48px;
	transition: all 0.2s;
}

#navigation ul
{
	text-align: right;
}

#navigation ul li
{
	display: inline-block;
	margin-left: 20px;
	padding: 40px 0px;
	position: relative;
	transition: all 0.2s;
}

#navigation ul li.active ul li a
{
	font-weight: 400;
}

#navigation ul li.active ul li.active a
{
	font-weight: 700;
}

#navigation ul li a
{
	color: var(--dark);
	text-decoration: none;
	transition: color 0.2s;
	position: relative;
}

#navigation ul li:hover a
{
	color: var(--blue);
}

#navigation ul li.active a
{
	color: var(--blue);
	font-weight: 700;
}

#navigation ul li.language:before
{
	content: "|";
	margin-right: 20px;
	position: relative;
	top: -1px;
	font-weight: 600;
}

#navigation ul li.language:before
{
	color: var(--blue);
}

#navigation ul li.language a
{
	color: var(--blue);
}

#opener
{
	width: 100%;
	height: 58vh;
	background-size: cover;
	background-position: center;
	position: relative;
}

#opener.product
{
	/*min-height: 58vh;*/
	min-height: auto;
	height: auto;
	max-height: none;
	padding: 60px 0px 60px;
}

#opener:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: var(--darkblue);
	z-index: 1;
	opacity: 0.4;
}

#opener.product:after
{
	background-color: #fff;
	opacity: 0.75;
}

#openerContent
{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 85px;
	z-index: 10;
}

#opener.product #openerContent
{
	position: relative;
	bottom: 0;
}

#opener.product 
{
	display: flex;
	align-items: flex-end;
}

#opener.product .wrap
{
	display: flex;
	flex-direction: row-reverse;
}

#titleText
{
	/*max-width: 640px;*/
	max-width: 100%;
}

.divider
{
	width: 100%;
	height: 15px;
	background: var(--gradient);
}

.productFlex .divider, .flexGallery .divider
{
	height: 10px;
}

#header .divider
{
	height: 10px;
}

.text
{
	margin: 60px 0px;
}

.text.big p, .text.big ul
{
	font-size: 1.35em;
}

.colored
{
	background-color: var(--grey);
	padding: 60px 0px;
}

.imgFlex
{
	display: flex;
}

.imgFlex.right
{
	flex-direction: row-reverse;
}

.imgFlexItem
{
	width: 50%;
}

.inline
{
	width: 100%;
	margin-bottom: -9px!important;
	box-shadow: 0px 0px 80px rgba(0,0,0,0.2);
}

.textBox
{
	padding: 40px 0px 0px 40px;
	position: relative;
	background-color: #fff;
	z-index: 10;
	margin-top: 60px;
	margin-left: -60px;
	position: relative;
	min-height: calc(100% - 60px);
}

.right .textBox
{
	padding: 40px 40px 0px 0px;
	margin-right: -60px;
	margin-left: auto;
}

.colored .textBox
{
	background-color: var(--grey);
}

.textBox:before, .imgBox:before
{
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 10px;
	background: var(--gradient);
}

.text.withButton p a, .text .buttonArea p a, .buttonArea p a
{
	display: inline-block;
	color: #fff!important;
	line-height: 1.5;
	text-align: center;
	font-weight: 700;
	background-color: var(--blue);
	padding: 0.6em 1.2em 0.58em;
	transition: all 0.2s;
	text-decoration: none;
	border-bottom: none!important;
	border-radius: 0.4em;
}

.text.withButton p a:hover, .text .buttonArea p a:hover, .buttonArea p a:hover
{
	background-color: var(--darkblue);
}

.withButton
{
	margin-top: -30px;
}

.buttonArea 
{
	margin-top: 30px;
}

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

.gallery
{
	column-count: 4;
	column-gap: 40px;
	margin-bottom: -40px;
}

.galleryItem
{
	margin-bottom: 40px;
	page-break-inside: avoid;
    break-inside: avoid;
}

.imgBoxWrap
{
	display: flex;
}

.imgBox
{
	padding: 40px 40px 0px 40px;
	background-color: #fff;
	position: relative;
	z-index: 10;
	margin-top: -80px;
	width: calc(100% - 40px);
	max-width: 700px;
}

#footer
{
	padding: 40px 0px;
	background-color: var(--darkblue);
	color: #fff;
	font-size: 0.85em;
}

#copy
{
	font-weight: 700;
	position: absolute;
}

#footerList
{
	text-align: right;
}

#footerList li
{
	display: inline-block;
	margin-left: 40px;
}

#footerList li a
{
	color: #fff;
	text-decoration: none;
	transition: all 0.2s;
	border-bottom: 1px solid transparent;
}

#footerList li a:hover
{
	border-bottom: 1px solid #fff;
}

#quick
{
	padding: 40px 0px;
	background-color: var(--grey);
	font-size: 0.85em;
}

#quickFlex
{
	display: flex;
	margin-left: -40px;
	justify-content: space-between;
}

.quickFlexItem ul li
{
	list-style: none;
	white-space: nowrap;
}

.quickFlexItem ul li a
{
	color: var(--darkblue);
	text-decoration: none;
	transition: all 0.2s;
}

.quickFlexItem ul li a:hover
{
	color: var(--blue);
}

.quickFlexItem
{
	margin-left: 40px;
	border-left: 2px solid rgba(0,0,0,0.1);
	padding-left: 40px;
}

#quickFlex .quickFlexItem:nth-child(1)
{
	padding-left: 0;
	border-left: none;
}

.iconWrap
{
	position: relative;
}

.icon
{
	width: 32vw;
	max-width: 550px;
	position: absolute;
	bottom: 0px;
	right: 0;
	z-index: -10;
	opacity: 0.15;
}

.text p a, .text ul a, form a, #cookieNotice a
{
	color: var(--blue);
	text-decoration: none;
	border-bottom: 1px dashed var(--blue);
	transition: all 0.2s;
}

.text p a:hover, .text ul a:hover, form a:hover, #cookieNotice a:hover
{
	color: var(--darkblue);
	border-bottom: 1px solid var(--darkblue);
}

#cookieNotice
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	bottom: 0;
	font-size: 0.85em;
	background-color: #fff;
	padding: 20px 0px;
	z-index: 10000;
	box-shadow: 0px 0px 40px rgba(0,0,0,0.1);
}

#acceptWrap
{
	text-align: right;
}

#accepted
{
	font-family: 'Akrobat', sans-serif;
	color: var(--blue);
	cursor: pointer;
	transition: all 0.2s;
	text-transform: uppercase;
	font-size: 1.1em;
}

#accepted:hover
{
	color: var(--darkblue);
}

#cookieCheckboxes
{
	display: flex;
	flex-wrap: wrap;
	margin-top: 0.8em;
	margin-bottom: 0.8em;
}

#cookieCheckboxes label
{
	position: relative;
	margin-right: 1.8em;
	padding-left: 1.45em;
	cursor: pointer;
}

#cookieCheckboxes input
{
	position: absolute;
	left: 0;
	top: 48%;
	transform: translateY(-50%);
}

.twoCols ul, .twoCols p
{
	column-count: 2;
	column-gap: 40px;
}

.twoCols ul li
{
	page-break-inside: avoid;
    break-inside: avoid;
}

.text ul li
{
	position: relative;
	list-style: none;
	padding-left: 1.1em;
}

.text ul li:before
{
	content: "";
	position: absolute;
	width: 0.4em;
	height: 0.4em;
	left: 0;
	top: 0.69em;
	background-color: var(--blue);
}

.text.colored + .divider
{
	margin-top: -60px;
}

.divider + .text.colored
{
	margin-top: 0!important;
}

.divider + .divider
{
	display: none;
}

#form
{
	max-width: 750px;
	position: relative;
	padding-top: 180px;
	margin-top: -180px;
}

form label
{
	font-family: 'Roboto', sans-serif;
	color: var(--blue);
	font-weight: 600;
	display: block;
	margin-bottom: 0.2em;
}

input[type = "text"], input[type = "email"], textarea, button
{
	-webkit-appearance: none;
   	-moz-appearance: none;
   	appearance: none;
   	border-radius: 0px;
   	font-size: 1em;
   	width: 100%;
   	border: none;
   	font-family: 'Roboto', sans-serif;
   	line-height: 1.5;
   	color: var(--dark);
   	font-weight: 300;
}

input[type = "text"], input[type = "email"], textarea
{
	border: 1px solid var(--grey);
	padding: 0.6em 1.2em;
	margin-bottom: 1.2em;
	transition: border-color 0.2s;
}

input:focus, textarea:focus
{
	border-color: var(--darkblue);
	outline: 1px solid var(--darkblue);
}

textarea
{
	height: 12em;
	resize: none;
}

.alert.alert-danger ul:before
{
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfen Sie Ihre Eingaben.";
	font-weight: 600;
	color: red;
	display: block;
}

.alert.alert-danger
{
	margin-bottom: 1.5em;
}

.alert.alert-danger ul li
{
	color: red;
}

.alert.alert-danger ul li:before
{
	background-color: red!important;
}

.checkbox
{
	position: relative;
	padding-left: 1.3em;
}

.checkbox label
{
	font-family: 'Roboto', sans-serif;
	color: var(--dark);
	line-height: 1.6;
	font-weight: 300;
	cursor: pointer;
	text-transform: none;
}

.checkbox input
{
	position: absolute;
	left: 0px;
	top: 0.5em;
	cursor: pointer;
}

button
{
	width: auto;
	cursor: pointer;
	display: inline-block;
	color: #fff!important;
	line-height: 1.5;
	text-align: center;
	font-weight: 700;
	background-color: var(--blue);
	padding: 0.6em 1.2em 0.58em;
	transition: all 0.2s;
	text-decoration: none;
	margin-top: 1.2em;
	border-radius: 0.4em;
}

button:hover
{
	background-color: var(--darkblue);
}

.dividerIcon
{
	width: 40px;
	height: 40px;
	background-image: url(icon.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	margin: auto;
}

.mobileLang
{
	display: none;
}

.up
{
	cursor: pointer;
	border-bottom: 1px solid transparent;
	transition: all 0.2s;
	font-weight: 600;
	position: relative;
	top: 1px;
	background-image: url(up.svg);
	background-size: auto 60%;
	background-position: left;
	background-repeat: no-repeat;
	padding-left: 30px;
}

.up:hover
{
	border-bottom: 1px solid #fff;
}

.newsFlex
{
	display: flex;
}

.newsImg
{
	width: 250px;
}

.newsText
{
	width: calc(100% - 250px);
	padding-left: 40px;
}

.newsItem:nth-child(2n)
{
	background-color: var(--grey);
	padding: 60px 0px;
}

.date
{
	font-size: 0.8em;
	margin-bottom: 1em;
	margin-top: 0.2em;
}

#newsSlider
{
	position: relative;
	width: 100%;
	padding-bottom: 16%;
	min-height: 480px;
}

#opener
{
	max-height: 460px;
	display: block;
	margin: auto;
}

#openerContainer
{
	background-color: var(--grey);
}

.newsSlide
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.newsSlide:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	background-color: var(--darkblue);
	opacity: 0.4;
}

.newsSlide .wrap
{
	z-index: 100;
	height: 100%;
}

.newsBox
{
	color: #fff;
	padding-right: 20px;
}

.newsBox .buttonArea
{
	margin-top: 25px;
}

.newsBox h3
{
	color: #fff;
}

.newsBox
{
	max-width: 640px;
}

.newsSlide .wrap
{
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}

.cycle-pager
{
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: 40px;
	color: #fff;
	z-index: 10000;
}

.cycle-pager span
{
	font-size: 0;
	color: transparent;
	display: inline-block;
	width: 10px;
	height: 10px;
	cursor: pointer;
	background-color: #fff;
	border-radius: 100px;
	transition: all 0.2s;
	margin: 0px 6px;
}

.cycle-pager span.cycle-pager-active
{
	background-color: var(--blue);
	width: 25px;
}

#next, #prev
{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	cursor: pointer;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 20000;
}

#next
{
	right: 10px;
	background-image: url(next.svg);
}

#prev
{
	left: 10px;
	background-image: url(prev.svg);
}

.newsLogo
{
	position: absolute;
	left: 40px;
	top: 40px;
	z-index: 100000;
	width: 260px;
	line-height: 1.6;
}

.newsLogo img
{
	background-color: #fff;
	padding: 15px;
	margin-bottom: -1px;
}

.newsLogo span
{
	color: #fff;
	background-color: var(--darkblue);
	font-family: 'Akrobat', sans-serif;
	text-transform: uppercase;
	line-height: 1;
	text-transform: uppercase;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	-moz-box-decoration-break: clone;
	padding: 0.4em 15px;
	font-size: 1.1em;
}

.easyPaginateNav
{
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	max-width: 1280px;
	margin: auto;
	padding: 0px 40px;
}

.disabled
{
	display: none;
}

.easyPaginateNav a
{
	color: var(--dark);
	text-decoration: none;
	margin-right: 1em;
}

.easyPaginateNav a.current
{
	font-weight: 600;
	color: var(--blue);
}

.wrap.slideWrap
{
	padding: 0px;
	max-width: 1400px;
}

#opener
{
	max-width: 1400px;
}

/*#slider
{
	background-color: var(--grey);
}*/

.slide
{
	height: 44vh;
	max-height: 350px;
	border-left: 5px solid #fff;
	border-right: 5px solid #fff;
	position: relative;
}

.slide img
{
	height: 100%;
}

.slick-dots
{
	position: relative;
	bottom: 0;
	margin-top: 15px;
}

.slick-dots li button
{
	display: none;
}

.slick-dots li
{
	width: 10px;
	height: 10px;
	border-radius: 100px;
	background-color: var(--grey);
	transition: all 0.2s;
	cursor: pointer;
	margin: 0 6px;
	padding-left: 0!important;
}

.text .slick-dots li:before
{
	display: none!important;
}

.slick-dots li.slick-active
{
	background-color: var(--blue);
	width: 25px;
}

.slick-arrow
{
	position: absolute;
	width: 40px;
	height: 40px;
	background-color: var(--blue);
	left: 40px;
	top: calc(50% - 23px);
	transform: translateY(-50%);
	cursor: pointer;
	z-index: 50;
	background-size: 40%;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.2s;
}

.slick-arrow:hover
{
	background-color: var(--darkblue);
}

.next
{
	background-image: url(next.svg);
}

.prev
{
	background-image: url(prev.svg);
}

.slick-arrow.next
{
	right: 40px;
	left: auto;
}

.slide a
{
	color: var(--dark);
	cursor: zoom-in;
}

.slideDescription
{
	position: absolute;
	width: 100%;
	min-height: 70px;
	left: 0;
	bottom: 0px;
	font-size: 0.85em;
	line-height: 1.4;
	text-align: left;
	padding: 10px 15px;
	background-color: rgba(255, 255, 255, 0.8);
	text-align: center;
}

.slideInner
{
}

.links
{
	display: flex;
	flex-wrap: wrap;
}

.linkItem
{
	width: 25%;
	padding-bottom: 25%;
	position: relative;
	overflow: hidden;
	color: #fff;
	text-decoration: none;
}

.linkItem:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 5;
	background-color: rgba(0,0,0,0.1);
	transition: all 0.2s;
}

.linkImg
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-size: cover;
	background-position: center;
	transition: all 0.2s;
}

.linkItem:hover .linkImg
{
	transform: scale(1.1);
}

.linkItem:hover:after
{
	background-color: var(--blue);
	opacity: 0.5;
}

.linkTitle
{
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	z-index: 10;
	hyphens: auto;
	-ms-hyphens: auto;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	padding: 20px;
	line-height: 1.5;
}

.productFlex
{
	display: flex;
	margin-left: -40px;
}

.productFlexItem
{
	margin-left: 40px;
}

.productFlex .productFlexItem:nth-child(1)
{
	width: calc(100% - 350px);
}

.productFlex .productFlexItem:nth-child(2)
{
	width: 350px;
}

.productFlex .inline, .flexGallery .inline
{
	margin-bottom: -11px!important;
}

.imgTitle
{
	background-color: var(--grey);
	text-align: center;
	color: var(--blue);
	font-weight: 700;
	padding: 13px 20px;
	line-height: 1.5;
}

.flexGallery
{
	display: flex;
	flex-wrap: wrap;
	margin-left: -40px;
	margin-bottom: -40px;
	width: calc(100% + 40px);
}

.flexGalleryItem
{
	width: calc(25% - 40px);
	margin-left: 40px;
	margin-bottom: 40px;
	background-color: var(--grey);
}

.flexGalleryTitle
{
	text-align: center;
	font-weight: 700;
	padding: 13px 20px;
	line-height: 1.5;
	color: var(--blue);
}

.flexGalleryTitle, .imgTitle
{
	font-size: 0.85em;
}

.downloadArea
{
	display: flex;
	flex-wrap: wrap;
	margin-top: -20px;
	margin-left: -20px;
}

.downloadArea p
{
	margin-left: 20px;
	margin-top: 20px;
	width: auto;
	display: inline-block;
}

@media all and (max-width: 480px){
	.quickFlexItem
	{
		width: 100%!important;
	}

	.linkItem
	{
		width: 100%!important;
		padding-bottom: 100%!important;
	}

	.flexGalleryItem
	{
		width: calc(100% - 40px)!important;
	}
}

@media all and (max-width: 550px){
	.imgFlex
	{
		display: block;
		margin-left: 0;
	}

	.imgFlexItem
	{
		width: 100%;
		margin-left: 0;
	}

	.textBox
	{
		margin-left: 0;
		margin-right: 0!important;
		margin-top: 0;
		padding: 0!important;
		background-color: transparent!important;
		padding-top: 25px!important;
	}

	.textBox:before
	{
		top: -2px!important;
	}

	.dividerIcon
	{
		width: 30px!important;
		height: 30px!important;
	}
}

@media all and (max-width: 600px){
	h1
	{
		font-size: 1.5em!important;
	}

	h2
	{
		font-size: 1.3em!important;
	}

	h3
	{
		font-size: 1.2em!important;
	}

	#quickFlex h3
	{
		font-size: 1.1em!important;
	}

	.text.big p, .text.big ul
	{
		font-size: 1.1em!important;
	}

	#opener
	{
		height: 35vh!important;
		min-height: 220px;
	}

	#opener.product
	{
		/*min-height: 35vh!important;*/
		min-height: auto!important:;
		height: auto!important;
	}

	.imgBox
	{
		margin-top: 0px!important;
		width: 100%!important;
		padding: 0;
		background-color: transparent;
		padding-top: 25px;
	}

	.imgBox:before
	{
		top: -2px!important;
	}

	.gallery
	{
		column-count: 2;
	}

	.twoCols ul, .twoCols p
	{
		column-count: 1;
	}

	textarea
	{
		height: 10em;
	}

	.slide
	{
		height: 35vh!important;
	}

	.slideDescription
	{
		font-size: 0.75em;
	}

	.productFlex .productFlexItem:nth-child(1)
	{
		width: 100%!important;
		margin-left: 0;
	}

	.productFlex .productFlexItem:nth-child(2)
	{
		width: 100%!important;
		margin-top: 30px;
		margin-left: 0;
	}

	.productFlex
	{
		display: block;
		margin-left: 0;
	}
}

@media all and (max-width: 750px){
	.newsBoxDetail
	{
		display: none;
	}

	.newsBox
	{
		padding-right: 0;
	}

	#newsSlider
	{
		height: 45vh;
		min-height: 260px;
	}

	.newsSlide
	{
		text-align: center;
	}

	#newsSlider .wrap
	{
		justify-content: center;
	}

	.cycle-pager span, .slick-dots li
	{
		margin: 0px 6px;
	}

	.newsSlide .buttonArea
	{
		font-size: 0.9em;
	}
}

@media all and (max-width: 840px){
	#copy
	{
		position: relative;
		display: block;
		text-align: center;
	}

	#footerList
	{
		text-align: center;
	}

	#footerList li
	{
		display: block;
		margin-left: 0;
		margin-top: 2px;
	}

	#footer
	{
		padding-bottom: 26px!important;
	}

	.up
	{
		display: inline-block;
		width: auto;
	}

	.linkItem
	{
		width: 50%;
		padding-bottom: 50%;
	}

	.slick-arrow
	{
		width: 35px;
		height: 35px;
	}
}

@media all and (max-width: 820px){
	#quickFlex
	{
		margin-left: 0;
		flex-wrap: wrap;
		margin-left: 0;
		margin-bottom: -25px;
	}

	.quickFlexItem
	{
		width: 50%;
		margin-left: 0;
		text-align: center;
		border-left: none;
		padding-left: 0;
		margin-bottom: 25px;
	}

	#quick, #footer
	{
		padding: 30px 0px;
	}
}

@media all and (max-width: 850px){
	.flexGalleryItem
	{
		width: calc(50% - 40px);
	}
}

@media all and (max-width: 960px){
	.newsLogo
	{
		display: none;
	}

	.slide
	{
		height: 40vh;
		min-height: 180px;
	}
}

@media all and (max-width: 1050px){
	.newsLogo
	{
		width: 200px;
		line-height: 1.2;
	}

	.newsLogo img
	{
		background-color: #fff;
		padding: 15px;
		margin-bottom: -1px;
	}

	.newsLogo span
	{
		padding: 0.4em 15px;
		font-size: 0.8em;
	}
}

@media all and (max-width: 1320px){
	#navigation
	{
		display: none;
		position: fixed;
		width: 100%;
		left: 0;
		top: 86px;
		background-color: #fff;
		max-height: calc(100% - 86px);
		overflow: auto;
		border-bottom: 1px solid var(--grey);
	}

	#navigation ul
	{
		text-align: left;
	}

	#navigation ul li
	{
		display: block;
		margin-left: 0;
		padding: 8px 0;
		border-top: 1px solid var(--grey);
	}

	.subNavOpener
	{
		position: absolute;
		width: 51px;
		height: 51px;
		right: 0;
		top: 0;
		cursor: pointer;
		border-left: 1px solid var(--grey);
	}

	.subNavOpener:before
	{
		content: "+";
		position: absolute;
		color: var(--blue);
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		font-size: 1.2em;
	}

	.subNavOpener.active:before
	{
		content: "_";
		top: 32%;
	}

	.subNavOpener.active + ul
	{
		display: block!important;
	}

	#navigation ul li a
	{
		padding: 0px 40px;
	}

	#navigation ul li ul li
	{
		margin-top: 0;
		padding: 4px 0px;
	}

	#navigation ul li ul
	{
		position: relative;
		display: none;
		padding: 5px 0px;
		left: 0;
		top: 8px;
		text-align: left;
		font-size: 0.8em;
		background-color: var(--grey);
	}

	#navigation ul li ul li
	{
		margin-top: 0px;
	}

	#navigation ul li:hover ul li a, #navigation ul li.active ul li a
	{
		color: var(--darkblue);
	}

	#navigation ul li:hover ul li:hover a, #navigation ul li:hover ul li.active a
	{
		color: var(--blue);
	}

	#navOpener
	{
		position: absolute;
		width: 25px;
		height: 19px;
		top: 50%;
		right: 94px;
		transform: translateY(-50%);
		cursor: pointer;
	}

	.mobileLang
	{
		display: block;
		position: absolute;
		right: 40px;
		top: 50%;
		transform: translateY(-50%);
	}

	.mobileLang a
	{
		color: var(--blue);
		text-decoration: none;
	}

	.mobileLang a:before
	{
		content: "|";
		margin-right: 10px;
		position: relative;
		top: -1px;
		font-weight: 600;
	}

	.line
	{
		position: absolute;
		width: 100%;
		height: 3px;
		background-color: var(--blue);
		left: 50%;
		transform: translateX(-50%);
		transition: all 0.2s;
	}

	#navOpener .line:nth-child(1)
	{
		top: 0;
	}

	#navOpener .line:nth-child(2)
	{
		top: 50%;
		transform: translate(-50%, -50%);
	}

	#navOpener .line:nth-child(3)
	{
		bottom: 0;
	}

	#navOpener.active .line:nth-child(1)
	{
		top: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}

	#navOpener.active .line:nth-child(2)
	{
		width: 0;
	}

	#navOpener.active .line:nth-child(3)
	{
		bottom: auto;
		top: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	#header .wrap
	{
		height: 80px;
	}

	#headerSpace
	{
		height: 80px;
	}

	#logo
	{
		padding: 23px 0px 29px;
	}

	.divider
	{
		height: 10px;
	}

	#header .divider
	{
		height: 6px;
	}

	.productFlex .divider, .flexGallery .divider
	{
		height: 6px;
	}

	.textBox:before, .imgBox:before
	{
		top: 0px;
		height: 6px;
	}

	h1
	{
		font-size: 2.2em;
	}

	h2
	{
		font-size: 1.8em;
	}

	h3
	{
		font-size: 1.5em;
	}

	#quickFlex h3
	{
		font-size: 1.2em;
	}

	.text.big p, .text.big ul
	{
		font-size: 1.25em;
	}

	#opener
	{
		height: 45vh;
	}

	#opener.product
	{
		/*min-height: 45vh;*/
		min-height: auto!important;
		height: auto;
		max-height: none;
		padding: 40px 0px;
	}

	.text
	{
		margin: 40px 0px;
	}

	.withButton
	{
		margin-top: -20px;
	}

	.buttonArea
	{
		margin-top: 20px;
	}

	.colored
	{
		padding: 40px 0px;
	}

	.imgBox
	{
		margin-top: -40px;
	}

	#openerContent
	{
		bottom: 58px;
	}

	.icon
	{
		width: 38vw;
	}

	.text.colored + .divider
	{
		margin-top: -40px;
	}

	#form
	{
		padding-top: 115px;
		margin-top: -115px;
	}

	.dividerIcon
	{
		width: 35px;
		height: 35px;
	}

	#navigation ul li.language
	{
		display: none;
	}

	.newsItem:nth-child(2n)
	{
		padding: 40px 0px;
	}

	.cycle-pager
	{
		bottom: 30px;
	}

	#next, #prev
	{
		width: 25px;
		height: 25px;
	}

	.productFlex .productFlexItem:nth-child(1)
	{
		width: calc(100% - 260px);
	}

	.productFlex .productFlexItem:nth-child(2)
	{
		width: 260px;
	}
}

@media all and (min-width: 1321px){
	#navigation
	{
		display: block!important;
	}

	#navigation ul li ul
	{
		position: absolute;
		text-align: left;
		left: -20px;
		top: calc(100% - 20px);
		background-color: var(--blue);
		font-size: 0.85em;
		padding: 10px 20px;
		display: none;
		opacity: 0;
	    visibility: hidden;
	}

	#navigation ul li ul
	{
		min-width: calc(100% + 40px);
		font-size: 0.8em;
	}

	#navigation ul li ul li
	{
		display: block;
		line-height: 1.5;
		padding: 4px 0px;
		white-space: nowrap;
	}

	#header.scrolled #navigation ul li ul
	{
		top: calc(100% - 10px);
	}

	#navigation ul li:hover ul
	{
		display: block;
		opacity: 1;
		visibility: visible;
		animation: fade 0.6s;
	}

	@keyframes fade {
	    0% 
	    {
	        opacity: 0;
	    }

	    100% 
	    {
	        opacity: 1;
	    }
	}

	#navigation ul li ul li
	{
		display: block;
		margin-left: 0;
	}

	#header.scrolled #navigation ul li ul li
	{
		padding: 4px 0px;
	}

	#navigation ul li ul li a
	{
		color: #fff!important;
	}

	#navigation ul li.main a:before, #navigation ul li.main a:after
	{
		content: "";
		position: absolute;
		width: 0%;
		opacity: 0;
		height: 3px;
		background-color: var(--blue);
		left: 50%;
		transform: translateX(-50%);
		transition: all 0.2s;
	}

	#navigation ul li.last a:before, #navigation ul li.last a:after
	{
		display: none;
	}

	#navigation ul li:hover a:before, #navigation ul li:hover a:after, #navigation ul li.active a:before, #navigation ul li.active a:after
	{
		width: 100%;
		opacity: 1;
	}

	#navigation ul li a:before
	{
		top: -7px;
	}

	#navigation ul li a:after
	{
		bottom: -7px;
	}

	#navigation ul li.main.last a
	{
		display: inline-block;
		color: #fff;
		background-color: var(--blue); 
		padding: 0.3em 0.8em;
		transition: background-color 0.2s;
		border-radius: 0.4em;
		font-weight: 600;
	}

	#navigation ul li.main.last a:hover
	{
		background-color: var(--darkblue);
	}

	#header.scrolled ul li
	{
		padding: 22px 0px;
	}

	#header.scrolled #logo
	{
		padding: 26px 0px 32px;
	}

	#navigation ul li ul li a
	{
		opacity: 0.7;
		transition: opacity 0.2s;
	}

	#navigation ul li ul li:hover a, #navigation ul li ul li.active a
	{
		opacity: 1;
	}
}