/*---Hintergrundbild---*/
html {
  background: url(../assets/picture/werkstatt.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}


body {font-size: 100%;}
h1 {font-size: 3em;}
h2 {font-size: 2.5em;}
h3 {font-size: 2em;}
h4, h5, h6 {font-size: 1.5em;}
p  {font-size:1.5em;}

@media screen and (max-width: 64em) {
body {font-size: 90%}
}

@media screen and (max-width: 50em) {
body {font-size: 75%}
}

@media screen and (max-width: 30em){
body {font-size: 50%}
}


/*--- Hamburger Menü ---*/
#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  left: 0 !important;
}
.menu__btn {
  position: fixed;
  top: 30px;
  left: 25px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 10;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #616161;
  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}

/*--- Menü-Box ---*/
.menu__box {
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: #ECEFF1;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
  transition-duration: .25s;
}


.menu__item {
  display: block;
  padding: 12px 24px;
  color: #333;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: .25s;
}
.menu__item:hover {
  background-color: #CFD8DC;
}


/*--- Kreis unter Hamburger Menü ---*/
div.kreis{
position: fixed;
  	top: 10px;
	left: 18px;
	background-color:rgba(255,255,255,0.7); /*hintergrundfarbe*/
	width: 35px; 	/*breite*/
	height: 35px;	/*höhe*/
	border-radius: 50%;  /*Abgerundete Ecken, in diesem Beispiel 50% für einen Kreis*/
	text-align: center;   /*der Text wird zentriert*/
	border: 3px solid rgba(255,255,255,0.7);   /*rahmenfarbe*/
	z-index: -6;
}


/*---Logogröße JPM---*/
.logoklasse{
width:35%;
height:auto;
}

/*---Logogröße JPM Hochformat Handy---*/
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (orientation: portrait)
  and (-webkit-min-device-pixel-ratio: 2)

{.logoklasse{
width:55%;
height:auto;
}}


/*---Welcome Box mit Button---*/
.welcome_box{
  position:absolute;
  background:rgba(255,255,255,0.7);
  border-radius: 18px;
  top:50%;
  left:50%;                          
  transform:translate(-50%,-50%);
  padding:35px;
  text-align:center;
  font-family:arial;
  font-size:1em;
  font-weight:normal;
  color:#777;
  z-index: -5;
}

.welcome_box button{
  background:tan;
  color:#fff;
  text-transform:uppercase;
  font-weight:bold;
  font-size:16px;
  border:none;
  padding:10px 30px;
}

.welcome_box button:hover{
  color:#fff;
  background:sienna;
  outline: 2px solid sienna;
  outline-offset: 2px;
}

.welcome_box button:focus {
  color:#fff;
  background:sienna;
  outline: 2px solid sienna;
  outline-offset: 2px;
}

/*---Überschrift Box---*/
.top_box{
  position: absolute;
  background:rgba(255,255,255,0.7);
  border-radius: 18px;
  top:10px;
  left:8em;
  right:8em;  
  height:3em; 
  text-align:center;
  font-family:arial;
  font-weight:600;
  letter-spacing: 0.3em;
  color:#663300;
  z-index: -5;
}



/*---Produkt Box---*/
.produkt_box{
  position: absolute;
  background:rgba(255,255,255,0.7);
  border-radius: 18px;
  top:5em;
  bottom:3em;
  left:8em;
  right:8em;  
  padding:1em;
  text-align:center;
  font-family:arial;
  font-weight:normal;
  color:#777;
  z-index: -5;
}