/*------------- Breakpoints mixin*/
/*------------- Heading mixins*/
/*------------- Flexbox mixins*/
/*------------- Flexbox center mixin*/
/*---------------Mixins for transforms, transitions and animations*/
/*Mixin for animation on contact page*/
/*Mixin for hide & show*/
header {
  background: black;
  position: fixed;
  top: 0;
  color: white;
  width: 100vw;
  height: 2rem;
  z-index: 3000;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-content: center;
  -moz-align-content: center;
  -ms-align-content: center;
  align-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  header a {
    font-size: 1.3em;
    font-family: "Muli", sans-serif;
    color: white; }
  header a:hover, header img:hover {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: grey; }
  @media (max-width: 854px) {
    header {
      height: 2.2rem; } }

nav img {
  height: 1.2em;
  z-index: 4000;
  margin: 0.2em 1em 0 1em; }

.container-header {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center; }

.overlay {
  width: 0;
  height: 100vh;
  background: salmon;
  position: fixed;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }
  .overlay.active {
    width: 100%; }

#title {
  font-size: 1.3em;
  margin-left: 2rem; }
  @media (max-width: 854px) {
    #title {
      margin-left: 1.2rem;
      font-size: 1.2em; } }
  @media (max-width: 375px) {
    #title {
      margin: 0 0 0 0.5em; } }

.header-nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-right: 2%;
  width: 40%; }
  @media (max-width: 560px) {
    .header-nav {
      display: none; } }

.footer {
  display: none;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
  position: fixed;
  width: 100%;
  bottom: 0;
  height: 2rem;
  background: black;
  z-index: 4000; }
  .footer img {
    z-index: 5000;
    height: 1.5em;
    margin-top: 0.2em; }
    .footer img:last-child {
      height: 1.7em; }
  @media (max-width: 560px) {
    .footer {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; } }

.footer-nav {
  height: auto;
  width: 100%; }
  .footer-nav img {
    z-index: 5000;
    height: 3em; }

.mail {
  margin-top: 0.4em;
  height: 1.5em;
  width: 1.3em; }

.cv-figure {
  margin: 0 1em 1em 0;
  height: auto;
  width: 30em;
  padding: 1em;
  background: black;
  word-wrap: break-word;
  letter-spacing: 1em; }
  .cv-figure h3, .cv-figure p, .cv-figure a {
    color: white;
    margin-top: 0.3em; }
  .cv-figure p {
    margin: 0 4em 1em 0; }
  .cv-figure a {
    margin-top: 2rem;
    font-size: 3em;
    font-weight: 400;
    font-style: italic; }
  @media (max-width: 464px) {
    .cv-figure {
      padding: 1em 1em 0 0;
      margin-right: 1em;
      width: 95%; } }
  @media (max-width: 1100px) {
    .cv-figure {
      width: 95%;
      margin: 0 1em 1em 0; } }

.cv-container {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start; }
  .cv-container h3 {
    margin: 0 0 1em 0;
    width: 100%;
    font-size: 2em;
    background: black;
    color: red;
    width: 90%; }
    @media (max-width: 464px) {
      .cv-container h3 {
        font-size: 1.5em; } }
  .cv-container p {
    width: 90%;
    font-size: 1.2rem; }
    @media (max-width: 464px) {
      .cv-container p {
        font-size: 1.1em; } }

#cv {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }
  @media (max-width: 1100px) {
    #cv {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }

#portrait {
  background: black; }
  @media (max-width: 1100px) {
    #portrait {
      width: 50%; } }
  @media (max-width: 464px) {
    #portrait {
      width: 100vw;
      padding: 1em 1em 0 0;
      margin: 0; } }

.cv-cirkle {
  height: 6em;
  width: 6em;
  margin-left: 35%;
  border-radius: 100%;
  background: black; }

.projekt-figure.art-figure {
  background: black;
  margin: 0 3em 10em 0; }
  .projekt-figure.art-figure a, .projekt-figure.art-figure p, .projekt-figure.art-figure h3 {
    color: white; }
  .projekt-figure.art-figure img {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    height: 80%;
    position: absolute;
    border: 0.5em solid black; }
    @media (max-width: 464px) {
      .projekt-figure.art-figure img {
        margin-left: -0.5em; } }
    .projekt-figure.art-figure img.active {
      -webkit-transition: all 0.4s ease;
      -moz-transition: all 0.4s ease;
      -ms-transition: all 0.4s ease;
      -o-transition: all 0.4s ease;
      transition: all 0.4s ease;
      height: 80%;
      margin: 0; }
  .projekt-figure.art-figure.standing img {
    height: 100%; }
    .projekt-figure.art-figure.standing img:hover {
      height: 100%; }

/*
.overlay-img{
  width:95%;
  height: auto;
  background:yellow;
}
*/
.plane {
  left: -40%;
  z-index: 1010;
  position: absolute;
  height: 5em;
  -webkit-animation-name: plane;
  -webkit-animation-duration: 7s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  /* forward prevents the animation from restarting! */
  -moz-animation-name: plane;
  -moz-animation-duration: 7s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: 1;
  -ms-animation-name: plane;
  -ms-animation-duration: 7s;
  -ms-animation-fill-mode: forwards;
  -ms-animation-iteration-count: 1;
  -o-animation-name: plane;
  -o-animation-duration: 7s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: 1;
  animation-name: plane;
  animation-duration: 7s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-delay: 7s; }

.cloud-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  position: fixed;
  bottom: 0%;
  left: 0;
  height: auto;
  width: 100vw; }

.cloud {
  float: left;
  border-radius: 100%;
  width: 10em;
  height: 10em;
  margin-left: -3em;
  background: white; }
  .cloud:first-child {
    height: 8em;
    width: 8em; }
  .cloud:nth-child(odd) {
    height: 9em;
    width: 9em; }
  .cloud:last-child {
    margin: 0 -3em 0 -3em;
    height: 12em;
    width: 12em; }

