html,
body {
  xxxheight: 100%;
  xxxmargin: 0px;
	min-height: 100vh;
	display: flex;
    	flex-direction: column;
}



/* anton-regular - latin */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/anton/anton-v25-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* bebas-neue-regular - latin */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/bebas/bebas-neue-v14-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



@font-face {
    font-family: 'Newsreader-italic'; /* Einfacher Name für die Schriftart */
    src: url('fonts/Newsreader/Newsreader-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}




/* nunito-sans-300 - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/nunitosans/nunito-sans-v5-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Nunito Sans Light'), local('NunitoSans-Light'),
       url('fonts/nunitosans/nunito-sans-v5-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/nunitosans/nunito-sans-v5-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/nunitosans/nunito-sans-v5-latin-300.woff') format('woff'), /* Modern Browsers */
       url('fonts/nunitosans/nunito-sans-v5-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/nunitosans/nunito-sans-v5-latin-300.svg#NunitoSans') format('svg'); /* Legacy iOS */
}

/* nunito-sans-800 - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/nunitosans/nunito-sans-v5-latin-800.eot'); /* IE9 Compat Modes */
  src: local('Nunito Sans Light'), local('NunitoSans-Light'),
       url('fonts/nunitosans/nunito-sans-v5-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/nunitosans/nunito-sans-v5-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/nunitosans/nunito-sans-v5-latin-800.woff') format('woff'), /* Modern Browsers */
       url('fonts/nunitosans/nunito-sans-v5-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/nunitosans/nunito-sans-v5-latin-800.svg#NunitoSans') format('svg'); /* Legacy iOS */
}

/* nunito-sans-regular - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/nunitosans/nunito-sans-v5-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Nunito Sans Regular'), local('NunitoSans-Regular'),
       url('fonts/nunitosans/nunito-sans-v5-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/nunitosans/nunito-sans-v5-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/nunitosans/nunito-sans-v5-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/nunitosans/nunito-sans-v5-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/nunitosans/nunito-sans-v5-latin-regular.svg#NunitoSans') format('svg'); /* Legacy iOS */
}

/* rubik-500 - latin */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/rubik/rubik-v9-latin-500.eot'); /* IE9 Compat Modes */
  src: local('Rubik Medium'), local('Rubik-Medium'),
       url('fonts/rubik/rubik-v9-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/rubik/rubik-v9-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/rubik/rubik-v9-latin-500.woff') format('woff'), /* Modern Browsers */
       url('fonts/rubik/rubik-v9-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/rubik/rubik-v9-latin-500.svg#Rubik') format('svg'); /* Legacy iOS */
}





body {
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	background: white;
	}




	nav {
		height:70px;
		position: fixed;
		top:0;
		right:0;
		left:0;
		transition:transform 0.7s 0s ease-in-out;
		z-index: 200;
	
	}
nav a {
	text-decoration: none;
}

	.down nav {
		transform:translate3d(0, -110px, 0);
	}

	main {
		margin:10em auto;
		max-width: 1000px;
		padding:0 2em;
	}

	section {
		height:500px;
		width:100%;
		margin-bottom: 5em;
		background: #ddd;
	}





.switch {
	aspect-ratio: 1 / 1;
	display: flex;
  	position: relative;
	overflow: hidden;
	height: auto;
	width: 100%;
	}

.switch img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
	}

.switch img:nth-child(1) { animation: change 3s infinite 0s; }
.switch img:nth-child(2) { animation: change 3s infinite 1s; }
.switch img:nth-child(3) { animation: change 3s infinite 2s; }



@keyframes change {
    0%      { opacity: 0; visibility: hidden; transform: scale(1); }
    40%     { opacity: 1; visibility: visible; }
    60%     { opacity: 0; visibility: hidden; transform: scale(1);}
    100%    { opacity: 0; visibility: hidden; }
}



.switch2 {
	aspect-ratio: 2 / 1;
	display: flex;
  	position: relative;
	overflow: hidden;
	height: auto;
	width: 100%;
	}

.switch2 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
	}

.switch2 img:nth-child(1) { animation: change2 16s infinite 0s; }
.switch2 img:nth-child(2) { animation: change2 16s infinite 4s; }
.switch2 img:nth-child(3) { animation: change2 16s infinite 8s; }
.switch2 img:nth-child(4) { animation: change2 16s infinite 12s; }



