@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');


body {
  background-color: whitesmoke; /* Inhaltshintergrund */
  margin: 0;
  padding: 0;
}


*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  
}
header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo
{
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}

#logoimg
{
    width: 200px;
}
.toggle
{
  position: relative;
  width: 60px;
  height: 60px;
  background: url(https://i.ibb.co/HrfVRcx/menu.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
}
.toggle.active
{
  background: url(https://i.ibb.co/rt3HybH/close.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;
}
.showcase
{
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
}
.showcase.active
{
  right: 300px;
}

.showcase video
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.overlay
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
}
.text
{
  position: relative;
  z-index: 10;
}

.text h2
{
  font-size: 6em;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}
.text a
{
    color: #fff;
    text-decoration: none;
}

.text img{
  padding-top: 20vh;
  width: 30%;
}

.text p{
    color: #fff;
    font-size: 2em;
}

h2{
  color: #626c20;
  font-size: 1.5em;
}

h3{
  color: #775533;
  font-size: 1.3em;
}

p{
  font-size: 1.2em;
  color: #7b858d;
}

#eintauchen{
  font-size: 4em;
  text-transform: uppercase;
  padding: 50px 20px;
  text-align: center;
}

#marktplatz4-allgemein{
  display: flex;
}

#marktplatz4-innen-img1{
  width: 50%;
  height: 50%;
}

#marktplatz4-innen-img2{
  width: 50%;
  height: 50%;
  margin-top: 150px;
  margin-left: -50px;
}

#maininhalt{
  width: auto;
  margin: 2% 5%;
}

#etk-img{
  margin: 0;
  
}

#etk-div{
  margin: 0;
  width: 100%;
}

#mobileImg{
  display: none;
}

h3 a{
  color: #775533;
  text-decoration: none;
}

h3 a:hover{
  color: #997755;
  text-decoration: none;
}





footer{
  background-color: #626c20;
  color: white;
}

footer h3{
color: #fff;
}

footer p{
  color: #fff;
}

i{
  width: 30px;
}

#footerLogo{
  width: 100%;
}

footer a{
  color: white
}

footer a:hover{
  color: #eaeaea;
}

footer a{
  text-decoration: none;
}

footer i{
  text-align: center;
}



span{
  color: #775533;
  font-weight: bold;
}

@media (max-width: 768px)
{
  .showcase,
  .showcase header
  {
    padding: 40px;
  }
  .text h2
  {
    font-size: 3em;
  }
  .text h3
  {
    font-size: 2em;
  }
  .text img{
    padding-top: 0vh;
    width: 100%;
  }

  #mobileImg{
    display: block;
    padding-bottom: 20%;
  }

  #computerImg{
    display: none;
  }

  #essen{
    padding-bottom: 40%;
  }

  #kaufen{
    padding-bottom: 40%;
  }

  #maininhalt{
    margin: 0;
    margin: 2% auto;
    margin-left: 5%;
  }

   #adresse-mobile{
    padding-top: 2%;
  }

  #mp4-footer{
    display: none;
  }

}