/*
	generelle Einstellungen
*/

@charset "UTF-8";

@font-face {
    font-family: Corbert-Regular;
    local: Corbert-Regular;
    font-weight: normal;
    src: 	url(../fonts/Corbert-Regular.otf),
    		url(../fonts/Corbert-Regular.otf) format('opentype'),
    		url(../fonts/Corbert-Regular.eot);
}
/*
    Global
*/

html, body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a, 
a:link,
a:hover,
a:active {
    text-decoration: none;
}

.spracheOff {
    display: none;
}

.spracheOn {
}
/*
    Header / Navigation
*/
header {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3;
}

header ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: rgba( 150, 150, 150, 0.4 );
}

header ul li {
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

header ul li a,
header ul li a:link,
header ul li a:hover,
header ul li a:active {
    font-family: Corbert-Regular;
    text-transform: lowercase;
    font-size: 1.0em;
    font-weight: 100;
    color: #00f;
}

header ul li span.sprachauswahl,
header ul li span.sprachauswahl:link,
header ul li span.sprachauswahl:hover,
header ul li span.sprachauswahl:active {
    font-family: Corbert-Regular;
    text-transform: uppercase;
    font-size: 1.0em;
    font-weight: 150;
    line-height: 1.8em;
    color: #ccc;
    cursor: pointer;
}

.sprache-ist-aktiv {
    color: #fff !important;
}

header ul li .my-icons {
	color: #fff;
    line-height: 1.8em;
    font-size: 1.6em;
    cursor: pointer;
}

.menuebttn {
	display: flex;
    position: fixed;
	flex-direction: column;
	justify-content: center;
	height: 3.0em;
	width: 1.80em;
	margin-left: 0px;
	padding: 0 10px;
	cursor:pointer;
	z-index: 4;
	transition: all 500ms;
	background-color: rgba( 150, 150, 150, 0.4 );
}

.menuebttn span {
	position: absolute;
	height: 3px;
	width: 1.80em;
	background-color: #fff; 
    z-index: 3;
}

.menuebttn span:before,
.menuebttn span:after {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background-color: #fff; 
	content:'';
}

.menuebttn span:before {
	top: -6px;
}

.menuebttn span:after {
	bottom: -6px;
}

.menuebttn-X span {
	transition: background 0.2s 0.3s;
}

.menuebttn-X.is-active span {
	background: none;
}

.menuebttn-X {
	transition: transform 500ms;
}

.menuebttn-X.is-active {
	transform: translate(16em);
}

.menuebttn-X span:before,
.menuebttn-X span:after {
	transition-duration: 0.3s, 0.3s;
	transition-delay: 0.3s, 0s;
}

.menuebttn-X span:before {
	transition-property: top,transform;	
}

.menuebttn-X span:after {
	transition-property: bottom, transform;
}

.menuebttn-X.is-active span:before {
	top: 0;
	transform: rotate(45deg);
}

.menuebttn-X.is-active span:after {
	bottom: 0;
	transform: rotate(-45deg);
}

.menuebttn-X.is-active span:before,
.menuebttn-X.is-active span:after {
	transition-delay: 0.3s, 0.3s;
}

/*

    Seitenmenue

*/
section.seitenmenue { 
    display: flex;
	position: fixed;
	flex-direction: row;
    justify-content: center;
    align-content: center;
    width: 16em;
	background-color: rgba( 170, 170, 170, 0.8 );
	border-bottom: 1px solid #444;
    border-right: 1px solid #444;
    z-index: 3;
    transition: all 500ms;
    border-radius: 0px 0px 8px 0px !important;
}

.menue_off {
    top: -50em;
}

.menue_on {
    top: 0px;
}

section.seitenmenue nav {
    display: flex;
	flex-direction: row;
    justify-content: center;
    align-items: stretch;
    width:100%;
    z-Index: 99;
    margin: 1.00em 0.00em 1.00em 0.00em;
}

section.seitenmenue nav ul {
    display: flex; /*flex*/
	flex-direction: column;
    justify-content: flex-start;
    width: 100%;
	padding: 0; /* 0.2em*/
    margin: 0;
}

section.seitenmenue nav ul li {
    padding: 0.8em 1.6em;
    transition: background ease-in-out 700ms;
}

section.seitenmenue nav ul li:hover {
    background-color: #666;
    transition: background 300ms;
}

section.seitenmenue nav ul li a,
section.seitenmenue nav ul li a:link,
section.seitenmenue nav ul li a:hover,
section.seitenmenue nav ul li a:active {
    font-family: Corbert-Regular;
    text-transform: lowercase;
    font-size: 1.0em;
    font-weight: 100;
    color: rgba(77,3,26,1) !important;
}

/*
    Erklärungen
*/
.erklaerungen {
    display: none;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    position: fixed;
    top: 5vh;
    right: -20px;
    width: 90vw;
    height: 80vh;
    padding: 20px 40px 20px 20px;
    background-color: rgba(220,220,220, 0.9);
    z-index: 2;
    overflow-x: hidden;
    overflow-y: auto;
}

.displayOn {
    display: flex;   
}

.datenschutzClass,
.impressumClass {
    width:100%;
    max-width: 100%;
}

.datenschutzClass h1,
.impressumClass h1 {
    font-family: Corbert-Regular;
    font-size: 1.6em;
    font-weight: 200;
    color: rgba(77,3,26,1);
}

.datenschutzClass h2,
.impressumClass h2 {
    font-family: Corbert-Regular;
    font-size: 1.3em;
    font-weight: 200;
    color: rgba(77,3,26,1);
}

.datenschutzClass h3,
.impressumClass h3 {
    font-family: Corbert-Regular;
    font-size: 1.0em;
    font-weight: 200;
    color: rgba(77,3,26,1);
}

.datenschutzClass p,
.impressumClass p {
    font-family: Corbert-Regular;
    font-size: 1.0em;
    font-weight: 100;
    color: rgba(77,3,26,1);
}

/*
    Main
*/

#main {
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    width: 100%;
    overflow-x: hidden;
}