@keyframes change2 {
    0%      { opacity: 0; visibility: hidden; transform: scale(1); }
    25%     { opacity: 1; visibility: visible; }
    50%     { opacity: 0; visibility: hidden; transform: scale(1);}
    100%    { opacity: 0; visibility: hidden; }
}










.fade1 {
	overflow: hidden;
	}

.fade1 img { 
	animation-name: fade; 
	animation-duration: 7s; 
	animation-iteration-count: infinite; 
	}

@keyframes fade {
	0%      { transform: scale(1.1); }  
	50%	{ transform: scale(1); }  
	50% 	{ transform: scale(1);}  
	100%    { transform: scale(1.1); }
}



.bellamartha {
	position: absolute;
	top: 93.5%; 
	left: 77.5%; 
	transform: translate(-50%, -50%); /* Zentrierung des Links */
	font-family: Nunito Sans;
	font-weight: 300;
	font-size: 3.8vw;
	letter-spacing: 0.6vw;
  	color: black; 
	}


.startlinie {
	position: absolute;
	width: 100%;
	border: black 1px solid;
	top: 55px;
	margin: 0px;
	z-index: 50;
	}	





.startlogo {
	position: fixed;
	width: 100px;
	height: 100px;
	top: 3px;
	left: 40px;
	z-index:400;
	}	


@media screen and (max-width: 1000px) {
	.startlogo {
		width: 70px;
		height: 70px;
		left: 25px;
		}
	.startlinie {
		top: 40px;
		}
}


.startlogo img {
	width: 100%;
	}	
	


.startlogo a:hover {
	filter: invert(1);
	}



.start {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
	background: white;
	}

.einer {
	position: relative;
	width: 100%;
	xxxborder: 2px blue solid;
	}


.einer img {
	display: block;
	width: 100%;
	height: auto;
	}


.einertext {
	position: relative;
	width: 100%;
	}

.einertext a {
	text-decoration: none;
	color: black;
	}


.einertext a:hover {
	opacity: 0.5;
	}

.overlay {
	position: absolute;
	text-align: center;
	color: white;
	padding: 10px 15px;
	border-radius: 0px;
	font-family: 'Nunito Sans';
	font-size: 1.5vw;
	}



.zweiertext {
	display: flex;
	width: 45%;
	justify-content: center;
	text-align: center;
	align-items: center;
	margin: 2vw;
	}

.zweiertext a {
	text-decoration: none;
	color: black;
	}



.zweiertext a:hover {
	opacity: 0.5;
	}




.zweier {
	width: 50%;
	}

.zweier img {
	display: block;
	width: 100%;
	height: auto;
	}




.leerzeile {
    height: 10vw; /* Die gewünschte Höhe der "Leerzeile" */
    width: 100%;  /* Optional: Stellt sicher, dass es die volle Breite einnimmt */
    /* background-color: lightgray; /* Nur zum Testen, um die Höhe sichtbar zu machen */
}




.split-text {
  display: flex;
  flex-wrap: wrap;
}

.split-element {
  /* Hier kannst du den gewünschten Abstand anpassen */
  flex-basis: 100%; /* Oder ein anderer Wert für spezifische Breiten */
}




.flex90 {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 90%;
	margin: 0 auto;
	}

.werk100 {
	width: 100%;
	height: 100%;
	}

.werk_bild {
	width: 50%;
	height: 100%;
	xxxmax-height: 80vh;
	xxxobject-fit: contain;
	}


.werk_beschreibung {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 50%;
	text-align: left;
	align-items: start;
	padding-top: 20px;
	padding-bottom: 20px;
	}

.werk_name {
	color: black;
	font-family: Nunito Sans;
	font-weight: 400;
	font-size: 30px;
	padding-left: 20px;
	xxxborder: 2px solid yellow;
	}

.werk_technik {
	font-family: Nunito Sans;
	font-weight: 300;
	font-size: 20px;
	color: black;
	padding-left: 20px;
	padding-top: 10px;
	}



@media screen and (max-width: 1100px) {
	.werk_bild {
		width: 100%;
		}
	.werk_beschreibung {
		width: 100%;
		text-align: left;
		padding-top: 10px;
		padding-bottom: 10px;
		flex-direction: row;
		align-items: start;
		}
	.werk_name {
		font-size: 26px;
		}
	.werk_technik {
		font-size: 18px;
		}
	}

@media screen and (max-width: 600px) {
	.werk_name {
		font-size: 20px;
		}
	.werk_technik {
		font-size: 14px;
		}
	}


#werk_name {
	font-size: 30px;
	font-family: Nunito Sans;
	font-weight: 800;
	color: #d98100;
	}

