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

*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  /*Für Navigation Background Farbe*/
  /*background-color: rgba(8, 27, 41, 1);*/
}
/*Header*/
header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  color: #03a9f4;
  justify-content: space-between;
  align-items: center;  
}
/*HUME Logo*/
header .logo
{
  max-width: 10%;
  max-height: 30%;
}
/*HUME Logo mobile Ansicht*/
@media screen and (max-width: 801px) {
  header .logo
  {
    max-width: 25%;
    max-height: 50%;
  }
  }
/*Button Navigation Bar */
.toggle
{
  position: relative;
  width: 80px;
  height: 60px;
  background: url(https://i.ibb.co/HrfVRcx/menu.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
  filter: brightness(0.8) sepia(100) saturate(100000%) hue-rotate(311deg);
}

/*footer*/
.footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  background-color: #03a9f4;
  opacity: 0.6;
  text-align: center;
}

.feedback-input:focus { border:2px solid #03a9f4; }
/*Button Navigation Bar Aktiv (X Icon)*/
.toggle.active
{
  background: url(https://i.ibb.co/rt3HybH/close.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;
}

.backGround {
  position: absolute;
  background-size: cover;
  width: 100%;
  right: 2px;
  object-fit:cover;
}

/*Video CSS Index Seite Overlay*/
.showcase
{
  position: absolute;
  right: 0;
  width: 100%;
  opacity: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
}
/*Video CSS Index Seite Menübar aktiv*/
.showcase.active
{
  right: 230px;
}
/*Video CSS Index Seite*/
.showcase video
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: 0.8; */
}
/*Global Text CSS*/
.text
{
  position: fixed;
  margin-top: 20%;
  left: 40%;
  z-index: 10;
}
/**/
.text a:hover
{
  letter-spacing: 6px;
}
/*Hintergrund von Navigationbar*/
.menu
{
  position: absolute;
  top: 0;
  right: 0;
  width: 230px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  background-color: rgb(8, 27, 41,1);
}
.menu.active {
  background-color: rgb(8, 27, 41,1);
}
/**/
.menu ul
{
  visibility: hidden;
  position: relative;
}
/**/
.menu.active ul
{
  visibility: visible;
}
/**/
.menu ul li
{
  list-style: none;
}
/**/
.menu ul li a
{
  text-decoration: none;
  font-size: 24px;
  color: rgba(255,203,28,10.1);
}
/**/
.menu ul li a:hover
{
  color: #03a9f4; 
}
@media (max-width: 991px)
{
.showcase,
.showcase header
  {
  padding: 10px;
  }
}
/* Datenschutz und Kontakt Text */
.datenschutzKontakt 
{
  text-align: center;
  position: relative;
  left: 50%;
  right: 50%;
  color: #fff;
  width: 70%;
  transform: translate(-50%);
}
/* Impressum Text */
.impressum 
{
  text-align: center;
  position: relative;
  left: 50%;
  right: 50%;
  color: #fff;
  width: 70%;
  margin-top: 13%;
  transform: translate(-50%);
}
/* Impressum Text mobile Ansicht*/
@media screen and (max-width: 801px) {
.impressum 
 {
  padding-top: 200px;
  text-align: center;
  position: relative;
  left: 50%;
  right: 50%;
  color: #fff;
  width: 70%;
  margin-top: 13%;
  transform: translate(-50%);
 }
}
/* Vision Text mobile Ansicht*/
@media screen and (max-width: 801px) {
  .visionText
   {
    padding-top: 200px;
    text-align: center;
    position: relative;
    left: 50%;
    right: 50%;
    color: #fff;
    width: 70%;
    max-height: 50%;
    margin-top: 13%;
    transform: translate(-50%);
   }
  }