html {
	overflow: hidden;
	height: 100vh;
}
body {
	margin: 0;
	overflow-x: hidden;
	overflow-y: scroll;
	height: 100vh;
	height: 100dvh;
	scroll-snap-type: y proximity;
	scroll-behavior: auto;
}
body.isLoaded {
	scroll-behavior: smooth;
}
body.navOpen {
	position: relative;
	overflow: hidden;
}
.site-main {
	padding-top: 50px;
}
* {
	flex-grow: 0;
	flex-shrink: 0;
}
img {
	display: block;
	width: 100%;
	height: auto;
}
section.typ-2 img {
	aspect-ratio: 1/1;
	max-width: 18em;
}
img.x3y2 {
	aspect-ratio: 3/2;
	object-fit: cover;
}
.caption {
	margin-top: .75em;
	padding-bottom: 2px;
}
.section-contact .caption {
	margin-top: 1.5em;
}
.modal {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1001;
	background: rgba(0,0,0,0.5);
	overflow: auto;
}
body.legalOpen .modal {
  display: block;
}
.modal-i {
	max-width: var(--maxWidth);
	margin: 0 auto;
}
.modal-c {
	background-color: var(--isWhite);
	margin: 1rem;
	padding: 1rem;
	position: relative;
	pointer-events: all;
}
.closelegal {
	position: absolute;
	right: 1rem;
	top: 1rem;
	cursor: pointer;
	height: 18px;
	width: auto;
}

/* ----- PAGE HEADER ----- */
.page-header {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: url("../res/orchestral-thinking-keyvisual.jpg");
	background-position: center center;
	background-size: cover;
	position: fixed;
	transition: opacity .6s ease-in-out;
	z-index: 9999;
}
.page-header.isAnimating {
	opacity: 0;
}
.page-header.isHidden {
	z-index: -1;
}
.page-header-b {
	width: 100%;
	height: 100%;
	position: absolute;
}
.page-header-b div {
	position: absolute;
	background-color: var(--isWhite);
	opacity: .15;
}
.page-header-b div:nth-child(1) {
	width: 100%;
	height: 1px;
	top: calc(100%/3 - .5px);
}
.page-header-b div:nth-child(2) {
	width: 100%;
	height: 1px;
	bottom: calc(100%/3 - .5px);
}
.page-header-b div:nth-child(3) {
	height: 100%;
	width: 1px;
	left: calc(100%/3 - .5px);
}
.page-header-b div:nth-child(4) {
	height: 100%;
	width: 1px;
	right: calc(100%/3 - .5px);
}
.page-header-i {
	padding: 1.5rem 1rem;
	margin: 0 auto;
	width: calc(100% - 2rem);
	height: calc(100% - 3rem);
	position: relative;
}
.page-header-c {
	display: flex;
	flex-direction: column;
	color: var(--isWhite);
	width: calc(100% - 2rem);
	height: 100%;
	padding: 0 1rem;
	margin: 0 auto;
	max-width: var(--maxWidth);
	position: relative;
}
.page-header img {
	height: 1.6rem;
	width: auto;
	margin: auto auto 0 auto;
}
.page-header h1 {
	margin: 1rem auto auto auto;
}
.page-header p.isClaim {
	position: absolute;
	margin: 0;
	top: 0;
	left: 0;
}
.page-header p.isButton {
	position: absolute;
	margin: 0 auto;
	text-align: center;
	line-height: 1;
	bottom: 0;
	left: 0;
	right: 0;
}

