@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
:root {
  --primary-color: #A60311;
}

body {
  background: #202426;
  margin: 0;
  font-family: 'Poppins';
}

.navbar {
  background: #202426;
  padding: 1em;
}

.navbar .logo {
  text-decoration: none;
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1.2em;
}

nav {
  display: none;
}

.Gallery{
  width: 90%;
}

.image-container{
  width: 100%;
}

.image-container img{
  padding-left: 5%;
  padding-top: 3em;
  padding-bottom: 1em;
}

.image-container :hover{
  opacity: 90%;
  cursor: pointer;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: space-between;
}

.mobile-menu {
  
  cursor: pointer;
}



section {
  padding: 2em;
}




h1 {
  font-size: 3em;
  text-align: center;
  color: var(--primary-color);
  text-transform: uppercase;
}

h2{
  font-size: 3em;
  color: var(--primary-color);
  text-align: center;
  text-transform: uppercase;
  
}

h3{
  
  color: var(--primary-color);
  margin: 0em;
  text-transform: uppercase;
  
}



/*Slider*/



/*animation slider*/




/*Products*/

.Products-section {
  background-color: #202426;
  padding: 0px;
}

.Products-section li {
  background: #E1E1E1;
  text-align: center;
  padding: 1em 1em;
  width: 80%;
  margin: 0 auto 5em auto;
  border-radius: 1em;
}

.Products-section li img {
  width: 70%;
  height: 70%;
  border-radius: 1em;

}

.material-icons{
  padding-right: .5em;
}


.Kaufen{
  cursor: pointer;
  margin: 1em;
  background-color: var(--primary-color);
  border-radius: 0.5em;
}

.Products-section li a{
  color: black;
  
}

label {
  display: block;
  font-size: 1.2em;
  margin-bottom: .5em;
}

input, textarea {
  width: 100%;
  padding: .8em;
  margin-bottom: 1em;
  border-radius: .3em;
  border: 1px solid grey;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="submit"] {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  font-size: 1.3em;
  border: none;
  margin-bottom: 5em;
  border-radius: 5em;
  display: inline-block;
  width: unset;
  cursor: pointer;
}

iframe {
  width: 100%;
  height: 300px;
}

nav.menu-btn {
  display: block;
  
}

nav {
  position: fixed;
  z-index: 999;
  width: 100%;
  right: 0;
  top: 0;
  background: #202426;
  height: 100vh;
  padding: 1em;
}

ul.primary-nav {
  margin-top: 5em;
}

li a {
  color: var(--primary-color);
  text-decoration: none;
  display: block;
  padding-left: 0em;
  padding-bottom: 0.5em;
  padding-top:0.5em;
  font-size: 1.3em;
  text-align: center;
  text-transform: uppercase;
  
}

li a:hover {
  font-weight: bold;
}

.mobile-menu-exit {
  float: right;
  margin: .5em;
  cursor: pointer;
}


/*Contact*/

input.send-message-cta{
  text-align: center;
  background-color: var(--primary-color);
  margin-top: 1em;
  width: 100%;
}

label{
  margin-bottom: 1em;
  text-align: center;
  color: var(--primary-color);
  text-transform: uppercase;
}

/*Button Popup*/

.popup .overlay{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 0;
  height: 0;
  background: white;
  z-index: 1;
  display: none;
}

.popup .content{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(0);
  background: #E1E1E1;
  width: 90%;
  height: 700px;
  z-index: 2;
  text-align: center;
  padding:20px;
  box-sizing: border-box;
  opacity: 95%;

}

.Kaufen:Hover{
  opacity: 70%;
}

.Kaufen-btn{
  cursor: pointer;
  margin-top: 2em;
  padding: 1em;
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  text-transform: uppercase;
  letter-spacing: 1em;
}

.Groeße-format{
  cursor: pointer;
  margin-bottom: 1em;
  
}

.Product-format{
  cursor: pointer;
  margin-bottom: 1em;
  
}

.popup .close-btn{
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  background: white;
  color: black;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;

}

.popup.active .overlay{
  display: block;
}

.popup.active .content{
  transition: all 300ms ease-in-out;
  transform: translate(-50%,-50%) scale(1);
}



/*SELECT BUTTON*/

select{
  width: 100%;
  
  
}


@media only screen and (min-width: 768px) {
  .mobile-menu, .mobile-menu-exit {
    display: none;
  }
  .navbar .container {
    -ms-grid-columns: 180px auto;
    grid-template-columns: 180px auto;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
  }
  .navbar nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: none;
    position: unset;
    height: auto;
    width: 100%;
    padding: 0;
  }
  .navbar nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: none;
  }
  .navbar nav a {
    color: black;
    font-size: 1em;
    padding: .1em 1em;
  }
  .navbar nav ul.primary-nav {
    margin: 0;
  }
  .navbar nav li.current a {
    font-weight: bold;
  }
}

@media only screen and (min-width: 1080px) {
  .image-container img{
    height: 10%;
    width: 20%;
    float: left;
  }


  .container {
    width: 100%;
    margin: 1 auto;
  }
 
  .contact-section{
    padding-top: 10em;
  }

  
 
  
  

 
 

}
