/* TOP */
.orange-box {
  width: 100%;
  height: 400px;
  background-color: var(--orange); 

  position:relative
}

/* green info box on orange top */
.orange-box .info-box {
  width: 45%;
  max-width: 200px;
  height: auto;
  background-color: var(--green);

  position:absolute;
  top: 0;
  left: 50%;
}
.orange-box .info-box .line {
  width: 100%;
  padding: 0;
  margin: 0;
  border-top: 2px solid white;
}
.orange-box .info-box p {
  width: 100%;
  padding: .5em 0;
  margin: 0;
  text-align: center;
  color: var(--dark-blue);
}
.orange-box .info-box a {
  /* needed for iphone, because telephone becomes a link */
  color: var(--dark-blue);
}
@media (max-width: 520px) { 
  /* move eng button to the left (but only for home-page) */
  .button.language {
    float: left;
    padding-top: 0;
    padding-left: 15px;
  }
  .button.impressum {
    display: block;
  }
}

/* Quote on orange top */
.orange-box .quote {
  width: 35%;
  height: 100%;
  display: flex;
  padding-left: 5px;
  justify-content: center;
  align-content: center;
}
.orange-box .quote p {
  width: 100%;
  height: auto;
  display: block;
  margin: auto 0;

  text-align: center;
  color: white;
  font-family: 'Cursive';
  font-size: 15px;
  font-weight: 200;
}
@media (max-width: 655px) {
  /* quote dissapears if screen is too slim */
  .orange-box .quote {
    display: none;
  }
}

/* JWE header & girl */
.jwe-box {
  width: 100%;
  height: auto;
  background-color: var(--dark-blue); 
  padding: 5px 0;
}
.jwe-box img {
  width: auto;
  max-height: 70px;
  display: block;
  margin: auto;
}
.jwe-girl {
  width: auto;
  max-height: 350px;
  display: block;

  position:absolute;
  bottom:0;
  right: 50%;
}
@media (max-width: 850px) {
  .jwe-box img {
    width: 90%;
  }
  .jwe-girl {
    height: 60vw;
    min-height: 250px;
  }
}

/* Textbox (overwrite default because only one column needed & min-height is different) */
.text-box {
  min-height: 0;
}
.text-box p {
  width: 40%;
  min-width: 300px;
  height: auto;
  display: block;
  margin: auto;
}
.text-box ul {
  width: 40%;
  min-width: 320px;
  height: auto;
  display: block;
  padding-top: .5%;
  margin: auto;
  text-align: left;
}
.text-box li {
  padding: .5%;
}
@media (max-width: 850px) {
  .text-box {
    padding-bottom: 10px;
  }
  .text-box p {
    min-width: 300px;
  }
}

/* footer */
.blue-box {
  width: 100%;
  height: auto;
  display: block;
  padding: 3px 0;
  background-color: var(--light-blue); 
}
.blue-box p {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
  text-align: center;
  background-color: var(--light-blue); 
}
.blue-box a {
  text-decoration: underline;
}

/* Change menu style */
.menu-box {
  background-color: var(--dark-blue);
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}
.menu-box .home {
  font-weight: bold;
  font-family: 'Regular-Bold';
}
.menu-box .home:hover {
  background-color: var(--dark-blue);
  color: white;
}
@media (max-width: 850px) {
  .menu-box {
    border-top: 3px solid white;
    border-bottom: 3px solid white;
  }
}