/**************************************************
		Content
 **************************************************

	00. Externals
	01. Browser Reset
	02. Basic styles
	03. Basic wireframe
	04. Header
	05. Footer
	06. Modules
	07. Home
	08. Pages
	09. Content
	10. Projects, Education
	11. Concerts
	12. Orchestra Tutorials
	
	xx. Misc and Wordpress specials


/**************************************************
	00. Externals
 **************************************************/

@font-face {
	font-family: 'Value Serif';
	src: url('../fonts/ValueSerif.eot');
	src: url('../fonts/ValueSerif.eot?#iefix') format('embedded-opentype'),
		url('../fonts/ValueSerif.woff2') format('woff2'),
		url('../fonts/ValueSerif.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Object Sans';
	src: url('../fonts/ObjectSans-Bold.eot');
	src: url('../fonts/ObjectSans-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/ObjectSans-Bold.woff2') format('woff2'),
		url('../fonts/ObjectSans-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}




/**************************************************
	01. Browser Reset
 **************************************************/

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,
ol,
ul,
li,
fieldset,
form,
label,
caption,
tr,
th,
td,
canvas,
embed,
figure,
figcaption,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

figcaption,
figure {
	display: block;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}



/**************************************************
	02. Basic Styles
 **************************************************/

* {
	box-sizing: border-box;
}

html {
	--vw: 1vw;
	--vh: 1vh;

	--black: #000000;
	--gray: #E4E4E4;
	--white: #FFFFFF;
	--yellow: #EBFF00;
	--highlight: var(--yellow);

	--baseSize: var(--vw);
	--padHor: calc(1.82291666 * var(--vw));
	--padVer: calc(1.66666 * var(--vw));

	--arrowTopRight: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34.194 34.192'%3E%3Cpath d='M0 31.522l20.702-20.703 2.671 2.671L2.67 34.193z'/%3E%3Cpath d='M25.249 26.85h-3.742l-.001-14.161-14.16.001V8.948l17.898.002z'/%3E%3C/svg%3E");
}

html,
body {
	margin: 0px;
	padding: 0px;
	min-width: 100%;
	min-height: 100%;
	scroll-behavior: smooth;
}

body {
	position: relative;

	color: var(--black);
	background: var(--white);
	font-family: Object Sans, sans-serif;
	font-weight: 400;
	word-spacing: 0.01em;

	line-height: 1.1;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	hanging-punctuation: force-end;
	word-wrap: break-word;

	-webkit-hyphens: auto;
	-webkit-hyphenate-limit-before: 3;
	-webkit-hyphenate-limit-after: 3;
	-webkit-hyphenate-limit-chars: 6 3 3;
	-webkit-hyphenate-limit-lines: 2;
	-webkit-hyphenate-limit-last: always;
	-webkit-hyphenate-limit-zone: 8%;

	-moz-hyphens: auto;
	-moz-hyphenate-limit-chars: 6 3 3;
	-moz-hyphenate-limit-lines: 2;
	-moz-hyphenate-limit-last: always;
	-moz-hyphenate-limit-zone: 8%;

	-ms-hyphens: auto;
	-ms-hyphenate-limit-chars: 6 3 3;
	-ms-hyphenate-limit-lines: 2;
	-ms-hyphenate-limit-last: always;
	-ms-hyphenate-limit-zone: 8%;

	hyphens: auto;
	hyphenate-limit-chars: 6 3 3;
	hyphenate-limit-lines: 2;
	hyphenate-limit-last: always;
	hyphenate-limit-zone: 8%;
}

::-moz-selection {
	background-color: var(--yellow);
}

::selection {
	background-color: var(--yellow);
}

.bg-yellow ::-moz-selection {
	background-color: var(--white)
}

.bg-yellow ::selection {
	background-color: var(--white)
}

h1,
h2,
h3,
h4,
h5,
h6 {
	-webkit-column-break-after: avoid;
	-moz-column-break-after: avoid;
	break-after: avoid;
	letter-spacing: 0.01em;
}

p {
	margin-bottom: 1.1em;
	hanging-punctuation: force-end;
}

p:last-child,
p:empty {
	margin-bottom: 0;
}

ul,
ol {
	list-style-type: none;
	list-style-position: outside;
}

img,
iframe {
	outline: 0;
	display: block;
	user-select: none;
}

.ie7 img {
	-ms-interpolation-mode: bicubic;
}

strong,
b {
	font-weight: bold;
}

em,
i {
	font-style: oblique;
}

a {
	text-decoration: none;
}

a,
a:link,
a:active,
a:visited,
a:focus {
	color: var(--black);
}

a:hover {
	outline: none;
}


sup,
sub {
	font-size: 0.8em;
	line-height: 1em;
	vertical-align: super;
}

sub {
	vertical-align: sub;
}

blockquote p {
	quotes: "\201C" "\201D" "\2018" "\2019";
}

blockquote p:before,
q:before {
	content: open-quote;
}

blockquote p:after,
q:after {
	content: close-quote;
}

img.lazy {
	position: static;
	opacity: 0;

	transition: opacity 0.75s ease;
}

img.lazy.loaded,
.no-js noscript img.lazy {
	opacity: 1;
}

.no-js img.lazy[data-src] {
	display: none;
}

.uc {
	text-transform: uppercase;
}

.lc {
	text-transform: lowercase;
}

.serif,
.content .serif {
	font-family: Value Serif, serif;
}

.ss,
.content .ss {
	font-family: Object Sans, sans-serif;
}

.alpha,
.has-xs-font-size {
	font-size: 12px;
	line-height: 15px;
}

.beta,
.has-s-font-size {
	font-size: 21px;
	line-height: 27px;
}

.gamma,
html,
.has-m-font-size {
	font-size: 30px;
	line-height: 42px;
}

.epsilon,
.has-xl-font-size,
.wp-block-column:first-child {
	font-size: 45px;
	line-height: 55px;
}

.zeta,
.has-xxl-font-size {
	font-size: 60px;
	line-height: 72px;
}

.eta {
	font-size: 78px;
	line-height: 95px;
}

.theta {
	font-size: 150px;
	line-height: 150px;
}

@media (min-width: 1px) {

	.alpha,
	.has-xs-font-size {
		font-size: calc(0.625 * var(--vw));
		line-height: 1.25em;
	}

	.beta,
	.has-s-font-size {
		font-size: calc(1.09375 * var(--vw));
		line-height: 1.28571429em;
	}

	.gamma,
	html,
	.has-m-font-size {
		font-size: calc(1.5625 * var(--vw));
		line-height: 1.4em;
	}

	.epsilon,
	.has-xl-font-size,
	.wp-block-column:first-child {
		font-size: calc(2.34375 * var(--vw));
		line-height: 1.22222222em;
	}

	.zeta,
	.has-xxl-font-size {
		font-size: calc(3.125 * var(--vw));
		line-height: 1.2em;
	}

	.eta {
		font-size: calc(4.0625 * var(--vw));
		line-height: 1.21794872em;
	}

	.theta {
		font-size: calc(7.8125 * var(--vw));
		line-height: 1em;
	}
}

@media (min-width: 1px) and (max-aspect-ratio: 1/1) {

	.alpha,
	.has-xs-font-size {
		font-size: calc(1.25 * var(--vw));
	}

	.beta,
	.has-s-font-size {
		font-size: calc(2.1875 * var(--vw));
	}

	.gamma,
	html,
	.has-m-font-size {
		font-size: calc(3.125 * var(--vw));
	}

	.epsilon,
	.has-xl-font-size,
	.wp-block-column:first-child {
		font-size: calc(4.6875 * var(--vw));
	}

	.zeta,
	.has-xxl-font-size {
		font-size: calc(6.25 * var(--vw));
	}

	.eta {
		font-size: calc(8.125 * var(--vw));
	}

	.theta {
		font-size: calc(15.625 * var(--vw));
	}
}

/*@media (min-width: 1920px) {
	html { --padHor: 32px; --padVer: 40px; }
	.alpha, .has-xs-font-size                                 { font-size:  12px; }
	.beta, .has-s-font-size                                   { font-size:  21px; }
	.gamma, html, .has-m-font-size                            { font-size:  30px; }
	.epsilon, .has-xl-font-size, .wp-block-column:first-child { font-size:  45px; }
	.zeta, .has-xxl-font-size                                 { font-size:  60px; }
	.eta                                                      { font-size:  78px; }
	.theta                                                    { font-size: 150px; }
}*/






/**************************************************
	03. Basic wireframe
 **************************************************/

.wrapper {
	position: relative;
	width: 100%;
	min-height: 100%;
	min-height: calc(100 * var(--vh) - 2 * var(--padVer));
}

.main {
	width: 100%;
	margin: 0 auto;
	padding: 0 var(--padVer);
	overflow: hidden;
}

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

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


@media (min-aspect-ratio: 1/1) {
	.wrapper {
		display: flex;
		padding: 0 0 0 50%;
	}

	.main {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: 0;
	}
}




/**************************************************
	04. Header
 **************************************************/

.header {
	position: relative;
}

.header-toggle {
	position: fixed;
	top: var(--padVer);
	right: var(--padHor);
	width: 2.69473684em;
	height: 25px;
	z-index: 4;
	cursor: pointer;
}

.header-toggle span {
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	border-bottom: 2px solid var(--black);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-toggle span:nth-child(1) {
	top: 0;
}

.header-toggle span:nth-child(2),
.header-toggle span:nth-child(3) {
	top: 50%;
	transform: translateY(-50%);
}

.header-toggle span:nth-child(4) {
	bottom: 0;
}

.header.show .header-toggle span:nth-child(1),
.header.show .header-toggle span:nth-child(4) {
	opacity: 0;
}

.header.show .header-toggle span:nth-child(2) {
	transform: rotate(-45deg) translateY(-50%);
}

.header.show .header-toggle span:nth-child(3) {
	transform: rotate(45deg);
}

.header-inner {
	position: fixed;
	top: 0;
	left: 0;
	transform: translateY(-100%);
	width: 100%;
	height: 100%;
	z-index: 3;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	padding: var(--padVer) var(--padHor);
	background-color: var(--white);
	opacity: 0;
	pointer-events: none;

	transition: opacity 0.2s ease, transform 0.2s ease;
}



.header.show .header-inner {
	transform: translateY(0);
	opacity: 1;
	pointer-events: all;
}

body.home .header-inner,
body.home .header a {
	color: var(--textColor);
}

.header .header-logo {
	width: 5em;
	margin-bottom: 1.03333333em;
	/* 1.53333333em */
}

.header .header-logo svg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% - 6.25 * var(--padHor));
	height: calc(100% - 6.25 * var(--padHor));
	transform: translate(-50%, -50%);
	z-index: -1;
}

.header-menues {
	display: flex;
}

.header-menues .header-menu-left,
.header-menues .header-menu-right {
	width: calc(50% - 1em);
}

.header-menues .header-menu-left {
	margin-right: 1em;
}

.header-menues ul {
	display: flex;
	flex-direction: column;
	position: relative;
}

.header-menues li {
	display: inline-block;
	width: fit-content;
	white-space: nowrap;
}

.header-menues li.menu-item-has-children {
	user-select: none;
	cursor: pointer;
}

.header-menues li.menu-item-has-children ul.sub-menu {
	position: absolute;
	bottom: -5.56666em;
	/* -6.06666em; */
	opacity: 0;
	pointer-events: none;
	margin-top: 2.4em;

	font-size: calc(2.34375 * var(--vw));
	line-height: 1.22222222em;

	transition: opacity 0.2s ease;
}

.header-menues li.menu-item-has-children.show-sub-menu ul.sub-menu,
.header-menues li.menu-item-has-children.current-menu-item ul.sub-menu {
	opacity: 1;
	pointer-events: all;
}

.header-menues li a,
.header-menues li .sub-menu-title,
.header-menues .header-menu-right li.menu-item-has-children {
	display: block;
	padding: 0.2em;
	margin: -0.2em;
	transition: transform 0.2s ease;
}

.header-menues ul:not(.sub-menu)>li:not(.menu-item-has-children):hover a,
.header-menues ul:not(.sub-menu)>li.current-menu-item a,
.header-menues .header-menu-right li.menu-item-has-children.show-sub-menu .sub-menu-title,
.header-menues li.menu-item-has-children .sub-menu-title:hover {
	transform: translateX(1em);
}

.header-menues ul.sub-menu>li a {
	position: relative;
}

.menu-item-social ul.sub-menu>li a.external {
	padding-right: 0;
}

.menu-item-social ul.sub-menu>li a.external:after {
	display: none;
}

.header-menues ul.sub-menu>li a:before,
.header-menues ul.sub-menu>li.current-menu-item:hover a:before,
.header-menues ul.sub-menu>li.active:hover a:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	border-bottom: 0.133333333em solid var(--highlight);
	transform-origin: left center;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.header-menues ul.sub-menu>li:hover a:before,
.header-menues ul.sub-menu>li.current-menu-item a:before,
.header-menues ul.sub-menu>li.active:not(:hover) a:before {
	transform: scaleX(1);
}

.header-bottom {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-top: 9.7rem;
	/* 11.4rem */
}

.header-misc {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.header-bottom-menu {
	display: flex;
	align-items: center;
}

.header-bottom-menu li+li {
	margin-left: 0.3em;
}

.header-bottom-menu li+li:before {
	content: ' / ';
}

.header-bottom .language-menu {
	position: relative;
	display: flex;
	align-items: center;
	margin-left: 2.75em;
	padding: 0.4em 2.2em 0.4em 0.4em;
	border: 0.16666666em solid var(--black);
	border-radius: 2em;
	background-color: var(--white);
	cursor: pointer;
}

[lang="de-DE"] .header-bottom .language-menu {
	padding: 0.4em 0.4em 0.4em 2.2em;
}

.header-bottom .language-menu:before {
	content: '';
	display: block;
	width: 1.66666667em;
	height: 1.66666667em;
	margin-right: 0.333333em;
	border-radius: 50%;
	border: 0.16666666em solid var(--black);
	transition: background-color 0.2s ease;
}

body.home .header-bottom .language-menu,
body.home .header-bottom .language-menu:before {
	border-color: var(--textColor);
}

[lang="de-DE"] .header-bottom .language-menu:before {
	margin-left: 0.333333em;
	margin-right: 0;
}

.header-bottom .language-menu:hover:before {
	background-color: var(--black);
}

.header-bottom .language-menu .wpml-ls-legacy-list-horizontal,
.header-bottom .language-menu .wpml-ls-legacy-list-horizontal a {
	height: 0.9em;
	border: 0;
	padding: 0;
}

.header-bottom .language-menu .wpml-ls-legacy-list-horizontal a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 1em 0.7em 0 0;
	text-align: right;
}

[lang="de-DE"] .header-bottom .language-menu .wpml-ls-legacy-list-horizontal a {
	padding: 1em 0 0 0.7em;
	text-align: left;
}

.internal-page {
	position: relative;
	width: 3.16666666em;
	/* 1.58333333em; */
	height: 3.83333332em;
	/* 1.91666666em; */
	margin-left: 2.75em;
}

.internal-page svg {
	position: absolute;
	width: 100%;
	height: 100%;
}

body.home .internal-page svg {
	fill: var(--textColor);
}

a.external:after {
	opacity: 0;
	transition: opacity 0.2s ease;
}

a.external:hover:after {
	opacity: 1;
}

@media (min-width: 517px) {
	.header-toggle {
		height: 30px;
	}

	.header-toggle span {
		border-bottom-width: 2px;
	}
}

@media (min-width: 855px) {
	.header-toggle {
		height: 51px;
	}

	.header-toggle span {
		border-bottom-width: 3px;
	}
}

@media (min-width: 1200px) {
	.header-toggle {
		height: 72px;
	}

	.header-toggle span {
		border-bottom-width: 4px;
	}
}

@media (min-width: 1544px) {
	.header-toggle {
		height: 93px;
	}

	.header-toggle span {
		border-bottom-width: 5px;
	}
}

@media (min-width: 1883px) {
	.header-toggle {
		height: 114px;
	}

	.header-toggle span {
		border-bottom-width: 6px;
	}
}

@media (min-width: 2394px) {
	.header-toggle {
		height: 145px;
	}

	.header-toggle span {
		border-bottom-width: 7px;
	}
}

@media (min-aspect-ratio: 1/1) {
	.header {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 3;

		width: 50%;
		height: calc(100 * var(--vh));
		padding: var(--padVer) var(--padHor);
		overflow: hidden;
	}

	.header-toggle {
		display: none;
	}

	.header-inner {
		position: static;

		opacity: 1;
		transform: translateY(0);
		pointer-events: all;
		transition: none;
		padding: 0;
		background-color: transparent;
	}

	.header .header-logo svg {
		opacity: 0;
		transition: opacity 0.3s ease;
		pointer-events: none;
	}

	.header .header-logo:hover svg {
		opacity: 1;
		pointer-events: all;
	}
}



@media (min-width: 1px) and (max-aspect-ratio: 1/1) {
	.header-menues li.menu-item-has-children ul.sub-menu {
		font-size: calc(4.6875 * var(--vw));
	}
}



/**************************************************
	05. Footer
 **************************************************/



/**************************************************
	06. Modules
 **************************************************/


.main {
	min-height: calc(100 * var(--vh));
}

.main.bg-yellow .module {
	background-color: var(--yellow);
}

.main a,
.main a:link,
.main a:active,
.main a:visited,
.main a:focus {
	color: currentColor;
}

.module {
	margin: 0 auto;
	width: 100%;
	padding: var(--padVer) var(--padHor);
}

.module+.module {
	margin-top: var(--padVer);
}

.module.fw,
.module.fs,
.fw,
.fs {
	width: calc(100 * var(--vw));
	max-width: calc(100 * var(--vw));
	margin-left: calc(-1 * var(--padHor));
}

.module.fs,
.fs {
	height: calc(100 * var(--vh));
	max-height: calc(100 * var(--vh));
	overflow: hidden;
}

.module.fs:first-child {
	margin-top: calc(-1 * var(--padHor));
}

.module-nonexistent {
	position: relative;
	padding: 4rem;
	color: red;
}

.module-columns {
	display: flex;
	align-items: baseline;
}

.module-column:first-child {
	width: calc(50% - 5rem);
	flex-shrink: 0;
	margin-right: 1.7rem;
}

.module-column:last-child {
	width: 100%;
}



/**************************************************
	07. Home
 **************************************************/




/**************************************************
	08. Pages
 **************************************************/

.main.page .module:first-child {
	padding-top: calc(10.2rem + 0.2em - var(--padVer));
}

.module-title {
	margin-bottom: 3rem;
	text-align: center;
}

.module-pagetitle {
	margin: 1rem auto 9rem;
}


@media (min-aspect-ratio: 1/1) {
	.module-pagetitle {
		margin: 0 auto 9rem;
	}
}


/*	Sponsors	*/

.module-sponsors {
	padding-bottom: 12rem;
}

.sponsor-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 3rem;
}

.sponsor-single {
	position: relative;
	width: calc(50% - 0.75rem);
	height: 0;
	padding-bottom: calc(50% - 0.75rem);
	background-color: var(--white);
}

.sponsor-single:nth-child(n+3) {
	margin-top: 1.5rem;
}

.sponsor-list .sponsor-single.contain-container img {
	top: 8.5%;
	left: 8.5%;
	width: 83%;
	height: 83%;
}


/*	Contact	*/

.module-contact .mail a {
	text-decoration: underline;
	transition: text-decoration-color 0.2s ease;
}

.module-contact .mail a:hover {
	text-decoration-color: transparent;
}


/*	Press realeases	*/

.press-single+.press-single {
	margin-top: 2rem;
}




/**************************************************
	09. Content
 **************************************************/

/***	Content		***/

.content {
	overflow: hidden;
}

.content p:not(:last-child),
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6,
.content ul,
.content ol,
.content blockquote,
.content .wp-block-audio,
.content .wp-block-file,
.content .wp-block-code,
.content .wp-block-preformatted,
.content .wp-block-verse,
.content .wp-block-pfh-expandable,
.content .wp-block-separator,
.content .video-container,
.content .wp-block-embed {
	margin: 0 auto 1.2em;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
	font-family: "Object Sans", sans-serif;
}


.content h1 {
	font-size: calc(3.125 * var(--vw));
	line-height: 1.2em;
	margin-bottom: 0.6em;
}

.content h2 {
	font-size: calc(2.34375 * var(--vw));
	line-height: 1.2222222em;
	margin-bottom: 0.6111111em;
}

.content h3 {
	font-size: calc(2.03125 * var(--vw));
	line-height: 1.23076923em;
	margin-bottom: 0.615384615em;
}

.content h4,
.content h5,
.content h6 {
	font-size: calc(1.5625 * var(--vw));
	line-height: 1.4em;
	margin-bottom: 0.7em;
}

.content>h1,
.content>h2,
.content>h3,
.content>h4,
.content>h5,
.content>h6 {
	max-width: calc(100% - 6.5rem);
	text-align: center;
}

.content .has-text-align-left {
	text-align: left;
	max-width: 100%;
}

.content .has-text-align-right {
	text-align: right;
	max-width: 100%;
}

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

.content ol {
	list-style-type: decimal;
	list-style-position: inside;
}

.content ul {
	list-style-type: disc;
	list-style-position: inside;
}

.content ol li+li,
.content ul li+li {
	margin-top: 0.65em;
}

.content a {
	text-decoration: underline;
	color: currentColor;
	transition: text-decoration-color 0.2s ease;
}

.content a:hover {
	text-decoration-color: transparent;
}

.content blockquote p {
	margin-bottom: 0;
	font-size: 1.42857143rem;
	text-indent: 0;
}

.content .wp-block-vers {
	white-space: nowrap;
	overflow: auto;
}


.wp-block-columns {
	display: flex;
	margin-bottom: 3rem;
}

.wp-block-column {
	width: 100%;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
}

.wp-block-column:first-child {
	font-family: "Object Sans", sans-serif;
	width: calc(50% - 5rem);
	margin-right: 1.7rem;
	flex-shrink: 0;
}


.content .wp-block-code {
	overflow-x: scroll;
}

.content code,
.content .wp-block-preformatted {
	font-family: monospace;
	font-size: 0.857142857rem;
	max-width: 100%;
}

.content .wp-block-separator {
	margin: 3.2rem auto;
	border-top: 0.0833333333em solid var(--black);
}

.module:not(.gallery) .side-image {
	display: none;
}

.side-image img,
.side-image video {
	width: 100%;
	height: auto;
}

.content figure:not(.wp-block-embed) {
	width: calc(100% + 2 * var(--padHor));
	margin: 0 0 5.7rem calc(-1 * var(--padHor));
}

.content .wp-block-column figure:not(.wp-block-embed) {
	width: 100%;
	margin: 0 0 3rem;
}

.content .size-small figure,
.content figure.size-small,
.content .size-medium figure,
.content figure.size-medium {
	margin: 0 auto 5.7rem;
	max-width: 80%;
}

.content .wp-block-image .aligncenter {
	max-width: 80%;
	margin: 0 auto 1.2rem;
}

.content figure img,
.content figure video {
	max-width: 100%;
	height: auto;
}

.content figure audio {
	width: 100%;
}

.content figure:not(.alignleft) img,
.content figure:not(.alignleft) video {
	width: 100%;
}

.content figcaption {
	margin: 1.25em var(--padHor);
	font-family: "Object Sans", sans-serif;
	font-size: 0.571428571rem;
	line-height: 1.25em;
	color: var(--black);
}

.content .video-container,
.content .wp-block-embed {
	position: relative;
}

.content .video-container iframe,
.content .wp-block-embed iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.content .slider {
	position: relative;
	left: 50%;
	margin: 2.5rem 0;
	overflow: hidden;
	transform: translateX(-50%);
}

.content:last-child .slider:last-child {
	margin-bottom: -5.6rem;
}

.content .slider .slide {
	max-width: calc(100 * var(--vw));
}

.content .slider .slide.landscape {
	width: calc(100 * var(--vw));
}



.content .wp-block-file {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.857142857rem;
}

.content .wp-block-file.alignleft {
	justify-content: flex-start;
}

.content .wp-block-file.alignright {
	justify-content: flex-end;
}

.content .wp-block-file *+.wp-block-file__button {
	margin-left: 1rem;
}

.content .wp-block-button__link {
	border-radius: 0;
	background-color: transparent;
	font-size: 1rem;
	padding: 0;
}



@media (max-aspect-ratio: 1/1) {
	.content h1 {
		font-size: calc(6.25 * var(--vw));
	}

	.content h2 {
		font-size: calc(4.6875 * var(--vw));
	}

	.content h3 {
		font-size: calc(4.0625 * var(--vw));
	}

	.content h4,
	.content h5,
	.content h6 {
		font-size: calc(3.125 * var(--vw));
	}
}


/***	Front page		***/

.home .content figure {
	margin-bottom: 1rem;
}


@media (min-width: 600px) and (max-width: 849px) {
	.wp-block-columns {
		flex-wrap: nowrap;
	}
}

@media (min-width: 650px) {

	.content ol,
	.content ul {
		list-style-position: outside;
	}

	.content .wp-block-image .alignleft {
		position: relative;
		margin-left: calc(-50 * var(--vw));
		width: calc(50 * var(--vw) - 2 * var(--padHor));
		z-index: 2;
		float: left;
	}

	.content .wp-block-image .alignright {
		width: calc(50% - 1rem);
		margin: 0 0 2rem 2rem;
		float: right;
	}

	.content .wp-block-image .alignleft img,
	.content .wp-block-image .alignleft video {
		margin: 0 auto;
	}
}

@media (min-aspect-ratio: 1/1) {
	.side-image {
		display: block;
	}

	.side-image figure {
		position: absolute;
		top: 0;
		left: calc(-50 * var(--vw) + 2.66666rem);
		margin-left: 0;
		width: calc(50 * var(--vw) - 2 * var(--padHor) - 5.33333333rem);

		display: flex;
		align-items: center;
		justify-content: center;
	}

	.content .side-image figure,
	.side-image.centred figure {
		top: 50%;
		transform: translateY(-50%);
	}
}



/**************************************************
	10. Projects, Education
 **************************************************/

.project-post-card,
.education-post-card {
	position: relative;
	width: 100%;
	color: var(--white);
}

.module-projectsarchive.size-compact .project-post-card,
.module-educationarchive.size-compact .education-post-card {
	height: calc(33.33333333 * var(--vh) - 1.333333 * var(--padVer));
}

.module-projectsarchive.size-large .project-post-card,
.module-educationarchive.size-large .education-post-card {
	height: calc(50 * var(--vh) - 1.5 * var(--padVer));
}

.module-projectsarchive.further-projects {
	padding-top: 9rem;
	margin-top: 0;
	background-color: var(--white);
}

.project-post-card+.project-post-card,
.education-post-card+.education-post-card {
	margin-top: var(--padVer);
}

.project-post-card .post-card-bg,
.project-post-card .post-card-fg,
.project-post-card .post-card-fg a,
.education-post-card .post-card-bg,
.education-post-card .post-card-fg,
.education-post-card .post-card-fg a {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.project-post-card .post-card-fg a,
.education-post-card .post-card-fg a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 2;
	text-align: center;
	color: var(--white);
}

.module-description {
	position: relative;
}

.module-projectinfo {
	position: relative;
}

.module-singleimage+.module-projectinfo {
	margin-top: 0;
	padding-top: 0;
}

.module-projectinfo .module-columns:not(:first-child) {
	margin-top: 4rem;
}


/*	Gallery	*/

.gallery {
	position: relative;
	padding: var(--padVer) 0 0;
}

.gallery .gallery-slide {
	position: relative;
	width: calc(100% - 4.46666666rem);
	height: auto;
	margin: 0 auto 2.366666rem;
}

.gallery .gallery-slide:first-child,
.gallery .side-image:first-child,
.gallery .gallery-slide:last-child {
	width: 100%;
}

.gallery .gallery-slide:first-child,
.gallery .side-image {
	margin-bottom: 4.26666666rem;
}

.gallery .gallery-slide:last-child {
	margin: 4.26666666rem 0 0;
}

.gallery-slide img,
.gallery-slide video {
	width: 100%;
	height: auto;
}


@media (min-aspect-ratio: 1/1) {
	.gallery .side-image {
		margin: 0;
	}

	.gallery .side-image+.gallery-slide {
		width: 100%;
	}

	.gallery .side-image+.gallery-slide {
		margin-bottom: 4.26666666rem;
	}
}




/**************************************************
	11. Concerts
 **************************************************/

.main.archive-concerts {
	margin-bottom: calc(-2 * var(--padVer));
}

.module-concertsarchive {
	padding-bottom: 0;
}

.concerts-list {
	padding: 5rem var(--padHor) var(--padVer);
}

.concerts-list:first-child {
	padding-top: calc(10.6666666rem - var(--padVer));
}

.concerts-list:last-child {
	margin-bottom: calc(-1 * var(--padVer));
}

.concert-post-card .concert-post-card-top {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 1rem;
}


/*	Present and future archives */

.concerts-list.concerts-present {
	background-color: var(--yellow);
}

.concert-card-ticket {
	position: relative;
	display: flex;
	--cut: 1.3333rem;
	--border: 1px;
	--margin: 2px;
}

.concert-card-ticket+.concert-card-ticket {
	margin-top: 2.125rem;
}

.concert-card-ticket:last-child {
	margin-bottom: calc(4.5rem - var(--padVer));
}

.concert-card-ticket .concert-post-card-info {
	width: 100%;
	padding: 1rem 3rem 1rem 2rem;
	border: var(--margin) solid var(--black);
	border-right: 0;
}

.concert-card-ticket .concert-post-card-info:last-child {
	border-right: var(--margin) solid var(--black);
}

.concert-card-ticket .post-card-venue {
	margin-top: 0.5rem;
}

.concert-card-ticket .concert-post-card-book {
	display: flex;
	align-items: center;
	padding: 0.5rem;
	border: var(--margin) solid var(--black);
	border-left-style: dotted;
	text-align: center;
}

.concert-card-ticket:before,
.concert-card-ticket:after,
.concert-card-ticket .concert-post-card-info:before,
.concert-card-ticket .concert-post-card-book:after,
.concert-card-ticket .concert-post-card-info:last-child:after {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	z-index: 2;
}

.concert-card-ticket:before {
	border-top: calc(var(--cut) - var(--border)) solid var(--yellow);
	border-right: calc(var(--cut) - var(--border)) solid transparent;
	top: calc(-1 * var(--margin));
	left: calc(-1 * var(--margin));
}

.concert-card-ticket:after {
	border-bottom: calc(var(--cut) - var(--border)) solid var(--yellow);
	border-left: calc(var(--cut) - var(--border)) solid transparent;
	bottom: calc(-1 * var(--margin));
	right: calc(-1 * var(--margin));
}

.concerts-future .concert-card-ticket:before {
	border-top-color: var(--white);
}

.concerts-future .concert-card-ticket:after {
	border-bottom-color: var(--white);
}

.concert-card-ticket .concert-post-card-info:before {
	top: 0;
	left: 0;

	border-top: calc(var(--cut) - var(--margin)) solid var(--black);
	border-right: calc(var(--cut) - var(--margin)) solid transparent;
	z-index: 1;
}

.concert-card-ticket .concert-post-card-book:after,
.concert-card-ticket .concert-post-card-info:last-child:after {
	bottom: 0;
	right: 0;

	border-bottom: calc(var(--cut) - var(--margin)) solid var(--black);
	border-left: calc(var(--cut) - var(--margin)) solid transparent;
	z-index: 1;
}

@media (min-width: 1920px) {
	.concert-card-ticket {
		--border: 1px;
		--margin: 3px;
	}
}

@media (min-width: 2240px) {
	.concert-card-ticket {
		--border: 2px;
		--margin: 4px;
	}
}

@media (min-width: 2880px) {
	.concert-card-ticket {
		--border: 3px;
		--margin: 5px;
	}
}

@media (min-width: 3200px) {
	.concert-card-ticket {
		--border: 4px;
		--margin: 6px;
	}
}

@media (min-width: 3840px) {
	.concert-card-ticket {
		--border: 5px;
		--margin: 7px;
	}
}



/*	Past archives */

.concerts-list.concerts-past {
	padding: 2rem var(--padHor) 3.3333rem;
	background-color: var(--gray);
}

.concerts-list .archive-title {
	margin-bottom: 2rem;
	text-align: center;
}

.concert-card-simple {
	padding: 1rem 0;
	border-bottom: 0.1em dotted var(--black);
}

.concert-card-simple .post-card-date span {
	margin: 0 1em;
}

.button.concerts-past-more {
	margin-top: 3em;
}



/*	Ticket button */

.module-tickets {
	position: fixed;
	bottom: calc(1.666666 * var(--padVer));
	right: calc(1.666666 * var(--padHor));
	width: 4.8em;
	height: 4.8em;
	z-index: 2;

	padding: 0;
	border-radius: 50%;
	border: 0.1em dotted var(--black);
	background-color: var(--white);
}

.module-tickets a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}