#werk_technik {
	font-family: Nunito Sans;
	font-weight: 400;
	font-size: 22px;
	}




a:visited {
	xxxcolor: black;
	}

a:active, a:focus {
	outline: none;
	}

hr { 
	height: 1px; 
	margin-top: 10px;
	margin-bottom: 10px;
	color: silver;
	background-color: silver;
	border: 0;
	width: 100%;
	}


.hg_red {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #ff4a23;
	}


.hg_red p {
	padding: 20px;
	font-family: Nunito Sans;
	font-weight: 400;
	font-size: 34px;
	}

@media only screen and ( max-width: 800px ) {
	.hg_red p {
	font-size: 22px;
		}
	}



.hg_textteil {
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	background: white;
	}


.hg_textteil p {
	padding: 20px;
	font-family: Nunito Sans;
	font-weight: 400;
	font-size: 24px;
	color: black;
	}

@media only screen and ( max-width: 800px ) {
	.hg_textteil p {
	font-size: 18px;
		}
	}




.logo {
	position: fixed;
	top: 10%;
	left: 10%;
	transform: translate(-10%, -10%);
	font-family: Bebas Neue;
	font-weight: 800;
	font-size: 6vw;
	z-index: 10;
	}


#menu {
	position:fixed;
	right: 0;
	z-index: 100;
	}

@media only screen and ( min-width: 1000px ) {
	#menu {
	display: none;
		}
	}

#menu:not(:target) .m_inhalt {display: none;}
#menu:target .m_inhalt {display: block;}
#menu:target .m_on {display: none;}
#menu:not(:target) .m_off {display: none; }

.m_on,
.m_off {
	float: right;
	margin: 10px;

	}


.m_off img,
.m_on img {
	width: 40px;
	}


.m_inhalt {
	border: 1px solid;
	margin: 5px;
	padding:10px;
	width: 200px;
	background: #ffffff;
	}

.m_inhalt a {
	text-decoration: none;
	color: #000000;
	font-family: Nunito Sans;
	font-weight: 400;
	font-size: 20px;
	padding: 4px;
	}

.m_inhalt a:hover {
	color: #ffffff;
	background: #000000;
	font-weight: bold;
	}

.m_inhalt p {
	font-size: 1em;
	}


.kopfzeile {
	text-align:left;
	margin-left: 10px;
	margin-top: 10px;
	margin-bottom: 0px;
	}

.kopf {
	font-size: 3vw;
	font-family: rubik;
	font-weight: 500;
	}

.kopfzeile_ende {
	text-align:center;
	font-size: 3vw;
	font-family: rubik;
	font-weight: 500;
	margin: 0px;

	}


h1 {
	margin: 0px;
	line-height: 1;
	}

h2	{
	margin: 0px;
	padding: 0;
	}

h3 {
	margin: 0px;
	padding: 0;
	}


#und {
	vertical-align: super;
	font-size: 1.5vw;
	font-family: Rubik;
	font-weight: 500;
	}

.abstand {
	position: relative:
	width: 100%;
	height: 120px;
	background: white;
	}

.abstand_submenu {
	position: relative:
	width: 100%;
	height: 70px;
	background: white;
	}

#startbild img {
	width: 100%;
	}

.nav_leiste {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	font-size: 25px;
	padding-right: 20px;
	padding-top: 16px;
	padding-left: 150px;
	font-family: Nunito Sans;
	font-weight: 400;
	text-align: right;
	z-index: 500;
	background-color: white;
	}

#invers {
	background: black;
	color: white;
	}

#schwendner {
	font-weight: 800;
	font-size: 45px;
	margin-top: -15px;
	}

@media only screen and ( max-width: 1100px ) {
	#schwendner {
		font-size: 30px;
		margin-top: 0px;
		padding-top: 2px;
		}
	}

@media only screen and ( max-width: 600px ) {
	#schwendner {
		font-size: 22px;
		padding-top: 11px;
		}
	}

#ausschalten {	
	}

@media only screen and ( max-width: 1000px ) {
	#ausschalten {
		display: none;
		}
	.nav_leiste {
		font-size: 18px;
		padding-left: 110px;
		padding-top: 0px;
		}
	}
	


.nav_leiste a {
	color: black;
	background-color: white;
	}

.nav_leiste a:hover {
	xxxopacity: 0.5;
	filter: invert(100%);
   	}