.hat {
  right: -100%;
  height: 6em;
  position: fixed;
  -webkit-animation-name: hat;
  -webkit-animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  /* forward prevents the animation from restarting! */
  -moz-animation-name: hat;
  -moz-animation-duration: 3s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: 1;
  -ms-animation-name: hat;
  -ms-animation-duration: 3s;
  -ms-animation-fill-mode: forwards;
  -ms-animation-iteration-count: 1;
  -o-animation-name: hat;
  -o-animation-duration: 3s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: 1;
  animation-name: hat;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-delay: 15s; }

.leaf1 {
  right: -30%;
  top: 30%;
  height: 2em;
  position: fixed;
  -webkit-animation-name: leaf1;
  -webkit-animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  /* forward prevents the animation from restarting! */
  -moz-animation-name: leaf1;
  -moz-animation-duration: 3s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: infinite;
  -ms-animation-name: leaf1;
  -ms-animation-duration: 3s;
  -ms-animation-fill-mode: forwards;
  -ms-animation-iteration-count: infinite;
  -o-animation-name: leaf1;
  -o-animation-duration: 3s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: infinite;
  animation-name: leaf1;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 1s;
  z-index: 1000;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease; }
  .leaf1:hover {
    height: 4em; }

.leaf1.leaf12 {
  -webkit-animation-name: leaf12;
  -webkit-animation-duration: 4s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  /* forward prevents the animation from restarting! */
  -moz-animation-name: leaf12;
  -moz-animation-duration: 4s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: 1;
  -ms-animation-name: leaf12;
  -ms-animation-duration: 4s;
  -ms-animation-fill-mode: forwards;
  -ms-animation-iteration-count: 1;
  -o-animation-name: leaf12;
  -o-animation-duration: 4s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: 1;
  animation-name: leaf12;
  animation-duration: 4s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  height: 3em;
  animation-delay: 2s;
  z-index: 1050; }

.leaf1.leaf13 {
  -webkit-animation-name: leaf13;
  -webkit-animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  /* forward prevents the animation from restarting! */
  -moz-animation-name: leaf13;
  -moz-animation-duration: 3s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: infinite;
  -ms-animation-name: leaf13;
  -ms-animation-duration: 3s;
  -ms-animation-fill-mode: forwards;
  -ms-animation-iteration-count: infinite;
  -o-animation-name: leaf13;
  -o-animation-duration: 3s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: infinite;
  animation-name: leaf13;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  height: 2em;
  animation-delay: 6s; }

.elephant {
  height: 8em;
  position: fixed;
  -webkit-animation-name: elephant;
  -webkit-animation-duration: 12s;
  -webkit-animation-fill-mode: forwads;
  -webkit-animation-iteration-count: 1;
  /* forward prevents the animation from restarting! */
  -moz-animation-name: elephant;
  -moz-animation-duration: 12s;
  -moz-animation-fill-mode: forwads;
  -moz-animation-iteration-count: 1;
  -ms-animation-name: elephant;
  -ms-animation-duration: 12s;
  -ms-animation-fill-mode: forwads;
  -ms-animation-iteration-count: 1;
  -o-animation-name: elephant;
  -o-animation-duration: 12s;
  -o-animation-fill-mode: forwads;
  -o-animation-iteration-count: 1;
  animation-name: elephant;
  animation-duration: 12s;
  animation-fill-mode: forwads;
  animation-iteration-count: 1;
  right: -50%;
  animation-timing-function: ease-in;
  animation-delay: 100s;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease; }

.ballon {
  height: 18em;
  position: fixed;
  -webkit-animation-name: ballon;
  -webkit-animation-duration: 80s;
  -webkit-animation-fill-mode: forwads;
  -webkit-animation-iteration-count: 1;
  /* forward prevents the animation from restarting! */
  -moz-animation-name: ballon;
  -moz-animation-duration: 80s;
  -moz-animation-fill-mode: forwads;
  -moz-animation-iteration-count: 1;
  -ms-animation-name: ballon;
  -ms-animation-duration: 80s;
  -ms-animation-fill-mode: forwads;
  -ms-animation-iteration-count: 1;
  -o-animation-name: ballon;
  -o-animation-duration: 80s;
  -o-animation-fill-mode: forwads;
  -o-animation-iteration-count: 1;
  animation-name: ballon;
  animation-duration: 80s;
  animation-fill-mode: forwads;
  animation-iteration-count: 1;
  right: -80%;
  animation-timing-function: linear;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  animation-delay: 0s;
  -webkit-transform: rotate(-5deg);
  -moz-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  -o-transform: rotate(-5deg);
  transform: rotate(-5deg); }
  @media (max-width: 375px) {
    .ballon {
      height: 10em; } }
  .ballon:hover {
    height: 17.4em; }

.ufo {
  height: 45em;
  position: fixed;
  right: -2000%;
  -webkit-animation-name: ufo;
  -webkit-animation-duration: 5s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  /* forward prevents the animation from restarting! */
  -moz-animation-name: ufo;
  -moz-animation-duration: 5s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: 1;
  -ms-animation-name: ufo;
  -ms-animation-duration: 5s;
  -ms-animation-fill-mode: forwards;
  -ms-animation-iteration-count: 1;
  -o-animation-name: ufo;
  -o-animation-duration: 5s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: 1;
  animation-name: ufo;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-delay: 90s; }

.brown {
  height: 2em;
  position: fixed;
  right: -100%;
  -webkit-animation-name: leafbrown;
  -webkit-animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  /* forward prevents the animation from restarting! */
  -moz-animation-name: leafbrown;
  -moz-animation-duration: 3s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: infinite;
  -ms-animation-name: leafbrown;
  -ms-animation-duration: 3s;
  -ms-animation-fill-mode: forwards;
  -ms-animation-iteration-count: infinite;
  -o-animation-name: leafbrown;
  -o-animation-duration: 3s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: infinite;
  animation-name: leafbrown;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 10s; }

