/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

.main-navigation {
	display: none;
}

.noshow-desktop {
	display: none;
}

.noshow-mobile {
	display:block;
}

.noshow-tablet {
	display:block;
}

/* Ansicht für Tablets bzw. Bildschirme, die kleiner als 45em (= 720px) sind 
__________________________________________________________________________________*/

@media screen and (max-width:45em) {

.noshow-desktop {
	display: block;
}

.noshow-mobile {
	display:none;
}

.noshow-tablet {
	display:none;
}
	
}


/* Ansicht für Smartphones bzw. Bildschirme, die kleiner als 38.75em (= 620px) sind 
__________________________________________________________________________________*/

@media screen and (max-width:38.75em) {

}

@media screen and (max-width:85em) {

	.noshow-desktop {
		display: block;
}

	.noshow-mobile {
		display:none
}
	
	.noshow-tablet {
	display:none;
}
	
}