#main section h2 {
    font-family: Corbert-Regular;
    position: absolute;
    text-transform: lowercase;
    font-size: 1.8em;
    line-height: 4;
    font-weight: 100;
    color: rgba(100,100,100,.6);
    margin: 0 0 0 0;
    transition: all 500ms;
    
}

#main .page1 {
	display: flex;
	flex-direction: row;
    justify-content:center;
    align-items: center;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

#main .page1 .background {
    height: 100vh;
    width: 100%;
    background-position: center ;
	background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: normal;
    background-color: #ddd;
    opacity: 1.0;
    transition: background 500ms ease-in-out;
    overflow: hidden;
}

.bg_1 {
    background-image: url(../images/bg_1.jpg);
    background-attachment: fixed;
}

.bg_1a {
    background-image: url(../images/bg_3.jpg);
    background-attachment: fixed;
    opacity: 0.2;
}

.bg_2 {
    background-image: url(../images/bg_2.jpg);
    background-attachment: fixed;
}

.bg_3 {
    background-image: url(../images/bg_landingpage.jpg);
    background-attachment: fixed;
}

.bg_4 {
    background-image: url(../images/bg_4.jpg);
    background-attachment: fixed;
}

.bg_5 {
    background-image: url(../images/bg_5.jpg);
    background-attachment:fixed;
    opacity: 0.2;
}

.bg_6 {
    background-image: url(../images/bg_6.jpg);
    background-attachment:fixed;
    opacity: 0.2;
}

.bg_6a {
    background-image: url(../images/bg_6.jpg);
    background-attachment:fixed;
    opacity: 1.0;
}

.bg_7 {
    background-image: url(../images/bg_7.jpg);
    background-attachment:fixed;
    opacity: 0.2;
}

.bg_8 {
    background-image: url(../images/bg_8.jpg);
    background-attachment:fixed;
    opacity: 0.2;
}

div.layer_name {
    font-family: Corbert-Regular;
    font-size: 28pt;
	display: flex;
    flex-direction: column;
    justify-content:flex-end;
    align-items:flex-start;
    position: absolute;
    height: 5em;
	left: 0em;
    top: calc(100vh - 7.0em);
}

