/*Assets*/
@font-face {
    font-family: Nice;
    src: url(../../../res/fonts/Poppins-ExtraLight.ttf);
}

@font-face {
    font-family: Slim;
    src: url(../../../fonts/Cormorant.ttf);
}
/*Assets*/

/*Global*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: black;
}
/*Global*/

/*Module One (Header)*/
header{
    position: sticky;
    top: 0;
    z-index: 3000;
}

.Nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 8vh;
    background-color: black;
}

.Logo{
    line-height: 8vh;
}

.Logo img {
    padding: 0; 
    margin: 0;
    max-width: 20vw; 
    vertical-align: middle;
}

.Nav-Links{
    display:flex;
    justify-content: space-around;
    width: 40%;
}

.Nav-Links li{
    list-style: none;
}

.Nav-Links a{
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 12px;
    margin-right: 5%;
}

.Nav-Links a{
    position: relative;
}

.Nav-Links a:hover{
color: rgb(155, 0, 0);
}

.Nav-Links a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: rgb(155, 0, 0);
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.Nav-Links a:hover:before {
    visibility: visible;
    width: 100%;
  }

.Burger {
    display: none;
}

.Burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1280px) {
    .Nav-Links{
        width: 60%;
    }
  }

@media screen and (max-width: 768px) {
    body {
      overflow-x: hidden;
    }

    .Logo img {
        max-width: 50vw;
        max-height: 8vh;
    }

    .Nav-Links{
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: black;
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .Nav-Links li{
        opacity: 0;
    }

    .Burger{
        display: block;
        cursor: pointer;
    }
  }

  .Nav-Activ{
      transform: translateX(0%);
  }

  @keyframes navLinkFade{
      from{
          opacity: 0;
          transform: translateX(50px)
      }

      to{
          opacity: 1;
          transform: translate(0px);
      }
  }

  .toggle .LineOne{
      transform: rotate(-45deg) translate(-5px,6px);
  }
  
  .toggle .LineTwo{
      opacity: 0;
    }
    
    .toggle .LineThree{
    transform: rotate(45deg) translate(-5px,-6px);  
}

/*Module One (Header)*/

/*Module Three(Footer)*/
.MyFooter{
    background-color: black;
    color: white;
}

.FooterContainer{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-flow: dense;
}

.ContentF1, .ContentF2, .ContentF3{
    padding: 5%;
    margin: 5%;
    text-align: center;
}

.ContentF1{
    display: flex;
    align-items: center;
    justify-content: center;
}

.ContentF1 img{
    width: 90%;
}

.ContentF1 img:hover{
    transition: transform .5s ease;
    -ms-transform: scale(1.1); /* IE 9 */
    -webkit-transform: scale(1.1); /* Safari 3-8 */
    transform: scale(1.1); 
}

.ContentF2 div{
    padding: 5%;
    border-top: 1px solid lightgrey;
}

.ContentF2 div p{
    font-weight: bold;
}

.Copyright{
    width: 100%;
    background-color: #4285F4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
/*Module Three(Footer)*/

/*Module Five(Back Button)*/
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: rgb(155, 0, 0);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }
  
  #myBtn:hover {
    box-shadow: inset 0 0 2em rgb(155, 0, 0), 0 0 2em rgb(155, 0, 0);
  }
  /*Module Five(Back Button)*/

  /*Module Two (Intro Image)*/
.MyContainer{
    position: relative;
    text-align: center;
    color: white;
    width:100%;
    overflow: hidden;
    max-height: 70vh;
    background-color: black;
    border-bottom: 1px solid lightgrey;
}

.MyContainer img{
    max-width: 100vw;
    transform-origin: 50% 65%;
    transition: transform 60s, filter 3s ease-in-out;
    filter: brightness(150%);
    opacity: 0.7;
}
  
  /* The Transformation */
  .MyContainer:hover img {
    filter: brightness(100%);
    transform: scale(3);
  }

  .ContentImageHead{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    font-size:350%; 
    width:100%;
    font-family: Nice;
    font-weight: bold;
    text-transform: uppercase;
}

.ContentImageHead span{ 
    color: rgb(155, 0, 0);
}

@media screen and (max-width: 1024px) {
    .ContentImageHead{
        font-size:300%; 
    }
}

@media screen and (max-width: 768px) {
    .ContentImageHead{
        font-size:180%; 
    }
}

@media screen and (max-width: 411px) {
    .ContentImageHead{
        font-size:130%; 
    }
}
/*Module Two (Intro Image)*/

.ContainerDatenschutzHeadline{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding: 5%;
    color:white;
    font-size: 140%;
    font-family: Nice;
    letter-spacing: 3px;
    font-weight: bold;
    border-bottom: 1px solid lightgrey;
}

.ContainerDatenschutzHeadline h1{
    color: white;
    background-color: black;
}

.DatenschutzTextContainer{
    width: 90%;
    margin: 5%;
    color: white;
}

.DatenschutzTextContainerH2{
    width: 100%;
    padding-bottom: 1%;
    padding-top: 1%;
    border-bottom: 1px solid lightgray;
    border-top: 1px solid lightgray; 
    color: rgb(155, 0, 0);   
}

.DatenschutzTextContainer p{
    font-weight: bold;
    font-size: 120%;
}

.DatenschutzTextContainer div{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Eigenwerbung{
    width: 100%;
    color: rgb(255, 255, 255);
    background-color: rgb(11, 11, 11);
    text-align: center;
    padding: 2%;
    border-bottom: 1px solid white;
    padding-top: 5%;
    padding-bottom: 5%;
}

.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: 120%;
    }
}

@media screen and (max-width: 768px) {
    .DatenschutzTextContainerH2{
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}