header {
  position: absolute;
  right: 50px;
  bottom: 2.9vh;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /*a:nth-of-type(4) {
            animation: load_a 0.5s 1.25s linear forwards;
        }
        a:nth-of-type(3) {
            animation: load_a 0.5s 1.5s linear forwards;
        }
        a:nth-of-type(2) {
            animation: load_a 0.5s 1.75s linear forwards;
        }
        a:nth-of-type(1) {
            animation: load_a 0.5s 2s linear forwards;
        }
        @keyframes load_a {
            0% {
                opacity: 0;
                width: 0px;
            }
            100% {
                opacity: 1;
                width: 50px;
            }
        }*/
}

header nav a {
  position: relative;
  display: block;
  width: 0px;
  height: 15px;
  padding: 15px;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

header nav a div {
  display: block;
  width: 100%;
  height: 100%;
  background: white;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

header nav .a_hover {
  width: 100px !important;
}

header .text_bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 200px;
  margin: 0 15px;
}

header .text_bottom a {
  text-decoration: none;
}

header .text_bottom .text_menu {
  display: none;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  white-space: nowrap;
  font-family: "Nunito", cursive;
  color: white;
  margin: 15px;
  font-size: 0.75em;
  text-transform: uppercase;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  opacity: 0;
  -webkit-transition: opacity 0.5s !important;
  transition: opacity 0.5s !important;
}

header .text_bottom .menu {
  opacity: 0;
  -webkit-animation: load_opacity 0.5s 1.25s forwards linear;
          animation: load_opacity 0.5s 1.25s forwards linear;
}

@-webkit-keyframes load_opacity {
  100% {
    opacity: 1;
  }
}

@keyframes load_opacity {
  100% {
    opacity: 1;
  }
}

header .text_bottom .display {
  display: block;
  opacity: 1;
}

header .text_bottom .h_line {
  display: block;
  width: 3px;
  height: 0px;
  background: white;
}

header .text_bottom .h_line_change {
  -webkit-animation: change 1s forwards ease-in-out;
          animation: change 1s forwards ease-in-out;
}

@-webkit-keyframes change {
  0% {
    height: 100%;
  }
  50% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@keyframes change {
  0% {
    height: 100%;
  }
  50% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@media only screen and (max-height: 375px) {
  header .text_bottom {
    height: 150px;
  }
}

@media only screen and (max-width: 767px) {
  header {
    width: 100%;
    position: absolute;
    right: 0px;
    bottom: 7.5vh;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  header nav a {
    display: block;
    width: 3px;
    height: 0px;
    padding: 0 15px;
    opacity: 1;
    cursor: pointer;
    -webkit-transition: 0.25s;
    transition: 0.25s;
  }
  header nav a div {
    display: block;
    width: 100%;
    height: 100%;
    background: white;
    cursor: pointer;
    opacity: 1;
    -webkit-transition: 0.25s;
    transition: 0.25s;
  }
  header nav .a_hover {
    height: 50px !important;
    width: 3px !important;
  }
  header .text_bottom {
    position: absolute;
    right: 0;
    height: 150px;
    margin: 0 15px;
  }
  header .text_bottom .text_menu {
    font-size: 0.65em;
  }
}

@media only screen and (max-width: 767px) and (orientation: landscape) {
  header .text_bottom {
    right: 50px;
    height: 150px;
  }
  header .text_bottom .h_line {
    display: block;
    width: 3px;
    height: 0px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: white;
  }
}
/*# sourceMappingURL=header.css.map */