.et {
  height: 9em;
  right: -80%;
  position: fixed;
  -webkit-animation-name: et;
  -webkit-animation-duration: 6.6s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  /* forward prevents the animation from restarting! */
  -moz-animation-name: et;
  -moz-animation-duration: 6.6s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: 1;
  -ms-animation-name: et;
  -ms-animation-duration: 6.6s;
  -ms-animation-fill-mode: forwards;
  -ms-animation-iteration-count: 1;
  -o-animation-name: et;
  -o-animation-duration: 6.6s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: 1;
  animation-name: et;
  animation-duration: 6.6s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-delay: 50s; }
  @media (max-width: 375px) {
    .et {
      height: 7em; } }

.pbj {
  visibility: hidden;
  height: 12em;
  right: -80%;
  position: fixed;
  -webkit-animation-name: pbj;
  -webkit-animation-duration: 5s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  /* forward prevents the animation from restarting! */
  -moz-animation-name: pbj;
  -moz-animation-duration: 5s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: 1;
  -ms-animation-name: pbj;
  -ms-animation-duration: 5s;
  -ms-animation-fill-mode: forwards;
  -ms-animation-iteration-count: 1;
  -o-animation-name: pbj;
  -o-animation-duration: 5s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: 1;
  animation-name: pbj;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-delay: 80s; }
  @media (max-width: 375px) {
    .pbj {
      height: 7em; } }

#gees {
  position: fixed;
  top: 6em;
  right: 4em;
  height: 15em; }

@-webkit-keyframes pbj {
  0% {
    visibility: visible;
    bottom: 90%;
    right: -40%; }
  100% {
    visibility: visible;
    bottom: 30%;
    right: 120%;
    -webkit-transform: rotate(-1660deg);
    -moz-transform: rotate(-1660deg);
    -ms-transform: rotate(-1660deg);
    -o-transform: rotate(-1660deg);
    transform: rotate(-1660deg); } }
@-moz-keyframes pbj {
  0% {
    visibility: visible;
    bottom: 90%;
    right: -40%; }
  100% {
    visibility: visible;
    bottom: 30%;
    right: 120%;
    -webkit-transform: rotate(-1660deg);
    -moz-transform: rotate(-1660deg);
    -ms-transform: rotate(-1660deg);
    -o-transform: rotate(-1660deg);
    transform: rotate(-1660deg); } }
@-ms-keyframes pbj {
  0% {
    visibility: visible;
    bottom: 90%;
    right: -40%; }
  100% {
    visibility: visible;
    bottom: 30%;
    right: 120%;
    -webkit-transform: rotate(-1660deg);
    -moz-transform: rotate(-1660deg);
    -ms-transform: rotate(-1660deg);
    -o-transform: rotate(-1660deg);
    transform: rotate(-1660deg); } }
@-o-keyframes pbj {
  0% {
    visibility: visible;
    bottom: 90%;
    right: -40%; }
  100% {
    visibility: visible;
    bottom: 30%;
    right: 120%;
    -webkit-transform: rotate(-1660deg);
    -moz-transform: rotate(-1660deg);
    -ms-transform: rotate(-1660deg);
    -o-transform: rotate(-1660deg);
    transform: rotate(-1660deg); } }
@keyframes pbj {
  0% {
    visibility: visible;
    bottom: 90%;
    right: -40%; }
  100% {
    visibility: visible;
    bottom: 30%;
    right: 120%;
    -webkit-transform: rotate(-1660deg);
    -moz-transform: rotate(-1660deg);
    -ms-transform: rotate(-1660deg);
    -o-transform: rotate(-1660deg);
    transform: rotate(-1660deg); } }
@-webkit-keyframes et {
  0% {
    bottom: 90%;
    right: -40%; }
  100% {
    bottom: 30%;
    right: 120%;
    -webkit-transform: rotate(-1660deg);
    -moz-transform: rotate(-1660deg);
    -ms-transform: rotate(-1660deg);
    -o-transform: rotate(-1660deg);
    transform: rotate(-1660deg); } }
@-moz-keyframes et {
  0% {
    bottom: 90%;
    right: -40%; }
  100% {
    bottom: 30%;
    right: 120%;
    -webkit-transform: rotate(-1660deg);
    -moz-transform: rotate(-1660deg);
    -ms-transform: rotate(-1660deg);
    -o-transform: rotate(-1660deg);
    transform: rotate(-1660deg); } }
@-ms-keyframes et {
  0% {
    bottom: 90%;
    right: -40%; }
  100% {
    bottom: 30%;
    right: 120%;
    -webkit-transform: rotate(-1660deg);
    -moz-transform: rotate(-1660deg);
    -ms-transform: rotate(-1660deg);
    -o-transform: rotate(-1660deg);
    transform: rotate(-1660deg); } }
@-o-keyframes et {
  0% {
    bottom: 90%;
    right: -40%; }
  100% {
    bottom: 30%;
    right: 120%;
    -webkit-transform: rotate(-1660deg);
    -moz-transform: rotate(-1660deg);
    -ms-transform: rotate(-1660deg);
    -o-transform: rotate(-1660deg);
    transform: rotate(-1660deg); } }
@keyframes et {
  0% {
    bottom: 90%;
    right: -40%; }
  100% {
    bottom: 30%;
    right: 120%;
    -webkit-transform: rotate(-1660deg);
    -moz-transform: rotate(-1660deg);
    -ms-transform: rotate(-1660deg);
    -o-transform: rotate(-1660deg);
    transform: rotate(-1660deg); } }
