 /*   
Theme Name: Felicity's Website
Author: Christian Bär
Author URI: www.christianbaer.net
*/

:root {
	--darkgreen: #23222c;
	--sand: #ded8cb;
	--white: #fff;
	--yellow: #ebf365;
	--green: #2c3c2f;
	--green: #202c27;
	--darkgreen: #141c18;
	
	--peach: #f46e64;
	--orange: #ff693a;


	--shadow: rgba(0,0,0,0.3);
	font-size: clamp(16px, 1.4vw, 30px);

}

/* lato-300 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/lato-v25-latin-300.woff2') format('woff2');
}
/* lato-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/lato-v25-latin-regular.woff2') format('woff2'); 
}
/* lato-700 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/lato-v25-latin-700.woff2') format('woff2'); 
}

/* noto-serif-display-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif Display';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/noto-serif-display-v29-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	background-color: var(--green);
	color: var(--sand);
		
	scroll-behavior: smooth;
}

article, aside, details, figcaption, figure, .footer, header, hgroup, main, nav, section, summary, img {
	display: block;
	margin: 0;
}

img{
	width: 100%;
}

audio, canvas, video {
	position: relative;
	display: block;

	width: 100%;
}

h1, h2, h3, h4, h5, h6  {
	line-height: 1em;
	font-size: 2.4em;
	margin: 0;
	padding: 0;
	font-weight: 400;
}
h6{font-size: 1.25em; letter-spacing: -0.5%; line-height: 1.4em;}
h5{font-size: 1.56em; letter-spacing: -1.8%; line-height: 1.4em;}
h4{font-size: 1.95em; letter-spacing: -1.1%; line-height: 1.3em;}
h3{font-size: 1.56em; letter-spacing: -1.8%; line-height: 1.4em;}
h2{font-size: 3.81em; line-height: 1em; padding-bottom: 1rem;}
h1{font-size: 3.81em; letter-spacing: -2%; line-height: 1em;}

ul {

	margin: 0;
	padding: 0;
	line-height: 1.5em;
}

li a{text-decoration: underline;text-underline-offset: 0.2rem;
	text-decoration-thickness: 1px;}

u {
	text-decoration-style: wavy;
	display: inline-block;
	text-underline-offset: 0.15em;
	text-decoration: underline;
}

a {
	text-decoration: none;
	color: var(--sand);
	cursor: pointer;
}

a:hover, a:active,  .current-menu-item {
	cursor: pointer;
	color: var(--peach);
	text-decoration: none;
	text-decoration-style: wavy;

}
button, input[type=submit] {
	font-size: 1em;
	border: 0;
	background-color: var(--darkgreen);
	color: var(--sand);
	padding: 0.5em 2em;
	border-radius: 1em;
	transition: transform 0.2s ease-in-out;
}

input[type=submit] {
	transition: box-shadow 0.2s ease-in-out;
}
::placeholder{
	color: var(--purple);
	opacity: 0.5;
}
button.primary:hover, button.secondary:hover, input[type=submit]:hover, a.cta:hover{
	cursor: pointer;
	background-color: var(--yellow);
	box-shadow: -1em 1em  var(--darkgreen);

	

}

 input[type=submit]:hover{
	box-shadow: 1em 1em  var(--green);
	background-color: var(--yellow)!important;
	color: var(--green);
 }

svg{fill: none;
	overflow: visible;
	stroke-linecap: round;
	stroke-linejoin:round;}

a.cta{
	background-color: var(--peach);
	color: var(--darkgreen);
	text-transform: uppercase;
	box-shadow: 0em 0em  var(--darkgreen);
	padding: 1em 2.5em 1em 1em ;
	border-radius: 1em;
	transition: transform .3s ease-in-out;
	font-weight: 700;
}	

strong{font-weight: 700;}

body {
	display: flex;
	/* to adjust the footer */
	flex-direction: column;
 	/* to adjust the footer */
	height: 100%;
	min-height: 100vh;
	margin: 0;

	font-size: 1em;
	line-height: 1.5em;
	
	font-family: 'Lato';
overflow-y: scroll;
overflow-x: hidden;
background-color: var(--green);
color: var(--sand);

		scroll-behavior: smooth;
}

header{
position: fixed;
	top: 0;
	width: 100%;
	overflow: hidden;
display: flex;
flex-wrap: wrap;
justify-content: center;
height: auto;
line-height: 2em;
align-content: center;
font-weight: 700;
color: var(--sand);

z-index: 1000;
border-bottom: 0rem solid;
}

