:root
{
	--hintergrund1: rgba(255,255,255,1); /* Weiß */
	--hintergrund1: rgba(180,180,180,1); /* Hellgrau */
	--hintergrund1: rgba(111,171,158,1); /* Hellgrün */

	--schriftfarbe1: rgba(0, 0, 0, 0.8); /* Schwarz */
	--schriftfarbe2: rgba(255, 255, 255, 1); /* Weiß */
	--schriftfarbe3: rgba(254, 255, 153, 1); /* Gelb */	


	--schriftart1: 'Josefin Sans', 'Arial';

	--schriftgroesse1: calc(11px + 0.5vw);
	--schriftgroesse2: calc(11px + 1vw);
	--schriftgroesse3: calc(11px + 4vw);
}

::selection
{
	background: var(--schriftfarbe3);
	color: var(--schriftfarbe1);
}

html
{
	scroll-behavior: smooth; /* springt langsam zu einem Anker */
}

/* Grid-System Hauptdesign Anfang */

body
{
	display: grid;
	grid-template-areas: 
		"header aside"
		"navMain navMain"
		"main main"
		"navSlide navSlide"
		"footer footer";
	grid-template-columns: repeat(2, 1fr);
	align-items: end;
}

header
{
	grid-area: header;
}

nav#main
{
	grid-area: navMain;
}

nav#slide
{
	grid-area: navSlide;
}

aside#buttons
{
	grid-area: aside;
}

main
{
	grid-area: main;
}

footer
{
	grid-area: footer;
}

/* Grid-System Hauptdesign Ende */


/* Grid-System Spaltendesign Anfang */

main.spaltendesign2
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2em;
}

main.spaltendesign2 section.spalte1
{
	grid-column: 1 / span 1;
}

main.spaltendesign2 section.spalte2
{
	grid-column: 2 / span 1;
}

main.spaltendesign2 section.spalte3
{
	grid-row: 2;
	grid-column: 1 / span 2;
}

main.spaltendesign2 section.spalte4
{
	grid-row: 3;
	grid-column: 1 / span 2;
}


@media only screen and (max-width: 800px)
{
	body
	{
		grid-template-areas: 
		"header header"
		"navMain navMain"
		"main main"
		"navSlide navSlide"
		"footer footer";
	}

	main.spaltendesign2
	{
		grid-template-columns: auto;
		gap: 6vmin;
	}

	main.spaltendesign2 section.spalte1
	{
		grid-column: 1;
		grid-row: 2;
	}

	main.spaltendesign2 section.spalte2
	{
		grid-column: 1;
		grid-row: 1;
	}
		
	main.spaltendesign2 section.spalte3
	{
		grid-row: 3;
		grid-column: 1;
	}
	main.spaltendesign2 section.spalte4
	{
		grid-row: 4;
		grid-column: 1;
	}
}

/* Grid-Systeme Spaltendesign Ende */



body
{
	margin: 0vh 9vw 0vh 9vw;
	background: var(--hintergrund1);
	font-family: var(--schriftart1);
	font-size: var(--schriftgroesse1);
	color: var(--schriftfarbe1);
	line-height: 1.3;
	font-weight: 100;
}


/* Header */

header
{
	display: flex;
	margin-top: 1.5em;
	font-size: 2em;
}

header img
{
	height: 1.0em;
	vertical-align: text-top;
	padding: 0 0 0.2em 0;
}

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


/* Aside */

aside#buttons
{
	text-align: right;
	padding-bottom: 1.0em;

	a.button
	{
		margin: 0;
		font-weight: 100;
	}

	a.button:nth-of-type(1)
	{
		margin-right: 1em;
	}
}


main.spaltendesign2 > section
{
	margin-top: 3vmin;
}

main.spaltendesign2 section.spalte1
{
	margin-top: 6em;
}

main.spaltendesign2 section.spalte2
{
	margin-top: 0vmin;
}


main.spaltendesign2 section.spalte4
{
	columns: 200px 4;
	column-gap: 2em;
	text-align: justify;
	hyphens: auto;
}

main.spaltendesign2 section.spalte4 h1
{
	font-size: var(--schriftgroesse2);
	text-align: left;
	margin-bottom: 0.85em;
}