@-webkit-keyframes leafbrown {
  0% {
    bottom: 50%;
    right: -30%; }
  100% {
    bottom: 30%;
    right: 120%;
    -webkit-transform: rotate(-660deg);
    -moz-transform: rotate(-660deg);
    -ms-transform: rotate(-660deg);
    -o-transform: rotate(-660deg);
    transform: rotate(-660deg); } }
@-moz-keyframes leafbrown {
  0% {
    bottom: 50%;
    right: -30%; }
  100% {
    bottom: 30%;
    right: 120%;
    -webkit-transform: rotate(-660deg);
    -moz-transform: rotate(-660deg);
    -ms-transform: rotate(-660deg);
    -o-transform: rotate(-660deg);
    transform: rotate(-660deg); } }
@-ms-keyframes leafbrown {
  0% {
    bottom: 50%;
    right: -30%; }
  100% {
    bottom: 30%;
    right: 120%;
    -webkit-transform: rotate(-660deg);
    -moz-transform: rotate(-660deg);
    -ms-transform: rotate(-660deg);
    -o-transform: rotate(-660deg);
    transform: rotate(-660deg); } }
@-o-keyframes leafbrown {
  0% {
    bottom: 50%;
    right: -30%; }
  100% {
    bottom: 30%;
    right: 120%;
    -webkit-transform: rotate(-660deg);
    -moz-transform: rotate(-660deg);
    -ms-transform: rotate(-660deg);
    -o-transform: rotate(-660deg);
    transform: rotate(-660deg); } }
@keyframes leafbrown {
  0% {
    bottom: 50%;
    right: -30%; }
  100% {
    bottom: 30%;
    right: 120%;
    -webkit-transform: rotate(-660deg);
    -moz-transform: rotate(-660deg);
    -ms-transform: rotate(-660deg);
    -o-transform: rotate(-660deg);
    transform: rotate(-660deg); } }
@-webkit-keyframes ufo {
  0% {
    bottom: 10%;
    right: -120%;
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg); }
  30% {
    bottom: 5%;
    right: 10%;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    bottom: 10%;
    right: -5%;
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg); }
  100% {
    bottom: 5%;
    right: 140%;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg); } }
@-moz-keyframes ufo {
  0% {
    bottom: 10%;
    right: -120%;
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg); }
  30% {
    bottom: 5%;
    right: 10%;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    bottom: 10%;
    right: -5%;
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg); }
  100% {
    bottom: 5%;
    right: 140%;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg); } }
@-ms-keyframes ufo {
  0% {
    bottom: 10%;
    right: -120%;
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg); }
  30% {
    bottom: 5%;
    right: 10%;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    bottom: 10%;
    right: -5%;
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg); }
  100% {
    bottom: 5%;
    right: 140%;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg); } }
@-o-keyframes ufo {
  0% {
    bottom: 10%;
    right: -120%;
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg); }
  30% {
    bottom: 5%;
    right: 10%;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    bottom: 10%;
    right: -5%;
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg); }
  100% {
    bottom: 5%;
    right: 140%;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg); } }
@keyframes ufo {
  0% {
    bottom: 10%;
    right: -120%;
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg); }
  30% {
    bottom: 5%;
    right: 10%;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    bottom: 10%;
    right: -5%;
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg); }
  100% {
    bottom: 5%;
    right: 140%;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg); } }
@-webkit-keyframes ballon {
  0% {
    bottom: 60%;
    right: -60%; }
  100% {
    bottom: 80%;
    right: 110%; } }
@-moz-keyframes ballon {
  0% {
    bottom: 60%;
    right: -60%; }
  100% {
    bottom: 80%;
    right: 110%; } }
@-ms-keyframes ballon {
  0% {
    bottom: 60%;
    right: -60%; }
  100% {
    bottom: 80%;
    right: 110%; } }
@-o-keyframes ballon {
  0% {
    bottom: 60%;
    right: -60%; }
  100% {
    bottom: 80%;
    right: 110%; } }
@keyframes ballon {
  0% {
    bottom: 60%;
    right: -60%; }
  100% {
    bottom: 80%;
    right: 110%; } }
@-webkit-keyframes leaf13 {
  0% {
    top: 90%;
    right: -10%; }
  50% {
    top: 70%;
    right: 50%;
    -webkit-transform: rotate(500deg);
    -moz-transform: rotate(500deg);
    -ms-transform: rotate(500deg);
    -o-transform: rotate(500deg);
    transform: rotate(500deg); }
  100% {
    top: 40%;
    right: 110%;
    -webkit-transform: rotate(1000deg);
    -moz-transform: rotate(1000deg);
    -ms-transform: rotate(1000deg);
    -o-transform: rotate(1000deg);
    transform: rotate(1000deg); } }
@-moz-keyframes leaf13 {
  0% {
    top: 90%;
    right: -10%; }
  50% {
    top: 70%;
    right: 50%;
    -webkit-transform: rotate(500deg);
    -moz-transform: rotate(500deg);
    -ms-transform: rotate(500deg);
    -o-transform: rotate(500deg);
    transform: rotate(500deg); }
  100% {
    top: 40%;
    right: 110%;
    -webkit-transform: rotate(1000deg);
    -moz-transform: rotate(1000deg);
    -ms-transform: rotate(1000deg);
    -o-transform: rotate(1000deg);
    transform: rotate(1000deg); } }
@-ms-keyframes leaf13 {
  0% {
    top: 90%;
    right: -10%; }
  50% {
    top: 70%;
    right: 50%;
    -webkit-transform: rotate(500deg);
    -moz-transform: rotate(500deg);
    -ms-transform: rotate(500deg);
    -o-transform: rotate(500deg);
    transform: rotate(500deg); }
  100% {
    top: 40%;
    right: 110%;
    -webkit-transform: rotate(1000deg);
    -moz-transform: rotate(1000deg);
    -ms-transform: rotate(1000deg);
    -o-transform: rotate(1000deg);
    transform: rotate(1000deg); } }
