* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   }
  
   body{
     background-color: rgb(255, 255, 255);
     overflow-x: hidden;
   }
  
   a {
    text-decoration: none;
   }
  
   li {
    list-style: none;
   }

   #overlayer {
    width:100%;
    height:100%;  
    position:fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
    z-index: 2;
    background: white;
  }
  
  .preloader p{
    position: absolute;
    top: 80%;
    left: 50%;
    margin-left: -45px;
    width: 120px;
    height: 90px;
    text-align: center;
    color: #1d69e8;
    font-size: 24px;
    z-index: 3;
  }
  
  .loader {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    width: 30px;
    height: 30px;
    position: absolute;
    z-index:3;
    border: 4px solid #1d69e8;
    top: 50%;
    animation: loader 2s infinite ease;
  }
  
  .loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #1d69e8;
    animation: loader-inner 2s infinite ease-in;
  }
  
  @keyframes loader {
    0% {
      transform: rotate(0deg);
    }
    25% {
      transform: rotate(180deg);
    }
    50% {
      transform: rotate(180deg);
    }
    75% {
      transform: rotate(360deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @-webkit-keyframes loader {
    0% {
      transform: rotate(0deg);
    }
    25% {
      transform: rotate(180deg);
    }
    50% {
      transform: rotate(180deg);
    }
    75% {
      transform: rotate(360deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes loader-inner {
    0% {
      height: 0%;
    }
    25% {
      height: 0%;
    }
    50% {
      height: 100%;
    }
    75% {
      height: 100%;
    }
    100% {
      height: 0%;
    }
  }
  @-webkit-keyframes loader-inner {
    0% {
      height: 0%;
    }
    25% {
      height: 0%;
    }
    50% {
      height: 100%;
    }
    75% {
      height: 100%;
    }
    100% {
      height: 0%;
    }
  }
  
  /*---------------------------------------------------------------------------------------------------------------------*/

 .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    opacity: 0.9;
    background-color: black;
    color: white;
    z-index: 99;
   }
  
   .nav-links a {
    color: white;
    font-family: 'Arial Narrow Bold', sans-serif;
    font-weight: lighter;
   }
  
   .logo {
    font-size: 40px;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: rgb(32, 32, 32);
    padding: 0;
    margin: 0;
   }
  
   .menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
   }
  
   .menu li:hover {
    border-radius: 5px;
    transition: 0.3s ease;
   }
  
   .menu li a:hover {
    color:#1d69e8;
    border-radius: 5px;
    transition: 0.3s ease;
   }
  
   .menu li {
    padding: 5px 14px;
   }
  
   .icon {
     background-color: black;
   } 
  
   .services {
    position: relative; 
   }
  
   .dropdown {
    background-color: black;
    padding: 1em 0;
    position: absolute;
    display: none;
    border-radius: 8px;
    top: 35px;
   }
  
   .dropdown li + li {
    margin-top: 10px;
   }
  
   .dropdown li {
    padding: 0.5em 1em;
    width: 8em;
    text-align: center;
   }
  
   .dropdown li:hover {
    background-color: #999999;
   }
  
   .services:hover .dropdown {
    display: block;
   }
  
   input[type=checkbox]{
    display: none;
   } 
  
   .hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
   }
  
   @media (max-width: 1024px) {
   .menu { 
    display:none;
    position: absolute;
    background-color:black;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
   }
  
   .menu li:hover {
    display: inline-block;
    transition: 0.3s ease;
   }

   .menu li a:hover {
     color: #1d69e8;
   }
  
   .menu li + li {
    margin-top: 12px;
   }
  
   input[type=checkbox]:checked ~ .menu{
    display: block;
   }
  
   .hamburger {
    display: block;
   }
  
   .hamburger:hover {
     cursor: pointer;
   }
  
   .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);
   }
   
   .dropdown li:hover {
    background-color: rgb(32, 32, 32);;
   }
  }
  
  /*---------------------------------------------------------------------------------------------------------------------*/

  .ParallaxClan {
    background-image: url("./../../res/images/Hintergrund-3.png");
    min-height: 55vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 7;
  }
  
  .ParallaxClan div {
      width: 100%;
      min-height: 55vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
  }
  
  .ParallaxClan div h1{
      color: rgb(255, 255, 255);
      text-align: center;
      padding-top: 4%;
      margin: 5%;
      border-radius: 8px;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 400%;
  }
  
  @media (max-width: 500px) {
    .ParallaxClan div h1 {
      font-size: 250%;
    }
  }
  
/*-----------------------------------------------------------------------------------------*/

.ExplainGCA {
  color: black;
  text-align: left;
  padding: 5% 1% 0% 1%;
  margin: 1% 5% 0% 5%;
  font-family: 'Opens Sans';
  font-size: 200%;
  font-weight: lighter;
  border-bottom: 1px solid grey;
}

.ExplainGCA h2{
  color:black;
}

.ExplainGCA1 {
  color: rgb(0, 0, 0);
  text-align: left;
  margin: 0% 5% 0% 5%;
  padding: 1%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 150%;
  font-weight: lighter;
  border-bottom: 1px solid grey;
}

.GCAText {
  margin: 0% 5% 0% 5%;
  padding: 1%;
}

.GCAText p{
  font-size: 120%;
  font-weight:600;
  color: #33383b;
}

@media (max-width: 600px) {
  .ExplainGCA h2 {
    font-size: 100%;
  }
}

@media screen and (max-width: 800px) {

  .ExplainGCA{
    text-align: center;
  }

  .ExplainGCA1 {
    text-align: center;
  }
}

/*-----------------------------------------------------------------------------------------*/
.Eigenwerbung{
  width: 100%;
  color: rgb(255, 255, 255);
  background-color: rgb(11, 11, 11);
  text-align: center;
  padding: 2%;
  font-family: Arial, Helvetica, sans-serif;
}

.Eigenwerbung h3{
  font-size: 200%;
  font-weight: bold;
}

.Eigenwerbung p {
  font-weight: bold;
  font-size: 140%;
}

@media screen and (max-width: 500px) {
  .ContainerDatenschutzHeadline h1{
      font-size: 95%;
  }

  .Eigenwerbung h3{
      font-size: 175%;
      font-weight: bold;
  }
  
  .Eigenwerbung p {
      font-weight: bold;
      font-size: 105%;
  }
}

/*-----------------------------------------------------------------------------------------*/

footer{
  position: relative;
  font-size: 18px;
 }

 .footer-distributed{
  background-color: #000000;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  padding: 55px 50px;
  margin-top: 80px;
 }
  
 .footer-distributed .footer-left,
 .footer-distributed .footer-center,
 .footer-distributed .footer-right{
  display: inline-block;
  vertical-align: top;
 }
  
 .footer-distributed .footer-left{
  width: 40%;
 }
  
 .footer-distributed h3{
  color:  #ffffff;
  font: normal 36px 'Cookie', cursive;
  margin: 0;
  font-family: 'Arial Narrow Bold', sans-serif;
  font-weight: lighter;
 }
  
 .footer-distributed h3 span{
  color:  #5383d3;
  font-family: 'Arial Narrow Bold', sans-serif;
  font-weight: lighter;
 }
  
 .footer-distributed .footer-links{
  color:  #ffffff;
  margin: 20px 0 12px;
  padding: 0;
  font-family: 'Arial Narrow Bold', sans-serif;
  font-weight: lighter;
 }

 .footer-distributed .footer-links :hover{
   color: #1d69e8;
 }
  
 .footer-distributed .footer-links a{
  display:inline-block;
  line-height: 1.8;
  text-decoration: none;
  color:  inherit;
  font-family: 'Arial Narrow Bold', sans-serif;
  font-weight: lighter;
 }
  
 .footer-distributed .footer-company-name{
  color:  #8f9296;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
  font-family: 'Arial Narrow Bold', sans-serif;
  font-weight: lighter;
 }
  
 .footer-distributed .footer-center{
  width: 35%;
  font-family: 'Arial Narrow Bold', sans-serif;
  font-weight: lighter;
 }
  
 .footer-distributed .footer-center i{
  background-color:  #33383b;
  color: #ffffff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
 }
  
 .footer-distributed .footer-center i.fa-envelope{
  font-size: 17px;
  line-height: 38px;
 }
  
 .footer-distributed .footer-center p{
  display: inline-block;
  color: #ffffff;
  vertical-align: middle;
  margin:0;
 }
  
 .footer-distributed .footer-center p span{
  display:block;
  font-weight: normal;
  font-size:14px;
  line-height:2;
 }
  
 .footer-distributed .footer-center p a{
  color:  #5383d3;
  text-decoration: none;;
 }
  
 .footer-distributed .footer-right{
  width: 20%;
 }
  
 .footer-distributed .footer-company-about{
  line-height: 20px;
  color:  #92999f;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
 }
  
 .footer-distributed .footer-company-about span{
  display: block;
  color:  #ffffff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
 }
  
 .footer-distributed .footer-icons{
  margin-top: 25px;
 }
 
 .facebook{
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color:  #3b5998;
  border-radius: 45px;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-right: 3px;
  margin-bottom: 5px;
  transition: transform .5s ease-in-out;
 }

 .instagram{
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color:  #8a3ab9;
  border-radius: 45px;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-right: 3px;
  margin-bottom: 5px;
 }
  
 @media (max-width: 880px) {
  
  .footer-distributed{
  font: 14px;
  }
  
  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right{
  display: block;
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
  }
  
  .footer-distributed .footer-center i{
  margin-left: 0;
  }
  .main {
  line-height: normal;
  font-size: auto;
  }
  
 }