.untertitel {
	display: block;
	margin: 0px;
	font-family: Nunito Sans;
	font-weight: 400;
	font-size: 14px;
	}	

.thema {
	font-family: Nunito Sans;
	font-weight: 800;
	font-size: 4vw;
	}

@media only screen and ( max-width: 800px ) {
	.thema {
	font-size: 4vh;
		}
	}


.titel {
	font-size: 4vh;
	font-family: Nunito Sans;
	font-weight: 300;
	color: black;
	}

@media only screen and ( max-height: 600px ) {
	.titel {
		font-size: 18px;
		}
	}

.untertitel {
	font-size: 2vh;
	font-family: Nunito Sans;
	font-weight: 300;
	color: black;
	}

@media only screen and ( max-height: 600px ) {
	.untertitel {
		font-size: 16px;
		}
	}

.start_titel {
	font-family: Nunito Sans;
	font-weight: 400;
	font-size: 14px;
	margin: 0px;
	}



.menu2 {
	display: flex;
	width: 100%;
	margin: 0;
	background-color: white;
	justify-content: flex-start;
	}

@media only screen and (max-width: 1100px) {
	.menu2 {
	flex-direction: column;
		}
	}

.menu2_titel  {
	font-size: 6vmax;
	text-align:center;
	font-family: Nunito Sans;
	font-weight: 400;
	color:grey;
	margin-top: 25px;
	margin-bottom: 25px;
	}

.menu2 img {
	height: 100%;
	xxxmin-height: 60vh;
	width:50vw;
	xxxmax-width: 90vh;
	xxxobject-fit: cover;
	}

@media only screen and ( max-width: 1100px) {
	.menu2 img {
	width: 100%;
	xxxmax-width: 100%;
		}
	}
	
.menu2_text {
	font-family: Nunito Sans;
	font-weight: 400;
	font-size: 2vw;
	text-align: left;
	padding-left: 50px;
	}


@media only screen and ( max-width: 1100px ) {
	.menu2_text {
	font-size: 20px;
	padding: 10px 20px 50px 10px;
	text-align: center;
		}
}







.menu1 {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	text-align: center;
	justify-content: space-between;
	margin:0px;
	}

.menu1_titel  {
	font-size: 7vw;
	text-align:center;
	font-family: Nunito Sans;
	font-weight: 400;
	color:grey;
	margin-top: 25px;
	margin-bottom: 25px;
	}

.menu1_item {
	width: 47%;
	max-width: 800px;
	padding: 0px;
	position: relative;
	margin-bottom: 70px;
	overflow: hidden;
	}

@media only screen and (max-width: 800px) {
	.menu1_item {
		width: 100%;
		}
	}

.menu1_item a {
	text-decoration: none;
	}


.menu1_item img {
	display: block;	
	width: 100%;
	max-width: 800px;
	}


@media only screen and (min-width: 1600px) {
	.menu1 {
		justify-content: space-around;
		}
	}

.menu1_item div {
	overflow: hidden;
	}		

.menu1_item a img {
    transition: transform 1s;

	}

.menu1_item a:hover img {
    transform: scale(1.03);
	}


.menu1_untertitel {
	display: block;
	font-size: 3vmax;
	text-align:center;
	font-family: Nunito Sans;
	font-weight: 400;
	color:black;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 1vw;
	margin-right: 1vw;
	line-height: 1;
	}






.intext {
	font-family: Nunito Sans;
	font-weight: 400;
	font-size: 3vw;
	}

@media only screen and ( max-width: 900px ) {
	.intext {
	font-size: 28px;
		}
	}






.sammlung {
	display: flex;
	width: 100%;
	justify-content: space-between;
	xxxalign-items: flex-end;
	flex-wrap: wrap;
	margin-top: 20px;
	}

.sammlung_item {
	width:24%;
	overflow: hidden;
	margin-bottom: 10px;
	margin-top: 10x;
	}


@media screen and (max-width: 900px) {
	.sammlung_item {
		width: 49%;
		}
	}

@media screen and (min-width: 1200px) {
	.sammlung_item {
		width: 19%;
		}
	}

.sammlung_item img {
	display: block;
	width: 100%;
	xxxmax-width: 300px;
	overflow: hidden;
	}



.sammlung_item a img {
    transition: transform 0.5s;

	}

.sammlung_item a:hover img {
    transform: scale(1.1);
	}


.sammlung_item_holzskizzen {
	width:32%;
	overflow: hidden;
	margin-bottom: 10px;
	margin-top: 10x;
	}


