/* ========================================
   CORPORATE S
======================================== */

@font-face {

	font-family: 'Corporate S';

	src:
		url('../fonts/CorporateS-Light.woff2') format('woff2'),
		url('../fonts/CorporateS-Light.woff') format('woff');

	font-weight: 300;

	font-style: normal;

	font-display: swap;
}

@font-face {

	font-family: 'Corporate S';

	src:
		url('../fonts/CorporateS.woff2') format('woff2'),
		url('../fonts/CorporateS.woff') format('woff');

	font-weight: 400;

	font-style: normal;

	font-display: swap;
}

@font-face {

	font-family: 'Corporate S';

	src:
		url('../fonts/CorporateS-Demi.woff2') format('woff2'),
		url('../fonts/CorporateS-Demi.woff') format('woff');

	font-weight: 600;

	font-style: normal;

	font-display: swap;
}

@font-face {

	font-family: 'Corporate S';

	src:
		url('../fonts/CorporateS-Bold.woff2') format('woff2'),
		url('../fonts/CorporateS-Bold.woff') format('woff');

	font-weight: 700;

	font-style: normal;

	font-display: swap;
}

@font-face {

	font-family: 'Corporate S';

	src:
		url('../fonts/CorporateS-ExtraBold.woff2') format('woff2'),
		url('../fonts/CorporateS-ExtraBold.woff') format('woff');

	font-weight: 800;

	font-style: normal;

	font-display: swap;
}

@font-face {

	font-family: 'Corporate S';

	src:
		url('../fonts/CorporateS-Italic.woff2') format('woff2'),
		url('../fonts/CorporateS-Italic.woff') format('woff');

	font-weight: 400;

	font-style: italic;

	font-display: swap;
}

@font-face {

	font-family: 'Corporate S';

	src:
		url('../fonts/CorporateS-LightItalic.woff2') format('woff2'),
		url('../fonts/CorporateS-LightItalic.woff') format('woff');

	font-weight: 300;

	font-style: italic;

	font-display: swap;
}

/* ========================================
   RESET
======================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;

	font-family: var(--font-brand);
	font-size: 16px;
	line-height: 1.5;

	color: #111;
	background: #fff;
}

/* ========================================
   ROOT
======================================== */

:root {

	--font-brand:
		'Corporate S',
		Arial,
		sans-serif;

	--header-height: 90px;

	--portal-width: 1200px;

	--portal-gutter: 40px;

	--menu-width: clamp(
		140px,
		12vw,
		220px
	);

	--logo-width: clamp(
		200px,
		15vw,
		280px
	);

	--content-start:
		calc(
			var(--menu-width)
			+
			var(--logo-width)
		);

	--brand-gradient:
		linear-gradient(
			135deg,
			var(--brand-gradient-start, #B61E3E) 0%,
			var(--brand-gradient-end, #00518C) 100%
		);

}

/* ========================================
   LAYOUT
======================================== */

.container {

	width: min(
		va*(--portal-width),
		calc(100% - 80*x)
	);

	margin: 0 auto;
}

/* ========================================
   HEADER
======================================== */

#header-gradient {

	position: fixed;

	top: 0;
	left: 0;
	right: 0;

	height: var(--header-height);

	background: var(--brand-gradient);

	opacity: 0;

	z-index: 1000;

	pointer-events: none;
}

#site-header {

	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);

	position: fixed;

	top: 0;
	left: 0;
	right: 0;

	z-index: 1001;
}

.header-main {

	height: var(--header-height);

	display: flex;

	align-items: center;

	border-bottom:
		1px solid rgba(
			255,
			255,
			255,
			.15
		);

	background: transparent;
}

.header-inner {
	width: min(var(--portal-width), calc(100% - 80px));
	height: var(--header-height);
	margin: 0 auto;
	display: flex;
	align-items: center;
}

/* MENU BUTTON */

