/* FONTS */

@font-face {font-family:'UPM'; src:url('fonts/upm.woff2') format('woff2'), url('fonts/upm.woff') format('woff'); font-weight:normal; font-style:normal; font-display:swap;}
@font-face {font-family:'RR'; src:url('fonts/roboto-regular.woff2') format('woff2'), url('fonts/roboto-regular.woff') format('woff'); font-weight:normal; font-style:swap;}
@font-face {font-family:'RRI'; src:url('fonts/roboto-regular-italic.woff2') format('woff2'), url('fonts/roboto-regular-italic.woff') format('woff'); font-weight:normal; font-style:swap;}
@font-face {font-family:'RM'; src:url('fonts/roboto-medium.woff2') format('woff2'), url('fonts/roboto-medium.woff') format('woff'); font-weight:normal; font-style:swap;}
@font-face {font-family:'RMI'; src:url('fonts/roboto-medium-italic.woff2') format('woff2'), url('fonts/roboto-medium-italic.woff') format('woff'); font-weight:normal; font-style:swap;}

/* COLORS */

:root {
	--black: #000000;
	--black-10: rgba(0,0,0,0.1);
	--white: #FFFFFF;
	--white-80: rgba(255,255,255,0.8);
	--white-50: rgba(255,255,255,0.5);
	--white-20: rgba(255,255,255,0.2);
	--blue: #2C57D2;
	--orange: #FF4C02;
	--green: #009864;
	--cyan: #00D9FF;
	--magenta: #FF679B;
	--yellow: #FFB200;
	--grey-dark: #35414C;
	--grey-medium: #9BA7B2;
	--grey-light: #E9ECF0;
	--gradient-business-blue: linear-gradient(90deg, rgb(45,85,200) 0%, rgb(0,217,255) 100%);
	--gradient-energetic-orange: linear-gradient(90deg, rgb(255,80,0) 0%, rgb(255,178,0) 100%);
	--gradient-calm-green: linear-gradient(90deg, rgb(0,151,95) 0%, rgb(20,144,208) 100%);
}

/* MANDATORY */

* {margin: 0px; padding: 0px; box-sizing: border-box; background-repeat:no-repeat; background-position: 0px 0px;}
html, body {top: 0; left: 0; right: 0; width:100%; height:100%;}
table {border: none; border-collapse: collapse;}
table td, table th {padding: 0;}
ul, ol {list-style-type: none;}
img, iframe {border: none;}
input, textarea, select {border-radius:0px;}
.CookieDeclaration {display:none;}

/* GLOBAL */

body {
	font-family: 'RR', sans-serif;
	font-size: 16px;
	line-height: 140%;
	text-align: center;
	color: var(--grey-dark);
	background-color: var(--white);
	-webkit-text-size-adjust: 100%;
	-moz-hyphens: auto;
	-o-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	overflow-x: hidden;
}

a, a:link, a:visited, a:focus, a:active, a:hover, input[type="submit"] {
	color: var(--grey-dark);
	text-decoration: none;
	transition: color 0.2s linear, background-color 0.2s linear;
}

a.button {
	font-family: 'UPM', sans-serif;
	font-size: 16px;
	padding: 8px 40px 10px 20px;
	color: var(--blue) !important;
	border: 2px solid var(--blue);
	text-decoration: none !important;
	display: inline-block;
	background-color: transparent;
	margin-top: 10px;
	border-radius: 5px;
	position: relative;
	opacity: 1 !important;
}

a.button::after {
	content: "";
	width: 20px;
	height: 14px;
	position: absolute;
	z-index: 2;
	display: block;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	background-image: url(img/button-arrows.svg);
	background-size: 20px 42px;
	background-position: 0px 0px;
}

a.button:hover {
	color: var(--white) !important;
	background-color: var(--blue) !important;
}

a.button:hover::after {
	background-position: 0px -28px;
}

a.button.back {
	padding: 8px 20px 10px 40px;
}

a.button.back::after {
	right: auto;
	left: 10px;
	background-image: url(img/button-back-arrow-blue.svg);
	background-size: 100% 100%;
}

a.button.back:hover::after {
	background-image: url(img/button-back-arrow-white.svg);
}

div.bg-main-orange a.button,
div.bg-main-blue a.button,
div.bg-main-green a.button,
div.bg-newsletter a.button,
div.header-slider div.ce-bodytext a.button,
div.frame-layout-1 div.ce-bodytext a.button,
div.frame-layout-9 div.ce-bodytext a.button,
div.img-banner-big div.ce-bodytext a.button,
div.fbl-cta a.button {
	color: var(--white) !important;
	border-color: var(--white);
}

div.bg-main-orange a.button::after,
div.bg-main-blue a.button::after,
div.bg-main-green a.button::after,
div.bg-newsletter a.button::after,
div.header-slider div.ce-bodytext a.button::after,
div.frame-layout-1 div.ce-bodytext a.button::after,
div.frame-layout-9 div.ce-bodytext a.button::after,
div.img-banner-big div.ce-bodytext a.button::after,
div.fbl-cta a.button::after {
	background-position: 0px -28px;
}

div.bg-main-orange a.button:hover,
div.bg-main-blue a.button:hover,
div.bg-main-green a.button:hover,
div.bg-newsletter a.button:hover,
div.header-slider div.ce-bodytext a.button:hover,
div.frame-layout-9 div.ce-bodytext a.button:hover {
	color: var(--orange) !important;
	background-color: var(--white) !important;
}

div.frame-layout-1 div.ce-bodytext a.button:hover,
div.img-banner-big div.ce-bodytext a.button:hover,
div.fbl-cta a.button:hover {
	color: var(--blue) !important;
	background-color: var(--white) !important;
}

div.bg-main-orange a.button:hover::after,
div.bg-newsletter a.button:hover::after,
div.header-slider div.ce-bodytext a.button:hover::after,
div.frame-layout-9 div.ce-bodytext a.button:hover::after {
	background-position: 0px -14px;
}

div.frame-layout-1 div.ce-bodytext a.button:hover::after,
div.img-banner-big div.ce-bodytext a.button:hover::after,
div.fbl-cta a.button:hover::after {
	background-position: 0px 0px;
}

div.bg-main-blue ul,
div.bg-main-blue p a,
div.bg-main-green ul,
div.bg-main-green p a,
div.bg-main-orange ul,
div.bg-main-orange p a {
	color: var(--white);
}

div.bg-main-blue p a:hover,
div.bg-main-green p a:hover,
div.bg-main-orange p a:hover {
	color: var(--white) !important;
	opacity: 0.5;
}

div.bg-main-blue div.main div.frame div.rte-content ul li::before,
div.bg-main-blue div.news-main-body ul li::before,
div.bg-main-green div.main div.frame div.rte-content ul li::before,
div.bg-main-green div.news-main-body ul li::before,
div.bg-main-orange div.main div.frame div.rte-content ul li::before,
div.bg-main-orange div.news-main-body ul li::before {
	background-color: var(--white);
	opacity: 0.5;
}

p {
	margin: 10px 0px;
}

p a {
	text-decoration: underline !important;
}

p a:hover {
	color: var(--orange) !important;
}

b, strong {
	font-family: 'RM', sans-serif;
	font-weight: normal;
}

i, em {
	font-family: 'RRI', sans-serif;
	font-style: normal;
}

b i, b em, strong i, strong em, i b, i strong, em b, em strong {
	font-family: 'RMI', sans-serif;
	font-weight: normal;
	font-style: normal;
}

