@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css);
/* ************************
Index
    

        
************************ */



/* *********************** 
        1. Global 
        *********************** */


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;

}

body,
html {
  min-width: 100vw;
  min-height: 100vh;
  font-family: 'Roboto', sans-serif;
  color: white;
  background: rgba(0, 0, 0, 0.8);
}

body {
  opacity: 1;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

body.fade {
  opacity: 0;
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
}

/* *********************** 
        1.1 Global - Background´s 
        *********************** */

#index {
  background: url(../img/main.jpg) no-repeat 50% 50% fixed;
  background-size: cover;
}

#brauwerk {
  background: url(../img/brauwerk.jpg) no-repeat 50% 50% fixed;
  background-size: cover;
}

#produkte {
  background: url(../img/produkte.jpg) no-repeat 50% 50% fixed;
  background-size: cover;
}

#service {
  background: url(../img/service.JPG) no-repeat 50% 50% fixed;
  background-size: cover;
}

#preise {
  background: url(../img/cash.jpg) no-repeat 20% 20% fixed;
  background-size: cover;
}

#bezug {
  background: url(../img/mao.jpg) no-repeat 50% 50% fixed;
  background-size: cover;
}

#offen {
  background: url(../img/clock.jpg) no-repeat 50% 50% fixed;
  background-size: cover;
}

#kontakt {
  background: url(../img/kontakt.JPG) no-repeat 50% 50% fixed;
  background-size: cover;
}

#event {
  background: url(../img/event.jpg) no-repeat 50% 50% fixed;
  background-size: cover;
}

  
/* *********************** 
        Layout 
        *********************** */

.content {
  grid-area: content;
  justify-content: center;
  overflow: auto;
  font-size: calc(1rem + .5vw);
}

.sidebar {
  grid-area: sidebar;
  background-color: rgba(0, 0, 0, 0.7);
  height: 100vh;
}

.footer {
  grid-area: footer;
}

.container {
  font-size: 1.5rem;
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-areas:
    "sidebar content"
    "sidebar content"
    "sidebar content";
  grid-template-columns: 300px 1fr;
  grid-template-rows: 1fr 1fr 1fr;
}

.content,
.sidebar,
.footer {
  padding: 1em;
}

.burger {
  display: none;
}

.burger div {
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: rgba(226, 226, 226);
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
  -moz-transform: rotate(-45deg) translate(-5px, 6px);
  -ms-transform: rotate(-45deg) translate(-5px, 6px);
  -o-transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
  -webkit-transform: rotate(45deg) translate(-5px, -6px);
  -moz-transform: rotate(45deg) translate(-5px, -6px);
  -ms-transform: rotate(45deg) translate(-5px, -6px);
  -o-transform: rotate(45deg) translate(-5px, -6px);
}

nav {
  display: block;
  position: fixed;
  padding: 105px 0 0 0;
}

nav .first {
  margin: 0 0 20px 0;
  padding: 0;
}

nav .second {
  margin: 0 0 0 50px;
  padding: 0;
}

nav .third {
  margin: 20px 0 0 0;
  padding: 0;
}

nav li {
  list-style: none;
  margin: 15px 0;
}