.menu-trigger {

	height: var(--header-height);

	display: flex;

	align-items: center;

	gap: 14px;

	padding:
		0
		60px;

	background: none;

	border: 0;

	color: #fff;

	font-size: 18px;

	font-weight: 700;

	letter-spacing: .05em;

	text-transform: uppercase;

	cursor: pointer;

	position: relative;

	flex-shrink: 0;

	border-right:
		1px solid rgba(
			255,
			255,
			255,
			.15
		);
}

.menu-trigger::after {

	content: "";

	position: absolute;

	left: 0;
	bottom: 0;

	width: 0;

	height: 3px;

	background: #fff;

	transition: width .3s ease;
}

.menu-trigger:hover::after {

	width: 100%;
}

/* HAMBURGER */

.menu-icon {

	display: flex;
	flex-direction: column;

	gap: 4px;
}

.menu-icon span {

	width: 18px;
	height: 2px;

	background: #fff;

	display: block;
}

/* LOGO */

.brand {
	height: var(--header-height);
	display: flex;
	align-items: center;
	padding: 0 60px 0 0;
	flex-shrink: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.brand img {

	display: block;

	max-height: 45px;

	width: auto;

	object-fit: contain;
}

.chapter-trigger {
	position: relative;
	height: var(--header-height);
	display: none;
	align-items: center;
	padding: 0 60px;
	background: none;
	border: 0;
	color: #fff;
	font-family: var(--font-brand);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	cursor: pointer;
	flex-shrink: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.chapter-trigger.visible {
	display: flex;
}

.chapter-trigger::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 3px;
	background: #fff;
	transition: width .3s ease;
}

.chapter-trigger:hover::after,
.chapter-trigger:focus-visible::after,
.chapter-trigger[aria-expanded="true"]::after {
	width: 100%;
}

.chapter-menu {

	position: fixed;

	top: var(--header-height);

	width: 320px;

	background:
		rgba(
			255,
			255,
			255,
			0.96
		);

	backdrop-filter: blur(20px);

	-webkit-backdrop-filter: blur(20px);

	padding: 30px;

	box-shadow:
		0 20px 40px rgba(
			0,
			0,
			0,
			0.08
		);

	opacity: 0;

	visibility: hidden;

	transform: translateY(-10px);

	transition:
		all .25s ease;

	z-index: 1500;
}

.chapter-menu.active {

	opacity: 1;

	visibility: visible;

	transform: translateY(0);
}

.chapter-menu a {

	display: block;

	padding: 12px 0;

	color: #00205B;

	text-decoration: none;

	font-size: 18px;

	font-weight: 400;

	transition:
		color .25s ease;
}

.chapter-menu a:hover {

	color: #B61E3E;
}

/* Kapitel im Offcanvas */

.chapter-submenu {

	list-style: none;

	margin: 0 0 24px;

	padding: 0;

}

.chapter-submenu li:first-child a {

	padding-top: 12px;
}

.portal-menu .sub-menu .chapter-submenu li {

	margin: 0 !important;

	padding: 0 !important;
}

.chapter-submenu a {

	display: block;

	padding:
		2px 0
		2px 24px;

	font-size: 18px !important;

	font-weight: 400 !important;

	line-height: 1.3;

	color: #5F6B85 !important;

	text-decoration: none;

	transition:
		color .25s ease,
		transform .25s ease;
}

.chapter-submenu a:hover {

	color: #B61E3E !important;

	transform: translateX(4px);
}

/* ========================================
   HERO
======================================== */

.hero {

	position: relative;

	display: flex;
	align-items: center;

	overflow: hidden;

	color: #fff;
}

.hero a {

	color: inherit;
	text-decoration: none;
}

.hero-chapter {

	font-size:
		clamp(
			36px,
			4vw,
			var(--hero-caption-size)
		);

	margin: 0 0 8px;

	color: rgba(
		255,
		255,
		255,
		0.7
	);

	font-weight: 300;

	letter-spacing: 0;

	text-transform: none;
}

.hero h1 {

	font-size:
		clamp(
			56px,
			6vw,
			var(--hero-title-size)
		);

	margin: 0 0 20px;

	color: rgba(
		255,
		255,
		255,
		0.8
	);

	font-weight: 600;

	line-height: .95;

	text-transform: uppercase;
}

.hero p {

	font-size:
		clamp(
			18px,
			1.5vw,
			var(--hero-intro-size)
		);

	margin: 0;

	max-width: 80%;

	color: rgba(
		255,
		255,
		255,
		0.8
	);

	font-weight: 400;

	line-height: 1.35;
}

.hero-gradient {

	position: absolute;

	inset: 0;

	z-index: 1;

	background: var(--brand-gradient);
}

.hero-overlay {

	position: absolute;

	inset: 0;

	display: flex;
	align-items: center;
	justify-content: center;

	pointer-events: none;

	z-index: 2;
}

.hero-overlay img {

	width: min(60vw, 1000px);

	opacity: .08;

	object-fit: contain;
}

.hero-inner {

	position: relative;

	z-index: 3;

	width: min(
		1200px,
		calc(100% - 80px)
	);

	margin-right: auto;
	margin-left: auto;

	padding-top: 80px;
	padding-bottom: 80px;
}

.hero-content {

	width: 100%;

	max-width: 900px;
}

/* ========================================
   PORTAL OVERVIEW
======================================== */

.portal-overview {

	background: #fff;

	padding: 120px 0;
}

.portal-grid {

	display: grid;

	grid-template-columns:
		repeat(auto-fit, minmax(320px, 1fr));

	gap: 32px;

	width: min(1440px, calc(100% - 80px));

	margin: 0 auto;
}

.portal-card {

	display: block;

	padding: 40px;

	background: #fff;

	border: 1px solid #E6E6E6;

	color: #111;

	text-decoration: none;

	transition:
		transform .25s ease,
		box-shadow .25s ease;
}

.portal-card:hover {

	transform: translateY(-4px);

	box-shadow:
		0 20px 40px rgba(0,0,0,.08);
}

.portal-card h2 {

	margin: 0 0 12px;

	font-size: 32px;
	font-weight: 400;
}

.portal-card p {

	margin: 0;

	color: #666;
}

/* ========================================
   CONTENT
======================================== */

.portal-content {

	--portal-content-width: 1200px;
	--portal-content-gutter: 40px;

	width: min(
		var(--portal-content-width),
		calc(
			100% -
			(
				var(--portal-content-gutter) * 2
			)
		)
	);

	margin-right: auto;
	margin-left: auto;

	padding-top: 80px;
	padding-bottom: 120px;
}

/*
 * Elementor soll die Breite des Theme-Containers
 * vollständig nutzen.
 */

.portal-content > .elementor {

	width: 100%;
	max-width: 100%;

	margin-right: auto;
	margin-left: auto;
}

/*
 * Oberste Elementor-Container dürfen innerhalb
 * des Theme-Containers nicht nochmals verschoben werden.
 */

.portal-content
.elementor
> .elementor-element {

	max-width: 100%;
}

/*
 * Verhindert zusätzliche äußere Abstände
 * an direkt untergeordneten Elementor-Containern.
 */

.portal-content
.elementor
> .e-con {

	width: 100%;
	max-width: 100%;

	margin-right: 0;
	margin-left: 0;
}

.guideline-content {

	background: #fff;

	padding:
		100px
		0
		140px;
}

.guideline-content .container {

	max-width: 1200px;
}

h2[id] {

	scroll-margin-top:
		calc(
			var(--header-height)
			+ 40px
		);
}

.portal-content h2 {

	position: relative;

	margin:
		72px
		0
		28px;

	padding-bottom: 14px;

	color: #00205B;

	font-family: var(--font-brand);

	font-size: clamp(
		28px,
		3vw,
		40px
	);

	font-weight: 400;

	line-height: 1.15;
}

/* Rote Akzentlinie */

.portal-content h2::after {

	content: "";

	position: absolute;

	left: 0;
	bottom: 0;

	width: 48px;
	height: 3px;

	background: #B61E3E;
}

/* Erstes Kapitel benötigt oben weniger Abstand */

.portal-content h2:first-child {

	margin-top: 0;
}


/* ========================================
   DOWNLOADS
======================================== */

.isb-downloads {
	width: 100%;
	margin: 0;
}

.isb-downloads__heading {
	position: relative;
	margin: 0 0 32px;
	padding-bottom: 14px;
	color: #00205B;
	font-family: var(--font-brand);
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 400;
	line-height: 1.15;
}

.isb-downloads__heading::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 48px;
	height: 3px;
	background: #B61E3E;
}

