*{
  margin: 0;
  padding: 0;
  position: relative;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  font-family: 'Source Sans Pro', sans-serif;
}
body{
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 5.5vw;
  color: #FFF;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100%;
}
main{
  padding: 8em 1em 1em;
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: flex-end;
  justify-content: center;
  min-height: 100vh;
}
.logo_link{
  position: absolute; top: 1em; left: 1em;
  z-index: 3;
}
.logo{
    width: 11em;
}
section{
  width: 100%;
}
.illustration{
  width: 100%;
  margin: 3em 0 0;
}
.nav-btn{
  position: absolute; top: 1.65em; right: 1.2em;
  width: 1em;
  z-index: 3;
}
.nav-btn img{
  width: 100%;
}
.hidden{
  display: none;
}
label{
  cursor: pointer;
  display: inline-block;
}
nav{
  position: absolute; top: 0; left: 0; right: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000000;
  color: #ffffff;
  font-weight: 900;
  padding: 1em 0;
  z-index: 4;
}
nav label,
nav a{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5em;
}
a span{
  display: inline-block;
  width: 1em; height: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 1em;
}
a.en span{
  background-image: url(../../img/chat2show/en.png);
}
a.de span{
  background-image: url(../../img/chat2show/de.png);
}
a.nl span{
    background-image: url(../../img/chat2show/nl.png);
}
footer{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1em;
  font-size: .6em;
  color: #FFFFFF;
  padding: 0.5em;
  width: 100%;
  text-align: center;
  z-index: 1;
}
article{
  display: none;
  line-height: 1.5em;
}
article *{
  z-index: 3;
}
h1{
  font-size: 1.75em;
}
p{
  padding: 1em 0;
  font-weight: bold;
}
.italic{
  font-style: italic;
}
#cookiebar:checked ~ .cookiebar,
#about:checked ~ main section article.about,
#offer:checked ~ main section article.offer,
#tips:checked ~ main section article.tips,
#subscribe:checked ~ main section article.subscribe,
#imprint:checked ~ main section article.imprint,
#privacy:checked ~ main section article.privacy
{
  display: block;
}
#about:checked ~ main label[for=about],
#offer:checked ~ main label[for=offer],
#tips:checked ~ main label[for=tips],
#subscribe:checked ~ main label[for=subscribe]{
  text-decoration: underline;
}
#nav:checked ~ main nav{
  display: flex;
}

main section article::before,
main section article::after{
  content: "";
  display: block;
  position: fixed; top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  z-index: 1;
}

main section article::before{ background-image: url(../../img/chat2show/bg1m.jpg);}
main section article::after{ background-image: url(../../img/chat2show/bg-triangle-1m.svg);}

#subscribe:checked ~ main section article.subscribe::after{ background-image: url(../../img/chat2show/bg-triangle-1m.svg);}
#about:checked ~ main section article.about::after{ background-image: url(../../img/chat2show/bg-triangle-2m.svg);}
#offer:checked ~ main section article.offer::after{ background-image: url(../../img/chat2show/bg-triangle-3m.svg);}
#tips:checked ~ main section article.tips::after{ background-image: url(../../img/chat2show/bg-triangle-4m.svg);}

#subscribe:checked ~ main section article.subscribe::before{ background-image: url(../../img/chat2show/bg1m.jpg);}
#about:checked ~ main section article.about::before{ background-image: url(../../img/chat2show/bg2m.jpg);}
#offer:checked ~ main section article.offer::before{ background-image: url(../../img/chat2show/bg3m.jpg);}
#tips:checked ~ main section article.tips::before{ background-image: url(../../img/chat2show/bg4m.jpg);}

.form-row{
  display: flex;
  flex-direction: column;
  gap: 1em;
}
input[type="email"]{
  display: block;
  font-size: 1em;
  padding: .5em 1em;
  background: #FFFFFF;
  border-radius: 2em;
  width: 100%;
}
input[type="submit"], button, .btn{
  display: block;
  font-size: 1em;
  padding: .5em 1em;
  color: #FFFFFF;
  background: #F4A41E;
  border-radius: 2em;
  text-transform: uppercase;
  text-align: center;
}
.thumbs{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap:2em;
}
.thumbs img{
  width: 8em;
  display: block;
  margin: auto;
}
.thumbs small{
  text-align: center;
  display: block;
  width: 100%;
}
.link{
  cursor: pointer;
  color: #F4A41E;
  text-decoration: underline;
}
article.imprint{
  font-size: .85em;
  line-height: normal;
}
article.privacy{
  font-size: .7em;
  line-height: normal;
  word-wrap: break-word;
}
.cookiebar{
  display: none;
  z-index: 3;
}
.cookiebar-wrapper{
  position: fixed; bottom: 0; right: 0; left: 0;
  background: #222222;
  color: #ffffff;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  box-shadow: 0 0 .5em #000000;
}
.cookiebar-wrapper > div:first-child{
  font-size: .75em;
}

@media only screen and (min-width: 768px) {
  body{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.6vw;
    display: flex;
    min-height: 100vh;
    background-size: cover;
  }
  main{
    background-repeat: no-repeat;
    background-position: bottom;
    width: 100%;
    margin: auto;
    flex-direction: row;
    gap: 8em;
    padding: 2em;
    min-height: 100vh;
  }
  .logo_link{
    left: 2em;
  }
  .nav-btn{
    display: none;
  }
  nav{
    position: absolute; top: 0; left: auto; right: 1em;
    display: flex;
    flex-direction: row;
    background: none;
    padding: 1em;
    color: #FFFFFF;
    background: transparent;
  }
  nav label{
    display: block;
    padding: .5em;
  }
  .form-row{
    flex-direction: row;
    gap: .5em;
    background: #FFF;
    border-radius: 5em;
    padding: .25em;
  }
  .thumbs{
    flex-direction: row;
    gap: 1em;
  }
  footer{
    font-size: .6em;
    position: absolute; bottom: 1em; right: 2em;
    width: auto;
  }
  article.content{
    max-height: 28em;
    overflow: auto;
  }
  .cookiebar-wrapper{
    padding: 2em;
    gap: .5em;
    flex-direction: row;
  }
  main section article::before{ background-image: url(../../img/chat2show/bg1.jpg);}
  main section article::after{ background-image: url(../../img/chat2show/bg-triangle-1.svg);}

  #subscribe:checked ~ main section article.subscribe::after{ background-image: url(../../img/chat2show/bg-triangle-1.svg);}
  #about:checked ~ main section article.about::after{ background-image: url(../../img/chat2show/bg-triangle-2.svg);}
  #offer:checked ~ main section article.offer::after{ background-image: url(../../img/chat2show/bg-triangle-3.svg);}
  #tips:checked ~ main section article.tips::after{ background-image: url(../../img/chat2show/bg-triangle-4.svg);}

  #subscribe:checked ~ main section article.subscribe::before{ background-image: url(../../img/chat2show/bg1.jpg);}
  #about:checked ~ main section article.about::before{ background-image: url(../../img/chat2show/bg2.jpg);}
  #offer:checked ~ main section article.offer::before{ background-image: url(../../img/chat2show/bg3.jpg);}
  #tips:checked ~ main section article.tips::before{ background-image: url(../../img/chat2show/bg4.jpg);}
}

section div.unsubscribe {
    min-height: 20em;
    overflow: auto;
}
