:root {
	--blau: #0000FF;
	--gruen: #84FA70;
	
	
	--fontsize-base: 23px;
	--fontsize-large:clamp(35px,6vw, 90px);
	--fontsize-large-smaller:clamp(30px,3.7vw, 55px);
	--fontsize-medium:30px;
	--fontsize-small:16px;
	
	--abstand: calc(30px + 2.8vw);
	--header-height: 50px;
	
}


@font-face {
    font-family: 'TWKEverett';
    src: url('../fonts/TWKEverett-Regular.woff2') format('woff2'),
        url('../fonts/TWKEverett-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GTSectra-Bold';
    src: url('../fonts/GTSectra-Bold.woff2') format('woff2'),
        url('../fonts/GTSectra-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GTSectra-Book';
    src: url('../fonts/GTSectra-Book.woff2') format('woff2'),
        url('../fonts/GTSectra-Book.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}








html{
	scroll-behavior: smooth;
}
html,body{
   height:100%;
}

body {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color:white;
	font-family:'TWKEverett',sans-serif;
	font-size:var(--fontsize-base);
	line-height:1.3;
	padding-top:var(--header-height);
	color:var(--blau);
	box-sizing: border-box;
}

body.body-noScroll{
	overflow:hidden;
}

div,section,header,article{
	box-sizing: border-box;
}
img{
	display:block;
	width:100%;
}
sup{
	vertical-align: super;
	font-size:80%;
}
strong{
	font-family: 'GTSectra-Bold';
}


/* SCROLLBAR VERSTECKEN */
body::-webkit-scrollbar{
	display: none;
}
body {
	-ms-overflow-style: none;
}
html {
	scrollbar-width: none;
}


/* ---------------------------------
	
	GENERAL STYLES
	
-----------------------------------*/


h1,h2,h3,h4,h5,h6{
	font-size:100%;
	margin:0;
}
h1,h2.h1{
	padding-bottom:60px;
	font-size:var(--fontsize-large);
	/*text-transform: uppercase;*/
	/*font-style: italic;*/
}
h1{
	line-height:1.2;
}
h1.smaller{
	font-size:var(--fontsize-large-smaller);
}
h2{
	padding-bottom:30px;
	/*text-transform: uppercase;*/
	font-size:var(--fontsize-medium);
	/*font-style: italic;*/
}

h3{
	
}
.lead{
	font-size:var(--fontsize-medium);
	padding-bottom:50px;
}
.section-titel .lead{
	padding-bottom:0px;
}

a{
	text-decoration: none;
}
a:hover{
	
}
a:visited,
a:active{
	color:inherit;
}
a.button{
	display:inline-block;
	padding:12px 30px;
	background-color:var(--gruen);
	color:var(--blau);
	text-transform: uppercase;
	border-radius: 999px;
	font-style: italic;
	transition:all .2s ease;
}
a.button:hover{
	background-color:var(--blau);
	color:var(--gruen);
}
a.button-outline{
	background-color:none;
	border:1px solid var(--blau);
}
a.button-small{
	text-transform: none;
	font-size:inherit;
	font-style: normal;
	padding:8px 20px;
}
a.link-underline{
	text-decoration: underline;
	text-decoration-thickness: from-font;
	text-underline-offset: 0.2em;
}


.container{
	max-width:1600px;
	margin:0 auto;
	padding:0px 100px;
}
.container-wide{
	max-width:100%;
	
	padding:0px 100px;
}
.container:last-of-type{
	padding-bottom:200px;
}
/*.container-main{
	padding-bottom:200px;
}*/
body.body-artikel .container-main,
body.body-korrigenda .container-main{
	min-height:calc(100vh - var(--header-height) * 2);
}

.top-bar{
	background:var(--blau);
	position:fixed;
	top:0;
	width:100vw;
	text-transform: uppercase;
	z-index:10;
	font-style: italic;
}
.top-bar a{
	color:white;
}
.logo{
	font-size:var(--fontsize-medium);
}
.top-bar-content{
	height:var(--header-height);
	display:flex;	
	align-items: center;
	justify-content: space-between;
	padding:0 20px;
}


section{
	padding:150px 0;
}
section+section{
	padding-top:0;
}
.section-2cols{
	display:grid;
	grid-template-columns: repeat(12, 1fr);
	grid-gap: 0px;
}
.col-left{
	grid-column: 1 / span 4;
}
.col-right{
	grid-column: 6 / span 7;
}

.vertically-centered{
	display:flex;
	align-items: center;
}



/* ---------------------------------
	
	NAV
	
-----------------------------------*/

nav{
	text-align:center;
	height:350px;
	display:flex;
	align-items: center;
	justify-content: center;
	display:none;
}
nav.is-active{
	display:flex;
}
nav li{
	display:inline-block;
}
nav a{
	padding:0 1.5vw;
	font-size:var(--fontsize-medium);
	transition:all .2s ease;
}
nav a:hover{
	opacity:.7;
}

button.hamburger{
	width:40px;
	height:40px;
	padding:0;
	border: 0;
	background:transparent;
	cursor:pointer;
	transition:all .2s ease;
}
button.hamburger:hover{
	transform:scale(1.1)
}
.hamburger-line,
.hamburger-line::after{
	display:block;
	height:3px;
	width:40px;
	background:white;
	position:relative;
}
.hamburger-line{
	top:-6px;
}
.hamburger-line::after{
	content:'';
	top:12px;
}
.is-active .hamburger-line{
	top:0;
	transform: rotate(-20deg);
	transform-origin: center;
}
.is-active .hamburger-line::after{
	top:0;
	transform: rotate(-140deg);
	transform-origin: center;
}

/* ---------------------------------
	
	SITE: HOME
	
-----------------------------------*/

header{
	height:calc(100vh - var(--header-height));
	position:relative;
	/*z-index:11;*/ 
	/*top:calc(0px - var(--header-height));*/
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 0px;
	overflow:hidden;
}
.header-left{
	grid-column: 1 / span 1;
	display:flex;
	align-items: center;
	justify-content: center;
	text-align:center;
	background-color:var(--gruen);$
	position:relative;
}
.scroll-pfeil{
	position:absolute;
	left:25%;
	transform: translateX(-50%);
	bottom:20px;
}
.header-right{
	grid-column: 2 / span 1;
	background-color:#a1a0a8;
	/*display:flex;
	align-items: center;
	overflow:hidden;*/
	background-image:url(../bilder/Buch_def.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size:cover;
}
.buch-mobile{
	display:none;
}
/*.header-right img{
	height:calc(100vh - var(--header-height));
	width:auto;
}*/

header h1{
	text-transform: uppercase;
	font-size:6vw;
	line-height: 1;
	font-style:italic;
	letter-spacing:-0.03em;
}

.section-introtext{
	font-size: var(--fontsize-large);
	width:100%;
	line-height:1.2;
}

.section-hometeaser{
	display:grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 1fr;
	grid-gap: 40px;
	/*color:white;*/
	/*text-align: center;*/
	padding-top:0;
}
.section-hometeaser div{
	border-top: 2px solid var(--blau);
	padding-bottom:40px;
	/*aspect-ratio:4 / 5;*/
}
.section-hometeaser h2{
	padding-top:30px;
	padding-bottom:0;
	font-size: var(--fontsize-base);

}
.section-hometeaser p{
	padding:calc(30px + 1.5vw) 0;
	font-size: var(--fontsize-medium);
}
.section-hometeaser .button{
	word-break: break-word;
}

.text-blinking h2 span,
.text-blinking p span{
	animation-name: blinken;
	animation-duration: 4s;
	animation-iteration-count: infinite;
}

@keyframes blinken {
  0% {background-color: white;}
  6% {background-color: var(--gruen);}
  12% {background-color: white;}
  18% {background-color: var(--gruen);}
  24% {background-color: white;}
  100% {background-color: white;}
}

/* ---------------------------------
	
	SITE: INHALTSVERZEICHNIS
	
-----------------------------------*/

.body-inhaltsverzeichnis{
	background-color: var(--gruen);
}


.inhaltsverzeichnis-liste li{
	
	border-top:1px solid var(--blau);
}
.inhaltsverzeichnis-liste li:last-child{
	border-bottom:1px solid var(--blau);
}

.inhaltsverzeichnis-liste li.ueberseite{
	font-size:var(--fontsize-medium);

}
.inhaltsverzeichnis-liste li.ueberseite:not(:first-child){
	margin-top:40px;
}
.inhaltsverzeichnis-liste li a{
	display:block;
	padding:7px 0;
	transition:all 0.1s ease;
}
.inhaltsverzeichnis-liste li a:hover{
	/*opacity:0.4;*/
	padding-left:10px;
}

/* ---------------------------------
	
	SITE: ARTIKEL
	
-----------------------------------*/

body.body-artikel{
	/*background-color:#F0F0F0;*/
}

.section-narrow{
	width:75%;
	margin:0 auto;
}
.kapitelnummer{
	display:block;
	padding-bottom:10px;
}



/* BUTTON NAV */

.button-nav{
	padding-bottom:60px;
}
.button-nav a{
	margin-bottom:10px;
	font-size:var(--fontsize-small);
}
.button.inactive{
	background-color:#dadce4;
}
.button-nav .button:hover{
	background-color:var(--gruen);
	color:inherit;
}


/* FUSSNOTEN */
.fussnote{
	border-bottom:1px solid #65D153;
	margin-left:2px;
}
.section-artikel p .fussnote:hover{
	color:#65D153;
}
.section-artikel h1{
	text-transform: none;
	border-top:2px solid var(--blau);
	hyphens:auto;
}
.section-artikel h1 span{
	display:inline;
	position:relative;
	padding-bottom:10px;
}
.section-artikel h1 span::after{
	content:'';
	position:absolute;
	bottom:0;
	left:0px;
	display:inline-block;
	height:2px;
	width:100%;
	background-color:var(--blau);
}
.section-artikel table{
	font-family: 'GTSectra-Regular';
	width:100%;
	margin-bottom:50px;
	overflow-x: scroll;	
	max-width:calc(100vw - 40px);
}
.section-artikel table thead{
	font-size:var(--fontsize-small);
	font-family: 'TWKEverett', sans-serif;
	border-top:1px solid var(--blau);
	border-bottom:1px solid var(--blau);
	text-align: left;
	
}
.section-artikel table thead th,
.section-artikel table td{
	padding:2px;
}

.section-artikel table tbody tr{
	border-bottom:1px solid var(--blau);
}


.section-artikel h2,
.section-artikel h2 p{
	/*text-transform: none;
	font-style: normal;
	border-top:1px solid var(--blau);*/
	font-family: 'GTSectra-Bold';
	font-size:var(--fontsize-base);
	font-style: normal;
	text-transform: none;
	margin-bottom:0;
	text-align:left;
}
.section-artikel h3{
	font-family: 'GTSectra-Bold';
}
.section-artikel p,
.section-artikel ul,
.section-artikel ol{
	font-family: 'GTSectra-Book';
	hyphens: auto;
}
.section-artikel ul{
	list-style:disc;
	margin-bottom:50px; 
}
.section-artikel ul li{
	margin-left:16px;
}
.section-artikel p a{
	transition:color .2s ease;
}
.section-artikel p a:hover{
	color:var(--gruen);
}
figcaption{
	font-size:var(--fontsize-small);
	margin-top:3px;
	font-style: italic;
}

/* ARTIKEL NAVIGATION */
.section-artikel-navigation{
	background-color: var(--blau);
	padding:0;
	height:var(--header-height);
	text-transform: uppercase;
	font-style:italic;
	/*display:flex;
	align-items: center;
	padding-left:20px;
	padding-right:20px;*/
}
.section-artikel-navigation a{
	color:white;
	text-align: center;
	display:block;
	height:var(--header-height);
	line-height:var(--header-height);
}
.section-artikel-navigation div{
	/*width:66.666%;*/
	/*margin:0 auto;*/
	display:flex;
	justify-content: space-between;
	max-width:1600px;
}
.section-artikel-navigation .container{
	padding-bottom:0;
}


.inhaltsverzeichnis-link{
	transform:rotate(180deg);
	writing-mode: vertical-rl;
	position:fixed;
	right:0;
	top:0;
	height:100%;
	width:var(--header-height);
	display:flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	font-style: italic;
	background-color: var(--gruen);
	transition:all .2s ease;
}
.inhaltsverzeichnis-link:hover{
	width:calc(var(--header-height) + 10px);
}

/* SPLIT OVERLAY */
.overlay-split{
	background:red;
	position:fixed;
	left:0;
	width:100vw;
	height:calc(100vh - var(--header-height));
	top:var(--header-height);
	z-index:9;
	display: grid;
	grid-template-columns: 1fr 1fr;

}
.overlay-split-buchkaufen{
	background:white;
	display:flex;
	justify-content: center;
	align-items:center;
	padding:20px;
}
.overlay-split-code{
	background:var(--gruen);
	display:flex;
	justify-content: center;
	align-items:center;
	padding:20px;
}
.overlay-split-buchkaufen p,
.overlay-split-code p{
	padding-bottom:30px;
}

/* CODE EINGABEMASKE */
.code-overlay{
	background:var(--gruen);
	position:fixed;
	left:0;
	width:100vw;
	height:calc(100vh - var(--header-height));
	top:var(--header-height);
	z-index:9;
	display:flex;
	justify-content: center;
	align-items:center;
}
.code-overlay input,
.overlay-split-code input{
	border-radius:0px;
	height:50px;
	font-size:var(--fontsize-base);
	padding:0 20px;
	border-radius: 999px;
	outline:none;
	border:none;
}
.code-overlay input[type="text"],
.overlay-split-code input[type="text"]{
	color:var(--blau);
	width:400px;
	border:1px solid white;
	box-sizing: border-box;
	bavkground-color:white;
}
input::focus-visible{
	border:1px solid var(--blau);
}
.code-overlay input[type="text"]:focus,
.code-overlay input[type="text"]:focus-visible,
.overlay-split-code input[type="text"]:focus,
.overlay-split-code input[type="text"]:focus-visible{
	border:1px solid var(--blau);
}
.code-overlay input[type="submit"],
.overlay-split-code input[type="submit"]{
	background:var(--blau);
	color:white;
	font-style: italic;
	text-transform: uppercase;	
	
}
.meldung{
	font-size:var(--fontsize-small);
	padding-top:20px;
}

/* ABSTÄNDE */
.section-artikel h1{
	padding:0;
	margin-bottom:80px;
}
.section-artikel h2{
	padding:0;
}
.section-artikel h3{
}
.section-artikel p,
.section-artikel figure{
	margin-bottom:50px;
}


/* ---------------------------------
	
	SITE: QUELLEN
	
-----------------------------------*/


.section-fussnoten ol{
	
}
.section-verzeichnis ul,
.section-quellen ul,
.section-quellen ol{
	padding-bottom:50px;
}
.section-verzeichnis ul{
	font-size:var(--fontsize-small);
}
.section-quellen ol{
	list-style: decimal inside none;
}
.section-fussnoten ol li,
.section-verzeichnis ul li,
.section-quellen ul li,
.section-quellen ol li{
	border-bottom:1px solid var(--blau);
	hyphens:auto;
	overflow-wrap: break-word;
	word-wrap: break-word;
}
.section-quellen ul li a,
.section-quellen ol li a{
	hyphens:auto;
}
.section-quellen ul li,
.section-quellen ol li{
	font-size:var(--fontsize-small);
}
.section-verzeichnis ul li:empty{
	min-height:20px;
}
.section-quellen ul li:empty{
	display:none;
}
.section-fussnoten ol li:first-child,
.section-verzeichnis ul li:first-child,
.section-quellen ul li:first-child,
.section-quellen ol li:first-child{
	border-top: 1px solid var(--blau);
}
.section-quellen ul li.act,
.section-quellen ol li.act,
.section-quellen ul li a:hover,
.section-quellen ol li a:hover{
	background-color:var(--gruen);
}



/* ---------------------------------
	
	SITE: VERZEICHNISSE
	
-----------------------------------*/


.section-verzeichnisse-3cols{
	display:grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 40px;
	hyphens: auto;
}

/* ---------------------------------
	
	SITE: INFORMATIONEN
	
-----------------------------------*/

.section-fakten-grid{
	display:grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
	/*grid-auto-rows: 24vw;*/
}
.section-fakten div.fakten-container{
	background:var(--gruen);
	text-align: center;
	display:flex;
	flex-direction: column;
	justify-content: center;
	aspect-ratio: 4/ 5;
}
.section-fakten div.fakten-container span{
	hyphens:auto;
}
/* ZAHL */
.fakten-container div{
	font-size:var(--fontsize-large);
	padding-bottom:50px;
}
/* UNTERTITEL */
.section-fakten div span{
	
}

/* ---------------------------------
	
	SITE: KORRIGENDA
	
-----------------------------------*/

.section-korrigenda em{
	color:red;
	
}
.section-korrigenda li{
	padding-top:10px;
	padding-bottom:10px;
}

/* ---------------------------------
	
	SITE: MEDIENECHO
	
-----------------------------------*/

.section-medienecho strong{
	font-family: 'TWKEverett', sans-serif;
	font-weight:bold;
}
.section-medienecho li{
	padding-top:10px;
	padding-bottom:10px;
}
.section-medienecho li a{
	text-decoration: underline;
}


/* ---------------------------------
	
	SITE: IMPRESSUM
	
-----------------------------------*/

body.body-impressum h2:not(:first-of-type){
	padding-top:50px;
}
.section-impressum p a{
	text-decoration: underline;
}


/* ---------------------------------
	
	FOOTER
	
-----------------------------------*/


footer{
	font-size:13px;
	background-color:#dadce4;
	height:var(--header-height);
	line-height:var(--header-height);
	padding-left:20px;
}



/* ---------------------------------
	
	ANIMATIONS
	
-----------------------------------*/


@keyframes anim {
	from{
		background-color: red;
	}
	to {
		background-color: yellow;
	}
}

#xyz{
	-webkit-animation:anim 40s linear infinite;
    -moz-animation:anim 40s linear infinite;
    animation:anim 40s linear infinite;
}





/* ---------------------------------
	
	RESPONSIVE
	
-----------------------------------*/




@media screen and (max-width: 1638px) {
	.container{
		/*padding-left:20px;
		padding-right:20px;*/
		max-width:100%;
	}
}


@media screen and (max-width: 1300px) {
	/* INHALTSVERZEICHNIS */
	.section-inhaltsverzeichnis,
	.section-hometeaser{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 1000px) {
	
	
	.container{
		padding:0px 20px 200px 20px;
	}
	.body-home .container-main{
		padding-bottom:0px;
	}
	.section-narrow,
	.section-artikel-navigation div{
		width:100%;
	}
	.section-artikel-navigation .container{
		padding-bottom:0;
		padding-right:120px;
	}
	.section-artikel{
		padding-right:100px;
	}
	section{
		padding:15vw 0;
	}
	.section-inhaltsverzeichnis-overlay.is-open{
		width:75vw;
	}
	.section-inhaltsverzeichnis-overlay div{
		width:75%;
	}
	
	.section-verzeichnisse-3cols{
		grid-template-columns: repeat(2, 1fr);
	}
	.section-artikel{
		padding-bottom:0;
	}
	
	
	
	
	
	/* INFORMATIONEN */
	
	.section-fakten-grid{
		grid-template-columns: repeat(3, 1fr);
	}
	
}


@media screen and (max-width: 850px) {
	nav{
		justify-content: flex-start;
		padding-left:20px;
		height:50vh;
	}
	nav li{
		display:block;
		text-align: left;
		padding:5px 0;
	}
	nav a{
		font-size: var(--fontsize-medium);
		padding:0;
	}
	
	.section-introtext{
		width:100%;
	}
}

/* MOBILE */
@media screen and (max-width: 750px) {
	
	:root {
		--fontsize-medium:25px;		
		--fontsize-base: 17px;
		--fontsize-small:14px;
	}
	
	
	h1{
		hyphens: auto;

	}
	
	/* COLUMNS */
	.col-wrap{
		flex-direction:column;
	}
	
	
	.container-main{
		padding-bottom: 100px;
	}
	.section-2cols{
		display:block;
	}
	.col-left{
		padding-bottom:30px;
	}
	
	a.button{
		padding:12px 26px;
	}
	
	/* INHALTSVERZEICHNIS */
	.section-inhaltsverzeichnis{
		grid-template-columns: repeat(1, 1fr);
	}
	
	.logo span{
		display:none;
	}
	
	
	header{
		display:block;
		background-color:var(--gruen);
		height:auto;
	
	}
	.header-left{
		display:block;
		padding-top:var(--header-height);
	}
	.header-left h1{
		padding-top:70px;
		line-height:1;
		font-size:11vw;
	}
	.scroll-pfeil{
		bottom:15px;
	}
	.header-right{
		display:block;
		background:none;
	}
	.buch-mobile{
		display:block;
		margin:0 auto;
		max-width:90vw;
		margin-top:30px;
		margin-bottom: 30px;
	}
	.scroll-pfeil{
		left:50%;
	}
	
	/*.section-inhaltsverzeichnis-overlay .inhaltsverzeichnis-liste{
		width:100%;	
	}
	.section-inhaltsverzeichnis-overlay div{
		width:100%;
	}
	.section-inhaltsverzeichnis-overlay .inhaltsverzeichnis-liste{
		margin-right:20px;
	}*/
	.section-artikel{
		padding-right:0;
	}
	/*.section-inhaltsverzeichnis-overlay{
		width:0px;
	}*/
	
	.inhaltsverzeichnis-liste li{
		font-size:var(--fontsize-base);
	}
	.inhaltsverzeichnis-liste li span:first-child{
		min-width: 50px;
	}
	
	.inhaltsverzeichnis-link{
		  transform:none;
		  writing-mode: horizontal-tb;
		  position:fixed;
		  bottom:0;
		  left:0;
		  width:100vw;
		  top:auto;
		  height:var(--header-height);
	}
	
	.section-artikel-navigation{
		
		padding-right:0px;
	}
	.section-artikel-navigation .section-narrow{
		padding-bottom:calc(var(--header-height) + 1px);
	}
	
	
	
	
	
	/* ARTIKEL */
	.section-artikel-navigation{
		display:block;
		background-color: transparent;
		padding-left:0;
	}
	.section-artikel-navigation div{
		flex-direction:column-reverse;
	}
	.section-artikel-navigation div a{
		background-color:var(--blau);
	}
	.section-artikel-navigation div a:last-child{
		margin-bottom:1px;
	}
	.section-artikel-navigation .container{
		padding:0px;
	}
	.section-inhaltsverzeichnis-overlay.is-open{
		width:100vw;
	}
	body.body-artikel footer{
		display:none;
	}
	
	
	/* INFORMATIONEN */
	
	.section-fakten-grid{
		grid-template-columns: repeat(2, 1fr);
	}


}
@media screen and (max-width: 600px) {
	.container-main{
		padding-bottom:0px;
	}
	.section-hometeaser{
		display:block;
	}
	.section-verzeichnisse-3cols{
		grid-template-columns: repeat(1, 1fr);
	}
	
	.code-overlay{
		padding:0 30px;
	}
	.code-overlay input,
	.code-overlay input[type="text"]{
		width:100%;
		box-sizing: border-box;
		margin-bottom:20px;
		text-align: center;
	}
}

@media screen and (max-width: 400px) {
	/* INFORMATIONEN */
	
	.section-fakten-grid{
		grid-template-columns: repeat(1, 1fr);
	}
	.fakten-container div{
		font-size:70px;
	}

}





