 body{
  overflow: visible;
  background-color: #1e2023;
  font-family: "Fira Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{
  color:#222022;
}



/* .menu-icon-label::after{
  height: 30px;
  width: 60px;
  position: absolute;
  z-index: 2;
  right: 25px;
  top: -8px;
  cursor: pointer;
  color: black;
  font-weight: bold;
} */

.site-content {
  max-width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site-content__headline {
  font-weight: 200;
  color: #ffffff;
  font-size: calc(2vw + 10px);
}

.menu-icon {
  height: 30px;
  width: 30px;
  position: absolute;
  z-index: 2;
  right: 20px;
  top: 40px;
  cursor: pointer;
}

.menu-icon-label {
  height: 30px;
  width: 60px;
  position: absolute;
  z-index: 2;
  right: 25px;
  top: -8px;
  cursor: pointer;
  color: #efedef;
  font-weight: bold;
}

.menu-icon__line {
  height: 2px;
  width: 30px;
  display: block;
  background-color: #ffffff;
  margin-bottom: 4px;
  -webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
  transition: background-color .5s ease, -webkit-transform .2s ease;
  transition: transform .2s ease, background-color .5s ease;
  transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}
.menu-icon__line-left {
  width: 15px;
}
.menu-icon__line-right {
  width: 15px;
  float: right;
}

.nav {
  visibility: hidden;
  position: fixed;
  z-index: 1;
}

.nav:before, .nav:after {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: #6ead3a;
  z-index: -1;
  -webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  -webkit-transform: translateX(0%) translateY(-100%);
          transform: translateX(0%) translateY(-100%);
}

.nav:before {
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

.nav:after {
  visibility: visible;
  background-image: url("../images/menuback.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.nav__content {
  position: fixed;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 100%;
  text-align: center;
  font-size: calc(2vw + 10px);
  font-weight: 300;
}


@media only screen and (max-width: 800px){
  .nav__content{
    width: 25%;
    font-size: 70px;
    left: 33.333333%;
    /* text-align: left; */
    }
}

@media only screen and (max-width: 400px){
  .nav__content{
      width:100%;
      font-size: 60px;
      text-align: center;
      left:0%;
    }
}


.nav__list-item {
  position: relative;
  display: inline-flex;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  opacity: 0;
  -webkit-transform: translate(0%, 100%);
          transform: translate(0%, 100%);
  -webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
  transition: opacity .2s ease, -webkit-transform .3s ease;
  transition: opacity .2s ease, transform .3s ease;
  transition: opacity .2s ease, transform .3s ease, -webkit-transform .3s ease;
  margin-right: 25px;
}
.nav__list-item:before {
  content: "";
  position: absolute;
  background: #000000;
  width: 20px;
  height: 1px;
  top: 100%;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.nav__list-item:hover:before {
  background-color: #6ead3a;
  width: 100%;
  height: 2px;
}

.nav-active .menu-icon {
  position: fixed;
}

.nav-active .menu-icon-label {
  height: 30px;
  width: 60px;
  position: absolute;
  z-index: 2;
  right: 25px;
  top: -8px;
  cursor: pointer;
  color: #220222;
  font-weight: bold;
}
.nav-active .menu-icon__line {
  /* background: url('../images/turntable.jpg'); */
  background-color: #000;
  -webkit-transform: translateX(0px) rotate(-45deg);
          transform: translateX(0px) rotate(-45deg);
}
.nav-active .menu-icon__line-left {
  -webkit-transform: translateX(1px) rotate(45deg);
          transform: translateX(1px) rotate(45deg);
}
.nav-active .menu-icon__line-right {
  -webkit-transform: translateX(-2px) rotate(45deg);
          transform: translateX(-2px) rotate(45deg);
}
.nav-active .nav {
  visibility: visible;
}
.nav-active .nav:before, .nav-active .nav:after {
  -webkit-transform: translateX(0%) translateY(0%);
          transform: translateX(0%) translateY(0%);
}
.nav-active .nav:after{
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}
.nav-active .nav:before{
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.nav-active .nav__list-item{
  opacity: 1;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, transform .3s ease, color .3s ease;
  transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
}
.nav-active .nav__list-item:nth-child(0) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.nav-active .nav__list-item:nth-child(1) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.nav-active .nav__list-item:nth-child(2) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.nav-active .nav__list-item:nth-child(3) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.nav-active .nav__list-item:nth-child(4) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.nav-active .nav__list-item:nth-child(5) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.nav-active .nav__list-item:nth-child(6) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