.isb-downloads__list {
	width: 100%;
	border-top: 1px solid rgba(0, 32, 91, 0.18);
}

.isb-downloads__item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 170px 150px;
	align-items: center;
	gap: 24px;
	width: 100%;
	padding: 24px 0;
	border-bottom: 1px solid rgba(0, 32, 91, 0.18);
}

.isb-downloads__content {
	min-width: 0;
}

.isb-downloads__title {
	margin-bottom: 4px;
	color: #00205B;
	font-family: var(--font-brand);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.25;
}

.isb-downloads__filename {
	overflow: hidden;
	color: #5F6B85;
	font-family: var(--font-brand);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Dateityp + Dateigröße */

.isb-downloads__meta {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	color: #5F6B85;
	font-family: var(--font-brand);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: .04em;
	white-space: nowrap;
}

.isb-downloads__type,
.isb-downloads__size {
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	white-space: nowrap;
}

.isb-downloads__type {
	text-transform: uppercase;
}

.isb-downloads__size {
	text-transform: none;
}

.isb-downloads__separator {
	color: #B61E3E;
	font-family: var(--font-brand);
	font-size: 15px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	white-space: nowrap;
}

/* Download */

.isb-downloads__action {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.isb-downloads__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	color: #B61E3E;
	font-family: var(--font-brand);
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.isb-downloads__link-text {
	position: relative;
}

.isb-downloads__link-text::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -5px;
	left: 0;
	height: 2px;
	background: #B61E3E;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .25s ease;
}

.isb-downloads__link:hover
.isb-downloads__link-text::after,
.isb-downloads__link:focus-visible
.isb-downloads__link-text::after {
	transform: scaleX(1);
}

.isb-downloads__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(182, 30, 62, 0.45);
	border-radius: 50%;
	color: #B61E3E;
	font-size: 17px;
	font-weight: 700;
	line-height: 1;
	transition:
		color .25s ease,
		background-color .25s ease,
		transform .25s ease;
}