@-o-keyframes leaf13 {
  0% {
    top: 90%;
    right: -10%; }
  50% {
    top: 70%;
    right: 50%;
    -webkit-transform: rotate(500deg);
    -moz-transform: rotate(500deg);
    -ms-transform: rotate(500deg);
    -o-transform: rotate(500deg);
    transform: rotate(500deg); }
  100% {
    top: 40%;
    right: 110%;
    -webkit-transform: rotate(1000deg);
    -moz-transform: rotate(1000deg);
    -ms-transform: rotate(1000deg);
    -o-transform: rotate(1000deg);
    transform: rotate(1000deg); } }
@keyframes leaf13 {
  0% {
    top: 90%;
    right: -10%; }
  50% {
    top: 70%;
    right: 50%;
    -webkit-transform: rotate(500deg);
    -moz-transform: rotate(500deg);
    -ms-transform: rotate(500deg);
    -o-transform: rotate(500deg);
    transform: rotate(500deg); }
  100% {
    top: 40%;
    right: 110%;
    -webkit-transform: rotate(1000deg);
    -moz-transform: rotate(1000deg);
    -ms-transform: rotate(1000deg);
    -o-transform: rotate(1000deg);
    transform: rotate(1000deg); } }
@-webkit-keyframes elephant {
  0% {
    top: 30%;
    right: -20%; }
  100% {
    top: 10%;
    right: 120%;
    -webkit-transform: rotate(-2000deg);
    -moz-transform: rotate(-2000deg);
    -ms-transform: rotate(-2000deg);
    -o-transform: rotate(-2000deg);
    transform: rotate(-2000deg); } }
@-moz-keyframes elephant {
  0% {
    top: 30%;
    right: -20%; }
  100% {
    top: 10%;
    right: 120%;
    -webkit-transform: rotate(-2000deg);
    -moz-transform: rotate(-2000deg);
    -ms-transform: rotate(-2000deg);
    -o-transform: rotate(-2000deg);
    transform: rotate(-2000deg); } }
@-ms-keyframes elephant {
  0% {
    top: 30%;
    right: -20%; }
  100% {
    top: 10%;
    right: 120%;
    -webkit-transform: rotate(-2000deg);
    -moz-transform: rotate(-2000deg);
    -ms-transform: rotate(-2000deg);
    -o-transform: rotate(-2000deg);
    transform: rotate(-2000deg); } }
@-o-keyframes elephant {
  0% {
    top: 30%;
    right: -20%; }
  100% {
    top: 10%;
    right: 120%;
    -webkit-transform: rotate(-2000deg);
    -moz-transform: rotate(-2000deg);
    -ms-transform: rotate(-2000deg);
    -o-transform: rotate(-2000deg);
    transform: rotate(-2000deg); } }
@keyframes elephant {
  0% {
    top: 30%;
    right: -20%; }
  100% {
    top: 10%;
    right: 120%;
    -webkit-transform: rotate(-2000deg);
    -moz-transform: rotate(-2000deg);
    -ms-transform: rotate(-2000deg);
    -o-transform: rotate(-2000deg);
    transform: rotate(-2000deg); } }
@-webkit-keyframes plane {
  0% {
    top: 40%;
    left: 100%;
    -webkit-transform: rotate(50deg);
    -moz-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    -o-transform: rotate(50deg);
    transform: rotate(50deg); }
  30% {
    top: 10%;
    left: 30%;
    -webkit-transform: rotate(100deg);
    -moz-transform: rotate(100deg);
    -ms-transform: rotate(100deg);
    -o-transform: rotate(100deg);
    transform: rotate(100deg); }
  /*
  60%{
    top:60%;
    left:50%;
    @include transform(rotate(-2180deg));
  }

  80%{
    top:35%;
    left:60%;
    @include transform(rotate(-2180deg));
  }  */
  100% {
    top: 110%;
    left: -200%;
    -webkit-transform: rotate(-200deg);
    -moz-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    -o-transform: rotate(-200deg);
    transform: rotate(-200deg); } }
@-moz-keyframes plane {
  0% {
    top: 40%;
    left: 100%;
    -webkit-transform: rotate(50deg);
    -moz-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    -o-transform: rotate(50deg);
    transform: rotate(50deg); }
  30% {
    top: 10%;
    left: 30%;
    -webkit-transform: rotate(100deg);
    -moz-transform: rotate(100deg);
    -ms-transform: rotate(100deg);
    -o-transform: rotate(100deg);
    transform: rotate(100deg); }
  /*
  60%{
    top:60%;
    left:50%;
    @include transform(rotate(-2180deg));
  }

  80%{
    top:35%;
    left:60%;
    @include transform(rotate(-2180deg));
  }  */
  100% {
    top: 110%;
    left: -200%;
    -webkit-transform: rotate(-200deg);
    -moz-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    -o-transform: rotate(-200deg);
    transform: rotate(-200deg); } }
@-ms-keyframes plane {
  0% {
    top: 40%;
    left: 100%;
    -webkit-transform: rotate(50deg);
    -moz-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    -o-transform: rotate(50deg);
    transform: rotate(50deg); }
  30% {
    top: 10%;
    left: 30%;
    -webkit-transform: rotate(100deg);
    -moz-transform: rotate(100deg);
    -ms-transform: rotate(100deg);
    -o-transform: rotate(100deg);
    transform: rotate(100deg); }
  /*
  60%{
    top:60%;
    left:50%;
    @include transform(rotate(-2180deg));
  }

  80%{
    top:35%;
    left:60%;
    @include transform(rotate(-2180deg));
  }  */
  100% {
    top: 110%;
    left: -200%;
    -webkit-transform: rotate(-200deg);
    -moz-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    -o-transform: rotate(-200deg);
    transform: rotate(-200deg); } }
