* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    font: 1rem;
    font-family: ff-enzo-web, sans-serif;
    font-weight: 400;
}
h1 {
    font-family: ff-enzo-web, sans-serif;
    font-weight: 400;
    font-size: 2rem;
    max-width: 70%;
    letter-spacing: 0.06rem;
    color:#6C6C6C;
    line-height: 2.5rem;
    margin-bottom: 5%;
}
h2 {
    font-family: ff-enzo-web, sans-serif;
    font-weight: 400;
    font-size: 2rem;
    max-width: 70%;
    letter-spacing: 0.06rem;
    color:#6C6C6C;
    line-height: 2.5rem;
    margin-top: 5%;
    margin-bottom: 5%;
}
h3 {
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    color: #6C6C6C;
}
h4 {
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    color: #6C6C6C;
}
p {
    color:#6C6C6C;
    letter-spacing: 0.05rem;
    line-height: 1.5rem;
}
li {
    color:#6C6C6C;
    letter-spacing: 0.05rem;
    line-height: 1.5rem;
}
a {
    color: #E3C103;
    text-decoration: none;
    border-bottom: solid 1px #E3C103;
}

footer {
    margin-top: 10rem; 
    display: flex;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

footer a {
    color: white;
    border: none;
}
footer div {
    background-color:#BDBDBD;
    flex-basis: 48%;
    text-align: center;
    letter-spacing: 0.05rem;
    color: white;
    padding: 1%;
}


/* FREIE KLASSEN ----------------------------------- */

#all {
    padding: 3%;
}
#logo {
    width: 50vw;
    height: 35vh;
}
#logo img {
    max-width: 100%;
    max-height: 100%;

}
#logo a {
    border: none;
}

.portrait {
    display: flex;
}
.portrait p {
    padding-top: 2%;
}

.BU {
    font-size: 0.8rem;
    padding-bottom: 1rem;
}
.work {
    display: flex;  
}
.project {
    flex-basis: 49%;
}
.project img {
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 3%;
    padding-right: 3%;
}
#video_background {
	top: 0;
	left: 0px;
    width: 700px;	
	height: auto;
	z-index: -1000;
	overflow: hidden;
    margin-bottom: -8%;
    margin-left: -5%;
}
/* MENUE ----------------------------------------- */
#menuArea {
    position: absolute;
    right: 5rem;
    top: 2rem;
    cursor: pointer;
}

.open {
  background-color: #3c3c3c;
  width: 24px;
  height: 2px;
  display: block;
  cursor: pointer;
  position: relative;
  top: 8px;
}

.open:before {
  content: "";
  background-color: #3c3c3c;
  width: 24px;
  height: 2px;
  display: block;
  border-radius: 2px;
  position: relative;
  top: -8px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

.open:after {
  content: "";
  background-color: #3c3c3c;
  width: 24px;
  height: 2px;
  display: block;
  position: relative;
  top: 6px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

.menuOpen {
  width: 40px;
  height: 40px;
  display: block;
  cursor: pointer;
  float: right;
}



.menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: #E3C103;
}

.menu label {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 30px;
  top: 15px;
  background-size: 100%;
  cursor: pointer;
}

.menu .menuContent {
  position: relative;
  top: 50%;
  left: 3rem;
  font-size: 3rem;
  padding-bottom: 20px;
  margin-top: -170px;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.menu ul li a {
  display: block;
  color: white;
  text-decoration: none;
  transition: color 0.2s;
  text-transform: uppercase;
  padding: 10px 0;
        line-height: 2.5rem;

    
}

.menu ul li a:hover {
  color:#FFF5BD;
}


.menuEffects {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.menuEffects ul {
  transform: translateY(0%);
  transition: all 0.5s;
}
#menuToggle {
    display: none;
}
#menuToggle:checked ~ .menuEffects {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s;
}

#menuToggle:checked ~ .menuEffects ul {
  opacity: 1;
}

#menuToggle:checked ~ .menuOpen .open {
  background-color: transparent;
}

#menuToggle:checked ~ .menuOpen .open:before {
  content: "";
  background-color: white;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

#menuToggle:checked ~ .menuOpen .open:after {
  content: "";
  background-color: white;
  transform: rotate(-45deg);
  position: relative;
  top: 0;
  right: 0;
  z-index: 1;
}

#menuToggle:not(:checked) ~ .menuEffects ul {
  transform: translateY(-30%);
}

/* Cookiedingsbums ---------------------------------------------------------------------*/
#cookiedingsbums a {
    color: #000;
    text-decoration: none;
}
#cookiedingsbums a:hover {
    color:rgba(86,86,86,1.00);
}
#cookiedingsbums div {
    padding: 4%;
}
#cookiedingsbums {
    text-align: center;
    background: rgba(215, 213, 213, 0.9);
    position: fixed;
    bottom: 0px;
    z-index: 1000;
    width: 100vw;
    font-size: 0.8rem;
    line-height: 1.3rem;
}
  
#cookiedingsbumsCloser {
    color: #333;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    padding: 1% 10%;
    border: 1px solid grey;
    line-height: 2rem;
    }

#cookiedingsbumsCloser:hover {
    background: white;
}
input[id*="checker"] {
    display: none;
}