div.layer_name .name {
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    align-items:flex-start;
    padding: 0.50em 1.0em;
}

div.layer_name .vorname {
	color: rgba(77,3,26,1);
}

div.layer_name .nachname {
	color: rgba(240,240,240,1);
}

#main .page2 {
	display: flex;
	flex-direction: column;
    justify-content:flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    height: 100vh;
    width: 100%;
    padding: 0 0 0 0;
    margin: 0;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
    background-color: rgba(192,192,192,0.9);
    transition: 0.5s all 400ms;
}

#main .page2 .background {
    height: 100vh;
    width: 100%; /*100vw*/
    background-position: center;
	background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    transition: background 500ms ease-in-out;
}

#main .page2 h2 {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: center;
    padding: 0 0 0 0;
    width: 100%;
}

#main .page2 .show_content {
    display: flex;
    position: absolute;
	flex-direction: row;
    justify-content:center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 0 0 0;
    margin-top: 10vh;
    height: 90vh;
    width: 100vw;
    overflow-y: auto;
    webkit-overflow-scrolling: touch;
    transition: 0.5s all 400ms;
    z-index: 2;
}

#main .show_content .show_content_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 60px;
    width: 80vw;
}

#main .show_content .show_content_bilder {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 5vh 0 0 0;
    margin: 0;
    width: 100%;
}

#main .show_content .show_content_text h3 {
    font-family: Corbert-Regular;
    font-size: 1.3em;
    line-height: 1.4;
    font-weight: 100;
    color: rgba(77,3,26,1);
}

#main .show_content .show_content_text span {
    font-family: Corbert-Regular;
    font-size: 1.0em;
    line-height: 1.4;
    font-weight: 100;
    color: rgba(77,3,26,1);
}

#main .page2 .show_content .show_content_bilder .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 5px;
    height: 20.00em;
    width: auto;
    transition: all 400ms;
	opacity: 1.0;
}
/*
#main .page3 .show_content .container video {
    padding: 0;
    margin: 0;
    height: 100%;
    min-width: 30%;
}
*/

#main .page2 .show_content .show_content_bilder .container .img_5 {
    height: 100%;
}

#main .page2 .show_content .show_content_bilder .container .img_6 {
    height: 100%;
}

#main .page2 .show_content .show_content_bilder .container .img_7 {
    height: 100%;
}

#main .page2 .show_content .show_content_bilder .container .img_11 {
    height: 100%;
}

#main .page3 {
	display: flex;
	flex-direction: column;
    justify-content:flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    height: 100vh;
    width: 100%;
    padding: 0 0 0 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    background-color: #bbb;
    transition: 0.5s all 400ms;
}

#main .page3 .background {
    height: 100vh;
    width: 100%;
    background-position: center;
	background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    transition: background 500ms ease-in-out;
}

#main .page3 .show_content {
    display: flex;
    position: absolute;
	flex-direction: row;
    justify-content:center;
    align-items: center;
    flex-wrap: wrap;
    height: 100vh;
    width: 100vw;
    webkit-overflow-scrolling: touch;
    overflow-y: auto;
    transition: 0.5s all 400ms;
    z-index: 2;
}

#main .page3 .show_content  .show_content_bilder .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 5px;
    height: 20.00em;
    width: auto;
    overflow: hidden;
    transition: all 400ms;
	opacity: 1.0;
}

#main .page3 .show_content .container video {
    padding: 0;
    margin: 0;
    height: 100%;
    min-width: 30%;
}

#main .page3 .show_content .show_content_bilder .container .img_1 {
    height: 100%;
}

#main .page3 .show_content .show_content_bilder .container .img_2 {
    height: 100%;
}

#main .page3 .show_content .show_content_bilder .container .img_3 {
    height: 100%;
}

#main .page4 {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    justify-content:center;
    align-items: flex-start;
    height: 100vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
}

#main .page4 .background {
    height: 100vh;
    width: 100%;
    background-position: center;
	background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: normal;
    transition: background 500ms ease-in-out;
    background-color: rgba(220, 220, 220, 0.8);
}