@media screen and (max-width: 1600px) {
	.sammlung_item_holzskizzen {
		width: 47%;
		}
	}

@media screen and (max-width: 1000px) {
	.sammlung_item_holzskizzen {
		width: 95%;
		}
	}

.sammlung_item_holzskizzen img {
	display: block;
	width: 100%;
	xxxmax-width: 300px;
	overflow: hidden;
	}



.sammlung_item_holzskizzen a img {
    transition: transform 0.5s;

	}

.sammlung_item_holzskizzen a:hover img {
    transform: scale(1.1);
	}





.galerie_zeile {
	display: flex;
	width: 100%;
	text-align: center;
	flex-wrap: wrap;
	margin: 0px;
	}

.galerie_spalte {
	flex: 24.9999999%;
	margin: 0px;
	}

@media screen and (max-width: 800px) {
	.galerie_spalte {
		flex: 49.9999999%;
		max-width: 49.9999999%%;
		}
	}

.galerie_spalte img {
	width: 100%;
	xxxmax-width: 400px;
	margin: 0px;
	vertical-align: middle;
	}




.galerie_spalte a img {
    transition: transform 1s;

	}

.galerie_spalte a:hover img {
    transform: scale(1.05);
	}





.sbild {
	display: flex;
	width: 100%;
	justify-content: space-around;
	align-items: flex-end;
	flex-wrap: wrap;
	margin-bottom: 10px;
	}

.sbild_item1 {
	width:24%;
	}

.sbild_item2 {
	width:48%;
	}

@media screen and (max-width: 600px) {
	.sbild_item1 {
		width: 48%;
		}
	.sbild_item2 {
		width: 95%;
		}
	}

@media screen and (min-width: 1200px) {
	.sbild_item1 {
		width: 16%;
		}
	.sbild_item2 {
		width: 32%;
		}
	}

.sbild_item1 img {
	width: 100%;
	max-width: 400px;
	margin: 2px;
	margin-bottom: 20px;
	}

.sbild_item2 img {
	width: 100%;
	max-width: 800px;
	margin: 2px;
	margin-bottom: 20px;
	}



.sbild a img {
    transition: transform 0.5s;

	}

.sbild a:hover img {
    transform: scale(1.05);
	}



.s1ende {
	display: flex;
	flex-wrap: no wrap;
	justify-content: space-between;
	width: 100%;
	}

.s1ende_block {
	display: flex;
	flex-wrap: no wrap;
	}

.s1ende_spalte {
	display: flex;
	flex-direction: column;
	font-family: Nunito Sans;
	font-weight: 500;
	font-size: 3vmax;
	padding-left: 20px;
	padding-right: 80px;
	}

.s1ende_spalte a {
	text-decoration: none;
	color: black;
	}

.s1ende_spalte a:hover {
	opacity: 0.5;
	}

.s1ende_block img {
	width: 30vw;
	height: 30vw;
	padding: 20px;
	}


@media screen and (max-width: 900px) {
	.s1ende {
		flex-wrap: wrap;
		justify-content: center;
		}
	}


@media screen and (max-width: 900px) {
	.s1ende_block img {
		width: 60vw;
		height: 60vw;		
		}
	}








#impressum {
	font-family: Nunito Sans;
	font-weight: 300;
	font-size: 16px;
	margin: 10px;
	}

#impressum a {
	color: black;
	}

.impr1 {
	font-weight: 400;
	font-size: 18px;
	}

.impr2 {
	font-weight: 400;
	font-size: 16px;
	}


.bildunterschrift {
	font-family: Nunito Sans;
	font-weight: 400;
	font-size: 14px;
	text-align: right;
  	margin: 0px;
	margin-right: 20px;
	}

.kontakt {
	text-align: left;
  	margin: 0px;
	margin-left: 20px;
	}

.vita {
	display: flex;
	width: 100%;
	flex-wrap: nowrap;
	justify-content: center;
	}

.vita_links {
	width: 35%;
	text-align: right;
	margin-right: 20px;
	margin-left: 0px;
	margin-top: 0px;
	}

.vita_links img {
	width: 100%;
	}

.vita_rechts {
	width: 65%;
	margin-top: 0px;
	margin-left: 20px;
	margin-right: 20px;
	}

.vita_ueberschrift {
	color: black;
	font-family: Nunito Sans;
	font-weight: 400;
	font-size: 30px;
	margin: 0px;
	padding-top: 15px;
	}	

.vita_ueberschrift a {
	color: black;
	text-decoration: none;
	}