.isb-downloads__link:hover
.isb-downloads__icon {
	color: #fff;
	background: #B61E3E;
	transform: translateY(2px);
}

/* ========================================
   COLOR CARD
======================================== */

.isb-color-card {
	width: 100%;
	margin: 0;
}

.isb-color-card__heading {
	margin-bottom: 16px;
}

.isb-color-card__information-heading {
	margin-bottom: 24px;
}

.isb-color-card__name {
	margin-bottom: 2px;

	color: #00205B;

	font-family: var(--font-brand);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;

	text-transform: uppercase;
}

.isb-color-card__description {
	color: #5F6B85;

	font-family: var(--font-brand);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.isb-color-card__body {
	display: grid;

	grid-template-columns:
		minmax(120px, 1fr)
		minmax(180px, .65fr);

	align-items: stretch;

	gap: 32px;
}

.isb-color-card__swatch {
	width: 100%;
	min-height: 180px;

	border:
		1px solid rgba(
			0,
			32,
			91,
			0.10
		);
}

/* ---------------------------
   FARBINFORMATIONEN
--------------------------- */

.isb-color-card__information {
	display: flex;
	flex-direction: column;
	justify-content: center;

	min-width: 0;

	padding-left: 0;

	border-left: 0;
}

.isb-color-card__data-row {
	display: grid;

	grid-template-columns:
		58px
		minmax(0, 1fr);

	align-items: baseline;

	gap: 14px;

	padding: 10px 0;

	border-bottom:
		1px solid rgba(
			0,
			32,
			91,
			0.12
		);
}

.isb-color-card__data-row:first-of-type {
	padding-top: 0;
}

.isb-color-card__data-row:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.isb-color-card__label {
	margin: 0;

	color: #5F6B85;

	font-family: var(--font-brand);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;

	letter-spacing: .08em;

	text-transform: uppercase;
}

.isb-color-card__value {
	min-width: 0;

	color: #00205B;

	font-family: var(--font-brand);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.35;

	white-space: nowrap;
}

/* ---------------------------
   INFORMATIONEN DARUNTER
--------------------------- */

.isb-color-card--information-bottom
.isb-color-card__body {
	grid-template-columns: 1fr;

	gap: 18px;
}

.isb-color-card--information-bottom
.isb-color-card__information {
	display: grid;

	grid-template-columns:
		repeat(
			3,
			minmax(0, 1fr)
		);

	gap: 24px;

	justify-content: initial;

	padding-top: 20px;
	padding-left: 0;

	border-top: 2px solid #B61E3E;
	border-left: 0;
}

.isb-color-card--information-bottom
.isb-color-card__data-row {
	display: block;

	padding: 0;

	border-bottom: 0;
}

.isb-color-card--information-bottom
.isb-color-card__label {
	margin-bottom: 5px;
}

/* ---------------------------
   TITEL IM INFOBEREICH
--------------------------- */

.isb-color-card--title-information
.isb-color-card__information {
	justify-content: flex-start;
}

.isb-color-card--title-information
.isb-color-card__information-heading {
	padding-bottom: 16px;

	border-bottom:
		1px solid rgba(
			0,
			32,
			91,
			0.12
		);
}

/* ---------------------------
   KOPIERBARE WERTE
--------------------------- */

.isb-copy-value {
	cursor: pointer;
	transition: color .2s ease;
}

.isb-copy-value:hover {
	color: #B61E3E;
}

.isb-copy-value.is-copied {
	color: #2E7D32;
}

.isb-copy-value.is-copied::after {
	content: " ✓";
	color: #2E7D32;
}

/* ---------------------------
   RASTERUNGEN
--------------------------- */

.isb-color-card__tints {
	margin-top: 24px;

	padding-top: 24px;

	border-top:
		1px solid rgba(
			0,
			32,
			91,
			0.12
		);
}

.isb-color-card__tint {
	margin-bottom: 24px;
}

.isb-color-card__tint:last-child {
	margin-bottom: 0;
}

.isb-color-card__tint-title {
	margin-bottom: 10px;

	color: #00205B;

	font-family: var(--font-brand);
	font-size: 14px;
	font-weight: 700;

	text-transform: uppercase;
}

/* ========================================
   PAGE UP
======================================== */

.scroll-top {

	position: fixed;

	right: 40px;
	bottom: 40px;

	width: 64px;
	height: 64px;

	border: 0;

	background:
		rgba(
			255,
			255,
			255,
			0.60
		);

	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);

	border-radius: 50%;

	box-shadow:
		0 6px 20px rgba(
			0,
			0,
			0,
			0.08
		);

	cursor: pointer;

	opacity: 0;

	visibility: hidden;

	transform: translateY(20px);

	transition:
		opacity .3s ease,
		transform .3s ease,
		visibility .3s ease,
		box-shadow .3s ease;

	z-index: 2500;
}