#main .page4 .auftritte_content {
	display:flex;
	flex-direction:column;
	justify-content:center;
    align-items: center;
    flex-wrap: nowrap;
	position: absolute;
    padding-top: 60px;
    /*padding-right: 10px;*/
    height: 90vh;
    max-height: 90vh;
    width: 100vw;
    z-index:1;
    overflow-x: hidden;
    overflow-y: hidden;
}

#main .auftritte_content h3 {
    font-family: Corbert-Regular;
    font-size: 1.5em; /* 1.3 */
    line-height: 1.0;
    font-weight: 100;
    color: rgba(77,3,26,1);
}

#main .auftritte_content ul li {
    font-family: Corbert-Regular;
    font-size: 1.2em; /* 1.1 */
    line-height: 1.9; /* 1.7 */
    font-weight: 100;
    color: rgba(77,3,26,1);
    padding: 0 20px;
}
/* Ende page4 */
#main .page4a {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    justify-content:center;
    align-items: flex-start;
    height: 100vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
}

#main .page4a .background {
    height: 100vh;
    width: 100%;
    background-position: center top;
	background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: normal;
    transition: background 500ms ease-in-out;
    background-color: rgba(220, 220, 220, 0.8);
}

#main .page4a .referenzen_content {
	display:flex;
	flex-direction:column;
	justify-content:center;
    align-items: center;
    flex-wrap: nowrap;
	position: absolute;
    padding-top: 60px;
    /*padding-right: 10px;*/
    height: 90vh;
    max-height: 90vh;
    width: 100vw;
    z-index:1;
    overflow-x: hidden;
    overflow-y: hidden;
}

#main .referenzen_content h3 {
    font-family: Corbert-Regular;
    font-size: 1.5em; /*1.3*/
    line-height: 1.0;
    font-weight: 100;
    color: rgba(77,3,26,1);
}

#main .referenzen_content ul li {
    font-family: Corbert-Regular;
    font-size: 1.15em;
    line-height: 1.7;
    font-weight: 100;
    color: rgba(77,3,26,1);
    padding: 0 20px;
}
/*

 ENDE Page 4a

*/
#main .page5 {
	display: flex;
	flex-direction: column;
    flex-wrap: wrap;
    justify-content:space-between;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
}

#main .page5 h2 {
	color: rgba( 255, 255, 255, 0.8);
}

#main .page5 .presse_content {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    position: absolute;
    height: 20vh;
    width: 100%;
    margin: 80vh 0 0 0;
    background-color: rgba(77,3,26,1);
	color: rgba( 255, 255, 255, 0.8);
    border-top: 1px solid #999;
} 



/*
    2019-07-19
*/
#main .page5 .butenundbinnen {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: 20vh;
    width: 100%;
    margin: 40vh 0 0 0;
    background-color: rgba(77,3,26,1);
} 

#main .page5 .butenundbinnen .medien_content {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-content: space-between;
    justify-content: space-between;
    
}

#main .page5 .butenundbinnen .medien_content a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
}
#main .page5 .butenundbinnen .medien_content .highline {
    padding: 0;
    margin: 10px 10px;
    color: rgba( 255, 255, 255, 0.8);
    font-family: Corbert-Regular;
    font-size: 1.6em;
    font-weight: 100;
    text-align: center;
}

#main .page5 .butenundbinnen .medien_content .quelle {
    color: rgba( 200, 200, 200, 0.8);
    font-family: Corbert-Regular;
    font-size: 0.80em;
    font-weight: 100;
    text-align: center;  
    margin: 10px 10px 0 10px;
}

#main .page5 .butenundbinnen .medien_content .quellenLink {
    color: rgba( 200, 200, 200, 0.6);
    font-family: Corbert-Regular;
    font-size: 0.80em;
    font-weight: 100;
    text-align: center;
    margin: -8px 0 auto 0;
    padding: 0;
}

#main .page5 .butenundbinnen .medien_content .medien_content_text {
    color: rgba( 255, 255, 255, 0.8);
    font-family: Corbert-Regular;
    font-size: 1.00em;
    line-height: 1.4;
    font-weight: 100;
    margin: 10px 10px;
}

/*
    Ende 2019-07-19
*/

