/* Globale Definitionen
---------------------------------------------------------------------------------------------- */
* {
    box-sizing:border-box;
  }
   
  html, body {
      height: 100%;
  }
   
  img {
    max-width: 100%;
    height: auto;
    width: auto;
  }
   
  @-moz-document url-prefix() {  
      img{
          width: 100%;
          max-width: 100%;
      }
  }
  
  
  
  /*---------- general ----------
  */
  
  body {
      font-family: 'Open Sans', Helvetica, Arial, sans-serif;
      font-size: 15px;
      color: #333;
      background-color: #fefefe;

      margin: 0;
      height: 100%;
      overflow: hidden;
  }

  #wrap {
      width: 100%;
      margin: 0 auto 0 auto;
      /* transition: width .5s; */
  }
  
  .container-fluid {
      padding: 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
      font-family: 'Open Sans', Helvetica, Arial, sans-serif;
      color: #ad975d;
      font-weight: 700;
      margin-bottom: 25px;
  }
  
  a {
      text-decoration: none;
      color: brown;
  }
  
  a:hover {
      text-decoration: none;
      font-weight: 700;
      color: brown;
  }

  ul {
      padding: 0;
      margin: 0;
  }

  li {
      list-style-type: none;
  }

  hr {
      border: 3px solid #ad975d;
      margin: 0 0 20px 0;
  }



  /*---------- header ----------
  */

  #header {
      position: relative;
      width: 100%;
      height: 130px;
      padding: 0 30px;
  }

  #logo {
      display: block;
      margin-top: 40px;
      height: 60px;
      width: auto;
      float: left;
      padding-right: 15px;
  }

  #quote {
      /* border-left: 1px solid #ad975d; */
      padding: 25px 0 20px 40px;
      margin: 20px 0 0 20px;
      float: left;
  }

  #quote strong {
      font-size: 20px;
  }

  #address {
      float: right;
  }

  #address p,
  #address-small p {
      float: left;
      margin: 25px 0 0 20px;;
  }

  #address-small {
      display: none;
  }



  /*---------- menu-content ----------
  */

  #menu-content {
      display: block;
      position: relative;
      height: 1000px;
      overflow: hidden;
      width: auto;
      transition: width .5s;
  }

  #menu-content ul {
      height: 400px;
      margin: 0;
      padding: 0;
      width: 100%;
      text-align: left;
      position: absolute;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
  }

  .menupoints {
      z-index: 0;
      float: left;
      overflow: hidden;
      position: relative;
      border-bottom-width: 5px;
      border-bottom-style: solid;
      transition: border-color .3s ease-in-out;
      width: 200px;
      height: 520px;
      margin-left: auto;
      margin-right: auto;
      transition: height .7s,
                    width .5s;
  }

  .menu-box-link {
      width: 200px;
      height: 390px;
      margin-top: 0;
      display: block;
      position: relative;
  }

  .menu-box-item {
      border-bottom: 5px solid #999;
      background-color: #fefefe;
  }

  .menu-box-item:hover {
      border-bottom: 5px solid #ad975d;
}

  .menu-box-image {
      display: none;
      width: 200px;
      height: auto;
      position: absolute;
      z-index: 4999;
      /* top: -30px; */
      transition: transform .3s;
  }

  .menu-box-item:hover .menu-box-image {
      /* top: 0px; */
      transform: scale(1.1);
  }

  /*------ color overlay ------
  */
  .color-overlay {
      background-color: #fefefe;
      opacity: 1;
      z-index: 5002;
      height: 100%;
      clip-path: polygon(100% 54px, 0% 219px, 0% 100%, 100% 100%);
  }



  .menu-box-overlay {
      width: 200px;
      height: 390px;
      top: 120px;
      z-index: 5000;
      display: none;
      background-image: url('img/box-overlay-large.png');
      background-repeat: no-repeat;
      background-position: 0px 0px;
      position: absolute;
      transition: top .5s;
  }

  .menu-box-item:hover .menu-box-overlay {
      top: 180px;
  }

  .color-line {
      width: 200px;
      height: 390px;
      opacity: 0;
      z-index: 5001;
      position: absolute;
      background-image: url('img/box-overlay-hover-large.png');
      transition: opacity .3s ease-in-out;
  }

  .menu-box-item:hover .color-line {
      opacity: 1;
  }

  .menu-box-icon {
      position: absolute;
      top: 100%;
      left: 50%;
      z-index: 5003;
      width: 50px;
      height: 50px;
      margin-left: -25px;
  }

  .icon {
      top: 0;
  }

  .icon-hover {
      position: absolute;
      z-index: 5004;
      opacity: 0;
      width: 50px;
      height: 50px;
      transition: opacity .3s ease-in-out;
  }

  .menu-box-item:hover .icon-hover {
      opacity: 1;
}

  .menu-box-headers {
      color: #333;
      top: 118%;
      z-index: 5004;
      display: block;
      text-align: center;
      position: absolute;
      left: 50%;
      transform: translate(-50%);
  }


  /*----- dropdown -----
  */

 .dropdown {
      top: 18%;
      margin-top: 12px;
      text-align: center;
      z-index: 5005;
      opacity: 0;
      position: relative;
      transition: opacity .3s ease-in-out;
  }

  .dropdown a {
      line-height: 25px;
      width: 200px;
      position: absolut;
  }

  .dropdown br {
      margin-bottom: 18px;
  }

  .menu-box-item:hover .dropdown {
      opacity: 1;
  }

  .menupoints:hover {
      height: 710px;
  }


  .new-row {
      display: none;
  }



  /*  @media, media-queries
---------------------------------------------------------------------------------------------------------------------------------------- */
 