.scroll-top.visible {

	opacity: 1;

	visibility: visible;

	transform: translateY(0);
}

.scroll-top:hover {

	transform: translateY(-3px);

	box-shadow:
		0 10px 28px rgba(
			0,
			0,
			0,
			0.12
		);
}

.scroll-top svg {

	position: absolute;

	inset: 0;

	width: 100%;
	height: 100%;

	transform: rotate(-90deg);
}

.progress-bg {

	fill: none;

	stroke:
		rgba(
			0,
			32,
			91,
			0.15
		);

	stroke-width: 5;
}

.progress-ring {

	fill: none;

	stroke: #B61E3E;

	stroke-width: 5;

	stroke-linecap: round;

	stroke-dasharray: 289;

	stroke-dashoffset: 289;

	transition:
		stroke-dashoffset .1s linear;
}

.scroll-top span {

	position: absolute;

	inset: 0;

	display: flex;

	align-items: center;

	justify-content: center;

	color: #00205B;

	font-size: 30px;

	font-weight: 700;

	line-height: 1;

	transform: translateY(-1px);
}

/* ========================================
   FOOTER
======================================== */

.site-footer {

	background:
		var(--brand-gradient);

	color: #fff;

	padding:
		80px
		0;

	margin-top: 120px;
}

.footer-inner {

	width: min(
		1200px,
		calc(100% - 80px)
	);

	margin-right: auto;
	margin-left: auto;
}