@-o-keyframes plane {
  0% {
    top: 40%;
    left: 100%;
    -webkit-transform: rotate(50deg);
    -moz-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    -o-transform: rotate(50deg);
    transform: rotate(50deg); }
  30% {
    top: 10%;
    left: 30%;
    -webkit-transform: rotate(100deg);
    -moz-transform: rotate(100deg);
    -ms-transform: rotate(100deg);
    -o-transform: rotate(100deg);
    transform: rotate(100deg); }
  /*
  60%{
    top:60%;
    left:50%;
    @include transform(rotate(-2180deg));
  }

  80%{
    top:35%;
    left:60%;
    @include transform(rotate(-2180deg));
  }  */
  100% {
    top: 110%;
    left: -200%;
    -webkit-transform: rotate(-200deg);
    -moz-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    -o-transform: rotate(-200deg);
    transform: rotate(-200deg); } }
@keyframes plane {
  0% {
    top: 40%;
    left: 100%;
    -webkit-transform: rotate(50deg);
    -moz-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    -o-transform: rotate(50deg);
    transform: rotate(50deg); }
  30% {
    top: 10%;
    left: 30%;
    -webkit-transform: rotate(100deg);
    -moz-transform: rotate(100deg);
    -ms-transform: rotate(100deg);
    -o-transform: rotate(100deg);
    transform: rotate(100deg); }
  /*
  60%{
    top:60%;
    left:50%;
    @include transform(rotate(-2180deg));
  }

  80%{
    top:35%;
    left:60%;
    @include transform(rotate(-2180deg));
  }  */
  100% {
    top: 110%;
    left: -200%;
    -webkit-transform: rotate(-200deg);
    -moz-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    -o-transform: rotate(-200deg);
    transform: rotate(-200deg); } }
@-webkit-keyframes hat {
  0% {
    top: 40%;
    right: -10%; }
  100% {
    top: 10%;
    right: 110%;
    -webkit-transform: rotate(-1000deg);
    -moz-transform: rotate(-1000deg);
    -ms-transform: rotate(-1000deg);
    -o-transform: rotate(-1000deg);
    transform: rotate(-1000deg); } }
@-moz-keyframes hat {
  0% {
    top: 40%;
    right: -10%; }
  100% {
    top: 10%;
    right: 110%;
    -webkit-transform: rotate(-1000deg);
    -moz-transform: rotate(-1000deg);
    -ms-transform: rotate(-1000deg);
    -o-transform: rotate(-1000deg);
    transform: rotate(-1000deg); } }
@-ms-keyframes hat {
  0% {
    top: 40%;
    right: -10%; }
  100% {
    top: 10%;
    right: 110%;
    -webkit-transform: rotate(-1000deg);
    -moz-transform: rotate(-1000deg);
    -ms-transform: rotate(-1000deg);
    -o-transform: rotate(-1000deg);
    transform: rotate(-1000deg); } }
@-o-keyframes hat {
  0% {
    top: 40%;
    right: -10%; }
  100% {
    top: 10%;
    right: 110%;
    -webkit-transform: rotate(-1000deg);
    -moz-transform: rotate(-1000deg);
    -ms-transform: rotate(-1000deg);
    -o-transform: rotate(-1000deg);
    transform: rotate(-1000deg); } }
@keyframes hat {
  0% {
    top: 40%;
    right: -10%; }
  100% {
    top: 10%;
    right: 110%;
    -webkit-transform: rotate(-1000deg);
    -moz-transform: rotate(-1000deg);
    -ms-transform: rotate(-1000deg);
    -o-transform: rotate(-1000deg);
    transform: rotate(-1000deg); } }
@-webkit-keyframes leaf1 {
  0% {
    top: 20%;
    right: -10%; }
  100% {
    top: 30%;
    right: 110%;
    -webkit-transform: rotate(-1000deg);
    -moz-transform: rotate(-1000deg);
    -ms-transform: rotate(-1000deg);
    -o-transform: rotate(-1000deg);
    transform: rotate(-1000deg); } }
@-moz-keyframes leaf1 {
  0% {
    top: 20%;
    right: -10%; }
  100% {
    top: 30%;
    right: 110%;
    -webkit-transform: rotate(-1000deg);
    -moz-transform: rotate(-1000deg);
    -ms-transform: rotate(-1000deg);
    -o-transform: rotate(-1000deg);
    transform: rotate(-1000deg); } }
@-ms-keyframes leaf1 {
  0% {
    top: 20%;
    right: -10%; }
  100% {
    top: 30%;
    right: 110%;
    -webkit-transform: rotate(-1000deg);
    -moz-transform: rotate(-1000deg);
    -ms-transform: rotate(-1000deg);
    -o-transform: rotate(-1000deg);
    transform: rotate(-1000deg); } }
@-o-keyframes leaf1 {
  0% {
    top: 20%;
    right: -10%; }
  100% {
    top: 30%;
    right: 110%;
    -webkit-transform: rotate(-1000deg);
    -moz-transform: rotate(-1000deg);
    -ms-transform: rotate(-1000deg);
    -o-transform: rotate(-1000deg);
    transform: rotate(-1000deg); } }
@keyframes leaf1 {
  0% {
    top: 20%;
    right: -10%; }
  100% {
    top: 30%;
    right: 110%;
    -webkit-transform: rotate(-1000deg);
    -moz-transform: rotate(-1000deg);
    -ms-transform: rotate(-1000deg);
    -o-transform: rotate(-1000deg);
    transform: rotate(-1000deg); } }
@-webkit-keyframes leaf12 {
  0% {
    top: 40%;
    right: -10%; }
  100% {
    top: 70%;
    right: 110%;
    -webkit-transform: rotate(-1500deg);
    -moz-transform: rotate(-1500deg);
    -ms-transform: rotate(-1500deg);
    -o-transform: rotate(-1500deg);
    transform: rotate(-1500deg); } }
