/* .... HERO .... */
#hero {
    position: relative;
  }
  #hero .flexbox {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      display: -ms-flexbox!important;
      display: flex!important;
  }
  #hero .flexbox .grid-container {
      display: flex;
      width: 100%;
      padding: 0 30px;
  }
  @media (min-width:769px) {
      #hero .flexbox .grid-container {
          padding: 0 40px;
      }
  }
  
  /* box vertical center */
  #hero .flexbox.box-left,
  #hero .flexbox.box-right,
  #hero .flexbox.box-center {
      -ms-flex-align: center!important;
      align-items: center!important;
  }
  /* box left */
  #hero .flexbox.box-left .grid-container {
      justify-content: flex-start;
  }
  /* box right */
  #hero .flexbox.box-right .grid-container {
      justify-content: flex-end;
  }
  /* box center */
  #hero .flexbox.box-center .grid-container {
      justify-content: center;
  }
  
  #hero img {
      width: 100%;
  }
  #hero > div:not(.box-below) .textbox {
    width: 400px;
    background: rgba(255,255,255,0.7);
  }
  @media (max-width:767px) {
    #hero div:not(.box-below) .textbox {
      display: none;
    }
  }
  #hero .text {
    padding: 20px;
    font-size: 1rem;
  }
  #hero h1,
  #hero h2,
  #hero h3,
  #hero h4,
  #hero .headline {
    margin: 0;
    padding: 7px 20px;    
    background: #fff;
    color: #555;
    font-weight: 400;
  }
  #hero h1 {
    font-size: 3rem;
  }
  #hero h2 {
    font-size: 2.6rem;
  }
  #hero h3 {
    font-size: 2.2rem;
  }
  #hero h4 {
    font-size: 2rem;
  }
  #hero .headline {
      font-size: 2.5rem;
  }
  
  /* textbox als Banner */
  #hero .flexbox.box-below {
      position: relative;
      top: inherit;
      right: inherit;
      bottom: inherit;
      left: inherit;
      background: #55c1cc;
  }
  #hero .box-below .textbox {
      width: 100%;
      padding: 20px 0 20px;
      text-align: center;
  }
  #hero .box-below h3 {
      padding: 0;
      margin-bottom: 10px;
      background: none;
      text-align: center;
      font-size: 2rem;
  }
  #hero .box-below .text {
      padding: 0;
      background: transparent;
      color: #fff;
      font-size: 1.5rem;
  }
  #hero .box-below p {
      margin-bottom: 0;
  }
  
  
  /* .... badge (noch nicht im Template integriert) .... */
  #hero .badge {
      position: absolute; 
      padding: 0;
      color: #fff;
      white-space: normal;
      hyphens: auto;
      line-height: 1.6rem;
      font-size: 1.2rem;
  }
  #hero .badge-right {
      top: -10px;
      right: 5%;
      transform: rotate(8deg);
  }
  #hero .badge-left {
      top: -10px;
      left: 5%;
      transform: rotate(-8deg);
  }
  #hero .badge-rightbottom {
      bottom: -40px;
      right: 5%;
      transform: rotate(8deg);
  }
  #hero .badge-leftbottom {
      bottom: -40px;
      left: 5%;
      transform: rotate(-8deg);
  }
  #hero .badge p {
      margin: 0;
      line-height: 1.8rem;
  }
  #hero .badge span,
  #hero .badge a:link, 
  #hero .badge a:visited {    
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;    
      width: 140px;
      height: 140px;
      border-radius: 70px;
      background: #56ada0;
      color: #fff;
      padding: 1.2rem;
  }
  
  @media (min-width:768px) {
      #hero .badge {
          line-height: 1.8rem;
          font-size: 1.35rem;
      }
      #hero .badge span,
      #hero .badge a:link, 
      #hero .badge a:visited {  
          width: 150px;
          height: 150px;
          border-radius: 75px;
      }
  }
  @media (min-width:1600px) {
      #hero .badge-right {
          top: -20px;
          right: 15%;
      }
      #hero .badge-left {
          top: -20px;
          left: 15%;
      }
      #hero .badge-rightbottom {
          right: 15%;
      }
      #hero .badge-leftbottom {
          left: 15%;
      }
  }