.footer-menu {

	flex-direction: column;

	align-items: flex-start;

	gap: 12px;
}

.footer-brand h3 {

	margin: 0 0 12px;

	font-size: 32px;

	font-weight: 300;

	color: #fff;
}

.footer-brand p {

	margin: 0;

	color:
		rgba(
			255,
			255,
			255,
			0.8
		);

	font-size: 18px;

	line-height: 1.6;
}

.footer-menu {

	list-style: none;

	margin: 0;
	padding: 0;

	display: flex;

	flex-direction: row;

	flex-wrap: nowrap;

	align-items: center;

	gap: 0;
}

.footer-menu li {

	list-style: none;

	display: flex;
	align-items: center;
}

.footer-menu li:not(:last-child)::after {

	content: "|";

	margin:
		0
		16px;

	color:
		rgba(
			255,
			255,
			255,
			0.5
		);
}

.footer-menu a {

	color: #fff;

	text-decoration: none;

	font-size: 16px;

	font-weight: 500;

	transition:
		opacity .25s ease;
}

.footer-menu a {

	position: relative;
}

.footer-menu a::after {

	content: "";

	position: absolute;

	left: 0;
	bottom: -3px;

	width: 0;

	height: 1px;

	background:
		rgba(
			255,
			255,
			255,
			0.8
		);

	transition:
		width .25s ease;
}

.footer-menu a:hover::after {

	width: 100%;
}

.footer-bottom {

	width: 100%;

	margin-top: 50px;

	padding-top: 25px;

	border-top:
		1px solid rgba(
			255,
			255,
			255,
			0.2
		);

	display: flex;

	align-items: center;

	justify-content: space-between;

	gap: 30px;
}

.footer-copyright {

	color:
		rgba(
			255,
			255,
			255,
			0.75
		);

	font-size: 14px;

	text-align: right;

	white-space: nowrap;
}

/* ========================================
   OFFCANVAS
======================================== */

.offcanvas {

	position: fixed;

	top: 0;
	left: 0;

	width: min(
		520px,
		90vw
	);

	height: 100vh;

	overflow-y: auto;

	overflow-x: hidden;

	-webkit-overflow-scrolling: touch;

	background:
		linear-gradient(
			180deg,
			rgba(255,255,255,.88) 0%,
			rgba(255,255,255,.80) 100%
		);

	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);

	z-index: 2000;

	transform: translateX(-100%);

	transition:
		transform .45s ease;

	box-shadow:
		20px
		0
		60px
		rgba(
			0,
			0,
			0,
			0.08
		);
}