@-moz-keyframes leaf12 {
  0% {
    top: 40%;
    right: -10%; }
  100% {
    top: 70%;
    right: 110%;
    -webkit-transform: rotate(-1500deg);
    -moz-transform: rotate(-1500deg);
    -ms-transform: rotate(-1500deg);
    -o-transform: rotate(-1500deg);
    transform: rotate(-1500deg); } }
@-ms-keyframes leaf12 {
  0% {
    top: 40%;
    right: -10%; }
  100% {
    top: 70%;
    right: 110%;
    -webkit-transform: rotate(-1500deg);
    -moz-transform: rotate(-1500deg);
    -ms-transform: rotate(-1500deg);
    -o-transform: rotate(-1500deg);
    transform: rotate(-1500deg); } }
@-o-keyframes leaf12 {
  0% {
    top: 40%;
    right: -10%; }
  100% {
    top: 70%;
    right: 110%;
    -webkit-transform: rotate(-1500deg);
    -moz-transform: rotate(-1500deg);
    -ms-transform: rotate(-1500deg);
    -o-transform: rotate(-1500deg);
    transform: rotate(-1500deg); } }
@keyframes leaf12 {
  0% {
    top: 40%;
    right: -10%; }
  100% {
    top: 70%;
    right: 110%;
    -webkit-transform: rotate(-1500deg);
    -moz-transform: rotate(-1500deg);
    -ms-transform: rotate(-1500deg);
    -o-transform: rotate(-1500deg);
    transform: rotate(-1500deg); } }