.vita_text {
	font-family: Nunito Sans;
	font-weight: 300;
	font-size: 20px;
	color: black;
	}


.vita_text a {
	color: black;
	text-decoration: underline;
	}


@media screen and (max-width: 800px) {
	.vita {
		flex-wrap: wrap;
		}
	.vita_rechts,
	.vita_links {
		width: 100%;
		text-align: left;
		margin-left: 20px;
		}
	}

video {
	width: 100%;
	height: auto;
	margin-bottom: -5px;
}


.startbild {
	position: relative;
	margin: -10px;
	}

.startbild img {
	width: 100%;
	}



.button { 
	position: relative;
	font-family: nunito sans;
	font-weight: 800;
	font-size: 26px;
     	padding-top:5px;
     	padding-bottom:4px;
     	padding-left:20px;
     	padding-right:20px;
	border-radius: 2.7em;
	background-color: black;
	border: 2px solid white;
	margin-left: 20px;
	margin-right: 20px;
	color: white;
	text-align: center;
 		}
.button:hover {
	filter: invert(1);
	}

a {
	text-decoration: none;
	}

@media screen and (max-width: 1000px) {
	.button {
		font-size: 18px;
		}	
	}
@media screen and (max-width: 600px) {
	.button {
		font-size: 14px;
	     	padding-left:10px;
     		padding-right:10px;
		}	
	}




.footer {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap-reverse;
	padding-bottom: 10px;
	z-index: 3000;
	margin-top: auto;
	padding-top: 10px;
	border-top: 1px solid silver;
	}

.footer p {
	font-family: Nunito Sans;
	font-weight: 400;
	font-size: 18px;
	margin: 0px;
	padding-left: 10px;
	padding-right: 10px;	
	z-index: 3000;
	  	}

@media screen and (max-width: 1000px) {
	.footer p {
		font-size: 16px;
	
		}
	}

.footer a {
	color: #000000;
	text-decoration: none;	
	}

.footer a:hover {
	opacity: 0.5;	
	}


div.arrow_r {
	bottom: 80px;
	right: 20px;
	z-index: 100;
	width: 3vmin;
	height: 3vmin;
	box-sizing: border-box;
	position: fixed;
	transform: rotate(45deg);
	}
	
div.arrow_r::before {
		content: '';
		width: 100%;
		height: 100%;
		border-width: .8vmin .8vmin 0 0;
		border-style: solid;
		border-color: black;
		display: block;
		transform-origin: 100% 0;
	}
	
div.arrow_r::after {
		content: '';
		float: left;
		position: relative;
		top: -100%;
		width: 100%;
		height: 100%;
		border-width: 0 .8vmin 0 0;
		border-style: solid;
		border-color: black;
		transform-origin: 100% 0;
		transition:.2s ease;
	}
	
div.arrow_r:hover::after {
		transform: rotate(45deg);
		border-color: #d98100;
		height: 120%;
	}

div.arrow_r:hover::before {
		border-color: #d98100;
		transform: scale(.8);
	}


div.arrow_l {
	bottom: 80px;
	left: 20px;
	z-index: 100;
	width: 3vmin;
	height: 3vmin;
	box-sizing: border-box;
	position: fixed;
	transform: rotate(-135deg);
	}

div.arrow_l::before {
	content: '';
	width: 100%;
	height: 100%;
	border-width: .8vmin .8vmin 0 0;
	border-style: solid;
	border-color: black;
	display: block;
	transform-origin: 100% 0;
	}
	
div.arrow_l::after {
	content: '';
	float: left;
	position: relative;
	top: -100%;
	width: 100%;
	height: 100%;
	border-width: 0 .8vmin 0 0;
	border-style: solid;
	border-color: black;
	transform-origin: 100% 0;
	transition:.2s ease;
	}
	
div.arrow_l:hover::after {
	transform: rotate(45deg);
	border-color: #d98100;
	height: 120%;
	}

div.arrow_l:hover::before {
	border-color: #d98100;
	transform: scale(.8);
	}







.flex100 {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-between;
	}

.block_links {
	width: 50%;
	text-align: right;
	padding: 0px;
	}

.block_rechts {
	width: 50%;
	text-align: left;
	padding: 0px;
	}
	
@media screen and (max-width: 900px) {
	.block_links,
	.block_rechts {
		width: 100%;
		text-align: left;
		}
	}


.block_links img,
.block_rechts img {
	display: block;
	width: 100%;
 	height: auto;
	xxxmax-height: 70vh;
	}