#main .page5 .memomedia {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: 20vh;
    width: 100%;
    margin: 60vh 0 0 0;
    background-color: rgba(77,3,26,1);
    border-top: 1px solid #999;
} 

#main .page5 .memomedia .medien_content {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-content: space-between;
    justify-content: space-between;
    
}

#main .page5 .memomedia .medien_content a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
}
#main .page5 .memomedia .medien_content .highline {
    padding: 0;
    margin: 10px 10px;
    color: rgba( 255, 255, 255, 0.8);
    font-family: Corbert-Regular;
    font-size: 1.6em;
    font-weight: 100;
    text-align: center;
}

#main .page5 .memomedia .medien_content .quelle {
    color: rgba( 200, 200, 200, 0.8);
    font-family: Corbert-Regular;
    font-size: 0.80em;
    font-weight: 100;
    text-align: center;  
    margin: 10px 10px 0 10px;
}

#main .page5 .memomedia .medien_content .quellenLink {
    color: rgba( 200, 200, 200, 0.6);
    font-family: Corbert-Regular;
    font-size: 0.80em;
    font-weight: 100;
    text-align: center;
    margin: -8px 0 auto 0;
    padding: 0;
}

#main .page5 .memomedia .medien_content .medien_content_text {
    color: rgba( 255, 255, 255, 0.8);
    font-family: Corbert-Regular;
    font-size: 1.00em;
    line-height: 1.4;
    font-weight: 100;
    margin: 10px 10px;
}

#main .page5 .schwaebische {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: 20vh;
    width: 100%;
    margin: 80vh 0 0 0;
    background-color: rgba(77,3,26,1);
    border-top: 1px solid #999;
} 

#main .page5 .schwaebische .medien_content {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-content: space-between;
    justify-content: space-between;
    
}

#main .page5 .schwaebische .medien_content .highline {
    padding: 0;
    margin: 10px 10px;
    color: rgba( 255, 255, 255, 0.8);
    font-family: Corbert-Regular;
    font-size: 1.6em;
    font-weight: 100;
    text-align: center;
}

#main .page5 .schwaebische .medien_content .quelle {
    color: rgba( 200, 200, 200, 0.8);
    font-family: Corbert-Regular;
    font-size: 0.80em;
    font-weight: 100;
    text-align: center;  
    margin: 0 0px 0 0px;
}

#main .page5 .schwaebische .medien_content .medien_content_text {
    color: rgba( 255, 255, 255, 0.8);
    font-family: Corbert-Regular;
    font-size: 1.00em;
    line-height: 1.4;
    font-weight: 100;
}

#main .page5 .presse_content .highline {
    padding: 0;
    margin: auto auto;
    color: rgba( 255, 255, 255, 0.8);
    font-family: Corbert-Regular;
    font-size: 1.6em;
    font-weight: 100;
    text-align: center;
}

#main .page5 .presse_content .quelle {
    color: rgba( 200, 200, 200, 0.8);
    font-family: Corbert-Regular;
    font-size: 0.80em;
    font-weight: 100;
    text-align: center;
}

#main .page5 .background {
    height: 100vh;
    width: 100%;
    background-position: center top;
	background-size: cover; 
    background-repeat: no-repeat;
    background-blend-mode: normal; 
    transition: background 500ms ease-in-out;
    background-color: rgba(220, 220, 220, 1);
}
/* Ende Page5 */

#main .page6 {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    justify-content:center;
    align-items: flex-start;
    height: 100vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
}

#main .page6 .background {
    height: 100vh;
    width: 100%;
    background-position: center;
	background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: normal;
    transition: background 500ms ease-in-out;
    background-color: rgba(220, 220, 220, 1);
}

#main .page6 .aboutme {
	display:flex;
	flex-direction:row;
	justify-content:space-around;
    align-items: center;
    flex-wrap: wrap;
	position: absolute;
    padding-top: 3vh;
    height: 100vh;
    max-height: 100vh;
    width: 100% ;
    z-index:1;
    overflow: hidden;
}