@-webkit-keyframes fade {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-moz-keyframes fade {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-ms-keyframes fade {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-o-keyframes fade {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fade {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-webkit-keyframes fade-out {
  from {
    opacity: 1;
    display: flex; }
  to {
    opacity: 0;
    display: none; } }
@-moz-keyframes fade-out {
  from {
    opacity: 1;
    display: flex; }
  to {
    opacity: 0;
    display: none; } }
@-ms-keyframes fade-out {
  from {
    opacity: 1;
    display: flex; }
  to {
    opacity: 0;
    display: none; } }
@-o-keyframes fade-out {
  from {
    opacity: 1;
    display: flex; }
  to {
    opacity: 0;
    display: none; } }
@keyframes fade-out {
  from {
    opacity: 1;
    display: flex; }
  to {
    opacity: 0;
    display: none; } }
html, body {
  overflow-x: hidden; }

body {
  height: 1900px;
  margin: 0;
  width: 100%;
  padding: 0;
  background: #83a4d4;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #83a4d4, #b6fbff);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #83a4d4, #b6fbff);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-repeat: repeat-y;
  z-index: 0;
  overflow: hidden;
  -webkit-font-smoothing: subpixel-antialiased; }
  @media (max-width: 464px) {
    body {
      height: 850px; } }

a {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease; }
  a:hover {
    color: #FFFF82; }

h1 {
  margin: 0; }

a, h1, h2, h3, p {
  letter-spacing: 0.1em; }

a, h1, h2, h3, p, .art-h1 {
  color: black;
  font-family: "Muli", sans-serif; }

h2 {
  font-size: 4rem; }

h3 {
  font-size: 2.5rem;
  font-style: italic; }

p {
  font-size: 1.5rem;
  word-wrap: break-word; }
  @media (max-width: 464px) {
    p {
      font-size: 1.2rem; } }

.wrapper {
  margin-top: 3em;
  height: 100%;
  width: 100%;
  overflow: hidden; }

.half-site {
  height: 160vw;
  width: 160vw;
  border-left: 1rem solid black;
  z-index: 1000;
  position: relative;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease; }
  .half-site h1 {
    cursor: pointer;
    width: auto;
    color: white;
    font-size: 2em;
    font-weight: 800;
    left: 2px;
    margin: 0 0 0 1rem;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    /*
    &:hover {
      color:grey;
    }    */ }
    @media (max-width: 464px) {
      .half-site h1 {
        margin: 0;
        font-size: 1.6em; } }
  .half-site.active {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    position: fixed;
    top: 2rem;
    height: auto;
    z-index: 5000;
    width: 100vw; }
    .half-site.active h1 {
      margin: 1rem; }
      @media (max-width: 854px) {
        .half-site.active h1 {
          margin: 0.2rem; } }
  .half-site.hidden {
    display: none; }

.dev-section {
  background: #FFFF82;
  /* fallback for old browsers */
  -webkit-transform: rotate(45deg) translate(5%, 30%);
  -moz-transform: rotate(45deg) translate(5%, 30%);
  -ms-transform: rotate(45deg) translate(5%, 30%);
  -o-transform: rotate(45deg) translate(5%, 30%);
  transform: rotate(45deg) translate(5%, 30%); }
  @media (max-width: 854px) {
    .dev-section {
      -webkit-transform: rotate(45deg) translate(6%, 38%);
      -moz-transform: rotate(45deg) translate(6%, 38%);
      -ms-transform: rotate(45deg) translate(6%, 38%);
      -o-transform: rotate(45deg) translate(6%, 38%);
      transform: rotate(45deg) translate(6%, 38%); } }

.art-section {
  z-index: 1050;
  background: #e5c3ff;
  -webkit-transform: rotate(45deg) translate(-60%, -33%);
  -moz-transform: rotate(45deg) translate(-60%, -33%);
  -ms-transform: rotate(45deg) translate(-60%, -33%);
  -o-transform: rotate(45deg) translate(-60%, -33%);
  transform: rotate(45deg) translate(-60%, -33%); }
  @media (max-width: 854px) {
    .art-section {
      -webkit-transform: rotate(45deg) translate(-50%, -18%);
      -moz-transform: rotate(45deg) translate(-50%, -18%);
      -ms-transform: rotate(45deg) translate(-50%, -18%);
      -o-transform: rotate(45deg) translate(-50%, -18%);
      transform: rotate(45deg) translate(-50%, -18%); } }

.cv-section {
  z-index: 1056;
  background: red;
  -webkit-transform: rotate(45deg) translate(-125%, -96%);
  -moz-transform: rotate(45deg) translate(-125%, -96%);
  -ms-transform: rotate(45deg) translate(-125%, -96%);
  -o-transform: rotate(45deg) translate(-125%, -96%);
  transform: rotate(45deg) translate(-125%, -96%); }
  @media (max-width: 854px) {
    .cv-section {
      -webkit-transform: rotate(45deg) translate(-106%, -73%);
      -moz-transform: rotate(45deg) translate(-106%, -73%);
      -ms-transform: rotate(45deg) translate(-106%, -73%);
      -o-transform: rotate(45deg) translate(-106%, -73%);
      transform: rotate(45deg) translate(-106%, -73%); } }

.triangle-span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  background: black;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  height: 3rem; }
  @media (max-width: 464px) {
    .triangle-span {
      height: 3rem; } }
  .triangle-span.active {
    background: white;
    height: 2rem; }
    .triangle-span.active h1 {
      color: black;
      font-size: 1.3em; }
      @media (max-width: 854px) {
        .triangle-span.active h1 {
          font-size: 1.3em; } }

.triangle-container {
  display: none;
  overflow-x: hidden; }
  .triangle-container.active {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center; }
    @media (max-width: 854px) {
      .triangle-container.active {
        -webkit-justify-content: flex-end;
        -moz-justify-content: flex-end;
        -ms-justify-content: flex-end;
        justify-content: flex-end;
        -ms-flex-pack: flex-end; } }

.triangle-content {
  opacity: 0;
  animation-delay: 0.6s;
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  /* forward prevents the animation from restarting! */
  -moz-animation-name: fade;
  -moz-animation-duration: 1.8s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: 1;
  -ms-animation-name: fade;
  -ms-animation-duration: 1.8s;
  -ms-animation-fill-mode: forwards;
  -ms-animation-iteration-count: 1;
  -o-animation-name: fade;
  -o-animation-duration: 1.8s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: 1;
  animation-name: fade;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  margin: 0 6rem 0 6rem;
  width: 70%;
  height: 100vh; }
  @media (max-width: 1500px) {
    .triangle-content {
      width: 90%; } }
  @media (max-width: 464px) {
    .triangle-content {
      width: 100%; }
      .triangle-content p, .triangle-content img {
        margin-left: 0.3em; } }

.icons {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  height: 4rem;
  margin-top: 4rem; }
  .icons img {
    height: 4rem;
    margin-right: 1rem; }

.projekt {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: space-between;
  -moz-align-items: space-between;
  -ms-align-items: space-between;
  align-items: space-between;
  height: auto;
  width: 100%; }
  .projekt h2 {
    font-style: italic;
    font-size: 5rem;
    margin: 0.3em 0 0.3em 0; }
    @media (max-width: 854px) {
      .projekt h2 {
        font-size: 3.5rem;
        margin: 0.2em 0 0.5em 0;
        padding: 0; } }
    @media (max-width: 464px) {
      .projekt h2 {
        font-size: 2.5em; } }

.projekt-container {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-grow;
  -moz-justify-content: flex-grow;
  -ms-justify-content: flex-grow;
  justify-content: flex-grow;
  -ms-flex-pack: flex-grow;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  flex-wrap: wrap; }
  @media (max-width: 854px) {
    .projekt-container {
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      -ms-justify-content: flex-start;
      justify-content: flex-start;
      -ms-flex-pack: flex-start; } }
  @media (max-width: 854px) {
    .projekt-container {
      width: 100%; } }

.projekt-figure {
  position: relative;
  margin: 0 2em 14em 0;
  height: 15em;
  width: 20em;
  padding: 1em;
  z-index: 1;
  background: black; }
  .projekt-figure h3, .projekt-figure p, .projekt-figure a {
    color: #FFFF82; }
  .projekt-figure a {
    margin-top: 2rem;
    font-size: 2.2em;
    font-weight: 400;
    font-style: italic; }
    @media (max-width: 1100px) {
      .projekt-figure a {
        font-size: 2.2em; } }
  .projekt-figure img {
    height: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 100; }
    .projekt-figure img.active {
      position: absolute;
      width: 160%;
      z-index: 1000;
      margin: -5em -4em;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      @media (max-width: 464px) {
        .projekt-figure img.active {
          width: 100vw;
          height: auto;
          margin: 0; } }
  @media (max-width: 1100px) {
    .projekt-figure {
      height: 15em;
      width: 20em; } }
  @media (max-width: 854px) {
    .projekt-figure {
      height: 15em;
      width: 100%; } }
  @media (max-width: 464px) {
    .projekt-figure {
      width: 90%;
      padding: 0;
      margin-bottom: 10em; }
      .projekt-figure a {
        font-size: 2em;
        margin: 0.2em 0 0 0.2em; }
      .projekt-figure p {
        font-size: 1.22em; } }

img.icon {
  margin: 0;
  height: 4em;
  width: 4em;
  z-index: 100;
  border-radius: 100%;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease; }
  img.icon:hover {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: white;
    height: 9em;
    width: 9em;
    border: 1em solid white; }
  @media (max-width: 464px) {
    img.icon {
      height: 4em;
      width: 4em; } }

.figure-img.icon {
  margin: 1%; }

.icon-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  height: 70%;
  width: 100%;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }
  @media (max-width: 464px) {
    .icon-box {
      -webkit-transform: translate(0, 0);
      -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -o-transform: translate(0, 0);
      transform: translate(0, 0);
      width: 90%; } }

.back-button {
  height: 2em;
  position: absolute;
  right: 0.7em;
  top: 0;
  cursor: pointer; }

.projekt-span {
  width: 70%; }
  @media (max-width: 464px) {
    .projekt-span {
      width: 90%; } }

/*# sourceMappingURL=main.css.map */
