@font-face {
	font-display: swap;
	font-family: "Source Sans Pro";
	font-style: normal;
	font-weight: 400;
	src: url("../webfonts/source-sans-pro-v21-latin-regular.woff2") format("woff2"),
		url("../webfonts/source-sans-pro-v21-latin-regular.woff") format("woff");
}

@font-face {
	font-display: swap;
	font-family: "Source Sans Pro";
	font-style: italic;
	font-weight: 400;
	src: url("../webfonts/source-sans-pro-v21-latin-italic.woff2") format("woff2"),
		url("../webfonts/source-sans-pro-v21-latin-italic.woff") format("woff");
}

@font-face {
	font-display: swap;
	font-family: "Source Sans Pro";
	font-style: normal;
	font-weight: 700;
	src: url("../webfonts/source-sans-pro-v21-latin-700.woff2") format("woff2"),
		url("../webfonts/source-sans-pro-v21-latin-700.woff") format("woff");
}

@font-face {
	font-display: swap;
	font-family: "Source Sans Pro";
	font-style: normal;
	font-weight: 900;
	src: url("../webfonts/source-sans-pro-v21-latin-900.woff2") format("woff2"),
		url("../webfonts/source-sans-pro-v21-latin-900.woff") format("woff");
}

:root {
	--ik-yellow: #fdca18;
	--ik-graphite: #343b3d;
	--ik-text: #202829;
	--ik-muted: #4b5553;
	--ik-page: #eef2f0;
	--ik-nav-height: 4.25em;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article,
aside, canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	background: var(--ik-page);
	color: var(--ik-text);
	font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
	font-size: 13pt;
	font-weight: 400;
	line-height: 1.5;
	min-width: 320px;
	overflow-x: hidden;
}

body,
input,
select,
textarea,
button {
	font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
}

strong,
b {
	font-weight: 900;
}

em,
i {
	font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 900;
	line-height: 1.2;
}

hr {
	border: 0;
	border-top: 1px solid rgba(32, 40, 41, 0.12);
	margin: 2em 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

ol,
ul {
	list-style: none;
}

blockquote {
	border-left: 0.28em solid rgba(52, 59, 61, 0.16);
	color: var(--ik-muted);
	padding-left: 1em;
}

.container {
	margin-left: auto;
	margin-right: auto;
	max-width: 1180px;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	width: 100%;
}

#page-wrapper {
	background: var(--ik-page);
	min-height: 100vh;
	padding-top: 3.95em;
}

body.ik-startseite #page-wrapper {
	padding-top: 0;
}

#nav {
	height: var(--ik-nav-height);
	left: 0;
	position: fixed;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 200;
}

#nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#nav > ul {
	padding-left: 13.5rem;
	padding-right: 13.5rem;
}

#nav > ul > li {
	position: relative;
	padding: 0 1.25em;
}

#nav a,
#nav span {
	text-decoration: none;
}

#nav li ul {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(52, 59, 61, 0.1);
	border-radius: 0.75em;
	box-shadow: 0 1em 2.2em rgba(35, 55, 59, 0.14);
	display: none;
	left: 50%;
	min-width: 14em;
	padding: 0.65em;
	position: absolute;
	text-align: left;
	top: calc(100% - 0.35em);
	transform: translateX(-50%);
	z-index: 500;
}

#nav li.is-open > ul {
	display: block;
}

#nav li ul li {
	position: relative;
	white-space: nowrap;
}

#nav li ul a,
#nav li ul span {
	border-radius: 0.45em;
	color: #34494d;
	display: block;
	font-size: 0.8em;
	font-weight: 900;
	letter-spacing: 0.12em;
	line-height: 1.25;
	padding: 0.85em 0.9em;
	text-transform: uppercase;
	transition: color 180ms ease;
}

#nav li ul a:hover,
#nav li ul span:hover {
	color: var(--ik-yellow);
}

#nav li ul ul {
	left: calc(100% + 0.45em);
	top: -0.65em;
	transform: none;
}