header a{
	color: var(--sand);
}

	/* spezifischer*/
header .description, header .language{

	line-height: 2em;
	padding-top: 1em;
}

header .cta{
	position: fixed;
	top: 6em;
	right: -2em;
	z-index: 1500 !important;
	transition: box-shadow 0.3s ease-in-out;
}

.header-group{
	display: flex;
	align-items: center;
}
.logo, .logo h1 {
	padding: 0.5em 0.75em;
	top: 0;
	left: 0;
	font-size: 1.5em;

	display: flex;
	flex-direction: row;
    text-transform: uppercase;
    position: relative;
	letter-spacing: -2%;
	

	
}
.logo svg{
    stroke: var(--sand);
	stroke-width: 3em;
	width: 2em;
    margin-top:0.3em;
    margin-right: 0.2em;
	height: 1.5em;

}
.logo .description{

position: absolute;
bottom: 0.1em;
right: 1.125em;
font-size: .67em;
letter-spacing: 5.8%;

font-weight: 300;
}

.logo:hover{
	text-decoration: none;

}
.logo:hover svg{
	stroke: var(--peach);
}
.header-group > div{
	display: none;
}

header .language{
	display: none;
}

.language:hover{
	text-underline-offset: 0.15rem;
	
}

header ul{display: flex;}

header ul li{padding: .5rem .5rem .5rem ;
	list-style-type: none;
}
.menu ul {
list-style-type:none;
	padding: 0 ;
	z-index: 1;
}

.menu{
	position: fixed;
	top: 0em;
	left: 0;
	font-size: 2em;
	font-weight: 600;
	padding: 5em 1em 3em;	
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--green);
	background: linear-gradient( var(--green) 5em , var(--darkgreen) );

	height: 100svh;
	width: 100%;
	transform: translate(0%, -100%)   ;

	opacity: 0;
	transition: 0.3s ease-in-out;

}

.menu a{
	color: var(--sand);
	
	padding: 0.25em 1.5em;
	border-radius: 0.5em;
	margin-bottom: .25em;
	text-decoration: none;
	text-align: center;
	width: 100%;
	display: block;
	transition: font-size 0.3s ease-in-out;
}

.menu a:hover{
	background-color: var(--peach);
	color: var(--darkgreen);
	box-shadow: -.5em .5em var(--darkgreen);
	font-size: 1.1em;
	
}
.menu li:nth-of-type(even) a:hover{
	background-color: var(--yellow);
}
.nav-show {
	transform: translate(0%, 0%);
	opacity: 1;
}




/* burger menu btn */

.header__burger {

	display: block;
	z-index: 5000;
	 margin-top: 0.1em;
	width: 4.6rem;
	height: 4em;
	transform: translateY(0%);
	padding: 0em;
	cursor: pointer;
	background: transparent;
	opacity: 1;


}

.header__burgericon span {
	position: absolute;
	left: 1rem;
	
	width: 2.6rem;
	top: 1.2rem;
	height: 0.2em;
	background: var(--sand);
	transform: rotate(0deg);
	opacity: 0;
	transform-origin: 50% 50%;
	transform-box: fill-box;
	transition: transform 0.2s ease-in-out;
}

.header__burger:hover span{
	background-color: var(--peach);
}

.header__burgericon span:nth-child(2n) {
	top: 1.9rem;
	opacity: 1;
	transform: rotate(45deg);
	
}

.header__burgericon span:nth-child(3n) {
	top: 1.9rem;
	opacity: 1;
	transform: rotate(-45deg);
}

.header__burgericon span:nth-child(4n) {
	top: 2.6rem;
	opacity: 0;
	transform: rotate(0deg);
}

.rotate {
	transform: rotate(0deg)!important;
	opacity: 1 !important;
}

main {
	flex-grow: 2;	
	overflow: hidden;
}

section{
	display: flex ;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;	
}