/*	Other concerts, Project concerts */

.module-otherconcerts {
	position: relative;
	z-index: 3;
	background-color: var(--highlight);
}

.module-projectconcerts.module {
	margin: 6.33333333rem auto 1rem;
	padding: var(--padVer) calc(2 * var(--padHor));
}

.module-otherconcerts .concerts-list {
	padding-top: 0.5rem;
}

.module-otherconcerts .concert-card-ticket:before,
.module-projectconcerts .concert-card-ticket:before {
	border-top-color: var(--highlight);
}

.module-otherconcerts .concert-card-ticket:after,
.module-projectconcerts .concert-card-ticket:after {
	border-bottom-color: var(--highlight);
}


@media (min-aspect-ratio: 1/1) {
	.module-concertsarchive {
		position: relative;
		top: calc(-1 * var(--padVer));
		left: calc(-1 * var(--padHor));
		width: calc(100% + 2 * var(--padHor));
	}
}



/**************************************************
	xx. Misc and Wordpress specials
 **************************************************/

.button,
.content .wp-block-button {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin: 1em 0;

	display: inline-block;
	padding: 0.866666667em 2em 0.733333333em;

	font-family: Object Sans, sans-serif;
	color: var(--black);
	border: 0.1rem solid currentColor;
	text-align: center;
	cursor: pointer;
}