.offcanvas.active {

	transform: translateX(0);
}

.offcanvas-header {

	position: sticky;

	top: 0;

	z-index: 10;

	height: var(--header-height);

	padding:
		0
		60px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	background:
		rgba(
			255,
			255,
			255,
			0.92
		);

	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);

	border-bottom:
		1px solid rgba(
			0,
			0,
			0,
			0.06
		);
}

.offcanvas-header img {

	max-height: 42px;

	width: auto;
}

.close-button {

	background: none;
	border: 0;

	padding: 0;

	font-size: 42px;
	line-height: 1;

	color: #00205B;

	cursor: pointer;

	transition:
		transform .2s ease,
		opacity .2s ease;
}

.close-button:hover {

	transform: rotate(
		90deg
	);

	opacity: .7;
}

.offcanvas-nav {

	padding:
		80px
		60px
		60px;
}

/* Hauptmenü */

.portal-menu,
.portal-menu ul {

	list-style: none;

	margin: 0;
	padding: 0;
}

.portal-menu li {

	list-style: none;
}

.portal-menu > li {

	margin-bottom: 60px;
}

.portal-menu > li > a {

	display: block;

	margin-bottom: 18px;

	color: #B61E3E;

	font-size: 14px;

	font-weight: 700;

	letter-spacing: .18em;

	text-transform: uppercase;

	text-decoration: none;
}

.portal-menu .sub-menu {

	margin: 0;

	padding: 0 0 0 20px;
}

.portal-menu .sub-menu li {

	margin-bottom: 14px;
}

.portal-menu .sub-menu a {

	display: block;

	color: #00205B;

	text-decoration: none;

	font-size: 2rem;

	font-weight: 400;

	line-height: 1.08;

	transition:
		color .25s ease,
		transform .25s ease;
}

.portal-menu .sub-menu a:hover {

	color: #B61E3E;

	transform: translateX(6px);
}

/* Footer Menü */

.offcanvas-mobile-footer {

	display: none;
}

.portal-footer-menu {

	list-style: none;

	margin: 20px 0 0;

	padding: 30px 0 0;

	border-top:
		1px solid rgba(
			0,
			0,
			0,
			0.1
		);
}

.portal-footer-menu li {

	list-style: none;

	margin-bottom: 10px;
}

.portal-footer-menu a {

	color: #6B7280;

	font-size: 16px;

	text-decoration: none;

	transition:
		color .25s ease;
}

.portal-footer-menu a:hover {

	color: #B61E3E;
}

.offcanvas-backdrop {

	position: fixed;

	inset: 0;

	background:
		rgba(
			0,
			0,
			0,
			0.35
		);

	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);

	visibility: hidden;
	opacity: 0;

	z-index: 1990;

	transition:
		opacity .3s ease,
		visibility .3s ease;
}

.offcanvas-backdrop.active {

	visibility: visible;
	opacity: 1;
}

/* ========================================
   TEMPLATE
======================================== */
.isb-hero .hero-watermark {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 75%;
	opacity: .09;
	z-index: 1;
}

.isb-hero .hero-watermark img {
	width: 100%;
	height: auto;
	display: block;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 1200px) {

	:root {
		--menu-width: 180px;
		--logo-width: 280px;
	}

	.hero-content {
		max-width: 700px;
	}

	.hero h1 {
		font-size: clamp(
			3rem,
			8vw,
			6rem
		);
	}
}