.section-wrapper, .header-wrapper, .footer-wrapper{
	width: 100%;
	overflow-y: visible;

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

.header-wrapper{   
	background-color: var(--green);
	margin: 0.5em 0;
	max-width: 100%;

}
.header-wrapper > * {
	z-index: 1;
}

.footer-wrapper{
	justify-content: space-between;
	padding: 3em 0 0.5em; 
	z-index: 1;
}

.section-wrapper{	
	max-width: 1200px;
	z-index: 1;
}

.section_heading, .section_content{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
gap: 1em;
padding: 2em 1em 0;
	align-items: flex-start;
	color: var(--darkgreen);

	
}

.section_heading{
    font-family: 'Noto Serif Display', serif;
  font-style: normal;
  font-weight: 400;
	padding: 5em 1.5em 1em ;
	margin-top: 2em;
	justify-content: center;
	color: var(--sand);
    
}

.header-wrapper{
	padding: 0;	
	position: relative;
	gap: 0;
	justify-content: space-between;
}
.hero{ 
	background: linear-gradient( var(--green) 5em , var(--darkgreen));

}
.hero .section-wrapper{
	padding-bottom: 0;
}

.hero  .section_content{
	position: relative;
	width: 100%;
	display: flex;
	gap: 2m;
	flex-wrap: wrap;
	padding-top: 1em;
	color: var(--sand);
	margin-top: 4.2em;
		justify-content: center;
	flex-direction: row;
}
.hero .section_content .container{
	display: flex;
	flex-direction: column;

margin: 0 auto;
width: 100%;
}

.hero .headline, .hero .language {
	font-size: 2em;
	z-index: 5;
	line-height: 0.35em;
	margin: .25rem 0 0.25rem;
	transition: 0.3s ease-in-out;

}
.hero_player{
	position: relative;
width: 100%;
	height: 16em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: visible;
}

 .language u {
	transition:  0.3s ease-in-out;
}
.language:hover u{
		text-decoration: underline ;
		
		text-underline-offset: -0.25em;
		text-decoration-thickness: 0.1em !important;

}
.hero .headline{
	z-index: 5;
	width: auto;
	display: flex;
    font-family: 'Noto Serif Display', serif;
	font-weight: 400;
	flex-wrap: wrap;
flex-direction: column;
	font-size: clamp(25vw, 25vw, 20em);
	line-height: 0.79em;
	margin: 0.7em auto 0;
    text-shadow: 0.5em 0.5em 0.5em var(--shadow);	
}

.hero .language_wrapper a{
	color: var(--sand) ;
	font-weight: 300;
	padding: 1.2em;
}

.hero .language_wrapper u{
	text-decoration-thickness: 0.04em;
}

.hero .language_wrapper:hover a, .hero .language_wrapper:hover svg{
	color: var(--yellow);
	stroke:var(--yellow);
		stroke-width: .4em;
}
.hero .player {
	position: relative;
	padding: 0 !important;
	margin-bottom: 1em;
	width: fit-content;
	box-shadow: -1em 1em var(--darkgreen);
	align-self: center;	
	transition: 0.3s ease-in-out;
}



.hero .player button{
	border: 0.5em solid var(--peach);
	background-color: var(--peach);
	padding: 0.5em 1em;
	min-width: 70%;
	color: var(--darkgreen);

}

.hero .player button:hover{
	border: 0.5em solid var(--yellow);
	background-color: var(--yellow);
	

}
.hero .player:hover{
		box-shadow: 1em 1em var(--darkgreen);
			font-size: 1.1em;

}
.hero .player .icon{
	background-color: var(--darkgreen);
	color: var(--peach);
}
.voice{
	padding-bottom: 0.05em;

}
.over{

	padding-left: 1.3em;	
}
.artist{
	text-align: center;

}

.language_wrapper{
	position: relative;
	overflow: visible;
	display: flex;
	
	margin:  3em auto;	
}

.hero .language {
	align-self: flex-end;
	padding: .3em 0.5em;
	z-index: 10 ;
	font-weight: 300;
	color: var(--peach);
	z-index: 5;

}
.hero .language:hover{
	text-underline-offset: 0.365rem;

}

.hero svg{
	stroke: var(--sand);
	stroke-width: .04em;
	position: absolute;
	width: 102%;
	height: 5em;
	left: 0em;
	top: 0.7em;
	transition: 0.3s ease-in-out;
}

.hero img{
	border-radius: 3em;	
	transform: rotate(0deg);
	max-width: 550px;
}
.more_audio{
	color: var(--yellow);
	text-align: center;

}

.more_audio a{
	text-decoration: underline;
	color: var(--yellow);
}
.news {
	width: 100%;	
}

.news .section_content{
	justify-content: center;
	align-items: stretch;
	margin-top: 0;
}

.text_container{
	margin: 0 auto;
	max-width: 30em;
	width: 100%;
	
}
.text_container a{
	text-decoration: underline;
}
.news .text_container{
	border-radius: 3em;
	padding: 2em 0em;
	max-width: 100%;
	align-self: flex-end;
			background-color: var(--sand);
			color: var(--green);

}
.news a{
	color: var(--green);
}
.text_container a:hover, .collapsible_content a:hover{
	background-color: var(--peach);
	border-radius: 1em;
	color: var(--darkgreen);
	box-shadow: 0 0 0 0.25em var(--peach) ;
}
.news ul{
	max-width: 25em;
	margin: 2em auto;
}

.text_container ul{
padding: 0em 2em 1em 2.5em;

}
.references .text_container {
	line-height: 1.7em;
}
.references .text_container strong{
	background-color: var(--peach);
	color: var(--darkgreen);
	padding: 0.2em 0.5em;
	border-radius: 1em;
	margin-bottom: 0.2em;
	display: inline-block;
}
.references ul{
	padding: 1em 1em 1em 2em;
}

.text_container li,  .references li {
	list-style-type:  "→";
	padding: 0 0 .5em .5em  ;
	
}

.news .text_container li:nth-child(n+6), .references li:nth-child(n+6) { 
	display: none; }

	.studio{
		background: var(--darkgreen);
	}
.studio .section_content{
	
	border-radius: 3em;
	max-width: calc(100% - 2em);
	padding: 0;
	position: relative;
	min-height: 30vw;

		overflow: hidden;
		align-items: center;
}
.studio figure{
	width: 100%;
	height: 100%;
	border-radius: 3em;
	position: absolute;
	background-color: var(--peach);


}
.studio img{
	filter: grayscale(1);
	mix-blend-mode: multiply;
	object-fit: cover;
	object-position: center;
	
}
.studio .text_container{
	z-index: 1;
	background-color: var(--sand);
	color: var(--darkgreen);
	padding: 4em 2em;
	max-width: 20em;
	margin: 2em auto;
	border-radius: 2em;
}

.studio .text_container p{
margin-top: 2em;
}

.about{

	background: linear-gradient(var(--darkgreen), var(--green));
;
}	
.about img{	
	object-fit: cover;
	object-position: 50% 80%;
	border-radius: 3em;
	max-height: 100svw;
	
}

.about .section_content{
	justify-content: center;
	
}
.about .card_container{
	flex-wrap: wrap;
	flex-direction: row;
	display: flex;	

	gap: 1em;
	justify-content: center;
}

.about .card, .image-card{
	width: 100%;
	padding: 4em 2em;
	height: auto;
    background-color: var(--sand);
	border-radius: 3em;
}

.card h3, .contact h3, .studio .text_container h3{
	font-weight: 400;
	font-size: 2em;
    font-family: 'Noto Serif Display', serif;
    border-bottom: 1px solid;
	
}

.audio h3{
	font-weight: 400;
	font-size: 1.5em;
	text-transform: uppercase;
}
.card p{
	margin-top: 2em;
	margin-bottom: 0;
}
.image-card{
	padding: 0;
	line-height: 0em;
		height: 100%;
}

.audio {
background: linear-gradient(var(--green), var(--darkgreen));

}

.audio .section-wrapper{
	gap: 2em;
}
.audio .section_content{
	gap: 2em;
	justify-content: space-evenly;
	flex-flow: row wrap;
	align-items: center;
	color: var(--sand);
}


.audio .half{
	justify-content: center;
	padding: 0;
}


.player{
	padding: 0.5em 0 0 ;
	border-radius: 2em;
	
	background: var(--darkgreen);

	box-shadow: 0em 0em  var(--peach);
	box-shadow: 1em 1em  var(--peach);
	width: calc(100% - 3em);
	transition: 0.3s ease-in-out;
	max-width: 33em;
	color: var(--sand);
	overflow: hidden;
	}


	.audio player{
			margin-right: 1em;
	}
	


	.player .heading{
		color: var(--sand);
		padding: .5em 0.75em;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		border-bottom: 1px solid ;
	}
.player .heading::after{
content: "•";
width: 2em;
text-align: right;
font-size: 1.5em;
line-height: 0.5rem;

}
.player svg {

	stroke: var(--sand);
	stroke-width: 5em;
	width: 2em;
		height: 1.5em;
}

.player audio{
	padding: 0.5em ;
}

.audio-title{
	display: inline-block;
}
.player .playlist {
	padding: 0.5em 0;
	background: var(--darkgreen);
	list-style-type: none;
	overflow: hidden;

}

.playlist button{
	display: flex;
align-items: flex-start;
}
.player button{
	padding: 0.5em ;
	background-color: transparent;
	position: relative;
	width: 100%;
	text-align: left;
	color: var(--sand);
	border-radius: 0em;
}
.player .icon{
	border-radius: 2em;
	margin-right: 0.25em;
	padding: 0.25em 0.45em;
	line-height: 1rem;
	width: 1.5em;
	max-width: 1.5em;
	background-color: var(--sand);
	color: var(--darkgreen);
	
}
.player .time-display{
	display: none;
	position: absolute;
	font-size: .75em;
	display: inline-block;
	opacity: 0;
	right: 0;
}
.player li {
	padding:  0 ;
	margin-bottom: .1em;
border-radius: 0em;}

.player button:hover .icon, .player .active button .icon{
	color: var(--yellow);
	background-color: var(--darkgreen);
}

.player .active button, .player button:hover{
	text-decoration: none;
	cursor: pointer;
	background-color: var(--yellow);
	color: var(--darkgreen);
}

.player video{
	background-color: black;	
}

.references{
	background: linear-gradient(var(--darkgreen), var(--green));
;

}
.references .section-wrapper{
	flex-direction: column;
	align-items: flex-start;
}	

.references .text_container{
	color: var(--sand);
	padding: 1em;
}
.collapsible{
	width: 100%;
	background-color: var(--sand);
	border-radius: 1.5em;
		box-shadow: 0em 0em var(--darkgreen);
		transition: box-shadow .3s ease-in-out;
}


.collapsible_heading{
	width: 100%;
	padding: 0.5em .75em ;
	padding-right: 2em;
	position: relative;
	
}
.collapsible_heading:hover{
	background-color: var(--peach);
	color: var(--sand);
	cursor: pointer;
	border-radius: 1.5em;
	box-shadow: -1em 1em var(--darkgreen);

}

.minus{
	background-color: var(--yellow);
	color: var(--darkgreen);
	border-radius: 1.5em 1.5em 0 0;
	box-shadow: -1em 1em var(--darkgreen);
	
}

.minus:hover{

		border-radius: 1.5em 1.5em 0 0;


}

.plus::after, .minus::after{
	content: "‹";
	font-size: 2.6em;
	line-height: 0em;
	position: absolute;
	top: 0.55em;

	transform-origin: center center;
	transform: rotate(-90deg);
	right: 0.5em;
}
.minus::after{
	transform: rotate(90deg);
	right: 0.25em;
	
}

.collapsible_content{
	position: absolute;
	z-index: 1;
	display: block;
	width: calc(100% - 2em);
    background-color: var(--yellow); 
	color: var(--darkgreen);
    border-radius: 0 0 1.5em 1.5em;
box-shadow: -1em 1em var(--darkgreen);
transition: 0.3s ease-in-out;
max-height: 0;
overflow: hidden;

}

.open{
	z-index: 5;
	display: block;
	max-height: 500px;
}

.collapsible:has(.minus){
		box-shadow: -1em 1em var(--darkgreen);

}
.collapsible a{
	color: var(--darkgreen);
}
.contact, .imprint {
	position: relative;
	background: linear-gradient(var(--green), var(--darkgreen));

}

.imprint {
		background: linear-gradient(var(--green), var(--darkgreen), var(--green));

}

main > section::before, nav::before, footer::before, .header-wrapper::before{
	content: "";
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 182px;
  mix-blend-mode: multiply;
  opacity: 1;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}



.contact .section_content{
	background-color: var(--sand);
	box-shadow: 1em 1em  var(--peach);
	padding-bottom: 1em;
	margin: 0 2em 2em 1em;
	border-radius: 3em;	
	
}

.contact_container{
	width: 100%;
}

.contact h3 {
	margin-top: 2em;
	margin-bottom: 1em;
}
.contact a{
	margin-top: 2em;
	color: var(--darkgreen);
	text-decoration-style: wavy;
}
.contact .wpcf7{
	width: 100%;
	padding: 0;
}
.wpcf7 p{
	margin-bottom: 0.5em;
}
.wpcf7 p:nth-child(7){
	text-align: right;
}



.contact input, .contact textarea{
	border-radius: 0.25em;
	border: 0.075em solid var(--darkgreen);
	padding: 0.5em;
	font-size: 1em;
	outline: 0;
	background-color: var(--sand);
	width: 100%;
	max-height: 9em;

	resize: none;
}
.wpcf7-list-item{
	margin: 0;
		line-height: 1em;
}
.wpcf7-list-item input{
	width: fit-content;
}

.wpcf7-list-item .wpcf7-list-item-label{
	font-size: 0.75em;

}

.contact input[type=submit]{
	background-color: var(--green);
	width: auto;
	border: none;
	padding: 1em 2em;
	right: 0;
		border-radius: 1em;
}
.wpcf7-not-valid-tip{
	color: var(--peach);
}
.wpcf7 form .wpcf7-response-output{

	background-color:var(--yellow);
	border: 0;
	border-radius: 0.5em;
	margin: 1em 0 0.5em;
	padding: 0.5em;
}

.contact .text_container{
	margin-bottom: 5em;
}
footer {
	background-color: var(--darkgreen);
	padding: 1em;	
	display: flex;
	justify-content: center;
	position: relative;
	color: var(--sand);
}

footer > *{
	padding: 0 1em;
}


.imprint .section_content{
	margin: 1em;
	background-color: var(--sand);
	border-radius: 3em;
	color: var(--darkgreen);
	padding: 2em;
	flex-direction: column;
}

.imprint .section_heading{
	text-align: center;
}

.imprint .text_container{
	max-width: 100%;
	padding: 2em 0;

}
.imprint h1, .imprint .section_content h2, .imprint h3{
	font-size: 1em;
	font-weight: bold;
}
.imprint h1{
	font-size: 1.5em;
	margin-bottom: 1rem;
	text-decoration: underline;
	text-decoration-style: wavy;
	column-span: all;
	text-transform: uppercase;
}
.close-btn{
	z-index: 1000;
	width: 3em;
	height: 3em;

	position: fixed;
	top: 0.7em;
	right: 1.3em;
	padding: 0.5em;
	line-height: 1em;
	margin: 0.5em;
	border-radius: 0.5em;

	background-color: var(--darkblue);
	color: var(--orange);
}

.close-btn .header__burgericon{
	position: absolute;
	transform: translate(-.29em , -1.05em);
}
.close-btn:hover{
	cursor: pointer;
	color: var(--peach);
}

.close-btn:hover span{
		background-color: var(--peach);
}

@media only screen and (min-width: 600px) {


	
	.hero .headline{
		font-size: 7.5em;
		line-height: 0.79em;
		margin: 0.2em auto 0;		
	}

		.news .text_container{
			padding: 2em 2em 0;
			max-width: 40em;
		
		}
		.about .card, .about .image-card{
	max-width: calc(50% - 0.5em)
}
	
		.about .card_two{
	background-color: var(--peach);	
	box-shadow: -1em 1em var(--darkgreen);

		
		}


		.references .section-wrapper{
			flex-direction: row;
			justify-content: flex-start;
			
		}	
		.contact .wpcf7 .half{
			width: 100%;
			display: flex;
			gap: 1em;
		}
		.wpcf7 .half p{
			margin: 0;
		}

	}

@media only screen and (min-width: 900px) {

 .half, .hero .section_content .container {
		width: calc(50% - 0.5em);
	}	

	.section_heading{
		padding: 5em 8em 1em ;
	}

header .language{
	font-weight: 400;
	display: block;
	position: absolute;
left: 50%;
transform: translateX(-50%);
}

header .language:hover{
	color: var(--yellow);
}

.hero .headline{
font-size: clamp(100px, 12vw, 150px);
}
.more_audio{
	position: absolute;
	bottom: 0.75em;
	left: 57%;
}
.text_container, .contact .wpcf7{
	padding: 1rem 2rem 1rem 2rem;

}

.about .card, .about .image-card{
	max-width: calc(33.33% - 0em)
}


.collapsible{
	width: calc(50% - 1em);
	display: inline-block;
	gap: 2em;

	
}
.collapsible_content{
	width: calc(600px - 2em);
}

.audio .section-wrapper{
	gap: 1em;
}
.imprint .text_container{
	column-count: 2;
}
}