.ik-mobile-toggle,
.ik-mobile-panel {
	display: none;
}

body.ik-mobile-nav-open {
	overflow: hidden;
}

body.is-preload * {
	transition: none !important;
}

.ik-copy ul,
.ik-copy ol,
.article-detail__body ul,
.article-detail__body ol,
.ik-campaign-copy ul,
.ik-campaign-copy ol,
.ik-product-section ul,
.ik-product-section ol,
.ik-product-intro ul,
.ik-product-intro ol,
.ik-about-card__copy ul,
.ik-about-card__copy ol {
	padding-left: 1.25em;
}

@media screen and (max-width: 1320px) {
	#nav > ul {
		padding-left: 4.25rem;
		padding-right: 4.25rem;
	}
}

@media screen and (max-width: 980px) {
	body {
		font-size: 12pt;
	}

	#nav {
		background: linear-gradient(180deg, rgba(250, 251, 250, 0.98), rgba(239, 244, 243, 0.96));
		border-bottom: 1px solid rgba(52, 59, 61, 0.1);
		box-shadow: 0 0.45em 1.2em rgba(16, 24, 32, 0.1);
	}

	#nav > ul,
	#nav .ik-nav-icon {
		display: none !important;
	}

	#nav .ik-nav-brand-logo,
	#nav .ik-nav-partner-logo {
		display: flex !important;
	}

	#nav .ik-nav-brand-logo {
		left: 1rem;
	}

	#nav .ik-nav-partner-logo {
		right: 1rem;
	}

	.ik-mobile-toggle {
		align-items: center;
		background: rgba(52, 59, 61, 0.94);
		border: 0;
		border-radius: 999px;
		color: #fff;
		display: inline-flex;
		font-size: 1.15em;
		height: 2.35em;
		justify-content: center;
		position: fixed;
		right: 1rem;
		top: 0.92em;
		width: 2.35em;
		z-index: 620;
	}

	#nav .ik-nav-partner-logo + .ik-mobile-toggle {
		right: 4rem;
	}

	.ik-mobile-panel {
		background: rgba(247, 250, 249, 0.98);
		box-shadow: 0.6em 0 2.2em rgba(16, 24, 32, 0.18);
		display: block;
		height: 100vh;
		left: 0;
		overflow-y: auto;
		padding: 5.2em 1.15em 2em;
		position: fixed;
		top: 0;
		transform: translateX(-105%);
		transition: transform 220ms ease;
		width: min(22em, 86vw);
		z-index: 610;
	}

	body.ik-mobile-nav-open .ik-mobile-panel {
		transform: translateX(0);
	}

	.ik-mobile-panel a {
		border-bottom: 1px solid rgba(52, 59, 61, 0.08);
		color: var(--ik-graphite);
		display: block;
		font-weight: 900;
		letter-spacing: 0.08em;
		padding: 0.85em 0;
		text-decoration: none;
		text-transform: uppercase;
	}

	.ik-mobile-panel a:hover {
		color: var(--ik-yellow);
	}

	.ik-mobile-panel ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.ik-mobile-panel ul ul {
		border-left: 2px solid rgba(253, 202, 24, 0.75);
		margin-left: 0.7em;
		padding-left: 0.85em;
	}

	.ik-mobile-panel ul ul a {
		font-size: 0.9em;
		letter-spacing: 0.04em;
		text-transform: none;
	}
}

@media screen and (max-width: 640px) {
	body {
		font-size: 11pt;
	}

	#page-wrapper {
		padding-top: 4.25em;
	}

	body.ik-startseite #page-wrapper {
		padding-top: 0;
	}

	#nav .ik-nav-brand-logo img,
	#nav .ik-nav-partner-logo img {
		max-width: 9.8em;
	}

	#nav .ik-nav-partner-logo {
		display: none !important;
	}

	.ik-mobile-toggle {
		right: 1rem;
	}
}