h1, h2, h3, h4, h5 {
	width: 100%;
	font-family: 'UPM', sans-serif;
	font-weight: normal;
	color: var(--orange);
	display: block;
	line-height: 120%;
	margin: 10px 0px 20px 0px;
	-moz-hyphens: none;
	-o-hyphens: none;
	-webkit-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

.text-left,
.ce-headline-left {
	text-align: left;
}

.text-center,
.ce-headline-center {
	text-align: center;
}

.text-right,
.ce-headline-right {
	text-align: right;
}

h1 {
	font-size: 40px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 26px;
	line-height: 140%;
}

h4 {
	font-size: 22px;
	line-height: 140%;
	margin-bottom: 10px;
}

h5 {
	font-size: 18px;
	line-height: 140%;
	margin-bottom: 10px;
}

span.sub-headline {
	width: 100%;
	display: block;
	font-family: 'RM', sans-serif;
	font-size: 16px;
	line-height: 140%;
	color: var(--orange);
}

div.bg-main-blue h1,
div.bg-main-blue h2,
div.bg-main-blue h3,
div.bg-main-blue h4,
div.bg-main-blue h5,
div.bg-main-blue p,
div.bg-main-blue span.sub-headline,
div.bg-main-green h1,
div.bg-main-green h2,
div.bg-main-green h3,
div.bg-main-green h4,
div.bg-main-green h5,
div.bg-main-green p,
div.bg-main-green span.sub-headline,
div.bg-main-orange h1,
div.bg-main-orange h2,
div.bg-main-orange h3,
div.bg-main-orange h4,
div.bg-main-orange h5,
div.bg-main-orange p,
div.bg-main-orange span.sub-headline,
div.bg-newsletter h1,
div.bg-newsletter h2,
div.bg-newsletter h3,
div.bg-newsletter h4,
div.bg-newsletter h5,
div.bg-newsletter span.sub-headline,
div.bg-newsletter p,
div.frame-layout-1 div.ce-bodytext h1,
div.frame-layout-1 div.ce-bodytext h2,
div.frame-layout-1 div.ce-bodytext h3,
div.frame-layout-1 div.ce-bodytext h4,
div.frame-layout-1 div.ce-bodytext h5,
div.frame-layout-1 div.ce-bodytext span.sub-headline,
div.frame-layout-1 div.ce-bodytext p,
div.frame-layout-9 div.ce-bodytext h1,
div.frame-layout-9 div.ce-bodytext h2,
div.frame-layout-9 div.ce-bodytext h3,
div.frame-layout-9 div.ce-bodytext h4,
div.frame-layout-9 div.ce-bodytext h5,
div.frame-layout-9 div.ce-bodytext span.sub-headline,
div.frame-layout-9 div.ce-bodytext p,
div.img-banner-big div.ce-bodytext h1,
div.img-banner-big div.ce-bodytext h2,
div.img-banner-big div.ce-bodytext h3,
div.img-banner-big div.ce-bodytext h4,
div.img-banner-big div.ce-bodytext h5,
div.img-banner-big div.ce-bodytext span.sub-headline,
div.img-banner-big div.ce-bodytext p {
	color: var(--white);
}

hr {
	width: 100%;
	height: 60px;
	display: block;
	border: none;
	float: left;
	clear: both;
	background-color: transparent;
}

/* ELEMENTS */

span.anchor-target {
	width: 100%;
	display: block;
	float: left;
	clear: both;
	position: relative;
	margin-top: -80px;
}

div.bg-top,
div.bg-header,
div.bg-menu,
div.bg-main,
div.bg-breadcrumbs,
div.bg-newsletter,
div.bg-footer,
div.bg-bottom,
div.bg-img-banner-big {
	width: 100%;
	float: left;
	clear: both;
	position: relative;
}

div.center {
	width: 1200px;
	margin: 0px auto;
}

div.top,
div.header,
div.menu,
div.main,
div.breadcrumbs,
div.newsletter,
div.footer,
div.bottom,
div.img-banner-big {
	width: 100%;
	float: left;
	clear: both;
	position: relative;
}

div.bg-top {
	position: relative;
	z-index: 990;
	background-color: var(--white);
}

div.top {
	height: 80px;
}

div.top-left {
	float: left;
	clear: left;
}

div.top-right {
	float: right;
	clear: right;
	display: none;
}

div.top-left a {
	width: 154px;
	height: 40px;
	display: block;
	float: left;
	clear: none;
	text-indent: -999px;
	overflow: hidden;
	margin: 20px 0px;
	background-image: url(img/logo.svg);
	background-size: 100% 100%;
	background-position: top left;
}

div.menu-trigger {
	width: 36px;
	height: 28px;
	position: relative;
	margin-top: 26px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	cursor: pointer;
}

div.menu-trigger span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background-color: var(--blue);
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

div.menu-trigger:hover span {
	background-color: var(--orange);
}

div.menu-trigger span:nth-child(1) {
	top: 4px;
}

div.menu-trigger span:nth-child(2), div.menu-trigger span:nth-child(3) {
	top: 12px;
}

div.menu-trigger span:nth-child(4) {
	top: 20px;
}

div.menu-trigger.open span:nth-child(1) {
	top: 18px;
	width: 0%;
	left: 50%;
}

div.menu-trigger.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

div.menu-trigger.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

div.menu-trigger.open span:nth-child(4) {
	top: 18px;
	width: 0%;
	left: 50%;
}

div.bg-menu {
	position: relative;
	z-index: 990;
	background-color: var(--white);
}

.fixpos div.bg-menu {
	position: fixed;
	top: -60px;
	margin-top: 60px;
	left: 0px;
	z-index: 990;
	box-shadow: 0px 3px 5px 0px var(--black-10);
	transition: margin-top 0.5s ease-in-out;
	transition-delay: 0.3s;
}

.fixpos.menu-big-open div.bg-menu {
	box-shadow: none;
}

div.menu {
	height: 40px;
}

.fixpos div.menu {
	height: 60px;
}

div.menu-logo {
	float: left;
	clear: left;
	display: none;
}

.fixpos div.menu-logo {
	display: block;
}

div.menu-logo a {
	width: 154px;
	height: 40px;
	display: block;
	float: left;
	clear: none;
	text-indent: -999px;
	overflow: hidden;
	margin: 10px 0px;
	background-image: url(img/logo.svg);
	background-size: 100% 100%;
	background-position: top left;
}

div.menu-center {
	height: 100%;
	float: left;
	clear: none;
}

.fixpos div.menu-center {
	margin-left: 40px;
}

ul.menu-main {
	height: 100%;
	font-family: 'RR', sans-serif;
	font-size: 16px;
	line-height: 100%;
	float: left;
	clear: none;
	padding-top: 4px;
}

.fixpos ul.menu-main {
	padding-top: 22px;
}

ul.menu-main > li {
	height: 100%;
	float: left;
	clear: none;
	margin-right: 40px;
	overflow: hidden;
}

ul.menu-main > li:last-child {
	margin-right: 0px;
}

ul.menu-main > li > a,
ul.menu-main > li > span.menu-big-link > a,
ul.menu-main > li > span.menu-big-link {
	height: 100%;
	display: block;
	float: left;
	clear: none;
	color: var(--blue);
	cursor: pointer;
	position: relative;
	transition: color 0.2s linear;
}

ul.menu-main > li > a:hover,
ul.menu-main > li > span.menu-big-link > a:hover,
ul.menu-main > li.current > a,
ul.menu-main > li.current > span.menu-big-link > a,
ul.menu-main > li > span.menu-big-link:hover,
ul.menu-main > li.current > span.menu-big-link {
	color: var(--orange) !important;
}

span.menu-big-link::after {
	content: "";
	width: 20px;
	height: 20px;
	display: block;
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: rotate(45deg) translateX(-14px);
	background-color: var(--grey-light);
	opacity: 0;
	transition: opacity 0.2s linear;
}

span.menu-big-link.menu-big-open::after {
	opacity: 1;
}

div.menu-right {
	float: right;
	clear: right;
}

.fixpos div.menu-right {
	margin-top: 18px;
}

div.menu-search {
	float: left;
	clear: none;
}

span.search-trigger {
	width: 20px;
	height: 20px;
	display: block;
	float: left;
	clear: none;
	cursor: pointer;
	overflow: hidden;
	margin: 2px 6px 0px 0px;
}

span.search-trigger svg {
	width: 100%;
	height: auto;
	float: left;
	clear: none;
}

span.st-open,
span.st-close {
	width: 100%;
	height: 100%;
	display: block;
	float: left;
	clear: both;
	transition: margin 0.2s ease-in-out;
}

span.st-close svg {
	width: 18px;
	height: 18px;
}

span.search-trigger svg path,
span.search-trigger svg polygon {
	fill: var(--blue);
	transition: fill 0.2s ease-in-out;
}

span.search-trigger:hover svg path,
span.search-trigger:hover svg polygon {
	fill: var(--orange);
}

body.search-open span.search-trigger span.st-open {
	margin-top: -20px;
}

div.search-content {
	width: 100%;
	height: 60px;
	float: left;
	clear: none;
	position: absolute;
	top: 40px;
	right: 0px;
	background-color: var(--grey-light);
	display: none;
}

body.fixpos div.search-content {
	top: 60px;
}

div.search-content div.search-form {
	width: 100%;
	height: 100%;
	float: left;
	clear: none;
}

span.search-closer {
	width: 20px;
	height: 20px;
	display: block;
	margin: 20px;
	float: left;
	clear: left;
	position: absolute;
	cursor: pointer;
}

span.search-closer svg {
	width: 100%;
	height: auto;
	float: left;
	clear: none;
}

span.search-closer svg polygon {
	fill: var(--blue);
	transition: fill 0.2s ease-in-out;
}

span.search-closer:hover svg polygon {
	fill: var(--orange);
}

div.search-content form {
	width: 100%;
	height: 100%;
	float: left;
	clear: none;
	padding-left: 20px;
}

div.search-content div.search-box {
	width: 100%;
	height: 100%;
	float: left;
	clear: none;
}

div.search-content div.search-box input[type="text"] {
	width: 100%;
	height: 100%;
	float: left;
	clear: none;
	font-family: 'RR', sans-serif;
	font-size: 20px;
	line-height: 100%;
	color: var(--grey-dark);
	border: none;
	background-color: transparent;
	outline: none;
}

div.search-content div.search-submit {
	position: absolute;
	top: 0px;
	right: 0px;
}

div.search-content div.search-submit input[type="submit"] {
	width: 60px;
	height: 60px;
	float: left;
	clear: none;
	text-align: left;
	text-indent: -999px;
	overflow: hidden;
	border: none;
	cursor: pointer;
	position: absolute;
	z-index: 2;
	top: 0px;
	right: 0px;
	outline: none;
	opacity: 0;
}

div.search-content div.search-submit svg {
	width: 26px;
	height: 26px;
	display: block;
	float: left;
	clear: none;
	position: absolute;
	z-index: 1;
	top: 16px;
	right: 16px;
}

div.search-content div.search-submit svg path {
	fill: var(--blue);
	transition: fill 0.2s ease-in-out;
}

div.search-content div.search-submit:hover svg path {
	fill: var(--orange);
}

div.menu-wrapper {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 900;
	float: left;
	clear: both;
	background-color: var(--grey-light);
	display: none;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

div.menu-wrapper div.center {
	height: 100%;
	position: relative;
}

div.menu-big {
	width: 100%;
	height: 100%;
	padding: 120px 0px;
	float: left;
	clear: both;
	transition: padding 0.2s ease-in-out;
}

.fixpos div.menu-big {
	padding: 80px 0px;
}

span.menu-big-closer {
	width: 16px;
	height: 16px;
	display: block;
	margin: 10px;
	float: left;
	clear: left;
	position: absolute;
	top: 140px;
	right: 0px;
	cursor: pointer;
	transition: top 0.2s ease-in-out;
}

.fixpos span.menu-big-closer {
	top: 80px;
}

span.menu-big-closer svg {
	width: 100%;
	height: auto;
	float: left;
	clear: none;
}

span.menu-big-closer svg polygon {
	fill: var(--grey-medium);
	transition: fill 0.2s ease-in-out;
}

span.menu-big-closer:hover svg polygon {
	fill: var(--grey-dark);
}

div.mb-content {
	width: 100%;
	float: left;
	clear: both;
	text-align: left;
	margin-top: 50px;
	transition: margin-top 0.2s ease-in-out;
}

.fixpos div.mb-content {
	margin-top: 30px;
}

div.mb-content-blue,
div.mb-content-coral {
	width: 100%;
	float: left;
	clear: both;
	margin-bottom: 40px;
}

div.mb-content div.menu-title {
	width: 100%;
	float: left;
	clear: both;
	border-bottom: 1px solid;
}

div.mb-content-blue div.menu-title {
	border-color: var(--blue);
}

div.mb-content-coral div.menu-title {
	border-color: var(--orange);
	margin-bottom: 10px;
}

div.mb-content div.menu-title a {
	font-family: 'RM', sans-serif;
	font-size: 20px;
	line-height: 100%;
	display: block;
	float: left;
	clear: none;
	margin-bottom: 20px;
}

div.mb-content-blue div.menu-title a {
	color: var(--blue);
}

div.mb-content-coral div.menu-title a {
	color: var(--orange);
}

div.menu-img {
	width: 100%;
	width: calc(100% + 20px);
	float: left;
	clear: both;
	margin-top: 20px;
}

div.menu-img-item {
	/*width: 25%;*/
	width: calc(100% / 3);
	float: left;
	clear: none;
	padding: 0px 20px 20px 0px;
}

div.menu-img-item a {
	width: 100%;
	float: left;
	clear: none;
	color: var(--blue);
	text-align: center;
	background-color: var(--white);
	box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
	transition: box-shadow 0.2s ease-in-out;
}

div.menu-img-item a:hover {
	box-shadow: 0px 0px 20px 0px var(--black-10);
}

span.mii-img {
	width: 100%;
	float: left;
	clear: both;
	overflow: hidden;
}

span.mii-img img {
	width: 100%;
	height: auto;
	float: left;
	clear: none;
	transition: transform 0.2s ease-in-out;
}

div.menu-img-item a:hover span.mii-img img {
	transform: scale(1.05);
}

span.mii-text {
	width: 100%;
	float: left;
	clear: both;
	padding: 20px 0px;
}

div.menu-list-wrapper {
	width: 100%;
	width: calc(100% + 20px);
	float: left;
	clear: both;
}

div.menu-list-wrapper div.menu-list {
	float: left;
	clear: none;
	padding-right: 20px;
}

div.menu-list-100 {
	width: 100%;
}

div.menu-list-50 {
	width: 50%;
}

div.menu-list-25 {
	width: 25%;
}

div.menu-list-100 ul.menu-list-items {
	column-count: 4;
}

div.menu-list-50 ul.menu-list-items {
	column-count: 2;
}

div.menu-list-title {
	width: 100%;
	float: left;
	clear: both;
	color: var(--white);
	padding: 10px 20px;
	margin: 20px 0px 0px 0px;
}

div.menu-list-title a {
	width: 100%;
	float: left;
	clear: none;
	color: var(--white);
	display: block;
	position: relative;
}

div.menu-list-title a:hover {
	color: var(--white-80);
}

div.menu-list-title a::after {
	content: "";
	width: 20px;
	height: 14px;
	position: absolute;
	z-index: 2;
	display: block;
	top: 50%;
	transform: translateY(-50%);
	right: 5px;
	background-image: url(img/button-arrows.svg);
	background-size: 20px 42px;
	background-position: 0px -28px;
	transition: right 0.2s ease-in-out;
}

div.menu-list-title a:hover::after {
	right: -5px;
}

div.menu-list-title b,
div.menu-list-title strong {
	display: block;
}

div.mb-content-coral div.menu-list-title {
	background-color: var(--orange);
}

ul.menu-list-items {
	width: 100%;
	float: left;
	clear: both;
	column-gap: 20px;
}

li.menu-list-item {
	width: 100%;
	display: inline-block;
	margin-top: 10px;
}

li.menu-list-item a {
	width: 100%;
	float: left;
	clear: both;
	padding-left: 40px;
	display: block;
	position: relative;
}

li.menu-list-item a::before {
	content: "";
	width: 20px;
	height: 10px;
	display: block;
	position: absolute;
	top: 5px;
	left: 0px;
	background-image: url(img/menu-list-item.svg);
	background-size: 30px 10px;
	background-repeat: no-repeat;
	background-position: top right;
	transition: width 0.2s ease-in-out;
}

li.menu-list-item a:hover::before {
	width: 30px;
}

span.mli-text {
	width: 100%;
	display: block;
	float: left;
	clear: none;
}

span.mli-title {
	width: 100%;
	display: block;
	float: left;
	clear: both;
	color: var(--orange);
}

span.mli-subtitle {
	width: 100%;
	display: block;
	float: left;
	clear: both;
	font-size: 13px;
	line-height: 120%;
	color: var(--grey-dark);
	transition: color 0.2s ease-in-out;
}

a:hover span.mli-subtitle {
	color: var(--orange);
}

div.bg-newsletter {
	background: var(--orange);
	display: none;
}

div.newsletter {
	padding: 60px 0px;
}

div.bg-footer {
	background: var(--blue);
	background: var(--gradient-business-blue);
}

div.footer {
	padding: 40px 0px;
}

div.footer-top {
	width: 100%;
	float: left;
	clear: both;
}

div.footer-top > a {
	width: 154px;
	height: 40px;
	display: block;
	float: left;
	clear: none;
	text-indent: -999px;
	overflow: hidden;
	margin-bottom: 15px;
	background-image: url(img/logo-footer.svg);
	background-size: 100% 100%;
	background-position: top left;
}

div.footer-bottom {
	width: 100%;
	float: left;
	clear: both;
}

div.footer-bottom-left {
	float: left;
	clear: left;
}

div.footer-bottom-right {
	float: right;
	clear: right;
}

ul.menu-footer {
	font-family: 'RR', sans-serif;
	font-size: 16px;
	line-height: 100%;
	margin-top: 24px;
	float: left;
	clear: none;
}

ul.menu-footer > li {
	float: left;
	clear: none;
	margin-right: 40px;
}

ul.menu-footer > li:last-child {
	margin-right: 0px;
}

ul.menu-footer > li > a {
	color: var(--white);
	transition: opacity 0.2s ease-in-out;
}

ul.menu-footer > li > a:hover {
	opacity: 0.5;
}

ul.menu-social {
	float: left;
	clear: none;
}

ul.menu-social > li {
	float: left;
	clear: none;
	margin-right: 10px;
}

ul.menu-social > li:last-child {
	margin-right: 0px;
}

ul.menu-social > li > a {
	width: 40px;
	height: 40px;
	display: block;
	float: left;
	clear: none;
	text-indent: -999px;
	overflow: hidden;
	background-image: url(img/menu-social.svg);
	background-size: 200px 40px;
	transition: opacity 0.2s ease-in-out;
}

ul.menu-social > li > a:hover {
	opacity: 0.6;
}

ul.menu-social > li.facebook > a {
	background-position: 0px 0px;
}

ul.menu-social > li.xing > a {
	background-position: -40px 0px;
}

ul.menu-social > li.linkedin > a {
	background-position: -80px 0px;
}

ul.menu-social > li.instagram > a {
	background-position: -120px 0px;
}

ul.menu-social > li.youtube > a {
	background-position: -160px 0px;
}

div.bg-bottom {
	background-color: var(--white);
}

div.bottom {
	font-size: 14px;
	line-height: 100%;
	padding: 20px 0px;
}

div.bottom-left {
	float: left;
	clear: left;
	color: var(--grey-dark);
}

div.bottom-right {
	float: right;
	clear: right;
}

ul.menu-bottom {
	float: left;
	clear: none;
}

ul.menu-bottom > li {
	float: left;
	clear: none;
	padding: 0px 10px;
	border-left: 1px solid var(--grey-dark);
}

ul.menu-bottom > li:first-child {
	padding-left: 0px;
	border-left: none;
}

ul.menu-bottom > li:last-child {
	padding-right: 0px;
}

ul.menu-bottom > li > a {
	color: var(--grey-dark);
}

ul.menu-bottom > li > a:hover {
	text-decoration: underline;
}

div.small-spacer {
	width: 100%;
	height: 80px;
	float: left;
	clear: both;
	display: none;
}

div.small-menu {
	width: 100%;
	height: 100%;
	float: left;
	clear: both;
	position: fixed;
	z-index: 910;
	padding: 80px 20px;
	overflow-y: scroll;
   -webkit-overflow-scrolling: touch;
	background: var(--grey-light);
	display: none;
}

div.small-menu-content {
	width: 100%;
	float: left;
	clear: both;
	margin-top: 40px;
}

div.small-menu-search {
	width: 100%;
	float: left;
	clear: both;
	margin-bottom: 40px;
}

div.small-menu-search form {
	width: 100%;
	float: left;
	clear: both;
	position: relative;
	border-radius: 7px;
	overflow: hidden;
}

div.small-menu-search div.search-box {
	width: 100%;
	float: left;
	clear: both;
}

div.small-menu-search div.search-box input[type="text"] {
	width: 100%;
	height: 50px;
	float: left;
	clear: both;
	border: none;
	font-family: 'RR', sans-serif;
	font-size: 18px;
	line-height: 100%;
	color: var(--grey-dark);
	padding: 0px 50px 0px 20px;
	outline: none;
	background-color: rgba(255,255,255,0.8);
}

div.small-menu-search div.search-box input[type="text"]::-webkit-input-placeholder  {
	color: var(--grey-medium);
}

div.small-menu-search div.search-box input[type="text"]:-ms-input-placeholder {
	color: var(--grey-medium);
}

div.small-menu-search div.search-box input[type="text"]::-moz-placeholder {
	color: var(--grey-medium);
	opacity: 1;
}

div.small-menu-search div.search-box input[type="text"]:focus::-webkit-input-placeholder {
	color: var(--grey-medium);
}

div.small-menu-search div.search-submit {
	position: absolute;
	top: 0px;
	right: 0px;
}

div.small-menu-search div.search-submit input[type="submit"] {
	width: 50px;
	height: 50px;
	float: left;
	clear: none;
	border: none;
	cursor: pointer;
	text-align: left;
	text-indent: -999px;
	overflow: hidden;
	background-color: transparent;
	background-image: url(img/search-submit-small.svg);
	background-size: 26px 26px;
	background-position: center center;
}

div.small-menu-main {
	width: 100%;
	float: left;
	clear: both;
}

ul.small-menu-main {
	width: 100%;
	float: left;
	clear: both;
	text-align: left;
}

ul.small-menu-main > li {
	width: 100%;
	float: left;
	clear: both;
	border-top: 2px solid var(--white-80);
	position: relative;
}

ul.small-menu-main > li > a,
ul.small-menu-main > li > span.small-menu-link {
	width: 100%;
	float: left;
	clear: both;
	font-family: 'UPM', sans-serif;
	font-size: 32px;
	line-height: 100%;
	color: var(--blue);
	padding: 15px 30px 18px 10px;
}

span.small-menu-link {
	position: relative;
	z-index: 10;
	cursor: pointer;
}

span.small-menu-sek-trigger {
	width: 30px;
	height: 30px;
	position: absolute;
	z-index: 9;
	top: 17px;
	right: 0px;
	text-indent: -999px;
	overflow: hidden;
	cursor: pointer;
	background-image: url(img/small-menu-trigger.svg);
	background-position: center center;
	background-size: auto 100%;
	transition: transform 0.2s ease-in-out;
}

span.small-menu-sek-trigger.open {
	transform: rotate(90deg);
}

ul.small-menu-sek {
	width: 100%;
	float: left;
	clear: both;
	padding-left: 40px;
}

ul.small-menu-sek > li {
	width: 100%;
	float: left;
	clear: both;
	border-top: 2px solid var(--white-80);
	position: relative;
}

ul.small-menu-sek > li > a,
ul.small-menu-sek > li > span.small-menu-link {
	width: 100%;
	float: left;
	clear: both;
	font-family: 'UPM', sans-serif;
	font-size: 28px;
	line-height: 100%;
	color: var(--blue);
	padding: 15px 30px 18px 10px;
}

span.small-menu-trd-trigger {
	width: 24px;
	height: 24px;
	position: absolute;
	top: 17px;
	right: 0px;
	text-indent: -999px;
	overflow: hidden;
	cursor: pointer;
	background-image: url(img/small-menu-trigger.svg);
	background-position: center center;
	background-size: 100% 100%;
	transition: transform 0.2s ease-in-out;
}

span.small-menu-trd-trigger.open {
	transform: rotate(90deg);
}

ul.small-menu-trd {
	width: 100%;
	float: left;
	clear: both;
	padding-left: 40px;
}

ul.small-menu-trd > li {
	width: 100%;
	float: left;
	clear: both;
	border-top: 2px solid var(--white-80);
	position: relative;
}

ul.small-menu-trd > li > a {
	width: 100%;
	float: left;
	clear: both;
	font-family: 'UPM', sans-serif;
	font-size: 22px;
	line-height: 100%;
	color: var(--blue);
	padding: 15px 30px 18px 10px;
}

span.small-menu-trd-trigger {
	width: 24px;
	height: 24px;
	position: absolute;
	top: 17px;
	right: 0px;
	text-indent: -999px;
	overflow: hidden;
	cursor: pointer;
	background-image: url(img/small-menu-trigger.svg);
	background-position: center center;
	background-size: 100% 100%;
	transition: transform 0.2s ease-in-out;
}

span.small-menu-trd-trigger.open {
	transform: rotate(90deg);
}

ul.small-menu-main > li.current > a,
ul.small-menu-sek > li.current > a,
ul.small-menu-trd > li.current > a,
ul.small-menu-main > li.current > span.small-menu-link,
ul.small-menu-sek > li.current > span.small-menu-link {
	color: var(--orange);
}

div.bg-main-white {
	background-color: var(--white);
}

div.bg-main-blue {
	background: var(--blue);
	background: var(--gradient-business-blue);
}

div.bg-main-green {
	background: var(--green);
	background: var(--gradient-calm-green);
}

div.bg-main-orange {
	background: var(--orange);
	background: var(--gradient-energetic-orange);
}

div.bg-main-grey {
	background-color: var(--grey-light);
}

div.news-list {
	width: 100%;
	width: calc(100% + 20px);
	float: left;
	clear: both;
}

div.news-list-item {
	width: 33.3333333333%;
	float: left;
	clear: none;
	padding: 0px 20px 20px 0px;
}

div.news-list-item:nth-child(1),
div.news-list-item:nth-child(6) {
	width: 66.6666666666%;
}

div.news-list-items-3 div.news-list-item:nth-child(1) {
	width: 33.3333333333%;
}

div.nli-content {
	width: 100%;
	height: 440px;
	float: left;
	clear: none;
}

div.nli-content > a {
	width: 100%;
	height: 100%;
	display: block;
	float: left;
	clear: none;
	color: var(--white);
	position: relative;
}

span.nli-img {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
}

span.img-bg {
	width: 100%;
	height: 100%;
	display: block;
	float: left;
	clear: none;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: cover !important;
}

span.nli-text {
	width: 100%;
	display: block;
	position: absolute;
	bottom: 0px;
	left: 0px;
	padding: 20px;
	float: left;
	clear: none;
	z-index: 2;
	overflow: hidden;
	background: transparent;
	background: linear-gradient(0deg, rgba(0,0,0,0.7) 20%, rgba(0,0,0,0) 100%);
}

span.nli-text-content {
	width: 100%;
	display: block;
	float: left;
	clear: both;
	margin-bottom: -56px;
	text-align: left;
	transition: margin-bottom 0.4s ease-out;
}

a:hover span.nli-text-content {
	margin-bottom: 0px;
}

span.nli-subtitle {
	width: 100%;
	display: block;
	float: left;
	clear: both;
	font-family: 'RM', sans-serif;
	font-size: 16px;
}

span.nli-title {
	width: 100%;
	display: block;
	float: left;
	clear: both;
	font-family: 'UPM', sans-serif;
	font-size: 24px;
	line-height: 130%;
	margin-bottom: 20px;
}

span.nli-cta {
	display: block;
	float: left;
	clear: both;
	font-family: 'UPM', sans-serif;
	font-size: 15px;
	border: 1px solid var(--white);
	border-radius: 5px;
	padding: 6px 38px 6px 10px;
	background-image: url(img/button-arrow-white.svg);
	background-size: 18px 12px;
	background-position: right 10px center;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

span.nli-cta:hover {
	color: var(--blue);
	background-image: url(img/button-arrow-blue.svg);
	background-color: var(--white);
}

div.page-pagination {
	width: 100%;
	font-family: 'UPM', sans-serif;
	font-size: 15px;
	line-height: 100%;
	float: left;
	clear: both;
	color: var(--blue);
	margin-top: 30px;
	text-align: center;
}

ul.news-pagination {
	display: inline-block;
}

body ul.news-pagination li {
	float: left;
	clear: none;
	background-image: none;
	padding: 0px;
	margin: 0px 2px;
}

ul.news-pagination li a {
	width: 44px;
	height: 44px;
	display: block;
	float: left;
	clear: none;
	padding-top: 13px;
	color: var(--blue);
	background-color: none;
	border-radius: 5px;
}

ul.news-pagination li a:hover {
	color: var(--orange);
}

ul.news-pagination li.np-current,
div.search-browser li.np-item a.current {
	width: 44px;
	height: 44px;
	display: block;
	float: left;
	clear: none;
	padding-top: 13px;
	color: var(--white);
	background-color: var(--blue);
	background-color: none;
	border-radius: 5px;
}

div.bg-news-detail {
	width: 100%;
	float: left;
	clear: both;
	background-color: var(--grey-light);
}

div.bg-news-header {
	width: 100%;
	float: left;
	clear: both;
	position: relative;
	z-index: 1;
}

div.news-header-align {
	width: 1400px;
	margin: 0px auto;
}

div.news-header {
	width: 100%;
	height: 760px;
	float: left;
	clear: both;
}

div.bg-news-content {
	width: 100%;
	float: left;
	clear: both;
	position: relative;
	z-index: 2;
	margin-top: -60px;
}

div.news-content-align {
	width: 1000px;
	margin: 0px auto;
}

div.news-content {
	width: 100%;
	float: left;
	clear: both;
	padding: 80px;
	margin-bottom: 80px;
	background-color: var(--white);
}

div.news-intro {
	width: 100%;
	float: left;
	clear: both;
	margin-bottom: 20px;
}

span.news-intro-subtitle,
span.news-intro-date {
	width: 100%;
	display: block;
	float: left;
	clear: both;
	color: var(--orange);
}

div.news-main {
	width: 100%;
	float: left;
	clear: both;
}

div.news-main-align {
	width: 600px;
	margin: 0px auto;
}

div.news-main-content {
	width: 100%;
	float: left;
	clear: both;
	margin-top: 10px;
	text-align: left;
}

div.news-main-teaser {
	width: 100%;
	float: left;
	clear: both;
	font-family: 'RM', sans-serif;
	color: var(--grey-dark);
}

div.news-main-body {
	width: 100%;
	float: left;
	clear: both;
}

div.detail-content-elements {
	width: 100%;
	float: left;
	clear: both;
}

div.detail-content-elements div.frame {
	width: 100%;
	float: left;
	clear: both;
	padding: 0px;
}

div.detail-content-elements div.ce-image,
div.detail-content-elements div.ce-gallery,
div.detail-content-elements div.ce-row,
div.detail-content-elements div.ce-column {
	width: 100%;
	float: left;
	clear: both;
}

div.detail-content-elements span.image-caption {
	width: 100%;
	float: left;
	clear: both;
	display: block;
	color: var(--grey-dark);
	padding: 0px 0px 10px 0px;
	font-size: 14px !important;
	line-height: 140% !important;
}

div.detail-content-elements img {
	width: 100%;
	height: auto;
	float: left;
	clear: both;
}

div.news-main-downloads {
	width: 100%;
	float: left;
	clear: both;
	margin-top: 40px;
}

div.nmd-list-item {
	width: 100%;
	float: left;
	clear: both;
	margin-top: 5px;
}

div.nmd-list-item a {
	width: 100%;
	float: left;
	clear: both;
	display: block;
	padding: 10px 44px 10px 10px;
	position: relative;
	border-radius: 5px;
	color: var(--grey-dark);
	background-color: var(--grey-light);
}

div.nmd-list-item a:hover {
	color: var(--white);
	background-color: var(--blue);
}

div.nmd-list-item a::after {
	content: "";
	width: 22px;
	height: 22px;
	display: block;
	position: absolute;
	top: 10px;
	right: 10px;
	background-image: url(img/news-main-downloads.svg);
	background-size: 22px 44px;
	background-position: top left;
	background-repeat: no-repeat;
}

div.nmd-list-item a:hover::after {
	background-position: bottom left;
}

span.nmd-title {
	font-family: 'RM', sans-serif;
}

span.nmd-filetype {
	text-transform: uppercase;
}

div.news-main-footer {
	width: 100%;
	float: left;
	clear: both;
	margin-top: 40px;
}

div.nmf-left {
	float: left;
	clear: left;
}

div.nmf-right {
	float: right;
	clear: right;
}

div.nmf-left a {
	display: block;
	float: left;
	clear: both;
	font-family: 'UPM', sans-serif;
	font-size: 15px;
	color: var(--blue);
	border: 1px solid var(--blue);
	border-radius: 5px;
	padding: 6px 10px 6px 38px;
	background-image: url(img/button-back-arrow-blue.svg);
	background-size: 18px 12px;
	background-position: 10px center;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

div.nmf-left a:hover {
	color: var(--white);
	background-image: url(img/button-back-arrow-white.svg);
	background-color: var(--blue);
}

div.news-main-related {
	width: 100%;
	float: left;
	clear: both;
	margin-top: 40px;
}

div.sharing-button {
	float: left;
	clear: none;
	position: relative;
}

div.sharing-button-trigger {
	display: block;
	float: left;
	clear: both;
	font-family: 'UPM', sans-serif;
	font-size: 15px;
	color: var(--blue);
	border: 1px solid var(--blue);
	border-radius: 5px;
	padding: 6px 38px 6px 10px;
	cursor: pointer;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	position: relative;
}

div.sharing-button-trigger:hover {
	color: var(--white);
	background-color: var(--blue);
}

div.sharing-button-trigger::after {
	content: "";
	width: 20px;
	height: 20px;
	position: absolute;
	top: 8px;
	right: 10px;
	background-image: url(img/sharing-button-trigger.svg);
	background-size: 20px 40px;
	background-position: top left;
}

div.sharing-button-trigger:hover::after {
	background-position: bottom left;
}

div.sharing-button-content {
	position: absolute;
	top: 0px;
	right: 0px;
	height: 36px;
	background-color: var(--blue);
	border-radius: 5px;
	overflow: hidden;
	display: none;
}

div.sharing-closer {
	width: 22px;
	height: 22px;
	display: block;
	float: left;
	clear: left;
	position: absolute;
	top: 7px;
	left: 6px;
	z-index: 1;
}

span.sharing-button-closer {
	width: 100%;
	height: 100%;
	float: left;
	clear: none;
	display: block;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.2s ease-in-out;
}

span.sharing-button-closer:hover {
	opacity: 1;
}

span.sharing-button-closer svg {
	width: 16px;
	height: 16px;
	margin: 3px;
}

span.sharing-button-closer svg polygon {
	fill: var(--white);
}

div.sharing-button-content div.shariff {
	display: block;
	float: left;
	clear: right;
	margin-left: 34px;
}

div.sharing-button-content ul {
	float: left;
	clear: none;
	flex-wrap: nowrap !important;
}

div.sharing-button-content li {
	height: auto !important;
	float: left;
	clear: none;
	display: block;
	margin: 0px !important;
	flex: none !important;
}

div.sharing-button-content span.fab,
div.sharing-button-content span.fas {
	display: none !important;
}

div.sharing-button-content a {
	width: 36px !important;
	height: 36px !important;
	display: block;
	float: left;
	clear: none;
	border-radius: 5px;
	background-color: transparent !important;
	background-image: url(img/sharing-buttons.svg);
	background-size: 180px 36px;
	background-position: 0px 0px;
}

div.sharing-button-content a:hover {
	background-color: var(--orange) !important;
}

div.sharing-button-content li.facebook a {
	background-position: 0px 0px;
}

div.sharing-button-content li.twitter a {
	background-position: -36px 0px;
}

div.sharing-button-content li.linkedin a {
	background-position: -72px 0px;
}

div.sharing-button-content li.xing a {
	background-position: -108px 0px;
}

div.sharing-button-content li.mail a {
	background-position: -144px 0px;
}

div.nmr-list {
	width: 100%;
	float: left;
	clear: both;
}

div.nmr-slider {
	width: 100%;
	float: left;
	clear: both;
	padding-top: 20px;
	position: relative;
}

div.owl-nav {
	position: absolute;
	top: -10px;
	right: 0px;
}

div.owl-nav button {
	width: 30px;
	height: 20px;
	float: left;
	clear: none;
	margin-left: 10px;
	display: block !important;
	-moz-appearance: none !important; 
	-webkit-appearance: none !important;
	appearance: none !important;
	outline: none;
	background-color: transparent !important;
	background-image: url(img/slider-arrows-grey.svg) !important;
	background-size: 30px 40px !important;
}

div.owl-nav button:first-child {
	margin-left: 0px;
}

div.owl-nav button.owl-prev {
	background-position: top left !important;
}

div.owl-nav button.owl-next {
	background-position: bottom left !important;
}

div.owl-nav button.disabled {
	opacity: 0.5;
}

div.owl-nav button span {
	display: none;
}

div.nmr-list-item {
	width: 100%;
	float: left;
	clear: none;
}

div.nmr-list-item a {
	width: 100%;
	float: left;
	clear: none;
	color: var(--blue);
	display: block;
}

div.nmr-list-item a:hover {
	color: var(--orange);
}

span.nmr-list-img {
	width: 100%;
	float: left;
	clear: none;
	margin-bottom: 10px;
}

span.nmr-list-img img {
	width: 100%;
	height: auto;
	float: left;
	clear: none;
}

span.nmr-list-text {
	width: 100%;
	float: left;
	clear: both;
	padding-right: 10px;
}

span.nmr-list-subtitle {
	font-size: 14px;
	display: block;
	float: left;
	clear: both;
}

span.nmr-list-title {
	font-family: 'RM', sans-serif;
	font-size: 16px;
	display: block;
	float: left;
	clear: both;
}

div.main div.search-form {
	width: 100%;
	float: left;
	clear: both;
	text-align: center;
}

div.main form#search-form {
	width: 100%;
	max-width: 600px;
	display: inline-block;
	text-align: left;
	position: relative;
}

div.main div.search-box {
	width: 100%;
	float: left;
	clear: none;
}

div.main div.search-box input[type="text"] {
	width: 100%;
	height: 60px;
	float: left;
	clear: both;
	font-family: 'RR', sans-serif;
	font-size: 20px;
	color: var(--grey-dark);
	padding: 15px 18px;
	background-color: var(--white);
	border: none;
	border-radius: 0px;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

div.main div.search-submit {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 0px;
	right: 0px;
}

div.main div.search-submit svg {
	width: 30px;
	height: 30px;
	display: block;
	float: left;
	clear: none;
	position: absolute;
	z-index: 1;
	top: 15px;
	left: 15px;
}

div.main div.search-submit svg path {
	fill: var(--blue);
	transition: fill 0.2s ease-in-out;
}

div.main div.search-submit:hover svg path {
	fill: var(--orange);
}

div.main div.search-submit input[type="submit"] {
	width: 60px;
	height: 60px;
	display: block;
	float: left;
	clear: none;
	position: absolute;
	z-index: 2;
	opacity: 0;
	cursor: pointer;
}

div.search-results {
	width: 100%;
	float: left;
	clear: both;
}

div.search-result-item {
	width: 100%;
	float: left;
	clear: both;
	background-color: var(--grey-light);
	margin-bottom: 20px;
}

div.srl-text {
	padding: 20px;
}

h3.srl-title {
	margin-top: 0px;
	margin-bottom: 10px;
}

h3.srl-title a {
  color: var(--orange);
}

h3.srl-title a:hover {
  color: var(--orange);
}

div.srl-img {
  width: 400px;
  float: left;
  clear: left;
  padding-right: 20px;
}

div.srl-img img {
  width: 100%;
  height: auto;
  float: left;
  clear: none;
}

span.srl-link a {
  font-family: 'RM', sans-serif;
  color: var(--blue);
}

span.srl-link a:hover {
  color: var(--orange);
  text-decoration: none !important;
}

span.hit {
  display: inline-block;
  color: var(--white);
  background-color: var(--orange);
}

div.search-results-pb-bottom {
  width: 100%;
  float: left;
  clear: both;
  text-align: center;
  margin-top: 10px;
}

div.search-results-amount {
  width: 100%;
  float: left;
  clear: both;
  text-align: center;
  font-size: 16px;
  color: var(--grey-dark);
  margin-top: 10px;
  margin-bottom: 20px;
}

div.search-pagebrowser {
  width: 100%;
  float: left;
  clear: both;
}

div.subpages-filter {
	float: right;
	clear: both;
	margin-bottom: 30px;
}

span.subpages-filter-prefix {
	height: 24px;
	display: block;
	float: left;
	clear: left;
	font-family: 'RM', sans-serif;
	font-size: 16px;
	line-height: 100%;
	color: var(--blue);
	padding: 5px 0px;
	margin: 5px 10px;
}

ul.subpages-filter {
	font-family: 'RR', sans-serif;
	font-size: 16px;
	line-height: 100%;
	float: left;
	clear: none;
}

ul.subpages-filter li {
	display: block;
	float: left;
	clear: none;
	padding: 0px !important;
	margin: 5px 0px 0px 5px;
}

ul.subpages-filter li::before {
	display: none;
}

ul.subpages-filter li a {
	display: block;
	float: left;
	clear: none;
	padding: 6px 10px;
	color: var(--blue);
	background-color: var(--grey-light);
}

ul.subpages-filter li.current a,
ul.subpages-filter li a:hover {
	color: var(--white);
	background-color: var(--blue);
}

div.bg-tabbed-content {
	width: 100%;
	float: left;
	clear: both;
	position: relative;
}

div.tabbed-content {
	width: 100%;
	float: left;
	clear: both;
	padding: 0px 20px;
	margin-bottom: 30px;
}

ul.tabs {
	width: 100%;
	width: calc(100% + 20px);
	float: left;
	clear: both;
	font-family: 'UPM', sans-serif;
	font-size: 28px;
	line-height: 100%;
}

ul.tabs li {
	width: 33.3333333333%;
	float: left;
	clear: none;
	padding-right: 20px;
}

ul.tabs li > span {
	width: 100%;
	float: left;
	clear: none;
	display: block;
	position: relative;
	color: var(--white);
	background-color: var(--black-10);
	cursor: pointer;
}

ul.tabs li > span.active {
	color: var(--blue);
	background-color: var(--white);
}

ul.tabs li span.tabs-link-title {
	width: 100%;
	float: left;
	clear: both;
	display: block;
	position: relative;
	z-index: 2;
	padding: 20px 30px;
}

ul.tabs li span.tabs-link-action {
	width: 20px;
	height: 20px;
	display: block;
	position: absolute;
	z-index: 1;
	top: 24px;
	right: 30px;
}

ul.tabs li span.active span.tabs-link-action {
	z-index: 3;
}

ul.tabs li span.tabs-link-action > span {
	width: 100%;
	height: 100%;
	float: left;
	clear: none;
	position: absolute;
	top: 0px;
	left: 0px;
	text-indent: -999px;
	overflow: hidden;
	background-image: url(img/tabs.svg);
	background-size: 20px 40px;
}

ul.tabs li span.tabs-link-open {
	background-position: top left;
	transform: rotate(0deg);
	display: block;
}

ul.tabs li span.tabs-link-close {
	background-position: bottom left;
	transform: rotate(45deg);
	display: none;
}

ul.tabs li span.active span.tabs-link-open {
	display: none;
}

ul.tabs li span.active span.tabs-link-close {
	display: block;
}

ul.tab-links {
	width: 100%;
	float: left;
	clear: both;
	font-family: 'UPM', sans-serif;
	font-size: 24px;
	line-height: 100%;
	display: none;
}

ul.tab-links li {
	width: 100%;
	float: left;
	clear: both;
	margin-bottom: 10px;
}

ul.tab-links li a {
	width: 100%;
	float: left;
	clear: none;
	display: block;
	color: var(--white);
	padding: 15px 20px;
	position: relative;
	background-color: var(--black-10);
	border-radius: 5px;
}

ul.tab-links li a:hover {
	color: var(--blue);
	background-color: var(--white);
}

ul.tab-links li a::after {
	content: "";
	width: 20px;
	height: 14px;
	display: block;
	position: absolute;
	top: 20px;
	right: 20px;
	background-image: url(img/button-arrows.svg);
	background-size: 20px 42px;
	background-position: 0px -28px;
}

ul.tab-links li a:hover::after {
	background-position: 0px 0px;
}

div.tabbed-content > div.frame,
div.tab-content-frame {
	width: 100%;
	float: left;
	clear: both;
	padding: 30px;
	background-color: var(--white);
	display: none;
}

div.tab-content-frame {
	padding: 10px 0px;
}

div.tabbed-content div.frame-layout-5 {
	padding: 0px;
}

div.tabbed-content div.frame-type-menu_section_pages > ul {
	width: 100%;
	width: calc(100% + 30px);
	float: left;
	clear: both;
}

div.tabbed-content div.frame-type-menu_section_pages ul li {
	width: 33.3333333333%;
	float: left;
	clear: none;
	padding-right: 30px;
}

div#c44 ul li {
	width: 50%;
}

div.tabbed-content div.frame-type-menu_section_pages ul li::before {
	display: none;
}

div.tabbed-content div.frame-type-menu_section_pages ul li a {
	width: 100%;
	float: left;
	clear: none;
	font-family: 'RR', sans-serif;
	font-size: 20px;
	line-height: 120%;
	color: var(--blue);
	display: block;
	position: relative;
	padding: 10px;
	border-bottom: 1px solid var(--grey-light);	
}

div.tabbed-content div.frame-type-menu_section_pages ul li a:hover {
	color: var(--blue);
}

div.tabbed-content div.frame-type-menu_section_pages ul li a::after {
	content: "";
	width: 20px;
	height: 14px;
	display: block;
	position: absolute;
	top: 13px;
	right: 10px;
	background-image: url(img/button-arrows.svg);
	background-size: 20px 42px;
	background-position: 0px 0px;
	opacity: 0;
	transition: opacity 0.2s linear;
}

div.tabbed-content div.frame-type-menu_section_pages ul li a:hover::after {
	opacity: 1;
}

div.bg-header div.center,
div.bg-img-banner-big div.center {
	width: 1920px;
}

div.header-slider div.ce-textpic {
	width: 100%;
	height: 800px;
	float: left;
	clear: none;
	text-align: center;
	position: relative;
}

div.header-slider div.ce-gallery {
	width: 100%;
	height: 100%;
	float: left;
	clear: none;
	position: relative;
	z-index: 1;
}

div.header-slider div.ce-row,
div.header-slider div.ce-column,
div.header-slider figure {
	width: 100%;
	height: 100%;
	float: left;
	clear: none;
}

div.header-slider div.ce-bodytext-align {
	width: 1200px;
	height: 100%;
	margin: 0px auto;
	position: relative;
}

div.header-slider div.ce-bodytext {
	width: 100%;
	max-width: 480px;
	text-align: left;
	float: left;
	clear: none;
	position: absolute;
	z-index: 2;
	top: 50%;
	padding: 40px;
	transform: translateY(-50%);
	background-color: var(--orange);
}

div.header-slider div.ce-left div.ce-bodytext {
	right: 0px;
}

div.header-slider div.ce-right div.ce-bodytext {
	left: 0px;
}

div.header-slider div.ce-bodytext h1,
div.header-slider div.ce-bodytext h2,
div.header-slider div.ce-bodytext h3,
div.header-slider div.ce-bodytext h4,
div.header-slider div.ce-bodytext h5,
div.header-slider div.ce-bodytext p {
	color: var(--white);
	margin: 0px;
}

div.header-slider div.ce-bodytext span.sub-headline {
	color: var(--white-80);
}

div.header-slider div.ce-bodytext a.button {
	margin-top: 20px;
}

div.header-slider div.owl-dots {
	width: auto;
	height: 12px !important;
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
}

div.header-slider div.owl-dots::before {
	content: "";
	width: 100%;
	height: 2px;
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-1px);
	left: 0px;
	z-index: 1;
	background-color: var(--white-50);
}

div.header-slider div.owl-dots button {
	width: 12px;
	height: 12px;
	display: block;
	float: left;
	clear: none;
	position: relative;
	z-index: 2;
	margin-left: 100px;
	cursor: pointer;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: var(--white-50);
	border-radius: 6px;
	transition: background-color 0.2s ease-in-out;
}

div.header-slider div.owl-dots button.active {
	background-color: var(--white);
}

div.header-slider div.owl-dots button:first-child {
	margin-left: 0px;
}

div.header-image {
	width: 100%;
	height: 700px;
	float: left;
	clear: both;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}

div.subpage-slider-wrapper {
	width: 100%;
	float: left;
	clear: both;
	margin-top: 30px;
}

div.subpage-slider-wrapper div.owl-nav {
	top: -40px;
}

div.subpage-slider-item {
	width: 100%;
	height: 380px;
	float: left;
	clear: none;
}

div.subpage-slider-item a {
	width: 100%;
	height: 100%;
	display: block;
	float: left;
	clear: none;
}

span.ssl-image {
	width: 100%;
	height: 100%;
	float: left;
	clear: none;
	position: relative;
	z-index: 1;
}

span.ssl-text {
	width: 100%;
	display: block;
	position: absolute;
	bottom: 0px;
	left: 0px;
	padding: 20px;
	float: left;
	clear: none;
	z-index: 2;
	overflow: hidden;
	background: transparent;
	background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

span.ssl-text-content {
	width: 100%;
	display: block;
	float: left;
	clear: both;
	margin-bottom: -56px;
	text-align: left;
	transition: margin-bottom 0.3s ease-in-out;
}

a:hover span.ssl-text-content {
	margin-bottom: 0px;
}

span.ssl-title {
	width: 100%;
	display: block;
	float: left;
	clear: both;
	font-family: 'UPM', sans-serif;
	font-size: 24px;
	line-height: 130%;
	margin-bottom: 20px;
	color: var(--white);
}

span.ssl-cta {
	display: block;
	float: left;
	clear: both;
	color: var(--white);
	font-family: 'UPM', sans-serif;
	font-size: 15px;
	border: 1px solid var(--white);
	border-radius: 5px;
	padding: 6px 38px 6px 10px;
	background-image: url(img/button-arrow-white.svg);
	background-size: 18px 12px;
	background-position: right 10px center;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

span.ssl-cta:hover {
	color: var(--blue);
	background-image: url(img/button-arrow-blue.svg);
	background-color: var(--white);
}

div.testimonial-slider-wrapper {
	width: 100%;
	float: left;
	clear: both;
	margin-top: 20px;
}

div.testimonial-slider div.ce-textpic {
	width: 100%;
	float: left;
	clear: none;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background-color: var(--grey-light);
}

div.testimonial-slider div.ce-gallery {
	width: 30%;
	float: left;
	clear: left;
}

div.testimonial-slider div.ce-gallery img {
	width: 100%;
	height: auto;
	float: left;
	clear: none;
}

div.testimonial-slider div.ce-bodytext {
	width: 70%;
	float: left;
	clear: right;
	padding: 30px;
}

div.testimonial-slider div.ce-bodytext {
	font-family: 'RM', sans-serif;
	color: var(--orange);
}

div.testimonial-slider div.ce-bodytext b,
div.testimonial-slider div.ce-bodytext strong {
	font-size: 20px;
	line-height: 140%;
	color: var(--blue);
	font-family: 'RR', sans-serif;
}

div.testimonial-slider div.owl-dots {
	width: 100%;
	float: left;
	clear: both;
	text-align: center;
	margin-top: 15px;
}

div.testimonial-slider div.owl-dots button {
	width: 12px;
	height: 12px;
	display: inline-block;
	margin: 0px 6px;
	border-radius: 6px;
	background-color: var(--grey-light);
	cursor: pointer;
	outline: none;
}

div.testimonial-slider div.owl-dots button.active {
	background-color: var(--grey-medium);
}

div.frame-layout-1,
div.frame-layout-9 {
	margin: 20px 0px;
}

div.frame-layout-1 div.ce-textpic,
div.frame-layout-9 div.ce-textpic {
	width: 100%;
	float: left;
	clear: both;
	position: relative;
}

div.frame-layout-1 div.ce-gallery,
div.frame-layout-9 div.ce-gallery {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
}

div.frame-layout-1 div.ce-row,
div.frame-layout-1 div.ce-column,
div.frame-layout-1 figure,
div.frame-layout-9 div.ce-row,
div.frame-layout-9 div.ce-column,
div.frame-layout-9 figure {
	width: 100%;
	height: 100%;
	float: left;
	clear: none;
}

div.frame-layout-1 div.ce-bodytext,
div.frame-layout-9 div.ce-bodytext {
	width: 100%;
	max-width: 440px;
	float: left;
	clear: none;
	position: relative;
	z-index: 2;
	margin: 60px;
	padding: 40px;
	background-color: var(--blue);
}

div.frame-layout-9 div.ce-bodytext {
	background-color: var(--orange);
}

div.frame-layout-1 div.ce-right div.ce-bodytext,
div.frame-layout-9 div.ce-right div.ce-bodytext {
	float: left;
}

div.frame-layout-1 div.ce-right span.img-bg,
div.frame-layout-9 div.ce-right span.img-bg {
	background-position: right center !important;
}

div.frame-layout-1 div.ce-left div.ce-bodytext,
div.frame-layout-9 div.ce-left div.ce-bodytext {
	float: right;
}

div.bg-breadcrumbs {
  margin-top: 20px;
  background-color: var(--white);
  border-bottom: 1px solid var(--grey-light);
}

div.breadcrumbs {
  color: var(--blue);
  padding: 10px 0px;
  font-size: 16px;
  line-height: 100%;
}

div.breadcrumbs a {
  padding-top: 1px;
  display: block;
  float: left;
  clear: none;
  color: var(--blue);
  display: inline-block;
}

div.breadcrumbs a:hover {
  color: var(--orange);
}

span.bc-arrow {
  display: block;
  float: left;
  clear: none;
  padding: 0px 10px;
}

span.bc-current {
  display: block;
  float: left;
  clear: none;
  padding-top: 1px;
}

a.bc-home {
  width: 18px;
  height: 18px;
  padding: 0px;
  text-indent: -999px;
  overflow: hidden;
  display: block;
  float: left;
  clear: none;
  background-image: url(img/bc-home-blue.svg);
  background-position: center center;
  background-size: 100% 100%;
}

a.bc-home:hover {
  background-image: url(img/bc-home-blue-alt.svg);
}

div.main {
	width: calc(100% + 40px);
	padding: 60px 0px;
	margin-left: -20px;
	text-align: left;
}

div.frame {
  width: 100%;
  float: left;
  clear: both;
  padding: 0px 20px;
  position: relative;
}

div.header-slider div.frame {
	padding: 0px;
}

div.frame-ce-col-80 {
  width: 80%;
  clear: none;
}

div.frame-ce-col-70 {
  width: 66.6666666667%;
  clear: none;
}

div.frame-ce-col-60 {
  width: 60%;
  clear: none;
}

div.frame-ce-col-50 {
  width: 50%;
  clear: none;
}

div.frame-ce-col-40 {
  width: 40%;
  clear: none;
}

div.frame-ce-col-30 {
  width: 33.3333333333%;
  clear: none;
}

div.frame-ce-col-25 {
  width: 25%;
  clear: none;
}

div.frame-ce-col-20 {
  width: 20%;
  clear: none;
}

div.news-main-body div.frame {
	width: 100%;
	clear: both;
}

div.page-content-slider-wrapper {
	width: 100%;
	float: left;
	clear: both;
	margin-top: 30px;
}

div.page-content-slider-wrapper div.owl-nav {
	top: -40px;
}

div.pcs-img {
	width: 100%;
	float: left;
	clear: both;
}

div.pcs-img img {
	width: 100%;
	height: auto;
	float: left;
	clear: none;
}

div.pcs-text {
	width: 100%;
	float: left;
	clear: both;
	padding-top: 20px;
}

span.pcs-title,
span.pcs-description,
span.pcs-cta {
	width: 100%;
	display: block;
	float: left;
	clear: both;
}

span.pcs-title {
	font-family: 'RM', sans-serif;
	font-size: 18px;
	padding-bottom: 5px;
}

span.pcs-title a,
span.pcs-cta a {
	color: var(--blue) !important;
}

span.pcs-title a:hover,
span.pcs-cta a:hover {
	color: var(--orange) !important;
}

span.pcs-cta {
	font-family: 'RM', sans-serif;
	padding-top: 5px;
}

div.frame-layout-2 h1,
div.frame-layout-2 h2,
div.frame-layout-2 h3,
div.frame-layout-2 h4,
div.frame-layout-2 h5,
div.frame-layout-2 span.pcs-title a,
div.frame-layout-2 span.pcs-cta a {
	color: var(--orange) !important;
}

div.frame-layout-3 ol {
  width: 100%;
  float: left;
  clear: both;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 30px;
}

div.frame-layout-3 ol li {
  width: 33.3333333333%;
  float: left;
  clear: none;
  text-align: center;
  color: var(--grey-light);
  padding: 30px 15px;
  border: none !important;
  margin: 0px !important;
  counter-increment: circle-numbers-blue;
}

div.frame-ce-col-50.frame-layout-3 {
	width: 100%;
	float: left;
	clear: both;
}

div.frame-ce-col-50.frame-layout-3 ol li {
	width: 50%;
	padding-left: 60px;
	text-align: left;
	position: relative;
}

div.frame-layout-3 ol li b,
div.frame-layout-3 ol li strong {
  font-family: 'UPM', sans-serif;
  font-size: 24px;
  line-height: 120%;
  color: var(--white);
  padding-bottom: 10px;
  display: inline-block;
}

div.frame-layout-3 ol li::before {
  content: counter(circle-numbers-blue);
  width: 44px;
  height: 44px;
  font-family: 'RM', sans-serif;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  display: block;
  float: none !important;
  clear: none !important;
  margin: 0px auto;
  margin-bottom: 15px;
  color: var(--grey-light);
  background-color: var(--white);
  background-color: var(--black-10);
  border-radius: 22px;
  padding-top: 10px;
  box-sizing: border-box;
}

div.frame-ce-col-50.frame-layout-3 ol li::before {
	position: absolute;
	top: 24px;
	left: 0px;
	float: left !important;
	clear: both !important;
}

div.frame-layout-4 div.ce-gallery {
	max-width: 180px;
	float: left;
	clear: left;
	margin: 0px 20px 20px 0px;
}

div.frame-layout-4 div.ce-gallery img {
	max-width: 100%;
	height: auto;
	float: left;
	clear: none;
}

div.frame-layout-4 div.ce-bodytext {
	padding-left: 200px;
}

div.frame-layout-4 b,
div.frame-layout-4 strong,
div.frame-layout-4 a {
	color: var(--blue);
}

blockquote {
	font-family: 'RM', sans-serif;
	color: var(--orange);
}

blockquote b,
blockquote strong {
	font-family: 'RR', sans-serif;
	font-size: 20px;
	line-height: 140%;
	color: var(--blue);
}

div.ce-textpic.ce-left.ce-above div.ce-bodytext {
	width: 100%;
	float: left;
	clear: both;
}

div.img-banner-big > div.frame {
	padding: 0px;
}

div.img-banner-big div.ce-textpic {
	width: 100%;
	height: 600px;
	float: left;
	clear: both;
	text-align: center;
}

div.img-banner-big div.ce-gallery {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
}

div.img-banner-big div.ce-row,
div.img-banner-big div.ce-column,
div.img-banner-big figure {
	width: 100%;
	height: 100%;
	float: left;
	clear: none;
}

div.img-banner-big div.ce-bodytext {
	width: 1200px;
	margin: 0px auto;
	position: relative;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
}

div.main div.frame div.rte-content ul,
div.news-main-body ul,
div.news-main-body ol {
	margin: 10px 0px;
}

div.news-main-body ol {
	margin-left: 20px;
	list-style-type: decimal;
}

div.main div.frame div.rte-content ul li,
div.news-main-body ul li {
	padding-left: 30px;
	position: relative;
}

div.news-main-body ol li {
	position: relative;
}

div.main div.frame div.rte-content ul li::before,
div.news-main-body ul li::before {
	content: "";
	width: 20px;
	height: 1px;
	background-color: var(--grey-dark);
	position: absolute;
	top: 10px;
	left: 0px;
}

div.main div.frame img {
	max-width: 100%;
	height: auto;
	float: left;
	clear: none;
}

div.main div.frame div.ce-center div.ce-column {
	text-align: center;
}

div.main div.frame div.ce-center img {
	float: none;
	clear: none;
	display: inline-block;
}

div.downloads {
	width: 100%;
	width: calc(100% + 20px);
	float: left;
	clear: both;
	display: flex;
	flex-wrap: wrap;
}

div.downloads-item {
	width: 25%;
	float: left;
	clear: none;
	padding: 20px 20px 0px 0px;
}

div.downloads-item-content {
	width: 100%;
	float: left;
	clear: none;
	background-color: var(--grey-light);
}

div.downloads-item-text {
	width: 100%;
	float: left;
	clear: both;
	color: var(--white);
	padding: 20px;
	background: var(--blue);
}

span.dit-title {
	width: 100%;
	font-family: 'RM', sans-serif;
	display: block;
	float: left;
	clear: both;
}

span.dit-description {
	width: 100%;
	color: var(--white-50);
	display: block;
	float: left;
	clear: both;
}

div.downloads-item-cta {
	width: 100%;
	float: left;
	clear: both;
}

div.downloads-item-cta a.download {
	width: 100%;
	float: left;
	clear: both;
	font-family: 'UPM', sans-serif;
	font-size: 15px;
	color: var(--blue);
	padding: 10px 40px 10px 20px;
	background-color: var(--grey-light);
	position: relative;
}

div.downloads-item-cta a.download:hover {
	color: var(--white);
	background-color: var(--orange) !important;
}

div.bg-main-grey div.downloads-item-cta a.download {
	background-color: var(--white);
}

div.downloads-item-cta a.download::after {
    content: "";
    width: 22px;
    height: 22px;
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    background-image: url(img/news-main-downloads.svg);
    background-size: 22px 44px;
    background-position: top left;
    background-repeat: no-repeat;
}

div.downloads-item-cta a.download:hover::after {
	background-position: bottom left;
}

span.dic-suffix {
	text-transform: uppercase;
}

ul.tabs-list {
	width: 100%;
	float: left;
	clear: both;
	border-bottom: 1px solid var(--grey-light);
	margin: 30px 0px;
}

ul.tabs-list li {
	float: left;
	clear: none;
	display: block;
	background-color: var(--white);
	border-style: solid;
	border-width: 1px;
	border-color: var(--grey-light);
	padding: 0px !important;
	cursor: pointer;
	border-radius: 5px 5px 0px 0px;
	margin-bottom: -1px;
	margin-left: 10px;
}

ul.tabs-list li::before {
	display: none;
}

ul.tabs-list li span {
	width: 100%;
	display: block;
	float: left;
	clear: none;
	color: var(--grey-medium);
	padding: 8px 30px 6px 30px;
}

ul.tabs-list li.active {
	border-bottom: 1px solid var(--white);
}

ul.tabs-list li.active span {
	color: var(--grey-dark);
}

div.frame-layout-6 div.ce-textpic {
	width: 100%;
	float: left;
	clear: both;
	margin: 20px 0px;
	background: var(--blue);
}

div.frame-layout-6 div.ce-gallery,
div.frame-layout-6 div.ce-row,
div.frame-layout-6 div.ce-column,
div.frame-layout-6 figure,
div.frame-layout-6 span.image-object {
	width: 100%;
	float: left;
	clear: both;
}

div.frame-layout-6 img {
	width: 100% !important;
	height: auto !important;
}

div.frame-layout-6 div.ce-bodytext {
	width: 100%;
	float: left;
	clear: both;
	padding: 20px 30px;
}

div.frame-layout-6 div.ce-bodytext p {
	color: var(--white-50);
}

div.frame-layout-6 div.ce-bodytext p:first-child {
	color: var(--white);
}

div.frame-layout-6 div.ce-bodytext h1,
div.frame-layout-6 div.ce-bodytext h2,
div.frame-layout-6 div.ce-bodytext h3,
div.frame-layout-6 div.ce-bodytext h4,
div.frame-layout-6 div.ce-bodytext h5,
div.frame-layout-6 div.ce-bodytext p b,
div.frame-layout-6 div.ce-bodytext p strong,
div.frame-layout-6 div.ce-bodytext p a {
	color: var(--white);
}

div.frame-accordion {
	border-bottom: 1px solid var(--grey-light);
}

header.frame-accordion-trigger {
	width: 100%;
	float: left;
	clear: both;
	padding: 10px 28px 10px 0px;
	position: relative;
	cursor: pointer;
}

header.frame-accordion-trigger::after {
	content: "";
	width: 24px;
	height: 24px;
	display: block;
	position: absolute;
	top: 14px;
	right: 0px;
	background-image: url(img/accordion-trigger.svg);
	background-size: 100% 100%;
	background-position: center center;
	transition: transform 0.2s ease-in-out;
}

.open header.frame-accordion-trigger::after {
	transform: rotate(90deg);
}

div.frame-accordion header h1,
div.frame-accordion header h2,
div.frame-accordion header h3,
div.frame-accordion header h4,
div.frame-accordion header h5 {
	margin: 0px;
}

div.frame-accordion-content {
	width: 100%;
	float: left;
	clear: both;
}

div.frame-accordion-content-wrapper {
	width: 100%;
	float: left;
	clear: both;
	padding: 0px 0px 20px 0px;
}

div.frame-accordion-content-wrapper div.ce-textpic div.ce-gallery {
	width: 100%;
	max-width: 50%;
	float: left;
	clear: left;
	padding: 0px 20px 20px 0px;
}

div.frame-layout-7 div.rte-content {
	width: 100%;
	float: left;
	clear: both;
	padding: 10px 20px;
	margin: 20px 0px;
	background-color: var(--white-50);
}

div.bg-main-white div.frame-layout-7 div.rte-content {
	background-color: var(--grey-light);
}

div.tx-go-maps-ext {
	width: 100%;
	float: left;
	clear: both;
	margin: 10px 0px;
}

div.js-gme-preview {
	width: 100%;
	float: left;
	clear: both;
	text-align: center;
	padding: 200px 0px;
	background-color: var(--white-50);
}

div.bg-main-white div.js-gme-preview {
	background-color: var(--grey-light);
}

div.js-gme-preview a {
	font-family: 'UPM', sans-serif;
	font-size: 16px;
	padding: 10px 20px 12px 20px;
	color: var(--blue) !important;
	border: 2px solid var(--blue);
	text-decoration: none !important;
	display: inline-block;
	background-color: transparent;
	margin-top: 10px;
	border-radius: 5px;
	position: relative;
}

div.js-gme-preview a:hover {
	color: var(--white) !important;
	background-color: var(--blue)!important;
}

div.js-map {
	width: 100% !important;
	height: 600px !important;
	float: left;
	clear: both;
}

div.frame-ce-col-70 div.js-map {
	height: 300px !important;
}

div.frame-layout-8 div.ce-gallery,
div.frame-layout-8 div.ce-bodytext {
	width: 100%;
	float: left;
	clear: both;
}

div.frame-layout-8 div.ce-gallery {
	text-align: center;
}

div.frame-layout-8 div.ce-gallery img {
	float: none;
	clear: none;
	display: inline-block;
}

div.frame-layout-8 h1,
div.frame-layout-8 h2,
div.frame-layout-8 h3,
div.frame-layout-8 h4,
div.frame-layout-8 h5 {
	margin-bottom: 0px;
}

/* SHORT-CODES */

span.sc-logo-ccs {
	width: 280px;
	max-width: 100%;
	height: 40px;
	display: inline-block;
	background-image: url(img/sc-logo-ccs.svg);
	background-position: center center;
	background-size: 100% auto;
}

span.sc-logo-its {
	width: 254px;
	max-width: 100%;
	height: 40px;
	display: inline-block;
	background-image: url(img/sc-logo-its.svg);
	background-position: center center;
	background-size: 100% auto;
}

span.sc-logo-brief365 {
	width: 190px;
	max-width: 100%;
	height: 40px;
	display: inline-block;
	background-image: url(img/sc-logo-brief365.svg);
	background-position: center center;
	background-size: 100% auto;
}

div.tx-powermail {
	width: 100%;
	float: left;
	clear: both;
}

div.tx-powermail legend{
	display: none;
}

div.tx-powermail form {
	width: 100%;
	width: calc(100% + 40px);
	margin-left: -20px;
	float: left;
	clear: both;
}

div.tx-powermail fieldset {
	width: 100%;
	float: left;
	clear: both;
	padding: 10px 20px;
	border: none;
}

div.tx-powermail fieldset.layout1 {
	width: 50%;
	float: left;
	clear: none;
}

div.tx-powermail div.powermail_fieldwrap {
	width: 100%;
	float: left;
	clear: both;
	position: relative;
	padding: 5px 0px;
}

div.tx-powermail input[type="text"],
div.tx-powermail input[type="email"],
div.tx-powermail input[type="tel"] {
	width: 100%;
	float: left;
	clear: both;
	border: none;
	font-family: 'RR', sans-serif;
	font-size: 16px;
	padding: 12px 10px;
	border-radius: 5px;
	outline: none;
}

div.tx-powermail select {
	width: 100%;
	float: left;
	clear: both;
	border: none;
	font-family: 'RR', sans-serif;
	font-size: 16px;
	padding: 12px 10px;
	border-radius: 5px;
	appearance: none;
	cursor: pointer;
	position: relative;
	background-size: 20px 10px;
	background-position: right 10px center;
	outline: none;
}

div.tx-powermail textarea {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	height: 256px;
	min-height: 256px;
	max-height: 256px;
	float: left;
	clear: both;
	border: none;
	font-family: 'RR', sans-serif;
	font-size: 16px;
	padding: 12px 10px;
	border-radius: 5px;
	outline: none;
}

div.tx-powermail div.powermail_fieldwrap_type_file label {
	font-family: 'RM', sans-serif;
	font-size: 16px;
	display: block;
	float: left;
	clear: both;
	padding: 5px 0px;
}

div.tx-powermail div.powermail_fieldwrap_type_file div.powermail_field {
	width: 100%;
	float: left;
	clear: both;
}

div.tx-powermail div.powermail_fieldwrap_type_text {
	font-family: 'RR', sans-serif;
	font-size: 12px;
	line-height: 130%;
}

div.tx-powermail div.checkbox {
	width: 100%;
	float: left;
	clear: both;
	position: relative;
}

div.tx-powermail input[type="checkbox"] {
	width: 24px;
	height: 24px;
	display: block;
	float: left;
	clear: none;
	position: absolute;
	top: 0px;
	left: 0px;
	cursor: pointer;
	border: none;
	border-radius: 5px;
	appearance: none;
	background-size: 70% auto;
	background-position: center center;
	outline: none;
}

div.tx-powermail div.checkbox label {
	width: 100%;
	float: left;
	clear: both;
	padding: 2px 0px 0px 30px;
}

div.tx-powermail label a {
	text-decoration: underline;
}

div.tx-powermail input[type="submit"] {
	float: right;
	clear: both;
	border: none;
	font-family: 'UPM', sans-serif;
	font-size: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 12px 26px;
	border-radius: 5px;
	appearance: none;
	cursor: pointer;
	position: relative;
	outline: none;
}

ul.parsley-errors-list {
	position: absolute;
	top: 5px;
	right: 0px;
}

ul.parsley-errors-list li {
	display: block;
	float: left;
	clear: both;
	font-family: 'RM', sans-serif;
	font-size: 12px;
	padding: 2px 6px;
	border-radius: 3px;
	color: var(--white);
}

/* Formulare (Hintergrund weiß) */

div.bg-main-white div.tx-powermail input[type="text"],
div.bg-main-white div.tx-powermail input[type="email"],
div.bg-main-white div.tx-powermail input[type="tel"],
div.bg-main-white div.tx-powermail textarea,
div.bg-main-white div.tx-powermail select,
div.bg-main-white div.tx-powermail input[type="checkbox"],
div.news-main-body div.tx-powermail input[type="text"],
div.news-main-body div.tx-powermail input[type="email"],
div.news-main-body div.tx-powermail input[type="tel"],
div.news-main-body div.tx-powermail textarea,
div.news-main-body div.tx-powermail select,
div.news-main-body div.tx-powermail input[type="checkbox"] {
	color: var(--grey-dark);
	background-color: var(--grey-light);
}

div.bg-main-white div.tx-powermail select,
div.news-main-body div.tx-powermail select {
	background-image: url(img/select-arrow.svg);
}

div.bg-main-white div.tx-powermail input[type="checkbox"]:checked,
div.news-main-body div.tx-powermail input[type="checkbox"]:checked {
	background-image: url(img/checkbox.svg);
}

div.bg-main-white div.tx-powermail input[type="submit"],
div.news-main-body div.tx-powermail input[type="submit"] {
	color: var(--white);
	background-color: var(--blue);
}

div.bg-main-white div.tx-powermail input[type="submit"]:hover,
div.news-main-body div.tx-powermail input[type="submit"]:hover {
	background-color: var(--orange);
}

div.bg-main-white ul.parsley-errors-list li,
div.news-main-body ul.parsley-errors-list li {
	background-color: var(--orange);
}

div.bg-main-white div.tx-powermail label a:hover,
div.news-main-body div.tx-powermail label a:hover {
	color: var(--orange);
}

/* Formulare (Hintergrund grau) */

div.bg-main-grey div.tx-powermail input[type="text"],
div.bg-main-grey div.tx-powermail input[type="email"],
div.bg-main-grey div.tx-powermail input[type="tel"],
div.bg-main-grey div.tx-powermail textarea,
div.bg-main-grey div.tx-powermail select,
div.bg-main-grey div.tx-powermail input[type="checkbox"] {
	color: var(--blue);
	background-color: var(--white);
}

div.bg-main-grey div.tx-powermail select {
	background-image: url(img/select-arrow.svg);
}

div.bg-main-grey div.tx-powermail input[type="checkbox"]:checked {
	background-image: url(img/checkbox.svg);
}

div.bg-main-grey div.tx-powermail input[type="submit"] {
	color: var(--white);
	background-color: var(--blue);
}

div.bg-main-grey div.tx-powermail input[type="submit"]:hover {
	background-color: var(--orange);
}

div.bg-main-grey ul.parsley-errors-list li {
	background-color: var(--orange);
}

div.bg-main-grey div.tx-powermail label a:hover {
	color: var(--orange);
}

/* Formulare (Hintergrund blau) */

div.bg-main-blue div.tx-powermail input[type="text"],
div.bg-main-blue div.tx-powermail input[type="email"],
div.bg-main-blue div.tx-powermail input[type="tel"],
div.bg-main-blue div.tx-powermail textarea,
div.bg-main-blue div.tx-powermail select,
div.bg-main-blue div.tx-powermail input[type="checkbox"] {
	color: var(--blue);
	background-color: var(--white);
}

div.bg-main-blue div.tx-powermail select {
	background-image: url(img/select-arrow.svg);
}

div.bg-main-blue div.tx-powermail input[type="checkbox"]:checked {
	background-image: url(img/checkbox.svg);
}

div.bg-main-blue div.tx-powermail input[type="submit"] {
	color: var(--white);
	background-color: var(--orange);
}

div.bg-main-blue div.tx-powermail input[type="submit"]:hover {
	background-color: var(--orange);
}

div.bg-main-blue ul.parsley-errors-list li {
	background-color: var(--orange);
}

div.bg-main-blue div.tx-powermail div.checkbox label,
div.bg-main-blue div.tx-powermail div.powermail_fieldwrap_type_file label,
div.bg-main-blue div.tx-powermail div.powermail_fieldwrap_type_text,
div.bg-main-blue div.tx-powermail input[type="file"] {
	color: var(--white);
}

div.bg-main-blue div.tx-powermail label a {
	color: var(--white);
}

div.bg-main-blue div.tx-powermail label a:hover {
	color: var(--orange);
}

/* Formulare (Hintergrund grün) */

div.bg-main-green div.tx-powermail input[type="text"],
div.bg-main-green div.tx-powermail input[type="email"],
div.bg-main-green div.tx-powermail input[type="tel"],
div.bg-main-green div.tx-powermail textarea,
div.bg-main-green div.tx-powermail select,
div.bg-main-green div.tx-powermail input[type="checkbox"] {
	color: var(--blue);
	background-color: var(--white);
}

div.bg-main-green div.tx-powermail select {
	background-image: url(img/select-arrow.svg);
}

div.bg-main-green div.tx-powermail input[type="checkbox"]:checked {
	background-image: url(img/checkbox.svg);
}

div.bg-main-green div.tx-powermail input[type="submit"] {
	color: var(--white);
	background-color: var(--orange);
}

div.bg-main-green div.tx-powermail input[type="submit"]:hover {
	background-color: var(--orange);
}

div.bg-main-green ul.parsley-errors-list li {
	background-color: var(--orange);
}

div.bg-main-green div.tx-powermail div.checkbox label,
div.bg-main-green div.tx-powermail div.powermail_fieldwrap_type_file label,
div.bg-main-green div.tx-powermail div.powermail_fieldwrap_type_text,
div.bg-main-green div.tx-powermail input[type="file"] {
	color: var(--white);
}

div.bg-main-green div.tx-powermail label a {
	color: var(--white);
}

div.bg-main-green div.tx-powermail label a:hover {
	color: var(--orange);
}

/* Formulare (Hintergrund korall) */

div.bg-main-orange div.tx-powermail input[type="text"],
div.bg-main-orange div.tx-powermail input[type="email"],
div.bg-main-orange div.tx-powermail input[type="tel"],
div.bg-main-orange div.tx-powermail textarea,
div.bg-main-orange div.tx-powermail select,
div.bg-main-orange div.tx-powermail input[type="checkbox"] {
	color: var(--blue);
	background-color: var(--white);
}

div.bg-main-orange div.tx-powermail select {
	background-image: url(img/select-arrow.svg);
}

div.bg-main-orange div.tx-powermail input[type="checkbox"]:checked {
	background-image: url(img/checkbox.svg);
}

div.bg-main-orange div.tx-powermail input[type="submit"] {
	color: var(--white);
	background-color: var(--blue);
}

div.bg-main-orange div.tx-powermail input[type="submit"]:hover {
	color: var(--white);
	background-color: var(--blue);
}

div.bg-main-orange ul.parsley-errors-list li {
	background-color: var(--blue);
}

div.bg-main-orange div.tx-powermail div.checkbox label,
div.bg-main-orange div.tx-powermail div.powermail_fieldwrap_type_file label,
div.bg-main-orange div.tx-powermail div.powermail_fieldwrap_type_text,
div.bg-main-orange div.tx-powermail input[type="file"] {
	color: var(--white);
}

div.bg-main-orange div.tx-powermail label a {
	color: var(--white);
}

div.bg-main-orange div.tx-powermail label a:hover {
	color: var(--white-50);
}

figure.image img {
	width: 100%;
	height: auto;
	float: none;
	clear: none;
}

div.main div.frame-ce-col-30 figure.image img {
	width: 50%;
	max-width: 100%;
	height: auto;
}

div.main div.tab-content-frame div.frame-ce-col-30 figure.image img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

div.frame-layout-10 {
	overflow: hidden;
}

div.frame-layout-10 div.ce-image,
div.frame-layout-10 div.ce-gallery,
div.frame-layout-10 div.ce-outer,
div.frame-layout-10 div.ce-inner {
	width: 100%;
	float: left;
	clear: both;
}

div.frame-layout-10 div.ce-image {
	width: calc(100% + 20px);
}

div.frame-layout-10 div.ce-row {
	width: 33.3333333333%;
	height: 300px;
	float: left;
	clear: none;
	padding: 0px 20px 20px 0px;
}

div.frame-layout-10 div.ce-column,
div.frame-layout-10 figure,
div.frame-layout-10 figure a {
	width: 100%;
	height: 100%;
	float: left;
	clear: none;
	display: block;
	position: relative;
}

div.frame-layout-10 figure a {
	color: var(--white);
	overflow: hidden;
}

div.frame-layout-10 span.image-object {
	width: 100%;
	height: 100%;
	float: left;
	clear: none;
	display: block;
	position: absolute;
	z-index: 1;
}

div.frame-layout-10 span.image-caption {
	width: 100%;
	float: left;
	clear: both;
	padding: 20px;
	z-index: 2;
	display: block;
	position: absolute;
	bottom: -60px;
	left: 0px;
	font-family: 'UPM', sans-serif;
	font-size: 20px;
	line-height: 130%;
	text-align: left;
	background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
	transition: bottom 0.3s ease-in-out;
}

div.frame-layout-10 a:hover span.image-caption {
	bottom: 0px;
}

div.frame-layout-10 span.image-caption-title {
	width: 100%;
	float: left;
	clear: both;
	display: block;
}

div.frame-layout-10 span.image-caption::after {
	content: "Mehr erfahren";
	display: block;
	float: left;
	clear: both;
	color: var(--white);
	font-family: 'UPM', sans-serif;
	font-size: 15px;
	border: 1px solid var(--white);
	border-radius: 5px;
	margin-top: 20px;
	padding: 6px 38px 6px 10px;
	background-repeat: no-repeat;
	background-image: url(img/button-arrow-white.svg);
	background-size: 18px 12px;
	background-position: right 10px center;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

div.frame-layout-10 span.image-caption:hover::after {
	color: var(--blue);
	background-image: url(img/button-arrow-blue.svg);
	background-color: var(--white);
}

div.pages-list {
	width: 100%;
	float: left;
	clear: both;
}

div.pages-list-item {
	width: 100%;
	float: left;
	clear: both;
	margin-top: 10px;
}

div.pages-list-item a {
	width: 100%;
	float: left;
	clear: both;
	padding: 15px 20px;
	font-family: 'RM', sans-serif;
	font-size: 18px;
	line-height: 140%;
	color: var(--blue);
	background-color: var(--white);
	position: relative;
}

div.pages-list-item a:hover {
	background-color: var(--white-50);
}

div.pages-list-item a::after {
	content: "";
	width: 28px;
	height: 18px;
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	background-image: url(img/button-arrow-blue.svg);
	background-position: right center;
	background-size: 100% auto;
	background-repeat: no-repeat;
}

div.frame-layout-11 {
	text-align: center;
}

div.frame-layout-11 div.rte-content {
	margin: 0px auto;
}

div.frame-layout-11 table.contenttable {
	width: 100%;
	max-width: 800px;
	display: table;
	text-align: left;
	margin: 0px auto;
	margin-top: 20px;
}

div.frame-layout-11 table.contenttable th,
div.frame-layout-11 table.contenttable td {
	color: var(--white);
	font-size: 18px;
	line-height: 140%;
	padding: 10px 20px;
	display: table-cell;
	vertical-align: top;
}

div.frame-layout-11 table.contenttable tr {
	border-bottom: 2px solid var(--blue);
}

div.frame-layout-11 table.contenttable tr:last-child {
	border-bottom: none;
}

div.frame-layout-11 table.contenttable th {
	font-weight: normal;
	background-color: var(--white-50);
}

div.frame-layout-11 table.contenttable td {
	background-color: var(--white-20);
}

div.frame-layout-12 div.ce-image,
div.frame-layout-12 div.ce-gallery {
	width: 100%;
	float: left;
	clear: both;
}

div.frame-layout-12 div.ce-column {
	float: left;
	clear: none;
}

div.frame-layout-12 figure {
	width: 100%;
	float: left;
	clear: none;
	display: block;
	padding: 0px 2px 2px 0px;
}

div.frame-layout-12 div.ce-gallery[data-ce-columns="1"] div.ce-column {
	width: 100%;
}

div.frame-layout-12 div.ce-gallery[data-ce-columns="2"] div.ce-column {
	width: 50%;
}

div.frame-layout-12 div.ce-gallery[data-ce-columns="3"] div.ce-column {
	width: 33.3333333333%;
}

div.frame-layout-12 div.ce-gallery[data-ce-columns="4"] div.ce-column {
	width: 25%;
}

div.frame-layout-12 div.ce-gallery[data-ce-columns="5"] div.ce-column {
	width: 20%;
}

div.frame-layout-13 {
	border-bottom: 1px solid var(--grey-medium);
}

header.frame-accordion-trigger h1,
header.frame-accordion-trigger h2,
header.frame-accordion-trigger h3,
header.frame-accordion-trigger h4,
header.frame-accordion-trigger h5 {
	margin: 0px;
}

div.frame-layout-14 {
	margin: 20px 0px;
}

div.frame-layout-14 div.ce-textpic {
	width: 100%;
	float: left;
	clear: none;
}

div.frame-layout-14 div.ce-gallery {
	width: 100%;
	float: left;
	clear: both;
	text-align: center;
	margin-bottom: 10px;
}

div.frame-layout-14 div.ce-row {
	display: inline-block;
}

div.frame-layout-14 div.ce-column {
	float: left;
	clear: none;
}

div.frame-layout-14 figure {
	width: 100px;
	height: 100px;
	display: block;
	float: left;
	clear: none;
	padding: 10px;
	background-color: var(--white);
	border-radius: 50%;
}

div.frame-layout-14 figure img {
	width: 100% !important;
	height: 100% !important;
	float: left;
	clear: none;
}

div.frame-layout-14 div.ce-bodytext {
	text-align: center;
}

/* COUNTDOWN */

div.tx-cecountdown {
	width: 100%;
	float: left;
	clear: both;
	text-align: center;
	padding: 10px;
}

div.tx-cecountdown > div {
	width: calc(100% / 4);
	float: left;
	clear: none;
	display: block;
	padding: 10px;
}

div.tx-cecountdown > div::after {
	content: "";
	width: 100%;
	display: block;
	float: left;
	clear: both;
}

div.tx-cecountdown > div.days-outer::after {
	content: "Tage";
}

div.tx-cecountdown > div.hours-outer::after {
	content: "Std";
}

div.tx-cecountdown > div.mins-outer::after {
	content: "Min";
}

div.tx-cecountdown > div.secs-outer::after {
	content: "Sek";
}

div.tx-cecountdown > div > span {
	width: 100%;
	font-family: 'UPM', sans-serif;
	font-size: 28px;
	display: block;
	float: left;
	clear: both;
	padding-bottom: 10px;
}

div.benefits-slider-wrapper {
	width: 100%;
	float: left;
	clear: both;
	margin-top: 30px;
}

div.benefits-slider div.frame {
	width: 100%;
	float: left;
	clear: none;
	padding: 60px 30px;
	text-align: center;
}

div.benefits-slider div.ce-gallery,
div.benefits-slider div.ce-bodytext {
	width: 100%;
	float: left;
	clear: both;
	text-align: center;
}

div.benefits-slider div.frame img {
	max-width: 200px;
	display: inline-block;
	float: none;
	clear: none;
}

div.benefits-slider div.owl-item:nth-child(1) div.frame,
div.benefits-slider div.owl-item:nth-child(6) div.frame,
div.benefits-slider div.owl-item:nth-child(11) div.frame,
div.benefits-slider div.owl-item:nth-child(16) div.frame {
	background-color: var(--yellow);
}

div.benefits-slider div.owl-item:nth-child(2) div.frame,
div.benefits-slider div.owl-item:nth-child(7) div.frame,
div.benefits-slider div.owl-item:nth-child(12) div.frame,
div.benefits-slider div.owl-item:nth-child(17) div.frame {
	background-color: var(--magenta);
}

div.benefits-slider div.owl-item:nth-child(3) div.frame,
div.benefits-slider div.owl-item:nth-child(8) div.frame,
div.benefits-slider div.owl-item:nth-child(13) div.frame,
div.benefits-slider div.owl-item:nth-child(18) div.frame {
	background-color: var(--green);
}

div.benefits-slider div.owl-item:nth-child(4) div.frame,
div.benefits-slider div.owl-item:nth-child(9) div.frame,
div.benefits-slider div.owl-item:nth-child(14) div.frame,
div.benefits-slider div.owl-item:nth-child(19) div.frame {
	background-color: var(--orange);
}

div.benefits-slider div.owl-item:nth-child(5) div.frame,
div.benefits-slider div.owl-item:nth-child(10) div.frame,
div.benefits-slider div.owl-item:nth-child(15) div.frame,
div.benefits-slider div.owl-item:nth-child(20) div.frame {
	background-color: var(--cyan);
}

div.benefits-slider div.owl-nav {
	top: -40px;
}

ul.anchor-list {
	width: 100%;
	float: left;
	clear: both;
	margin: 10px 0px;
	border-top: 1px solid var(--grey-light);
}

ul.anchor-list li {
	width: 100%;
	float: left;
	clear: both;
	border-bottom: 1px solid var(--grey-light);
}

ul.anchor-list li a {
	width: 100%;
	float: left;
	clear: both;
	display: block;
	color: var(--blue);
	padding: 5px 38px 5px 10px;
	position: relative;
}

ul.anchor-list li a:hover {
	background-color: var(--grey-light);
}

ul.anchor-list li a::after {
	content: "";
	width: 18px;
	height: 12px;
	display: block;
	position: absolute;
	top: 10px;
	right: 10px;
	background-image: url(img/button-arrow-blue.svg);
	background-position: top left;
	background-size: 100% 100%;
}

div.page-img-list {
	width: 100%;
	float: left;
	clear: both;
}

div.pil-item {
	width: calc(100%/4);
	float: left;
	clear: none;
	padding: 10px;
}

div.pil-item a {
	width: 100%;
	display: block;
	float: left;
	clear: none;
}

span.pil-image,
span.pis-image {
	width: 100%;
	float: left;
	clear: both;
}

span.pil-image img,
span.pis-image img {
	width: 100%;
	height: auto;
	float: left;
	clear: none;
}

span.pil-title,
span.pis-title {
	width: 100%;
	float: left;
	clear: both;
	padding: 15px 10px;
	background-color: var(--grey-light);
}

/* KAMPAGNEN */

div.top-center {
	width: 100%;
	height: 100%;
	float: left;
	clear: both;
	position: relative;
}

div.top-center div.frame {
	padding: 0px;
}

div.top-center div.frame,
div.top-center div.ce-image,
div.top-center div.ce-gallery,
div.top-center div.ce-outer,
div.top-center div.ce-inner,
div.top-center div.ce-row,
div.top-center div.ce-column,
div.top-center figure,
div.top-center figure span {
	width: 100%;
	height: 100%;
	float: left;
	clear: none;
}

div.top-center div.frame img {
	width: auto;
	height: 60%;
	top: 20%;
	position: relative;
}

body.kampagne div.footer-top {
	width: auto;
	float: left;
	clear: none;
}

body.kampagne div.footer-bottom {
	width: auto;
	float: right;
	clear: none;
}

/* HEADER-SPECIAL */

div.bg-header-special {
	width: 100%;
	float: left;
	clear: both;
	position: relative;
}

div.bg-header-special div.center {
	width: 1920px;
}

div.header-special {
	width: 100%;
	height: 800px;
	float: left;
	clear: both;
	position: relative;
}

div.header-special-image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
}

div.header-special-image div.frame,
div.header-special-image div.ce-image,
div.header-special-image div.ce-gallery,
div.header-special-image div.ce-row,
div.header-special-image div.ce-column,
div.header-special-image figure,
div.header-special-image span.image-object {
	width: 100%;
	height: 100%;
	padding: 0px;
	float: left;
	clear: none;
}

div.header-special-image span.img-bg {
	background-position: bottom center !important;
}

div.header-special-image-content {
	width: 100%;
	max-width: 1200px;
	height: 65%;
	float: left;
	clear: both;
	position: relative;
	z-index: 2;
	margin-left: 50%;
	transform: translateX(-50%);
}

div.header-special-image-content div.frame {
	width: 100%;
	max-width: 480px;
	text-align: left;
	float: right;
	clear: none;
	top: 50%;
	transform: translateY(-50%);
	padding: 40px;
	background-color: var(--blue);
	background-color: rgba(44,87,210,0.8);
}

div.header-special div.frame h1,
div.header-special div.frame h2,
div.header-special div.frame h3,
div.header-special div.frame h4,
div.header-special div.frame h5,
div.header-special div.frame p {
	color: var(--white);
	margin: 0px;
}

div.header-special div.frame span.sub-headline {
	color: var(--white-80);
}

div.header-special div.frame a.button {
	padding: 8px 20px 10px 20px !important;
	color: var(--white) !important;
	border-color: var(--white) !important;
	margin-top: 20px;
}

div.header-special div.frame a.button::after {
	display: none !important;
}

div.header-special-image-content div.frame a.button:hover {
	color: var(--blue) !important;
	background-color: var(--white) !important;
}

div.header-special-bottom-left div.frame a.button:hover {
	color: var(--orange) !important;
	background-color: var(--white) !important;
}

div.header-special-bottom-right div.frame a.button:hover {
	color: var(--green) !important;
	background-color: var(--white) !important;
}

div.header-special-bottom-left,
div.header-special-bottom-right {
	width: 50%;
	height: 35%;
	float: left;
	clear: none;
	position: relative;
	z-index: 2;
}

div.header-special-bottom-left::before,
div.header-special-bottom-right::before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
	opacity: 0.8;
}

div.header-special-bottom-left::before {
	background-color: var(--orange);
}

div.header-special-bottom-right::before {
	background-color: var(--green);
}

div.header-special-bottom-left div.frame,
div.header-special-bottom-right div.frame {
	width: 100%;
	max-width: calc(1200px / 2);
	clear: none;
	position: relative;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
}

div.header-special-bottom-left div.frame {
	float: right;
}

div.header-special-bottom-right div.frame {
	float: left;
}

@media screen and (max-width:1920px) {
	div.bg-header-special div.center {width:100%; float:left; clear:both;}
}

@media screen and (max-width:1600px) {
	div.header-special {height:700px;}
}

@media screen and (max-width:1260px) {
	div.bg-header-special div.center {padding:0px;}
	div.header-special {height:600px;}
	div.header-special div.frame h2 {font-size:24px;}
	div.header-special-image-content div.frame {max-width:400px; padding:30px; right:20px;}
}

@media screen and (max-width:760px) {
	div.header-special {height:auto;}
	div.header-special-image {height:300px; position:relative; top:auto; left:auto;}
	div.header-special-image span.img-bg {background-position:center center !important;}
	div.header-special-image-content {width:100%; height:auto; max-width:100%; margin:0px; transform:none;}
	div.header-special-image-content div.frame {width:100%; max-width:100%; float:left; clear:both; top:auto; right:auto; transform:none; text-align:center; padding:40px 15px;}
	div.header-special-bottom-left, div.header-special-bottom-right {width:100%; height:auto; clear:both;}
	div.header-special-bottom-left::before, div.header-special-bottom-right::before {opacity:1;}
	div.header-special-bottom-left div.frame, div.header-special-bottom-right div.frame {max-width:100%; top:auto; transform:none; padding:40px 20px;}
}

@media screen and (max-width:560px) {
	div.header-special-image {height:250px;}
}

@media screen and (max-width:460px) {
	div.header-special-image {height:200px;}
	div.header-special div.frame h2 {font-size:22px;}
	div.header-special-image-content div.frame, div.header-special-bottom-left div.frame, div.header-special-bottom-right div.frame {padding:30px 15px;}
}

/* MEDIA-QUERIES */

@media screen and (max-width:1920px) {
	div.bg-header div.center, div.bg-img-banner-big div.center {width:100%; float:left; clear:both;}
	div.header-slider div.ce-textpic {height:700px;}
}

@media screen and (max-width:1400px) {
	div.news-header-align {width:100%; float:left; clear:both;}
	div.news-header {height:650px;}
}

@media screen and (max-width:1400px) and (max-height:1000px) {
	div.header-image, div.header-slider div.ce-textpic {height:500px;}
}

@media screen and (max-width:1260px) {
	hr {height:55px;}
	div.center, div.img-banner-big div.ce-bodytext {width:100%; float:left; clear:both; padding:0px 30px;}
	div.header-slider div.ce-bodytext-align {width:100%; padding:0px 30px;}
	div.header-slider div.ce-left div.ce-bodytext {right:30px;}
	div.header-slider div.ce-right div.ce-bodytext {left:30px;}
	div.bg-header div.center, div.bg-img-banner-big div.center {padding:0px;}
	div.header-slider div.ce-textpic {height:650px;}
	span.menu-big-closer {right:30px;}
	div.news-header {height:550px;}
	div.tabbed-content div.frame-type-menu_section_pages ul li a {font-size:18px;}
}

@media screen and (max-width:1160px) {
	hr {height:50px;}
	div.header-slider div.ce-textpic {height:600px;}
	div.header-slider div.owl-dots {bottom:20px;}
	div.header-slider div.ce-bodytext {padding:30px;}
	div.header-slider div.ce-bodytext h1, div.header-slider div.ce-bodytext h2, div.header-slider div.ce-bodytext h3, div.header-slider div.ce-bodytext h4, div.header-slider div.ce-bodytext h5 {-moz-hyphens:auto; -o-hyphens:auto; -webkit-hyphens:auto; -ms-hyphens:auto; hyphens:auto;}
	div.img-banner-big div.ce-textpic {height:550px;}
	div.downloads-item {width:33.3333333333%;}
}

@media screen and (max-width:1060px) {
	hr {height:45px;}
	div.center {width:100%; float:left; clear:both; padding:0px 20px;}
	.search-open div.menu-center {opacity:0.5;}
	ul.menu-main > li, ul.menu-footer > li {margin-right:25px;}
	.fixpos div.menu-center {margin-left:25px;}
	span.nli-title, span.ssl-title {font-size:24px; line-height:130%;}
	div.news-header {height:450px;}
	div.news-content-align {width:100%; float:left; clear:both; padding:0px 30px;}
	div.bg-news-content {margin-top:-40px;}
	div.news-content {padding:60px; margin-bottom:60px;}
	div.header-slider div.ce-bodytext {max-width:360px; padding:20px;}
	div.header-slider div.ce-textpic, div.header-image {height:550px;}
	div.header-slider div.ce-left div.ce-bodytext {right:20px;}
	div.header-slider div.ce-right div.ce-bodytext {left:20px;}
	span.mii-text {font-size:15px; padding:15px 0px;}
}

@media screen and (min-width:960px) {
	div.small-menu {display:none !important;}
}

@media screen and (max-width:960px) {
	hr {height:40px;}
	div.bg-menu {display:none;}
	div.menu-wrapper {display:none !important;}
	div.bg-top {position:fixed; top:0px; left:0px; z-index:990; display:block; box-shadow:0px 3px 5px 0px var(--black-10);}
	div.top-right {display:block;}
	div.small-spacer {display:block;}
	div.footer-bottom-left {display:none;}
	div.footer-top {width:auto; float:left; clear:left;}
	div.footer-bottom {width:auto; float:right; clear:right;}
	div.footer-top > a {margin:5px 0px;}
	div.news-list-item {width:50%;}
	div.news-list-item:nth-child(1), div.news-list-item:nth-child(6) {width:100%;}
	div.news-list-items-3 div.news-list-item {width:100% !important;}
	div.main {padding:40px 0px;}
	ul.tabs {font-size:24px;}
	ul.tabs li span.tabs-link-title {padding:15px 20px;}
	ul.tabs li span.tabs-link-action {top:17px; right:20px;}
	div.tabbed-content div.frame-type-menu_section_pages ul li a {font-size:16px;}
	div.tabbed-content div.frame {padding:20px;}
	div.tabbed-content div.frame-type-menu_section_pages > ul {width:calc(100% + 20px);}
	div.tabbed-content div.frame-type-menu_section_pages ul.sub-list {width:100%;}
	div.tabbed-content div.frame-type-menu_section_pages ul li:first-child a {border-top:none;}
	div.frame-layout-1 div.ce-bodytext, div.frame-layout-9 div.ce-bodytext {width:50%; max-width:50%; margin:0px; padding:30px;}
	div.frame-layout-1 div.ce-gallery, div.frame-layout-9 div.ce-gallery {width:50%;}
	div.frame-layout-1 div.ce-right div.ce-gallery, div.frame-layout-9 div.ce-right div.ce-gallery {right:0px; left:auto;}
	div.img-banner-big div.ce-textpic {height:500px;}
	div.tabbed-content div.frame-type-menu_section_pages ul li {width:50%;}
	div.frame-layout-10 div.ce-row {width:50%;}
	div.pil-item {width:calc(100%/3);}
	span.pil-title, span.pis-title {padding:15px 10px;}
}

@media screen and (max-width:860px) {
	hr {height:35px;}
	div.main {width:100%; margin:0px;}
	div.frame {width:100%; clear:both; padding:0px;}
	div.frame-layout-6 {width:50%; padding:0px 10px; clear:none;}
	div.frame-layout-6 div.ce-textpic {margin:10px 0px;}
	div.frame-layout-6 div.ce-bodytext {padding:15px 20px;}
	div.bg-breadcrumbs {display:none;}
	div.header-slider div.ce-textpic {height:auto;}
	div.header-slider div.ce-gallery, div.header-image {height:400px;}
	div.header-slider div.ce-bodytext-align {float:left; clear:both; padding:0px;}
	div.header-slider div.ce-bodytext {width:100%; max-width:100%; clear:both; position:relative; transform:none; top:auto; left:auto !important; right:auto !important; padding:30px;}
	div.header-slider div.owl-dots {bottom:auto; top:360px;}
	div.header-slider div.owl-dots button {margin-left:50px;}
	div.img-banner-big div.ce-textpic {height:450px;}
	ul.tabs-list li span {padding:8px 15px 6px 15px;}
	div.frame-accordion-content-wrapper div.ce-textpic div.ce-gallery {max-width:100%; padding-right:0px;}
	div.frame-accordion-content-wrapper {padding:0px;}
	div.frame-layout-7 div.rte-content {height:auto !important; margin:10px 0px;}
	div.frame-layout-15 > div.frame {width:calc(100%/4) !important; clear:none;}
	div.pil-item {width:100%; clear:both; padding:0px; text-align:left; border-bottom:1px solid rgba(255,255,255,0.25);}
	div.pil-item:first-child {border-top:1px solid rgba(255,255,255,0.25);}
	div.pil-item a {position:relative;}
	div.pil-item a::after {content:""; width:18px; height:12px; display:block; position:absolute; top:15px; right:10px; background-image:url(img/arrow-white.svg); background-position:top left; background-size:100% 100%;}
	div.tabbed-content {padding:0px 0px 40px 0px; margin:0px;}
	div.tabbed-content div.frame {padding:0px;}
	span.pil-image {display:none;}
	span.pil-title {/*color:var(--white); background-color:transparent;*/ padding:10px;}
}

@media screen and (max-width:760px) {
	hr {height:30px;}
	div.nli-content, div.subpage-slider-item {height:340px;}
	span.nli-title, span.ssl-title {font-size:22px;}
	div.news-header {height:350px;}
	div.news-content-align {padding:0px;}
	div.news-content {padding:40px 20px;}
	div.bg-news-content {margin-top:0px;}
	div.news-main-align {width:100%; float:left; clear:both;}
	h1 {font-size:32px;}
	h2 {font-size:26px;}
	h3 {font-size:24px;}
	h4 {font-size:20px;}
	h5 {font-size:16px;}
	div.main {padding:40px 0px;}
	div.header-slider div.ce-gallery, div.header-image {height:350px;}
	div.header-slider div.owl-dots {bottom:auto; top:310px;}
	div.testimonial-slider div.ce-gallery {width:40%;}
	div.testimonial-slider div.ce-bodytext {width:60%; padding:20px;}
	div.frame-layout-3 ol {display:block;}
	div.frame-layout-3 ol li, div.frame-ce-col-50.frame-layout-3 ol li {width:100%; display:block; float:left; clear:both; padding:15px 0px 15px 60px;}
	div.frame-ce-col-50.frame-layout-3 ol li::before {top:14px;}
	div.img-banner-big div.ce-textpic {height:400px;}
	div.downloads-item {width:50%;}
	header.frame-accordion-trigger::after {width:24px; height:24px; top:12px;}
	div.tabbed-content div.frame-type-menu_section_pages ul li {width:100% !important;}
	div.tx-powermail fieldset.layout1 {width:100%; clear:both;}
	div.tx-powermail fieldset {padding:0px;}
	div.tx-powermail form {width:100%; margin:0px;}
}

@media screen and (max-width:660px) {
	hr {height:25px;}
	div.top {height:60px;}
	div.small-spacer {height:60px;}
	div.top-left a {margin:10px 0px;}
	div.menu-trigger {margin-top:16px;}
	div.small-menu {padding:60px 20px;}
	div.small-menu-content {margin-top:20px;}
	div.small-menu-search {margin-bottom:20px;}
	ul.small-menu-sek, ul.small-menu-trd {padding-left:30px;}
	ul.small-menu-main > li > a, ul.small-menu-main > li > span.small-menu-link {font-size:26px;}
	ul.small-menu-sek > li > a, ul.small-menu-sek > li > span.small-menu-link {font-size:22px;}
	ul.small-menu-trd > li > a {font-size:20px;}
	span.small-menu-sek-trigger {width:24px; height:24px; top:17px;}
	span.small-menu-trd-trigger {width:24px; height:24px; top:17px;}
	div.bottom-left, div.bottom-right {width:100%; clear:both;}
	div.bottom-right {padding-top: 10px;}
	ul.menu-bottom {display:inline-block; float:none;}
	div.news-list {width:calc(100% + 10px);}
	div.news-list-item {padding:0px 10px 10px 0px;}
	div.news-header {height:300px;}
	div.main {padding:30px 0px;}
	div.srl-img {width:100%; clear:both; padding:0px;}
	div.srl-text {width:100%; float:left; clear:both;}
	a.button {padding:6px 40px 8px 20px;}
	div.header-slider div.ce-gallery, div.header-image {height:300px;}
	div.header-slider div.owl-dots {bottom:auto; top:270px;}
	div.header-slider div.ce-bodytext {padding:30px 20px;}
	div.header-slider div.ce-bodytext a.button {margin-top:10px;}
	div.testimonial-slider div.ce-textpic {display:block;}
	div.testimonial-slider div.ce-gallery {width:100%; clear:both;}
	div.testimonial-slider div.ce-bodytext {width:100%; clear:both; padding:0px 20px 20px 20px;}
	div.frame-layout-1 div.ce-gallery, div.frame-layout-9 div.ce-gallery {width:100%; height:300px;}
	div.frame-layout-1 div.ce-bodytext, div.frame-layout-9 div.ce-bodytext {width:100%; max-width:100%; margin-top:300px; clear:both;}
	div.img-banner-big div.ce-textpic {height:350px;}
	ul.tabs-list {border:none;}
	ul.tabs-list li, ul.tabs-list li.active {width:100%; float:left; clear:both; border:1px solid var(--grey-light); border-radius:5px; margin:0px 0px 5px 0px;}
	ul.tabs-list li.active {background-color:var(--grey-light);}
	div.js-map {height:400px !important;}
	div.frame-ce-col-70 div.js-map {height:300px !important;}
	div.frame-layout-10 div.ce-row {width:100%; height:240px; padding-bottom:10px;}
}

@media screen and (max-width:560px) {
	hr {height:20px;}
	div.footer {padding:30px 0px;}
	div.news-list-item {width:100% !important; clear:both;}
	div.nli-content, div.subpage-slider-item {height:260px;}
	div.news-header {height:250px;}
	div.main {padding:25px 0px;}
	div.tabbed-content {margin-top:10px;}
	ul.tabs, div.tabbed-content div.frame-type-menu_section_pages {display:none !important;}
	ul.tab-links {display:block;}
	div.header-slider div.ce-gallery, div.header-image {height:250px;}
	div.header-slider div.owl-dots {bottom:auto; top:220px;}
	div.header-slider div.owl-dots button {margin-left:10px;}
	div.header-slider div.owl-dots::before {display:none;}
	div.frame-layout-1 div.ce-gallery, div.frame-layout-9 div.ce-gallery {height:250px;}
	div.frame-layout-1 div.ce-bodytext, div.frame-layout-9 div.ce-bodytext {margin-top:250px;}
	div.img-banner-big div.ce-textpic {height:300px;}
	div.frame-layout-6 {width:100%; padding:0px; clear:both;}
	div.frame-layout-6 div.ce-textpic {height:auto !important;}
	div.frame-layout-6 img {width:100%; height:auto;}
	div.js-map {height:350px !important;}
	div.frame-ce-col-70 div.js-map {height:300px !important;}
	div.tx-powermail textarea {height:140px; min-height:140px; max-height:140px;}
	div.tx-powermail input[type="submit"] {width:100%;}
	div.frame-layout-4 div.ce-gallery {width:100%; clear:both; margin-right:0px;}
	div.frame-layout-4 div.ce-bodytext {width:100%; float:left; clear:both; padding-left:0px;}
}

@media screen and (max-width:460px) {
	div.center {padding:0px 10px;}
	div.small-menu {padding:60px 10px;}
	ul.small-menu-sek, ul.small-menu-trd {padding-left:10px;}
	ul.small-menu-main > li > a, ul.small-menu-main > li > span.small-menu-link {font-size:24px; padding:15px 0px;}
	ul.small-menu-sek > li > a, ul.small-menu-sek > li > span.small-menu-link {font-size:20px; padding:15px 0px;}
	ul.small-menu-trd > li > a {font-size:18px; padding:15px 0px;}
	span.small-menu-sek-trigger {width:20px; height:20px; top:17px;}
	span.small-menu-trd-trigger {width:20px; height:20px; top:17px;}
	div.footer {padding:20px 0px 14px 0px;}
	div.footer-top {display:none;}
	div.footer-bottom {width:100%; text-align:center;}
	div.footer-bottom-right {display:inline-block; float:none; clear:none;}
	span.nli-text, span.ssl-text {padding:10px;}
	span.nli-text-content, span.ssl-text-content {margin-bottom:0px;}
	span.nli-subtitle {font-size:14px;}
	span.nli-title, span.ssl-title {font-size:18px; margin-bottom:10px;}
	span.nli-cta, span.ssl-cta {display:none;}
	div.news-header {height:200px;}
	div.news-content {padding:40px 10px;}
	h1 {font-size:24px;}
	h2 {font-size:22px;}
	h3 {font-size:20px;}
	h4 {font-size:18px;}
	h5 {font-size:16px;}
	div.nmr-slider {margin-top:10px;}
	div.main {padding:20px 0px;}
	div.srl-text {padding:20px 10px;}
	div.testimonial-slider div.owl-dots button {margin:0px 3px;}
	div.frame-layout-1 div.ce-gallery, div.frame-layout-9 div.ce-gallery {height:200px;}
	div.frame-layout-1 div.ce-bodytext, div.frame-layout-9 div.ce-bodytext {margin-top:200px;}
	div.downloads {width:calc(100% + 10px);}
	div.downloads-item {width:100%; padding:10px 10px 0px 0px;}
	div.downloads-item-text {padding:10px 20px;}
	header.frame-accordion-trigger::after {width:20px; height:20px; top:14px;}
	div.js-map {height:300px !important;}
}

@media screen and (max-width:360px) {
	hr {height:20px;}
	div.header-slider div.ce-gallery, div.header-image {height:200px;}
	div.header-slider div.owl-dots {top:170px;}
	div.header-slider div.ce-bodytext {padding:20px 10px;}
	div.js-map {height:250px !important;}
}