/* Mobile Styles */
@media only screen and (max-width: 551px) {

.bild {
    padding: 2.5em;
}
	
	
.hoch_kleiner {
  width: 50%; 
  margin: 0 auto;
}

  h1 {
    left: 70px;
    top: 21px;
    font-size: 1.5em;
  }

	.info-item {
		top: 5em;
		width:90%;
		margin-top:7%;
		margin-left: 5%;
		margin-right: 5%;
		padding:2.em;
	}

#menuToggle {
  display: block;
  position: fixed;
  top: 20px;
  left: 2em;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/* Hamburger menu */
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: black;
  border-radius: 1px;

  z-index: 1;
  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

 /* Transform all the slices of hamburger into a crossmark. */
 #menuToggle input:checked ~ span {
   opacity: 1;
   transform: rotate(45deg) translate(-2px, -1px);
   background: #232323;
 }

#menuToggle {
  transform: scale(0.6);
}

 /* But let's hide the middle one. */
 #menuToggle input:checked ~ span:nth-last-child(3) {
   opacity: 0;
   transform: rotate(0deg) scale(0.2, 0.2);
 }

 /* the last one should go the other direction */
 #menuToggle input:checked ~ span:nth-last-child(2) {
   transform: rotate(-45deg) translate(0, -1px);
 }

/* Make this absolute positioned at the top left of the screen */
#menu{
  position: absolute;
  width: 500px;
  margin: -100px 0 0 -50px;
  padding: 100px;
  padding-top: 125px;

  background: rgba(255, 255, 255, 0.9); 
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(-100%, 0);

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li {
  padding: 12px 0;
  margin-left: 5px;
  font-size: 22px;
}

/* And let's slide it in from the left*/
#menuToggle input:checked ~ ul{
  transform: none;
}

.footer-container {
  bottom: 0em;
  padding: 12px;
}
.footer-container {
  background: white;
  bottom: 0em;
  padding: 1.5em;
}

	.info-item {
		top: 5em;
		width:90%;
		margin-top:7%;
		margin-left: 5%;
		margin-right: 5%;
		padding:2.em;
	}
}

/* ____________________________________________________________*/
/* Mobile Styles horizontal */
@media only screen and (min-width: 552px) and (max-width: 605px) {


h1 {
  left: 0px;
  top: 0px;
  padding-top: 12px;
  margin-left: 60px;
  font-size: 1.5em;
  width: 100%;
  background: white;
}


.content:first-child {
  margin-top: 4em;
}
	.info-item {
		top: 5em;
		width:90%;
		margin-top:7%;
		margin-left: 5%;
		margin-right: 5%;
		padding:2.em;
	}

.bild {
  width: 50%;
  margin: 0 auto;
  padding: 2.5em;
}

.bild > p {
  padding-top: 0.5em;
  font-size: 0.9em;
}

.hoch {
  width: 35%;
  margin: 0 auto;
}
	
.hoch_kleiner {
  width: 75%;
  margin: 0 auto;
}

.impressum {
  margin-left: 1em;
}

#menuToggle {
  display: block;
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/* Hamburger menu */
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: black;
  border-radius: 1px;

  z-index: 1;
  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

 /* Transform all the slices of hamburger into a crossmark. */
 #menuToggle input:checked ~ span {
   opacity: 1;
   transform: rotate(45deg) translate(-2px, -1px);
   background: #232323;
 }

#menuToggle {
  transform: scale(0.6);
}

 /* But let's hide the middle one. */
 #menuToggle input:checked ~ span:nth-last-child(3) {
   opacity: 0;
   transform: rotate(0deg) scale(0.2, 0.2);
 }

 /* the last one should go the other direction */
 #menuToggle input:checked ~ span:nth-last-child(2) {
   transform: rotate(-45deg) translate(0, -1px);
 }

/* Make this absolute positioned at the top left of the screen */
#menu{
  position: absolute;
  width: 500px;
  margin: -100px 0 0 -50px;
  padding: 100px;
  padding-top: 125px;

  background: rgba(255, 255, 255, 0.9); 
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(-100%, 0);

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li {
  padding: 12px 0;
  margin-left: 5px;
  font-size: 22px;
}

/* And let's slide it in from the left*/
#menuToggle input:checked ~ ul{
  transform: none;
}

.footer-container {
  bottom: 0em;
  padding: 12px;
}
}