#main .page6 .portrait {
    height: 30em;
    width: 40%;
    max-width: 40%;
    /*background-image: url(../images/leonie_aboutme.png);*/
    background-image: url(../images/aboutme.jpeg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 500ms;
}

#main .page6 .about_content {
    width: 50%;
    min-width: 10.00em;    
}

#main .page6 .about_content .about_content_text {
    font-family: Corbert-Regular;
    font-size: 1.0em;
    line-height: 1.4;
    font-weight: 100;
    color: rgba(77,3,26,1);
}

#main .page6 .about_content h3 {
    font-family: Corbert-Regular;
    font-size: 1.4em;
    line-height: 1;
    font-weight: 100;
    color: rgba(77,3,26,1);   
}
/* Ende Page6 */

#main .page7 {
	display: flex;
	flex-direction: column;
    justify-content:flex-start;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
    background-color: #aaa;
}

#main .page7 .kontaktcontainer {
    display: flex;
	flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

#main .page7 .kontaktcontainer > a,
#main .page7 .kontaktcontainer > a:link,
#main .page7 .kontaktcontainer > a:hover,
#main .page7 .kontaktcontainer > a:active {
    font-family: Corbert-Regular;
    text-transform: lowercase;
    font-size: 1.0em;
    font-weight: 100;
    z-index: 1;
    color: rgba(77,3,26,1) !important;
}


#main .page7 .kontaktcontainer .logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 5.00em;
    width: 10.00em;
    border: 2px solid rgba(77,3,26,1);
    border-radius: 10px;
    margin: 30px 0;
}

#main .page7 .kontaktcontainer .logo .logotext {
    font-family: Corbert-Regular;
    text-transform: lowercase;
    font-size: 3.0em;
    font-weight: 100;
    color: rgba(77,3,26,1) !important;
}

#main .page7 .kontaktcontainer .anrede {
    width: 80vw;
    text-align: center;
    /* eingefügt 2020-01-14 als Logo-Ersatz */
    margin-bottom: 4rem;
}

#main .page7 .kontaktcontainer .anrede .anredetext {
    font-family: Corbert-Regular;
    font-size: 1.0em;
    font-weight: 100;
    text-align: center;
    color: rgba(77,3,26,1);
}
/* Ende Page 7 */

#main .page8 {
    display: flex;
	flex-direction: row;
    justify-content:center;
    align-items: flex-start;
    flex-wrap: wrap;
    height: 100vh;
    width: 100%;
    padding: 0 0 0 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    background-color: #000;
    transition: 0.5s all 400ms;   
}

#main .page8 .topic {
    color: rgba(200,200,200,.6);
}

#main .page8 .videocontainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    height: 100vh;
    width: 100%;
}

#main .page8 .videocontainer iframe {
    height: 100vh;
    /*width: 100%;*/
    width: 45%;
}

#main .page8 .videocontainer video {
    /*height: 100vh;*/
    /*width: 100%;*/
    width: 45%;
}


/*
	Animations-Klassen
*/

.shows {
	opacity: 1.0 !important;
}

/* Footer */
#main footer {
    display: flex;
    bottom: 0.00em;
    flex-direction: column;
    align-content: center;
    align-items: center;
    width: 100%;
    height: 17rem;
    background-color: #777;
    z-index: 2;
}

#main footer ul {
    display: flex;
    flex-direction: row;
    align-content: center;
    padding: 10px 0 0 0;
}

#main footer ul li {
    margin: 2px 10px;
}

#main footer ul li a,
#main footer ul li a:link,
#main footer ul li a:hover,
#main footer ul li a:active {
    font-family: Corbert-Regular;
    font-size: 1.0em;
    font-weight: 100;
    color: rgba(255,255,255,1);
    cursor: pointer;
}

#main footer .fotografen {
    display: flex;
    bottom: 4.00em;
    flex-direction: row;
    align-content: flex-start;
    align-items: flex-end;
    width: 90vw;
    flex-direction: column;
}

#main footer .fotografen li.topic {
    font-size: 1.00em;
    font-weight: 100;
    padding: 5px;
    color: rgba(250,250,250,1);
}