.button a,
a.button {
	text-decoration: none;
}

a.external:not(.button) {
	display: inline-flex;
}

a.external:not(.button):after {
	content: '';
	display: block;
	position: relative;
	top: -0.1em;
	width: 1.2em;
	height: 1.2em;
	margin-left: 0.3em;
	background-image: var(--arrowTopRight);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.caption {
	position: relative;
	margin-top: 1.2em;
	padding-left: 3.25em;
}

.caption:before {
	content: '->';
	position: absolute;
	left: 1.75em;
	top: 0.6em;
	transform: translateY(-50%);
}

.cover-container,
.contain-container {
	position: relative;
	overflow: hidden;
}

.cover-container img,
.cover-container video,
.contain-container img,
.contain-container video {
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.contain-container img,
.contain-container video {
	min-width: 0;
	min-height: 0;
	max-width: 100%;
	max-height: 100%;
}

.not-ie .cover-container img,
.not-ie .cover-container video,
.not-ie .contain-container img,
.not-ie .contain-container video {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	transform: none;
	object-position: center;
	object-fit: cover;
}

.not-ie .contain-container img,
.not-ie .contain-container video {
	object-fit: contain;
}

.cover-container.top img,
.cover-container .top img,
.cover-container.top video,
.cover-container .top video {
	transform: translateX(-50%);
	top: auto;
	bottom: 0;
}

.not-ie .cover-container.top img,
.not-ie .cover-container .top img,
.not-ie .cover-container.top video,
.not-ie .cover-container .top video {
	transform: none;
	object-position: bottom;
}

.cover-container.bottom img,
.cover-container .bottom img,
.cover-container.bottom video,
.cover-container .bottom video {
	transform: translateX(-50%);
	top: 0;
}

.not-ie .cover-container.bottom img,
.not-ie .cover-container .bottom img,
.not-ie .cover-container.bottom video,
.not-ie .cover-container .bottom video {
	transform: none;
	object-position: top;
}




/************ STAGING ************/

body:not(.is-staging) .module-nonexistent {
	display: none;
}

/**************************************************
	12. Orchestra Tutorials
 **************************************************/

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* Set iframe container size and aspect-ratio */

.orchestra-tuts .wp-embed-aspect-16-9 .video-container {
	margin-bottom: 1rem;
	height: 100%;
}

.orchestra-tuts .is-type-video {
	border-radius: 40px;
	overflow: hidden;
	aspect-ratio: 16/9;
}

.orchestra-tuts .is-type-video .wp-block-embed__wrapper {
	height: 100%;
}

/* List of all tutorials */

.alle-tuts h2 {
	margin-bottom: 80px;
	text-align: center;
	cursor: pointer;
}

.alle-tuts h2:before {
	content: '';
	width: 1em;
	height: 1em;
	display: inline-block;
	background-image: url("data:image/svg+xml,%3Csvg id='auge' xmlns='http://www.w3.org/2000/svg' width='45.405' height='24.181' viewBox='0 0 45.405 24.181'%3E%3Cpath id='np_eye_204747_000000' d='M51.2,38.177c-.372-.459-9.107-11.062-21.535-11.419-.211-.01-.422-.016-.638-.016h0l-.045,0c-.2,0-.394.006-.589.016C15.96,27.111,7.225,37.718,6.853,38.177l-.53.654.53.654c.372.461,9.107,11.066,21.539,11.421.195.01.392.014.589.014l.045,0h0c.213,0,.426-.006.638-.016C42.1,50.549,50.831,39.944,51.2,39.485l.526-.654Zm-42.152.654a34.892,34.892,0,0,1,10.9-7.965,12.056,12.056,0,0,0,0,15.933A34.928,34.928,0,0,1,9.046,38.831ZM38.11,46.8a12.059,12.059,0,0,0,0-15.931,34.961,34.961,0,0,1,10.9,7.965A34.961,34.961,0,0,1,38.11,46.8Z' transform='translate(-6.323 -26.742)'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 1em;
	background-position: bottom;
	margin-right: 0.5em;
}

.alle-tuts article {
	position: relative;
	border-radius: 40px;
	overflow: hidden;
	margin-bottom: 40px;
}

.alle-tuts img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 877/492;
	height: auto;
}

.alle-tuts a {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.alle-tuts h3 {
	color: #fff;
}


.alle-tuts h3 span {
	display: block;
	text-align: center;
}

.alle-tuts h3 span.subtitle {
	font-family: Object Sans, sans-serif;
}

/* Hide and reveal all tutorials list */

#tuts-container {
	display: none;
}

#tuts-container.show {
	display: block;
}

/* Orchestra Tutorial Header (see header.php) */

.header-inner.orchestratuts {
	position: initial;
	transform: none;
	opacity: 1;
	justify-content: flex-start;
	pointer-events: initial;
}

.header-inner.orchestratuts .header-bottom-menu {
	position: absolute;
	bottom: 20px;
	right: 20px;
}

.orchestratuts h1 {
	text-align: center;
	padding-top: 10%;
}

.header-inner.orchestratuts svg {
	max-width: 100%;
	height: auto;
}

.orchestratuts-title {
	padding-top: 20%;
}

/* Back to home page button */

.back-home {
	font-size: 12px;
}

.back-home:before {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.709' height='14.006' viewBox='0 0 18.709 14.006' fill='%23000'%3E%3Cpath id='arrow_left2' d='M31.627,28.04H16.89l4.495-4.494L19.92,22.082l-7,7,7,7,1.464-1.464L16.89,30.131H31.627Z' transform='translate(-12.918 -22.082)'/%3E%3C/svg%3E");
	width: 40px;
	height: 1em;
	display: inline-block;
	background-repeat: no-repeat;
	background-size: 1em;
	background-position: bottom;
}

/* Restart button */

.neustart {
	font-size: 12px;
	padding: var(--padVer) var(--padHor);
}

.neustart:before {
	content: '';
	width: 1em;
	height: 1em;
	display: inline-block;
	background-repeat: no-repeat;
	background-size: 1em;
	background-position: bottom;
	margin-right: 0.5em;
	margin-bottom: -0.1em;
	background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 119.4 122.88'%3E%3Cpath d='M83.91,26.34a43.78,43.78,0,0,0-22.68-7,42,42,0,0,0-24.42,7,49.94,49.94,0,0,0-7.46,6.09,42.07,42.07,0,0,0-5.47,54.1A49,49,0,0,0,30,94a41.83,41.83,0,0,0,18.6,10.9,42.77,42.77,0,0,0,21.77.13,47.18,47.18,0,0,0,19.2-9.62,38,38,0,0,0,11.14-16,36.8,36.8,0,0,0,1.64-6.18,38.36,38.36,0,0,0,.61-6.69,8.24,8.24,0,1,1,16.47,0,55.24,55.24,0,0,1-.8,9.53A54.77,54.77,0,0,1,100.26,108a63.62,63.62,0,0,1-25.92,13.1,59.09,59.09,0,0,1-30.1-.25,58.45,58.45,0,0,1-26-15.17,65.94,65.94,0,0,1-8.1-9.86,58.56,58.56,0,0,1,7.54-75,65.68,65.68,0,0,1,9.92-8.09A58.38,58.38,0,0,1,61.55,2.88,60.51,60.51,0,0,1,94.05,13.3l-.47-4.11A8.25,8.25,0,1,1,110,7.32l2.64,22.77h0a8.24,8.24,0,0,1-6.73,9L82.53,43.31a8.23,8.23,0,1,1-2.9-16.21l4.28-.76Z'/%3E%3C/svg%3E");
}

/* Media queries */

@media only screen and (max-width: 767px) {
	.neustart {
		margin-top: 1em;
	}
	.header-inner.orchestratuts .header-bottom-menu {
		position: fixed;
		bottom: 80px;
	}
	.post-template .header-inner.orchestratuts h1, .post-template .header-inner.orchestratuts .header-bottom-menu {
		display: none;
	}

	.header-inner.orchestratuts svg {
		max-width: 60%;
	}

	.back-home,
	.alle-tuts h2 {

		position: fixed;
		bottom: 0;
		max-height: 60px;
		overflow: hidden;
		width: 50%;
		background-color: #EAEAEA;
		padding: 20px;
		font-size: 16px;
		z-index: 100;
	}

	.back-home {
		left: 0;
		border-right: 0.5px solid white;
	}

	.alle-tuts h2 {
		margin-bottom: 0;
		right: 0;
		border-left: 0.5px solid white;
	}
}

@media only screen and (min-width: 768px) {
	.post-template .content .header-bottom-menu {
		display: none;
	}
}

@media only screen and (max-width: 1700px) and (min-width: 768px) {
    #h5p-iframe-3 {
        margin-top: 20%;
    }
}


/* Single Post Template for single tutorials */

.post-template .content {
	padding-bottom: 80px;
}

.post-template .header-inner.orchestratuts {
	padding: 0;
}

.post-template .neustart {
	display: inline-block;
}