/*
 Theme Name:     Divi Child Theme
 Author:         Leonie Rieder (www.leonierieder-webdesign.de)
 Author URL:     https://www.leonierieder-webdesign.de
 Template:       Divi
 Version:        3.0.0
*/



/******** ANPASSUNGEN, DIE KEINE CSS-KLASSE BENÖTIGEN ********/


/*** ANPASSUNGEN FÜR DAS MOBILE MENÜ ***/

/*** mobiles Menü: Toggle zu "X" ändern ***/
.opened .mobile_menu_bar:before {
	content: "M";
}


/*** mobiles Menü: fixierter Headerbereich ***/
@media (max-width: 980px) {
.et_non_fixed_nav.et_transparent_nav #main-header, .et_non_fixed_nav.et_transparent_nav #top-header, .et_fixed_nav #main-header, .et_fixed_nav #top-header {

position: fixed;
	} 
}


/*** mobiles Menü: Großbuchstaben ***/
.et_mobile_menu li a,.nav li li a{
	font-family: Quicksand-Regular; 
	font-size:13px;
	font-weight: normal;
	font-style: normal;
	text-transform: uppercase;
	text-decoration: none;
}


/******** ANPASSUNGEN, DIE EINE CSS-KLASSE BENÖTIGEN ********/


/*** ALLGEMEINE ANPASSUNGEN ***/

/*** Header Fullscreen - CSS-Klasse: header-fullscreen ***/
.header-fullscreen.et_pb_section { 
	height: calc(100vh - 110px);
	}
	@media only screen and ( max-width: 980px ){
		.header-fullscreen.et_pb_section{ 
			height: calc(75vh); 
			}
			@media only screen and ( max-width: 480px ){
				.header-fullscreen.et_pb_section{ 
					height: calc(75vh); 
					}

	}
}


/*** Zeile in Sektion mittig ausrichten (Header) - CSS-Klasse: flex-container ***/
.flex-container {
	display: flex;
	justify-content: center;
	align-items: center;
	}