html {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Overpass', serif;
  line-height: 1.2;
  font-stretch: expanded;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 50px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
      grid-template-areas: 'header__logo header__toggle' 'header__nav header__nav';
  background-color: white;
  border-bottom: 1px solid #e7e7e7;
}

.header__logo {
  margin: 15px 0 0 15px;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header__logo;
}

.header__logo a {
  display: inline-block;
  text-decoration: none;
}

.header__logo a h3 {
  margin: 0;
  color: #464646;
}

.header__logo a:hover {
  opacity: .9;
  border-bottom: 2px solid #e7e7e7;
}

.header__nav {
  margin-top: 10px;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: header__nav;
  -webkit-clip-path: circle(0px at top right);
          clip-path: circle(0px at top right);
  -webkit-transition: -webkit-clip-path ease-in-out 700ms;
  transition: -webkit-clip-path ease-in-out 700ms;
  transition: clip-path ease-in-out 700ms;
  transition: clip-path ease-in-out 700ms, -webkit-clip-path ease-in-out 700ms;
  background-color: white;
  height: calc(100vh - 47px);
  max-height: 100vh;
}

.header__nav--open {
  -webkit-clip-path: circle(250% at top right);
          clip-path: circle(250% at top right);
}

.header__nav__list {
  padding: 0;
  list-style: none;
  margin-left: 15px;
}

.header__nav__list__element {
  margin-top: 4px;
}

.header__nav__list__element a {
  text-decoration: none;
  color: #464646;
}

.header__nav__list__element a:hover {
  opacity: .9;
  border-bottom: 2px solid #e7e7e7;
}

.header__toggle {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: header__toggle;
  margin: 15px 15px 0 0;
  display: inline-block;
}

.header__toggle__hamburger,
.header__toggle__hamburger::before,
.header__toggle__hamburger::after {
  content: '';
  display: block;
  background: #464646;
  height: 3px;
  width: 1.75em;
  border-radius: 3px;
  -webkit-transition: all ease-in-out 500ms;
  transition: all ease-in-out 500ms;
  margin: 0 0 0 auto;
  cursor: pointer;
}

.header__toggle__hamburger::before {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.header__toggle__hamburger::after {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.open .header__toggle__hamburger {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.open .header__toggle__hamburger::before {
  opacity: 0;
}

.open .header__toggle__hamburger::after {
  -webkit-transform: translateY(-3px) rotate(-90deg);
          transform: translateY(-3px) rotate(-90deg);
}

.intro__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0% 40%;
     object-position: 0% 40%;
  max-height: calc(100vh - 50px);
}

.intro__block {
  padding: 4% 10%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.intro__block__text {
  font-size: 4vw;
  color: black;
}

.intro__block__text__link {
  text-decoration: none;
  color: #8d8d8d;
}

.intro__block__text__link:hover {
  opacity: .9;
  border-bottom: 2px solid #e7e7e7;
}

.arbeiten {
  margin-top: 20px;
  text-align: center;
  background-color: #4b4b4b;
}

.arbeiten__title__text {
  font-size: 4vw;
  padding-top: 30px;
  margin: 10px 0 0 10%;
  font-weight: 400;
  text-align: left;
  color: white;
}

.arbeiten__work iframe {
  width: 80vw;
  height: 48vw;
  margin: 10px auto 20px auto;
}

.arbeiten__work img {
  width: 80vw;
  margin: 10px auto 20px auto;
}

.datenschutz {
  width: 80%;
  margin: 10px auto 20px auto;
}

.datenschutz__title {
  font-weight: 600;
  font-size: 3.5vh;
  margin-bottom: 2px;
}

.datenschutz p {
  font-size: 1.8vh;
}

.impressum {
  width: 75%;
  margin: 5vh auto 0 auto;
}

.impressum__text {
  font-size: 3vw;
}

.impressum__text span {
  font-weight: 600;
}

.cookie {
  position: fixed;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  bottom: 10px;
  width: 95%;
  left: 2.5%;
  padding: 5px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #eee;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

.cookie__close {
  height: 20px;
  background-color: #777;
  border: none;
  color: white;
  border-radius: 2px;
  cursor: pointer;
}

.cookie__close:hover {
  opacity: .9;
}

.footer {
  background-color: #f7f7f7;
  margin-top: auto;
  padding: 2% 4%;
}

.footer__list {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.footer__list__element__link {
  text-decoration: none;
  color: #464646;
}

.footer__list__element__link:hover {
  opacity: .9;
  border-bottom: 2px solid #e7e7e7;
}

@media (min-width: 700px) {
  .header {
    -ms-grid-rows: auto;
        grid-template-rows: auto;
        grid-template-areas: 'header__logo header__nav';
    height: initial;
  }
  .header__toggle {
    display: none;
  }
  .header__logo {
    margin-top: 0;
    margin-left: 20px;
  }
  .header__nav {
    margin-top: 0;
    margin-right: 20px;
    -webkit-clip-path: initial;
            clip-path: initial;
    height: initial;
  }
  .header__nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header__nav__list__element {
    margin: 0 5px;
  }
  .arbeiten {
    margin-top: 20px;
    text-align: center;
  }
  .arbeiten__title__text {
    font-size: 3vw;
    margin: 10px 0 0 20%;
  }
  .arbeiten__work {
    padding-bottom: 20px;
  }
  .arbeiten__work iframe {
    height: 34vw;
    width: 60vw;
  }
  .arbeiten__work img {
    width: 60vw;
  }
  .datenschutz {
    width: 70%;
  }
  .impressum {
    width: 55%;
    margin: 4vh auto 0 auto;
  }
  .impressum__text {
    font-size: 2vw;
  }
  .impressum__text span {
    font-weight: 600;
  }
  .footer {
    padding: 1% 10%;
  }
  .footer__text {
    font-size: 1.5vw;
    margin: 5px;
  }
}
/*# sourceMappingURL=main.css.map */