*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
 body {
    height: 100%;
    margin: 0;
    font-size: 100%; /* Browserdefault, 16px*/
    font-family: 'Oswald', sans-serif;
    overflow-x: hidden;
    background: #ECECEC;
}
h1 {
    font-size: 26px;
    font-size: 1.625rem;
}
h2 {
    font-size: 22px;
    font-size: 1.375rem;
}
p {
    font-size: 14px;
    font-size: 0.875rem;
}

/* NAV-SIDEBAR */
#nav {
    width: 290px;
    height: 100%;
    position: fixed;
    padding-top: 130px;
    padding-left: 50px;

    top: 0;
    z-index: 666;
    /*border-right: 1px solid #333333;*/
    zoom: 1;
    filter: alpha(opacity=70);
    opacity: 0.7;
    background: white;
}
#nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #333333;
}
#nav li {
    color: #333333;
    font-size: 1em;
}
#nav li a {
    display: block;
    padding: 10px 10px;
    color: #333;
    text-decoration: none;
}
#nav li a.active {
    color: #B81F0F;
    text-decoration: underline;
    background: #ffffff;
}
#nav li a:hover {
    color: #B81F0F;
}
.logo {
    width: 239px;
    margin-top: 10em;
}
.logo a{
    text-decoration: none;
    color: #000000;
}
.name {
    padding: 10px;
    background: #ffffff;
}

.name h1{
    color: #333333;
    font-size: 1.8em;

}
.name small {
    color: #888888;
    font-weight: normal;
    font-size: 0.6em;
}
.contact {
    margin-top: 40px;
    color: #888888;
    font-size: 12px;
    padding: 10px;
    background: #ffffff;
}
.contact a{
    color: #B81F0F;
    text-decoration: none;
    font-size: 14px;
}

.contact a:hover{
    text-decoration: underline;
}
.content {
    /*padding: 125px 0 0 290px;*/
    width: 80%;
    margin-left: 290px;
}

.txt_impressum {
    margin-top: 371px;
    height: 343px;

}
.txt_impressum p, h2{
    padding: 40px 50px 10px;
}
.txt_impressum strong {
    color: #B81F0F;
}
.txt_impressum a{
    color: #333333;
}

img.bg {
    /* Set rules to fill background */
    min-height: 100%;
    min-width: 1024px;

    /* Set up proportionate scaling */
    width: 100%;
    height: auto;

    /* Set up positioning */
    position: fixed;
    top: 0;
    left: 0;
}

@media screen and (max-width: 1024px) { /* Specific to this particular image */
    img.bg {
        left: 50%;
        margin-left: -512px;   /* 50% */
    }
}

hr {
    margin-top: 20px;
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid #ccc;
}

/** fotorama ->> thumbnails **/
.fotorama__thumb-border {
    border-color: #B81F0F !important;
}

/* Cookie Bar */
.cookie-bar {
    position: fixed;
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    height: auto;
    text-align: center;
    line-height: 30px;
    background: #000000;
    color: white;
    font-size: 14px;
    font-weight: 100;
    transition: 0.8s;
    -webkit-animation: slideIn 0.8s;
            animation: slideIn 0.8s;
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
            
  }

  .cookie-bar .message {
    white-space: nowrap;
    max-width: 10rem;
  }
  @media (max-width: 767px) {
    .cookie-bar .message {
      display: none;
    }
  }
  .cookie-bar .mobile {
    display: none;
  }
  @media (max-width: 767px) {
    .cookie-bar .mobile {
      display: inline-block;
    }
  }

  .message a {
      color: #B81F0F;
  }
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: translateY(-50px);
              transform: translateY(-50px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  
  @keyframes slideIn {
    0% {
      -webkit-transform: translateY(-50px);
              transform: translateY(-50px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  .close-cb {
    border: none;
    color: white;
    background: #000000;
    position: absolute;
    display: inline-block;
    right: 10px;
    top: 0;
    cursor: pointer;
    border-radius: 3px;
    box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.2);
    line-height: 30px;
    height: 30px;
    width: 30px;
    font-size: 16px;
    font-weight: bold;
  }
  .close-cb:hover {
    background: #333333;
  }
  
  .checkbox-cb {
    display: none;
  }
  .checkbox-cb:checked + .cookie-bar {
    -webkit-transform: translateY(250px);
            transform: translateY(250px);
  }