nav li a {
  color: white;
  font-weight: 900;
  font-size: 1.7rem;
  opacity: 0.8;
  text-decoration: none;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

nav .sub-link {
  margin: 0 0 5px 0;
  padding: 0;
  font-weight: 100;
}

nav .sub-link a {
  font-size: 1rem;
  font-weight: 100;
}

li a:hover {
  color: #2b99ff;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.sep1 {
  color: #fff;
  width: 248px;
  margin: 0 0 5px 0;
}

.sep2 {
  color: #fff;
  width: 248px;
  margin: 10px 0 0 0;
}

.hero {
  max-width: 1280px;
  margin: 25px auto;
  text-align: center;
}

.active a {
  color: #2b99ff;
  opacity: 1;
}

.footer {
  margin: 255px 0 0 -25px;
  width: 300px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.footer li {
  padding: 0 10px;
}

.footer li a {
  font-size: 1rem;
  text-decoration: none;
  color: rgba(172, 172, 172, 0.8);
}

.footer li a:hover {
  color: #2b99ff;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.hero img {
  margin: 0;
  max-width: 80%;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 400;
  margin: 30px 0 0 0;
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
  color: white;
}

.action-btn {
  display: inline-block;
  text-decoration: none;
  color: white;
  border: solid 3px rgba(43, 153, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.3);
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin: 1rem 0;
  transition: 0.4s;
}

.action-btn:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.news-wrapper {
  display: inline-block;
  margin: 20px auto 50px auto;
  padding: 20px 50px;
  max-width: 90%;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 2px;
  margin: 0 auto;
}

.news-wrapper p{
  margin: 20px 0 0 0;
  font-size: 1.2rem;
  font-weight: 300;
}
.news-wrapper .bonus{
  text-align: center;
  font-size: 1.6rem;
  margin: -10px 0 10px 0;
}

.news p {
  display: inline-block;
  margin: 20px 0 0 0;
  font-size: 1rem;
}

.news-wrapper a{
  text-decoration: none;
  color: white;
}

.news-img{
  display: inline-block;
  min-width: 150px;
  height: 400px;
}

.brauwerk {
  width: 100%;
  align-content: center;
  text-align: center;
}

.brauwerk-content {
  display: grid;
  margin: 120px auto 0 auto;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 1em;
  grid-row-gap: 1em;
}

.brauwerk-content2 {
  display: grid;
  margin: 120px auto 0 auto;
  grid-template-columns: repeat(2, 300px);
  grid-row-gap: 40px;
}

@media (max-width: 32em) {
  .brauwerk-content {
    grid-template-columns: repeat(1, 1fr);

  }

  .brauwerk-content2 {
    grid-template-columns: repeat(1, 1fr);
    margin: 0 auto 0 auto;
  }
}

@media (min-width: 54em) {
  .brauwerk-content {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 65em) {
  .brauwerk-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.brauwerk-content-card {
  padding: 10% 0 0 0;
  margin: 0 10% 0 5%;
  min-width: 320px;
}
.brauwerk-content-card2 {
  padding: 0;
  margin: 0;
  width: 250px;
}

@media (max-width: 32em) {
  .brauwerk-content-card:not(:last-child) {
    margin-bottom: 1em;
  }
}

.brauwerk-content-info {
  text-align: center;
  height: 100%;
  width: 100%;
  padding: 1em 1em;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 2px;
}
.brauwerk-content-info2 img {
  text-align: center;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
.brauwerk h2 {
  font-size: 2rem;
  margin: 15px 0 0 0;
}

.brauwerk p {
  font-size: 0.9rem;
  font-weight: 100;
  margin: 15px 0 0 0;
}

.product {
  display: grid;
  overflow: hidden;
  margin: 0 auto 0 auto;
  width: 100%;
}

.brauwerk-product {
  display: inherit;
  margin: 80px auto 0 auto;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 32em) {
  .brauwerk-product {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 54em) {
  .brauwerk-product {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 65em) {
  .brauwerk-product {
    grid-template-columns: repeat(2, 1fr);
  }
}

.brauwerk-product-card {
  margin: 0 50px;
  width: 250px; 
}

@media (max-width: 32em) {
  .brauwerk-product-card:not(:last-child) {
    margin-bottom: 1em;
  }
}

.brauwerk-product-info {
  width: 100%;
  margin: 60px 0;
}

.brauwerk-product img {
  width: 250px;
}

.rent {
  display: inline-block;
  position: relative;
  max-width: 800px;
  margin: 120px 20px 0 20px;
  padding: 20px;
  background-color: rgba(0, 0, 0, .7);
  border-radius: 2px;
}

.info-rent {
  font-size: 1.2rem;
  font-weight: 200;
}

.rent table {
  margin: 20px;
  border-collapse: collapse;
}

.table td {
  padding: 20px 10px 0 10px;
  
}

.rent tbody .cell1 {
  padding-bottom: 20px;
  border-right: #fff 3px solid;
  font-size: 1.1rem;
  text-align: left;
}

.rent tbody .cell2 {
  padding-bottom: 20px;
  font-size: 1.1rem;
  text-align: left;
}




.event {
  display: inline-block;
  position: relative;
  max-width: 800px;
  margin: 120px auto 0 auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, .7);
  border-radius: 2px;
}

.info-event {
  font-size: 1.2rem;
  font-weight: 200;
}

.event table {
  border-collapse: collapse;
}

.table td {
  padding: 20px 20px 0 20px;
  
}
.event .table td{
  padding: 0 20px 0 20px;
}
.event tbody .cell1 {
  justify-content: center;
  align-items: center;
  border-right: #fff 3px solid;
  font-size: 1.1rem;
  text-align: left;
  width: 110px;
}

.event tbody .cell2 {
  justify-content: center;
  font-size: 1.1rem;
  text-align: left;
  margin: 0 0 0 40px;
  height: 50px;
}

.event tbody .cell2 a{
  font-size: 0.7rem;
}

.event tbody .cell3 {
  display: block;
  border: solid 1px;
  background-color: transparent;
  width: 100px;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  transition: all 0.5s;
  font-size: 1.1rem;
  margin: 0 0 0 20px;
}
.event tbody .cell3:hover{
  background: rgba(43, 153, 255, 0.5);
  transition: all 0.5s;
}
.event tbody .cell2-1{
  font-size: 0.8rem;
  text-align: left;
}

.star{
  font-size: 1rem;
 
}

.bonus {
  float: left;
  font-size: 0.8rem;
}

.bonus1 {
  float: left;
  font-size: 0.8rem;
}

.bonus2 {
  float: right;
  font-size: 0.8rem;
}

.pay {
  display: inline-block;
  margin: 120px 20px 0 20px;
  padding: 20px;
  background-color: rgba(0, 0, 0, .699);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.pay table {
  margin: 20px;
  border-collapse: collapse;
  font-size: 1.1rem;

}


.pay tbody .cell1 {
  padding-bottom: 20px;
  border-right: #fff 3px solid;
  border-collapse: collapse;
  text-align: left;
}

.pay tbody .cell2 {
  padding-bottom: 20px;
  border-right: #fff 3px solid;
  border-collapse: collapse;
  text-align: left;

}

.pay tbody .cell3 {
  padding-bottom: 20px;
  text-align: left;
}
.pfand {
  font-size: 0.8rem;
  padding-left: 7Spx;
}

.capi{
  font-weight: 900;
  font-size: 1.2rem;
}

.source {
  display: inline-block;
  margin: 120px 20px 0 20px;
  padding: 20px;
  background-color: rgba(0, 0, 0, .699);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.source table {
  margin: 20px;
  border-collapse: collapse;
  font-size: 1.1rem;
  overflow-y: auto;

}

.source tbody .cell1 {
  padding-bottom: 20px;
  border-right: #fff 3px solid;
  text-align: left;
}

.source tbody .cell2 {
  padding-bottom: 20px;
  border-right: #fff 3px solid;
  text-align: left;
}


.open {
  display: inline-block;
  position: fixed;
  margin: 120px 20px 0 20px;
  padding: 20px;
  background-color: rgba(0, 0, 0, .699);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.open table {
  margin: 20px;
  border-collapse: collapse;
  font-size: 1.1rem;
}


.open tbody .cell1 {
  padding-bottom: 20px;
  border-right: #fff 3px solid;
  text-align: left;
}

.open tbody .cell2 {
  padding-bottom: 20px;
  border-right: #fff 3px solid;
  text-align: left;

}

.open tbody .cell3 {
  padding-bottom: 20px;
  text-align: left;
}

.bonus3{
  font-size: 1rem;
  
}

.bonus3 a{
  margin: 0 0 0 4px;
  font-size: 1.2rem;
  text-decoration: none;
  color: #2b99ff;
}

.event p {
  vertical-align: middle;
  text-align: center;
  margin:  0;
  font-size: 6rem;
}

.contact{
  margin: 50px auto 0 auto;
 
}

.adresse{
  position: relative;
  width: 250px;
  margin: 0 auto;
  padding: 15px;
  background: rgba(127, 127, 127, .299);
  border-radius: 2px;
  font-size: 1rem;
  text-decoration: none;
  color: white;
  bottom: 0;
  text-align: center;
}



fieldset {
  border: none;
  margin: 120px auto 0 auto;
}

fieldset p{
  margin: -30px 0 0 0;
}

fieldset .nachricht{
  margin: 0;
}

.contact input {
  background: rgba(127, 127, 127, .299);
  border-radius: 3px;
  border: none;
  height: 50px;
  margin: 20px;
  padding: 10px;
  width: 100%;
  color: #fff;
}

.contact textarea {
  background: rgba(127, 127, 127, .299);
  border-radius: 3px;
  border: none;
  height: 200px;
  margin: 0 20px;
  padding: 10px;
  width: 100%;
  color: #fff;
}


input .contact-btn {
  width: 100%;
  margin: 0 0 30px 0;
}


.contact-form {
  max-width: 600px;
  margin: -100px auto 0 auto;
}


.impressum {
  display: block;
  position: fixed;
  height: 100vh;
  font-size: .8em;
  font-weight: 100;
  margin: -30px 0;
  padding: 20px 20px 40px 20px;
  color: #fff;
  background-color: rgba(0, 0, 0, .699);
  overflow-y: scroll;
}

.impressum a {
  color: #2da6db;
}

.dsgvo {
  display: block;
  position: fixed;
  height: 100%;
  font-size: .8em;
  font-weight: 100;
  padding: 20px 20px 40px 20px;
  margin: -30px 0;
  color: #fff;
  background-color: rgba(0, 0, 0, .699);
  overflow-y: scroll;
}

.dsgvo a {
  color: #2da6db;
}

/* *********************** 
        6. Media-Queries
        *********************** */

@media screen and (max-width:768px) {

  .sidebar {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    z-index: 9999;
    grid-area: sidebar;
    background-color: rgba(0, 0, 0, 1);
    height: 100vh;
  }

  nav {
    padding: 0 0 0 0;
  }

  .footer {
    margin: 35px 0 0 -25px;
    width: 300px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }

  .burger {
    display: block;
    position: fixed;
    width: 30px;
    top: 10px;
    right: 10px;
    z-index: 9999;
  }

  .nav-active {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
  }

  footer,
  footer ul {
    width: 100vw;
    justify-content: space-evenly;
  }

  .content {
    margin: 0 0 0 -300px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .news-wrapper {
    margin: 20px 0 50px 0;
    padding: 20px 10px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 2px;
  }

  .news-header {
    font-size: 2rem;
    color: red;
    text-decoration: underline;

  }

  .brauwerk-content {
    margin: 0;
  }

  .brauwerk-content-card {
    padding: 0;
    margin: 0 auto;
    min-width: 250px;
  }

  .brauwerk h2 {
    font-size: 1.5rem;
    margin: 15px 0 0 0;
  }

  .brauwerk p {
    font-size: 0.7rem;
    font-weight: 100;
    margin: 15px 0 0 0;
  }

  .product {
    overflow-y: auto;
  }

  .rent {
    width: 98%;
    margin: 40px auto 20px 5px;
    padding: 0;
  }

  .info-rent {
    font-size: 1rem;
    font-weight: 200;
    text-align: center;
    margin: -10px 0 0 0;
    padding: 0 5px;
  }

  .info-rent p {
    font-size: 0.9rem;
    margin: 0 5px;
  }

  .rent .bonus p {
    margin: 0 0 10px 0;
  }

  .pay {
    margin: 40px 0 0 0;

  }

  .pay table {
    font-size: 0.9rem;
  }

  .cell3 {
    font-size: 0.6rem;
  }

  .pay .cell1 {
    padding: 0 10px 0 0;
  }

  .source {
    margin: 40px 0 0 0;
    width: 90%;
  }

  .source table {
    font-size: 0.9rem;
  }

  .source table img {
    width: 30px;
    margin: 0 0 20px 0;
  }

  .open {
    width: 90%;
    margin: 40px 0 0 0;
  }

  .open table {
    font-size: 0.9rem;
  }

  .event p {
    font-size: 3rem;
  }

  .galerie p {
    font-size: 3rem;
  }





}

@media screen and (max-width:768px){
  .pay{ 
  width: 95%;
}
.source {
  padding: 0;
}
}