#main footer .fotografen li {
    font-family: Corbert-Regular;
    font-size: 0.80em;
    font-weight: 100;
    padding: 2px;
    color: rgba(230,230,230,1);
    width: 12em;
    text-align: left;
}


.ios {
    /* .bg_1, .bg_2, .bg_3, .bg_4, .bg_5  */
    background-attachment:scroll; /* fixed; */
	background-size: contain; /* cover */	
}

/* Media Control */
@media screen and ( max-width:600px ) {
	.bg_1,
    .bg_1a,
	.bg_2,
	.bg_3,
	.bg_4,
	.bg_5,
    .bg_6,
    .bg_6a,
    .bg_7,
    .bg_8 {
		background-attachment:scroll; /* fixed; */
		background-size: contain; /* cover */
	}
	
	header {
    	height: 100%;
	}
	
	header ul {
    	flex-direction: column;
	}
}

@media screen and ( orientation: portrait ) {
    #main .page8 .videocontainer {
        flex-direction: column;
    }
    #main .page8 .videocontainer iframe {
        height: 45vh;
        width: 94%;
    }
    #main .page8 .videocontainer video {
        height: 45vh;
        width: 94%;
    }
    #main .page8 .topic {
        display: none;
    }
}


@media screen and ( max-width:600px ) {
    #main .page4 .auftritte_content {
        padding-top: 0vh;
        height: 90vh;
    }
    
    #main .auftritte_content ul li {
        font-family: Corbert-Regular;
        font-size: 0.9em;
        line-height: 1.1;
        font-weight: 100;
        padding-bottom: 10px;
        color: rgba(77,3,26,1);
    }
    
     #main .page4a .referenzen_content {
        justify-content: flex-start;
        padding-top: 0vh;
        height: 90vh;
    }
    
    #main .referenzen_content ul li {
        font-family: Corbert-Regular;
        font-size: 0.8em;
        line-height: 0.9;
        font-weight: 100;
        padding-bottom: 10px;
        color: rgba(77,3,26,1);
    }
    
    /*
        2019-07-22
    */
    #main .quellenLink {
        margin-top: 0px !important;    
    }
    
    #main .page5 .butenundbinnen .medien_content {
        align-content: center;
        align-items: center;
    }
    
    #main .page5 .butenundbinnen .medien_content .highline {
        font-size: 1.0em;
        margin: auto;
    }
    
    #main .page5 .butenundbinnen .medien_content .medien_content_text {
        display: none;
    }
    
    #main .page5 .butenundbinnen .medien_content .quelle {
        font-size: 0.70em;
        color: rgba(200,200,200,1);
    }
    /*
        Ende 2019-07-22
    */

    #main .page5 .schwaebische .medien_content {
        align-content: center;
    }
    
    #main .page5 .schwaebische .medien_content .highline {
        font-size: 1.0em;
        margin: auto;
    }
    
    #main .page5 .schwaebische .medien_content .medien_content_text {
        display: none;
    }
    
    #main .page5 .schwaebische .medien_content .quelle {
        font-size: 0.70em;
        color: rgba(200,200,200,1);
    }
    
    #main .page5 .memomedia .medien_content {
        align-content: center;
        align-items: center;
    }
    
    #main .page5 .memomedia .medien_content .highline {
        font-size: 1.0em;
        margin: auto;
    }
    
    #main .page5 .memomedia .medien_content .medien_content_text {
        display: none;
    }
    
    #main .page5 .memomedia .medien_content .quelle {
        font-size: 0.70em;
        color: rgba(200,200,200,1);
    }
    
    #main .page5 .presse_content .highline {
        font-size: 1.0em;
    }
    
    #main .page5 .presse_content .quelle {
        font-size: 0.70em;
        color: rgba(200,200,200,1);
    }
    
    #main .page6 .portrait {
        height: 25vh;
    }
    
    #main .page6 .aboutme {
	   justify-content:flex-end;
        align-items: center;
        flex-wrap: wrap;
        height: calc( 100vh - 3vh );
    }
    #main .page6 .about_content {
        width: 90%;
        padding: 0 5% 0 0;
        
    }
    #main .page6 .about_content h3 {
        padding: 0;
        margin: 0 0 10px 0;
    }
}