@media (max-width: 991px) {

	:root {
		--header-height: 72px;
		--portal-gutter: 20px;
		--menu-width: 120px;
		--logo-width: 180px;
	}

	/* ---------------------------
	   HEADER
	--------------------------- */

	.header-inner {
		width: calc(100% - 40px);
		height: var(--header-height);
		margin: 0 auto;
	}

	.brand {
		height: var(--header-height);
		padding: 0 24px 0 0;
		margin: 0;
		display: flex;
		align-items: center;
	}

	.brand img {
		display: block;
		width: auto;
		max-width: 120px;
		max-height: 38px;
		margin-left: -8px;
		object-fit: contain;
	}

	.menu-trigger {
		height: var(--header-height);
		padding: 0 30px;
		font-size: 14px;
	}

	.chapter-trigger {
		display: none !important;
	}

	/* ---------------------------
	   HERO
	--------------------------- */

	.hero-inner {
		width: calc(100% - 40px);
		margin: 0 auto;
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.hero-content {
		width: 100%;
		max-width: 100%;
	}

	.hero h1 {
		font-size: clamp(
			2.8rem,
			12vw,
			var(--hero-title-size)
		);

		line-height: 1;
	}

	.hero p {
		max-width: 100%;
	}

	/* ---------------------------
	   CONTENT / ELEMENTOR
	--------------------------- */

	.portal-content {
		width: calc(100% - 40px);
		margin: 0 auto;
		padding-top: 60px;
		padding-bottom: 80px;
	}

	.portal-content > .elementor {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
	}

	.portal-content
	.elementor
	> .e-con {
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	/* ---------------------------
	   DOWNLOADS
	--------------------------- */

	.isb-downloads__heading {
		margin-bottom: 24px;
	}

	.isb-downloads__item {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 14px 20px;
		padding: 20px 0;
	}

	.isb-downloads__item:hover {
		padding-right: 0;
		padding-left: 0;
		background: transparent;
	}

	.isb-downloads__content {
		grid-column: 1 / -1;
	}

	.isb-downloads__filename {
		white-space: normal;
		overflow-wrap: anywhere;
	}

	.isb-downloads__type {
		text-align: left;
	}

	.isb-downloads__action {
		justify-content: flex-end;
	}

	/* ---------------------------
	   COLOR CARD
	--------------------------- */

	.isb-color-card__body,
	.isb-color-card--information-right
	.isb-color-card__body {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.isb-color-card__swatch {
		min-height: 160px;
	}

	.isb-color-card__information,
	.isb-color-card--information-bottom
	.isb-color-card__information {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		gap: 0;

		padding-top: 20px;
		padding-left: 0;

		border-top: 2px solid #B61E3E;
		border-left: 0;
	}

	.isb-color-card__information-heading {
		margin-bottom: 4px;
	}

	.isb-color-card__data-row,
	.isb-color-card--information-bottom
	.isb-color-card__data-row {
		display: grid;
		grid-template-columns: 58px minmax(0, 1fr);
		align-items: baseline;
		gap: 14px;

		margin-bottom: 0;
		padding: 10px 0;

		border-bottom: 1px solid rgba(0, 32, 91, 0.12);
	}

	.isb-color-card__data-row:first-of-type,
	.isb-color-card--information-bottom
	.isb-color-card__data-row:first-of-type {
		padding-top: 0;
	}

	.isb-color-card__data-row:last-child,
	.isb-color-card--information-bottom
	.isb-color-card__data-row:last-child {
		padding-bottom: 0;
		border-bottom: 0;
	}

	.isb-color-card__label {
		margin: 0;
	}

	.isb-color-card__value {
		white-space: normal;
		overflow-wrap: anywhere;
	}	
	
	/* ---------------------------
	   PORTAL GRID
	--------------------------- */

	.portal-grid {
		width: calc(100% - 40px);
	}

	/* ---------------------------
	   FOOTER
	--------------------------- */

	.footer-inner {
		width: calc(100% - 40px);
		margin: 0 auto;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	/* ---------------------------
	   OFFCANVAS
	--------------------------- */

	.offcanvas {
		width: 100%;
	}

	.offcanvas-mobile-footer {
		display: block;
	}

	.offcanvas-nav a {
		font-size: 24px;
	}

}