/* ----- SITE HEADER ----- */
.site-header {
	background-color: var(--isWhite);
	position: fixed;
	top: 0;
	z-index: 999;
	width: 100%;
	height: 50px;
}
.site-header-i {
	padding: 1em 1rem;
	margin: 0 auto;
	max-width: var(--maxWidth);
}
.site-header-c {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.site-logo {
	display: block;
}
.site-logo img {
	height: 18px;
	width: auto;
}
.site-burger {
	display: block;
}
.site-burger img {
	width: auto;
}
.site-burger img.open {
	margin: 3px 0;
	display: block;
	height: 12px;
}
.site-burger img.close {
	height: 18px;
	display: none;
}
body.navOpen .site-burger img.open {
	display: none;
}
body.navOpen .site-burger img.close {
	display: block;
}
body.navOpen .site-burger {
	margin: 0;
}

/* ----- SITE NAVIGATION ----- */
.site-navigation {
	width: 100%;
	display: none;
	justify-content: space-between;
	list-style: none;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.site-navigation a {
	font-weight: 400;
	line-height: 1;
	font-size: 18px;
	display: block;
}
.site-navigation a.isActive {
	opacity: .5;
}
.site-navigation li:before {
	display: none;
}

/* ----- MOBILE NAVIGATION ----- */
.mobile-menu {
	display: none;
	border-top: 1px solid var(--isLightGrey);
	position: fixed;
	top: 50px;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,.5);
}
.mobile-navigation {
	display: flex;
	list-style: none;
	list-style-type: none;
	padding: 2rem 1rem;
	flex-direction: column;
	background-color: var(--isOffWhite);
}
.mobile-navigation li {
	margin-bottom: 1em
}
.mobile-navigation li:last-child {
	margin-bottom: 0;
}
.mobile-navigation li:before {
	display: none;
}
.mobile-navigation a {
	font-weight: 600;
	line-height: 1.1;
	font-size: 1em;
	display: block;
}
.mobile-navigation a.isActive {
	opacity: .5;
}
body.navOpen .mobile-menu {
	display: block;
}
.mobile-menu-footer {
	background-color: var(--isBlue);
}
.mobile-menu-footer a {
	display: block;
	color: var(--isWhite);
	font-size: 1em;
	padding: 0 1rem;
	line-height: 50px;
}

/* ----- CONTENT ----- */
section:first-child {
	margin-top: 50px;
}
section {
	scroll-snap-align: start;
	scroll-margin-top: 50px;
	position: relative;
	background-color: var(--isWhite);
	min-height: calc(100vh - 50px);
}
a.anchor {
	position: absolute;
	top: -50px;
}
.section-header {
	padding: 1rem;
	position: sticky;
	top: 50px;
	z-index: 998;
}
.typ-2 .section-header {
	position: static; 
}
.section-header h2 {
	max-width: var(--maxWidth);
	color: var(--isWhite);
	height: 2em;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.section-header h2 sup {
	margin-right: .25em;
}
.section-content {
	display: flex;
	margin: 0 auto;
	max-width: var(--maxWidth);
	flex-direction: column;
	padding: 0 0 4rem 0;
}
.col-image {
	padding: 1rem 1rem 0 1rem;
}
.col-text {
	padding: 1rem 1rem 0 1rem;
}
.col-image ~ .col-text {
	padding: 3rem 1rem 0 1rem;
}
.col-text ~ .col-image {
	padding: 3rem 1rem 0 1rem;
}
.col-image-m img {
	width: 100%;
	max-width: 32em;
}

/* ----- AKKORDEON ----- */
.accordeon {
	margin-top: 2rem;
	border-top: 1px solid var(--isLightGrey);
	border-bottom: 1px solid var(--isLightGrey);
}
.accordeon h3 {
	font-size: 14px;
	line-height: 1;
	margin: 1em 0;
	padding-right: 3em;
	position: relative;
	cursor: pointer;
	font-weight: 500;
}
.accordeon h3::after {
	position: absolute;
	right: 0;
	top: 1.5px;
	display: inline-flex;
	width: 1em;
	height: 1em;
	content: url(../res/orchestral-thinking-plus-button.svg);
	align-items: center;
	justify-content: center;	
}
.accordeon-content {
	overflow: hidden;
	display: none;
}
.accordeon-content table {
	margin-top: calc(2rem - 28px);
	margin-bottom: 2rem;
}
.accordeon.isOpen h3::after {
	content: url(../res/orchestral-thinking-minus-button.svg);
}
.accordeon.isOpen .accordeon-content {
	display: block;
}

/* ----- SITE FOOTER ----- */
.site-footer {
	color: var(--isWhite);
	background-color: var(--isBlue);
	scroll-snap-align: start;
	padding-bottom: env(safe-area-inset-bottom);
}
.site-footer-content {
	padding: 1rem;
	margin: 0 auto;
	max-width: var(--maxWidth);
}
.site-footer img {
	height: 18px;
	display: block;
	width: auto;
}
.site-footer a {
	display: inline-block;
}
.site-footer-bottom {
	margin-top: calc(.5em + 1px);
}
.site-footer .isClaim {
	display: none;
}

/* ----- RESPONSIVE ----- */
@media only screen and (min-width: 1024px) {
	/* ----- PAGE HEADER ----- */
	.page-header-i {
		padding: 1.5rem 2rem;
		width: calc(100% - 4rem);
	}
	.page-header img { 
		height: 1.5rem;
	}
	
	/* ----- SITE HEADER ----- */
	.site-header-i {
		padding: 16px 2rem;
	}
	.site-logo,
	.site-burger,
	.mobile-menu-footer,
	.mobile-navigation {
		display: none;
	}
	.site-navigation {
		display: flex;
	}
	
	/* ----- CONTENT ----- */
	.section-header {
		padding: 1rem 2rem;
	}
	.section-header h2 {
		height: 1em;
		justify-content: flex-start;
		align-items: flex-start;
		white-space: nowrap;
		padding: 10px 0;
		transform: translateX(-.05em);
	}
	.section-content {
		flex-direction: row;
		flex-wrap: wrap;
		padding: 3rem 2rem 4rem 2rem;
		width: calc(100% - 4rem);
	}
	.section-content-i {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		width: calc(100% + 3rem);
		margin: 0 -1.5rem;
	}
	.flipDesktop .section-content-i {
		flex-direction: row-reverse;
	}
	.col-image,
	.col-text,
	.col-text ~ .col-image,
	.col-image ~ .col-text {
		width: calc(50% - 3rem);
		padding: 0 1.5rem;
	}
	.col-sticky {
		position: sticky;
		top: calc(100px + 5rem);
		align-self: flex-start;
	}
	.col-image-m img {
		margin: .3em 0;
		max-width: 100%;
	}
	.col-image img {
		margin: .3em 0;
	}
	.hasAcc .col-image-m img {
		margin: .3em 0 0 0;
	}
	.accordeon-content table {
		margin-top: calc(2rem - 36px);
	}
	.accordeon h3 {
		font-size: 18px;
	}
	
	/* ----- SITE FOOTER ----- */
	.site-footer-content {
		padding: 1rem 2rem; 
		display: flex;
	}
	.site-footer img {
		margin: 0 auto 0 0;
	}
	.site-footer p {
		margin: 0;
	}
	.site-footer-top {
		display: flex;
		flex-direction: column;
	}
	.site-footer-top p {
		margin-left: auto;
	}
	.site-footer .isClaim {
		display: block;
		margin-top: .5em;
		margin-left: auto;
	}
	.site-footer-bottom {
		margin-left: auto;
  		margin-top: auto;
	}
}
@media only screen and (min-width: 1280px) {
	/* ----- CONTENT ----- */
	.section-header h2 {
		padding: 5px 0;
	}
}
@media only screen and (min-width: 1480px) {
	/* ----- CONTENT ----- */
	.section-header h2 {
		padding: 2px 0;
	}
	/* ----- PAGE HEADER ----- */
	.page-header p.isClaim {
		left: calc(185px - 12.5vw); 
	}
} 