.font_Nunito {
	font-family: 'Nunito Sans', sans-serif; 
	color: black;
	font-size: 4.5vw;
	font-weight: 800;
	letter-spacing: -0.2vw;
	line-height: 0.9;
	}


.font_Nunito_h1 {
	font-family: 'Nunito Sans', sans-serif; 
	color: black;
	font-size: 8vw;
	font-weight: 800;
	letter-spacing: -0.7vw;
	line-height: 1;
	}

.font_Italic {
	font-family:'Newsreader-Italic';
	font-size: 3.5vw;
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.2vw;
	}

.font_Italic_h1 {
	font-family:'Newsreader-Italic';
	font-size: 3.5vw;
	font-weight: 400;
	}





/* --- Vorschaubilder zu großem Bild - PRINTS - Quadratisch 1:1 --- */
.gal-pub {
  width: 50vw;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1100px) {
  .gal-pub { width: 100%; }
}

/* Bereich für großes Bild */
.big-images {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid #ccc;
  overflow: hidden;
}

/* WICHTIG: Das hier sorgt dafür, dass es egal ist, ob du <a href> oder <img> benutzt */
.big-images > * {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: none; /* Erstmal alle großen Bilder ausblenden */
}

/* Damit das Bild im Link auch schön passt */
.big-images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --- LOGIK TEIL 1: Großes Bild anzeigen --- */
/* Hier nutzen wir "nth-of-type", damit die Namen (IDs) egal sind */

/* Wenn 1. Radio an -> zeige 1. Element (egal ob Bild oder Link) im großen Kasten */
.gal-pub input:nth-of-type(1):checked ~ .big-images > *:nth-of-type(1) { display: block; }
.gal-pub input:nth-of-type(2):checked ~ .big-images > *:nth-of-type(2) { display: block; }
.gal-pub input:nth-of-type(3):checked ~ .big-images > *:nth-of-type(3) { display: block; }
.gal-pub input:nth-of-type(4):checked ~ .big-images > *:nth-of-type(4) { display: block; }
.gal-pub input:nth-of-type(5):checked ~ .big-images > *:nth-of-type(5) { display: block; }
.gal-pub input:nth-of-type(6):checked ~ .big-images > *:nth-of-type(6) { display: block; }
.gal-pub input:nth-of-type(7):checked ~ .big-images > *:nth-of-type(7) { display: block; }
.gal-pub input:nth-of-type(8):checked ~ .big-images > *:nth-of-type(8) { display: block; }
.gal-pub input:nth-of-type(9):checked ~ .big-images > *:nth-of-type(9) { display: block; }
.gal-pub input:nth-of-type(10):checked ~ .big-images > *:nth-of-type(10) { display: block; }



/* --- THUMBNAILS (bleibt wie vorher) --- */
.thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.thumbnails img {
  width: 100%;
  border: 2px solid transparent;
  transition: border 0.2s ease;
  cursor: pointer;
}

/* Hover-Effekt (bleibt wie vorher) */
.thumbnails label:hover img {
  border: 2px solid #666;
}


/* --- LOGIK TEIL 2: Roter Rahmen um aktives Thumbnail --- */
/* Auch hier nutzen wir "nth-of-type", damit du IDs ändern kannst */

.gal-pub input:nth-of-type(1):checked ~ .thumbnails label:nth-of-type(1) img { border: 2px solid red; }
.gal-pub input:nth-of-type(2):checked ~ .thumbnails label:nth-of-type(2) img { border: 2px solid red; }
.gal-pub input:nth-of-type(3):checked ~ .thumbnails label:nth-of-type(3) img { border: 2px solid red; }
.gal-pub input:nth-of-type(4):checked ~ .thumbnails label:nth-of-type(4) img { border: 2px solid red; }
.gal-pub input:nth-of-type(5):checked ~ .thumbnails label:nth-of-type(5) img { border: 2px solid red; }
.gal-pub input:nth-of-type(6):checked ~ .thumbnails label:nth-of-type(6) img { border: 2px solid red; }
.gal-pub input:nth-of-type(7):checked ~ .thumbnails label:nth-of-type(7) img { border: 2px solid red; }
.gal-pub input:nth-of-type(8):checked ~ .thumbnails label:nth-of-type(8) img { border: 2px solid red; }
.gal-pub input:nth-of-type(9):checked ~ .thumbnails label:nth-of-type(9) img { border: 2px solid red; }
.gal-pub input:nth-of-type(10):checked ~ .thumbnails label:nth-of-type(10) img { border: 2px solid red; }