/*  @media: Breakpoint Large (lg)»
---------------------------------------------------------------------------------------------- */
@media (max-width: 1200.98px)  {
 
    /* body {
        background-color: lightgreen;
    } */

    #header {
        padding: 0 30px;
    }

    .menupoints {
        width: 160px;
        height: 450px;
    }

    .menupoints:hover {
        height: 630px;
    }

    .menu-box-link {
        width: 160px;
    }

    .menu-box-icon {
        top: 84%;
    }

    .icon {
        top: 0;
    }

    .menu-box-headers {
        top: 102%;;
    }

    .menu-box-item:hover .menu-box-overlay {
        top: 140px;
    }

    .menu-box-overlay {
        background-image: url(img/box-overlay.png);
        top: 90px;
    }

    .color-line {
        background-image: url(/img/box-overlay-hover.png);
    }

    .dropdown {
        top: 7%;;
    }

   
} /* end @media - Breakpoint Large (lg)» */
 
 
/*  @media: Breakpoint «Medium (md)»
---------------------------------------------------------------------------------------------- */
@media (max-width: 991.98px)  {
 
    /* body {
        background-color: lightgoldenrodyellow;
    } */

    body {
        overflow: visible;
    }

    #header {
        height: 120px;
    }

    #logo {
        margin-top: 30px;
    }

    #quote {
        margin-top: 10px;
        padding-left: 25px;
    }

    #address p {
        margin-top: 15px;
    }

    #menu-content {
        height: 1340px;
        margin: auto;
    }

    .menupoints {
        width: 200px;
        height: 630px;
        border: none;
        margin-bottom: 40px;
    }

    .menupoints:hover {
        border: none;
    }

    .menu-box-image {
        top: 0px;
    }

    .menu-box-overlay {
        top: 80px;
    }

    .menu-box-overlay {
        background-image: url(img/box-overlay-large.png);
    }

    .menu-box-link {
        width: 200px;
    }

    .color-line {
        background-image: url(/img/box-overlay-hover-large.png);
    }

    .menu-box-item:hover .menu-box-overlay {
        top: 80px;
    }

    .new-row {
        display: block;
        width: 100%;
        height: 0px;
    }

    .dropdown {
        opacity: 1;
    }
 
} /* end @media - Breakpoint «Medium (md)» */
 
 
 
/*  @media: Breakpoint «Small (sm)»
---------------------------------------------------------------------------------------------- */
@media (max-width: 767.98px) {
 
    /* body {
        background-color: orange;
    } */

    /* #wrap,
    #menu-content {
        width: 100%;
    } */

    #header {
        height: 235px;
        margin-top: 50px;
    }

    #logo,
    #quote,
    #address-small {
        float: none;
        margin: auto;
    }

    #address {
        display: none;
    }

    #address-small p {
        margin-top: 10px;
    }

    #logo {
        height: 65px;
        padding: 0;
    }

    #quote {
        text-align: center;
        padding: 0;
        margin-top: 45px;
    }

    #address-small {
        display: flex;
        justify-content: space-around;
        margin-top: 35px;
    }

    #address-small p {
        text-align: center;
        float: none;
    }

    .xs-break-br {
        display: none;
    }

    .menupoints {
        width: 160px;
    }

    .menu-box-link {
        width: 100%;
    }

    .menu-box-overlay {
        background-image: url(img/box-overlay.png);
    }

    .color-line {
        background-image: url(/img/box-overlay-hover.png);
    }
 
} /* end @media - Breakpoint «Small (sm)» */
 
 
 
 /*  @media: Breakpoint «X-Small (xs)»
---------------------------------------------------------------------------------------------- */
@media (max-width: 575.98px) {
 
    /* body {
        background-color: lightcoral;
    } */

    /* #wrap,
    #menu-content {
        width: 300px;
    } */

    #header {
        height: 245px;
    }

    #logo {
        height: 55px;
    }

    .xs-break-br {
        display: block;
    }

    #menu-content {
        margin-top: 60px;
        height: 1660px;
    }

    .menupoints {
        width: 100%;
        height: 220px;
        margin-bottom: 60px;
    }

    .menupoints:first-of-type {
        height: 310px;
    }

    .menupoints:hover {
        height: 220px;
    }

    .menupoints:first-of-type:hover {
        height: 310px;
    }

    .menu-box-link {
        height: 20px;
    }

    .menu-box-image,
    .menu-box-overlay {
        display: none !important;
    }

    .color-overlay {
        display: none;
    }

    .menu-box-icon,
    .menu-box-headers {
        top: 0;
    }

    .menu-box-headers {
        margin-top: 65px;
    }

    .icon {
        opacity: 0;
    }

    .icon-hover {
        opacity: 1;
    }

    .dropdown {
        margin-top: 95px;
    }

    .dropdown br {
        margin-bottom: 27px;
    }
 
} /* end @media - Breakpoint «X-Small (xs)» */