/* Main */

main
{
	margin-top: 6vmin;
}


/* Nav */

nav
{
	display: flex;
	justify-content: flex-start;
	padding: 0 0 1em 0;
	column-gap: 1.5em;
	
	border-style: solid;
	border-width: 0 0 1px 0;
	border-color: var(--schriftfarbe1);
}

nav #navStart
{
	font-weight: 400;
	color: var(--schriftfarbe3);
}

nav #navUeber
{
	margin-left: auto;
}

nav#slide
{	
	position: fixed;
	bottom: 1.5em;

	gap: 1em;
	
	z-index: 1;

	align-items: center;
	justify-content: space-between;

	text-align: center;

	padding: 0;
	margin: 0 0 0 2em;
	border: none;

	min-width: calc(9vw * 2);
	height: 5em;
	
	background: var(--schriftfarbe3);
}

nav#slide img
{
	height: 5em;
	width: 3em;
}

#arbeitDanach
{
	display: flex;
	align-items: center;
	gap: 0;
}

#arbeitDanach:after
{
	content: '';
	margin-right: -2.5em;
	background-image: url('/dateien/pfeil_gelb_rechts.png');
	background-size: contain;
	background-repeat: no-repeat;
	height: 5em;
	width: 2.5em;
}

#arbeitDanach img
{
	object-fit: contain;
	object-position: center;
	padding: 0.5em;
	box-sizing: border-box;
}

#arbeitDavor
{
	display: flex;
	align-items: center;
	gap: 0;
}

#arbeitDavor img
{
	object-fit: contain;
	object-position: center;
	padding: 0.5em;
	box-sizing: border-box;
}

#arbeitDavor:before
{
	content: '';
	margin-left: -2.5em;
	background-image: url('/dateien/pfeil_gelb_links.png');
	background-size: contain;
	background-repeat: no-repeat;
	height: 5em;
	width: 2.5em;
}





.aktionBereich
{
	position: fixed;
	z-index: 1;
	left: 0;
	bottom: 3em;
	width: 100%;
	height: 3em;
	
	pointer-events: none;
	
	text-align: center;
}


#aktionAnfrage, #aktionRundgang
{
	display: inline-flex;
	align-items: stretch;
	justify-content: center;
	opacity: 0;
	transition: opacity 1s; /* Übergangszeit zum Verschwinden / Erscheinen, wenn Anfrage-Bereich sichtbar */
	height: 3em;
}