/* Radio-Buttons verstecken */
.gal-pub input[type="radio"] {
  display: none;
}













/* --- Vorschaubilder zu großem Bild - NEUE WERKE - Querformat 2:1 --- */
.gal-pub-100 {
  width: 100vw;
  margin-bottom: 0px;
}


/* Bereich für großes Bild */
.big-images-100 {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  border: 0px solid #ccc;
  overflow: hidden;
}

/* WICHTIG: Das hier sorgt dafür, dass es egal ist, ob du <a href> oder <img> benutzt */
.big-images-100 > * {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: none; /* Erstmal alle großen Bilder ausblenden */
}

/* Damit das Bild im Link auch schön passt */
.big-images-100 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --- LOGIK TEIL 1: Großes Bild anzeigen --- */
/* Hier nutzen wir "nth-of-type", damit die Namen (IDs) egal sind */

/* Wenn 1. Radio an -> zeige 1. Element (egal ob Bild oder Link) im großen Kasten */
.gal-pub-100 input:nth-of-type(1):checked ~ .big-images-100 > *:nth-of-type(1) { display: block; }
.gal-pub-100 input:nth-of-type(2):checked ~ .big-images-100 > *:nth-of-type(2) { display: block; }
.gal-pub-100 input:nth-of-type(3):checked ~ .big-images-100 > *:nth-of-type(3) { display: block; }
.gal-pub-100 input:nth-of-type(4):checked ~ .big-images-100 > *:nth-of-type(4) { display: block; }
.gal-pub-100 input:nth-of-type(5):checked ~ .big-images-100 > *:nth-of-type(5) { display: block; }
.gal-pub-100 input:nth-of-type(6):checked ~ .big-images-100 > *:nth-of-type(6) { display: block; }
.gal-pub-100 input:nth-of-type(7):checked ~ .big-images-100 > *:nth-of-type(7) { display: block; }
.gal-pub-100 input:nth-of-type(8):checked ~ .big-images-100 > *:nth-of-type(8) { display: block; }
.gal-pub-100 input:nth-of-type(9):checked ~ .big-images-100 > *:nth-of-type(9) { display: block; }
.gal-pub-100 input:nth-of-type(10):checked ~ .big-images-100 > *:nth-of-type(10) { display: block; }



/* --- THUMBNAILS (bleibt wie vorher) --- */
.thumbnails-100 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.thumbnails-100 img {
  width: 100%;
  border: 2px solid transparent;
  transition: border 0.2s ease;
  cursor: pointer;
}

/* Hover-Effekt (bleibt wie vorher) */
.thumbnails-100 label:hover img {
  border: 2px solid #666;
}


/* --- LOGIK TEIL 2: Roter Rahmen um aktives Thumbnail --- */
/* Auch hier nutzen wir "nth-of-type", damit du IDs ändern kannst */

.gal-pub-100 input:nth-of-type(1):checked ~ .thumbnails-100 label:nth-of-type(1) img { border: 2px solid red; }
.gal-pub-100 input:nth-of-type(2):checked ~ .thumbnails-100 label:nth-of-type(2) img { border: 2px solid red; }
.gal-pub-100 input:nth-of-type(3):checked ~ .thumbnails-100 label:nth-of-type(3) img { border: 2px solid red; }
.gal-pub-100 input:nth-of-type(4):checked ~ .thumbnails-100 label:nth-of-type(4) img { border: 2px solid red; }
.gal-pub-100 input:nth-of-type(5):checked ~ .thumbnails-100 label:nth-of-type(5) img { border: 2px solid red; }
.gal-pub-100 input:nth-of-type(6):checked ~ .thumbnails-100 label:nth-of-type(6) img { border: 2px solid red; }
.gal-pub-100 input:nth-of-type(7):checked ~ .thumbnails-100 label:nth-of-type(7) img { border: 2px solid red; }
.gal-pub-100 input:nth-of-type(8):checked ~ .thumbnails-100 label:nth-of-type(8) img { border: 2px solid red; }
.gal-pub-100 input:nth-of-type(9):checked ~ .thumbnails-100 label:nth-of-type(9) img { border: 2px solid red; }
.gal-pub-100 input:nth-of-type(10):checked ~ .thumbnails-100 label:nth-of-type(10) img { border: 2px solid red; }

/* Radio-Buttons verstecken */
.gal-pub-100 input[type="radio"] {
  display: none;
}