.aktionBereich .pfeilLinks:before
{
	display: inline-block;
	content: '';
	width: 2em;
	height: 100%;

	background-image:url('/dateien/pfeil_gelb_links.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}


.aktionBereich .pfeilRechts:before
{
	display: inline-block;
	content: '';
	width: 1.7em;
	height: 100%;
	background-image:url('/dateien/pfeil_gelb_rechts.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.aktionBereich span.pfeilLinks, .aktionBereich span.pfeilRechts
{
	opacity: 0;
}


/* Footer */

footer
{
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr 1fr 1fr;
	
	background-color: var(--schriftfarbe3);
	
	margin-left: -9vw;
	margin-right: -9vw;
	margin-top: 12vmin;
	
	padding-left: 9vw;
	padding-right: 9vw;
	
	padding-top: 6vmin;
	padding-bottom: 6vmin;
	
	border-style: solid;
	border-width: 0px 0px 0px 0px;
	border-color: black;
}

footer *
{
	color: var(--schriftfarbe1) !important;
	line-height: 1.5em;
}

footer > section:nth-of-type(1)
{
	grid-column: 1 / span 3;
	grid-row: 1;
}

footer > section:nth-of-type(2)
{
	grid-column: 1;
	grid-row: 2;
}

footer > section:nth-of-type(3)
{
	grid-column: 2;
	grid-row: 2;
}

footer > section:nth-of-type(4)
{
	grid-column: 3;
	grid-row: 2;
}

footer > section:nth-of-type(5)
{
	grid-column: 1 / 4;
	grid-row: 3;
}

footer > section.banner
{
	display: flex;
	flex-wrap: wrap;
	gap: 3vmin;
	align-self: center;
	justify-content: center;
	font-size: var(--schriftgroesse2);
}

footer > section.banner img
{
	opacity: 0.5;
	height: 2em;
}

footer h2
{
	font-weight: bold;
}

footer > section.newsletter
{
	display: flex;
	align-items: center;
	gap: 2em;
	border-style: solid;
	border-width: 0 0 1px 0;
	padding-bottom: 3em;
}

footer > section.newsletter span:nth-of-type(1)
{
	 width: 33%;
}

footer > section.newsletter span:nth-of-type(2)
{
	 width: 66%;
}

footer > section.newsletter input[type="submit"]
{
	margin: 0;
}

footer > section.newsletter h2
{
	margin-top: 0;
}


h1
{
	font-size: var(--schriftgroesse3);
	margin: 0 0 6vmin 0;
	font-weight: 600;
	color: var(--schriftfarbe1);
	line-height: 1.1;
	text-align: center;
}

h2
{
	font-size: var(--schriftgroesse1);
	font-weight: 400;
	font-weight: 600;
	color: var(--schriftfarbe3);
	line-height: 1.1;
}

a
{
	color: var(--schriftfarbe1);
	text-decoration: none;
}

section.spalte4 a:empty:after, div.kuenstlerSteckbrief a:empty:after
{
	content: '[➝]';
}

q
{
	font-style: italic;
}


/* Dicker Rahmen */

.dickerrahmen
{
	/*background-color: var(--schriftfarbe3);*/
}

.dickerrahmen.breit
{
	width: calc(100% + 9vw - 2em);	
}

.dickerrahmen > *
{
	display: block;
	width: calc(100%);
	/*transform: translate(1em, 1em);*/
}


/* Iframes allgemein */

iframe
{
	filter: grayscale(1);
	border: none;
	background: var(--schriftfarbe3);
}

iframe:hover
{
	filter: grayscale(0);
	transition: filter 2s;
}


/* Iframes Landkarte und Standort */

iframe.landkarte
{
	min-height: 80vh;
}



div.arbeitStandort
{
	padding: 2em 0 2em 0;
	background-color: var(--hintergrund1);
	
	padding: 3em 0 3em 0;
	border-style: solid;
	border-width: 0 0 1px 0;
	border-color: var(--schriftfarbe1);
}

iframe.standort
{
	width: 100%;
	height: 40vh;
}


/* Button */

.button
{
	display: inline-flex;
	align-items: center;
	background-color: var(--hintergrund);
	padding: 0.7em 0.8em 0.5em 0.8em;
	border-style: none;
}

a.button:hover
{
	background-color: var(--schriftfarbe2);
	color: var(--schriftfarbe1);
}

span.button
{
	color: var(--schriftfarbe1);
	border-color: var(--schriftfarbe1);
	user-select: none;
}

.button.signal
{
	background-color: var(--schriftfarbe3);
	color: var(--schriftfarbe1);
	
}

.button.pfeil::after
{
	padding-left: 0.5em;
	margin-top: -0.0em;
	content: '➝';
}

.button.gross
{
	font-size: var(--schriftgroesse2);
	font-weight: 400;
}



/* Buttons Preisauswahl */

span.buttonErsteArbeiten
{
	display: inline-flex;
	font-size: var(--schriftgroesse2);
	font-weight: 400;
}

span.buttonErsteArbeiten .button:nth-child(1)
{
	background-color: var(--schriftfarbe3);
	color: var(--hintergrund1);
	border-radius: 1em 0 0 1em;
	border-width: 1px;
	border-color: var(--schriftfarbe3);
}

span.buttonErsteArbeiten .button:nth-child(2)
{
	background-color: transparent;
	color: var(--schriftfarbe3);
	border-color: var(--schriftfarbe3);
	border-radius: 0 1em 1em 0;
	border-width: 1px;
	
	border-style: solid;
}

span.buttonErsteArbeiten span.button
{
	opacity: 0.5;
}


/* Buttons Preisauswahl klein */

span.buttonErsteArbeitenKlein
{
	display: inline-flex;
	align-items: center;
	line-height: normal;
	font-weight: 400;
	background-color: var(--schriftfarbe3);
	padding: 0 1em 0 1em;
	color: var(--hintergrund1);
}

span.buttonErsteArbeitenKlein > span
{
	padding: 5px 0px 5px 10px;
}

span.buttonErsteArbeitenKlein > *.ab, span.buttonErsteArbeitenKlein > *.bis
{
	padding: 4px 7px 2px 7px;
	border-style: solid;
	border-color: var(--hintergrund1);

}

span.buttonErsteArbeitenKlein a.bis, span.buttonErsteArbeitenKlein a.ab
{
	background-color: var(--hintergrund1);
	color: var(--schriftfarbe3);
}

span.buttonErsteArbeitenKlein a.bis.aktiv, span.buttonErsteArbeitenKlein a.ab.aktiv
{
	background-color: var(--schriftfarbe3);
	color: transparent;
	/*box-shadow: inset 0px 0px 5px rgba(0,0,0,0.3);*/
}

span.buttonErsteArbeitenKlein *.bis
{
	border-radius: 1em 0 0 1em;
	border-width: 3px 0 3px 3px;
}

span.buttonErsteArbeitenKlein *.ab
{
	border-radius: 0 1em 1em 0;
	border-width: 3px 3px 3px 0;
}

span.buttonErsteArbeitenKlein *.bis:before
{
	content: 'bis';
}

span.buttonErsteArbeitenKlein *.ab:before
{
	content: 'ab';
}

span.buttonErsteArbeitenKlein *.bis:not(.aktiv)
{
	color: var(--schriftfarbe3);
}

span.buttonErsteArbeitenKlein *.ab:not(.aktiv)
{
	color: var(--schriftfarbe3);
}



/* Merken */

span.iconMerken
{
	float: right;
	display: inline-block;
	color: var(--schriftfarbe1);
	text-align: center;
	background-color: rgba(255,255,255,1);
	opacity: 0.3;
	font-size: 0.6em;
	padding: 0.4em;
	height: 1em;
	width: 1em;
	border-radius: 1em;
}

span.iconMerken:before
{
	content: '♡';
}

span.iconMerken:hover
{
	opacity: 1;
}

a.teaserArbeit span.iconMerken
{
	color: var(--schriftfarbe2);
	background-color: rgba(0,0,0,1);
	font-size: 1.2em;
	height: 1.2em;
	width: 1.2em;
}



/* Referenz */

span.iconReferenz:before
{
	/*content: '★';*/
}




/* Hinweisfenster */

#hinweis
{
	position: fixed;
	z-index:2;
	left: 0;
	top: 0;
	width: 100%;
	height:100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(150, 150, 160, 0.5);
}

#hinweis > div
{
	z-index: 1;
	width: clamp(280px, 80vw, 1200px);
	background-color: var(--schriftfarbe2);
	text-align: center;
	padding: clamp(2em, 4em, 2vw);
	box-sizing: border-box;
}

#hinweis h1
{
	color: var(--schriftfarbe1);
}

#hinweis a.button
{
	margin: 20px 10px 0px 10px;
}


#hinweis section.teaser
{
	margin-bottom: 0;
}

#hinweis > a
{
	position: absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
}

#hinweis:target
{
	display: none;
}



/* Tags */

.tag > a
{
	color: var(--schriftfarbe3);
}

.tag > a::after
{
	content: ' ➝';	
}



/* Slideshow */

span.slideshow
{
	display: flex;
	margin: 2em 0 0 0;
	justify-content: center;
	gap: 3vmin;
}

span.slideshow img
{
	object-fit: contain;
	width: 3em;
	height: 3em;
	filter: grayscale(1);
}



/* Kurzprofil */

div.kurzprofil
{
	display: flex;
	flex-direction: column;
	margin: 0vmin 0 6vmin 0;
}

div.kurzprofil > section
{
	display: flex;
	column-gap: 3vmin;
	align-items: center;
	padding: 3vmin 0 3vmin 0;
}

div.kurzprofil > section:nth-of-type(1)
{
	border-style: solid;
	border-width: 0 0 1px 0;
}

div.kurzprofil > section > img
{
	flex: 0 0 10vmin;
	height: 10vmin;
	width: 10vmin;
	object-fit: cover;
	object-position: center;
	border-radius: 10vmin;
	filter: grayscale(1);
}

div.kurzprofil > section > span
{
	flex-grow: 1;	
}

div.kurzprofil > section > a.button
{
	background-color: transparent;
	color: var(--schriftfarbe2);
}



/* Summary */

summary
{
	cursor: pointer;
	font-weight: 400;
}



/* Arbeit Anfrage */

div.arbeitAnfrage
{
	display: flex;
	gap: 6vmin;
	align-items: center;
	text-align: center;
	margin: 0 0 0 0;
	padding: 3em 0 3em 0;
	border-style: solid;
	border-width: 1px 0 1px 0;
	border-color: var(--schriftfarbe1);
	font-size: var(--schriftgroesse2);
}

div.arbeitAnfrage > a > img
{
	flex: 0 0 40vmin;
	width: 40vmin;
	height: 40vmin;
	object-fit: contain;
	object-position: center;
	filter: grayscale(0);
}

div.arbeitAnfrage .button
{
	font-weight: 400;
	margin: 0.5em 0 0.5em 0;
}

div.arbeitAnfrage a[href^="tel:"]
{
	margin-left: 1.5vmin;
	margin-right: 1.5vmin;
}

div.arbeitAnfrage a[href^="tel:"]:before
{
	content: '';
	background-image: url('/dateien/icon_telefon.png');
	background-size: contain;
	width: 1em;
	height: 1em;
	margin: -0.2em 0.5em 0 0;
}

div.arbeitAnfrage a[href^="mailto:"]
{
	margin-left: 1.5vmin;
	margin-right: 1.5vmin;
}

div.arbeitAnfrage a[href^="mailto:"]:before
{
	content: '';
	background-image: url('/dateien/icon_mail.png');
	background-size: contain;
	width: 1em;
	height: 1em;
	margin: -0.2em 0.5em 0 0;
}




/* Große Abbildung von Arbeit */

div.grossesbild > a > img
{
	width: 100%;
}



/* Arbeit Anfrage */

div.kuenstlerSteckbrief
{
	display: flex;
	gap: 6vmin;
	align-items: center;
	font-size: var(--schriftgroesse2);
	text-align: center;
	
	margin: 0 0 3em 0;
}

div.kuenstlerSteckbrief > img
{
	width: 60vmin;
	height: 80vmin;
	object-fit: contain;
	object-position: center;
	filter: grayscale(1);
	margin-left: calc(-9vw + 1em);
	margin-right: 3em;
}

div.kuenstlerSteckbrief .button
{
	font-weight: 400;
}



/* Formulare allgemein */

form input, form textarea, form select
{
	padding: 10px;
    box-sizing: border-box;	
	border: 0px solid #000000;
	background-color: #ffffff;
	border-radius:0px;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

form
{
	max-width: 700px;
}

form input[type="checkbox"]
{
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: checkbox;
}

form input[type="radio"]
{
	-webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
}

form input[type="submit"]:disabled
{
	opacity: 0.5;
}

form ::placeholder
{
	opacity: 0.5;
}



/* Formularfelder */

.formularFeld
{
	clear: both;
	width: 100%;
	padding: 5px 0px 5px 0px;
	box-sizing: border-box;
}
.formularFeld.links
{
	clear: left;
	width: 50%;
	padding: 5px 10px 5px 0px;
	float: left;
}
.formularFeld.rechts
{
	clear: right;
	width: 50%;
	padding: 5px 0px 5px 10px;
	float: left;
}
.formularFeld.mittig
{
	clear: none;
	padding: 5px 10px 5px 10px;
	float: left;
}
.formularFeld.breite75
{
	width: 75%;
}
.formularFeld.breite50
{
	width: 50%;
}
.formularFeld.breite33
{
	width: 33.33%;
}
.formularFeld.breite25
{
	width: 25%;
}
.formularFeld input, .formularFeld textarea, .formularFeld select
{
	width: 100%;
}
.formularFeld > .formularFeld
{
	padding-top: 0px;
	padding-bottom: 0px;
}



/* Teaser Text */

section.teaser
{
	font-size: var(--schriftgroesse2);
	text-align: center;
}



/* Hinweis Text */

section.hinweis
{
	background-color: var(--schriftfarbe2);
	padding: 1em;
}



/* Teaser Arbeiten */

section.teaserArbeiten
{
	display: flex;
    overflow-x: auto;
	gap: 1em;
	max-width: calc(100vw - 4em);
}

a.teaserArbeit
{
	min-width: calc(25% - 0.75em);
	
	padding: 1em;
	box-sizing: border-box;
	
	background-color: var(--schriftfarbe2);

	text-align: center;
	color: var(--schriftfarbe1);
	
	font-weight: 100;
}

a.teaserArbeit img
{
	object-fit: contain;
	object-position: center;
	width: 100%;
	height: 12em !important;
}

a.teaserArbeit span.abholbereit:before
{
	content: '';
	float: left;
	background-image: url('/dateien/abholbereit.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 0em 0.15em;
	width: 0.6em;
	height: 1em;
	margin-right: 0.2em;
}



/* Logo BILDENDE-KÜNSTLER.NET */

a.logoBKText
{
	color: rgba(200, 0, 40, 1) !important;
	text-transform:	lowercase;
}

a.logoBKText::after
{
	content: '.net';
	opacity: 0.5;
}









/* Änderungen bei mobiler Anzeige */

@media only screen and (max-width: 800px)
{	
	:root
	{
		--schriftgroesse1: calc(11px + 1vw);
		--schriftgroesse2: calc(11px + 2vw);
		--schriftgroesse3: calc(11px + 5.4vw);
	}

	body
	{
		margin: 1em 1em 0 1em;
	}	
	
	header
	{
		margin: 0;
		justify-content: center;
	}


	/* Wird alles ausgeblendet */
	
	aside#buttons, nav #navInstagram
	{
		display: none;
	}
		

	

	div.arbeitAnfrage
	{
		flex-direction: column;
	}
	
	div.kuenstlerSteckbrief
	{
		flex-direction: column;
	}
	
	div.kuenstlerSteckbrief > img
	{
		height: 60vmin;
		margin-left: 0;
		margin-right: 0;
	}
	
	
	main.spaltendesign2 section.spalte1
	{
		margin-top: 2em;	
	}


	section.teaserArbeiten
	{
		display: flex;
		overflow-x: auto;
		gap: 1em;
		max-width: calc(100vw - 2em);
	}

	a.teaserArbeit
	{
		min-width: calc(50% - 0.5em);
	}
	
	nav
	{
		flex-wrap: wrap; 
		border: none;
		text-align: center;
		justify-content: center;
	
		a#navStart
		{
			width: 100%; 
			border-style: solid;
			border-width: 0 0 0px 0;
			border-color: var(--schriftfarbe1);
			padding: 0 0 1em 0;
		}
			
		a:not(#navStart)
		{
			margin:0em 0 0 0;
		}
	}


	iframe.standort
	{
		margin-left: -1em;
		width: calc(100% + 2em);
	}

	iframe.landkarte
	{
		min-height: 50vh;
	}

	.dickerrahmen.breit
	{
		width: 100%;
	}

	footer
	{

		margin: 4em -1em 0 -1em;
		padding: 1em;
		
		grid-template-columns: 1fr;



section
{
	grid-column: 1 !important;
	grid-row: auto !important;
}




		section.newsletter
		{
			/*width: calc(100% - 10em);*/
			text-align: center;
			display: block;
		}

		section:nth-of-type(4)
		{
			display: none;
		}	
	}
}



/* Fonts */

@font-face
{
	font-family: 'Josefin Sans';
	src: local('Josefin Sans Light'), local('JosefinSans-Light'), url('/dateien/JosefinSans-Light.ttf') format('truetype');
	font-weight: 100;
	font-style: normal;
}

@font-face
{
	font-family: 'Josefin Sans';
	src: local('Josefin Sans Regular'), local('JosefinSans-Regular'), url('/dateien/JosefinSans-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

@font-face
{
	font-family: 'Josefin Sans';
	src: local('Josefin Sans Bold'), local('JosefinSans-Bold'), url('/dateien/JosefinSans-Bold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}