/*Mixins and Essentials*/
::-webkit-scrollbar {
  width: 12px;
  height: 5px; }

::-webkit-scrollbar-thumb {
  height: 6px;
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  -webkit-border-radius: 7px;
  background-color: rgba(0, 0, 0, 0.3); }

::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none; }

::-webkit-scrollbar-corner {
  background-color: transparent; }

/*Body*/
* {
  -webkit-appearance: none; }

body {
  margin: 0px; }

nav {
  position: fixed;
  width: 20vw;
  height: 100vh;
  left: 0;
  background: #0e1817;
  -webkit-box-shadow: 0.4rem 0px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0.4rem 0px 0px rgba(0, 0, 0, 0.1);
  z-index: 1; }
  nav .tab {
    font-family: "Roboto", sans-serif;
    width: calc(100% - 40px);
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  nav .tab:hover {
    background: #142221;
    color: white; }
  nav .tab:first-of-type {
    margin-top: 50px; }
  nav .tab.current {
    background: #193533;
    color: white; }

.container {
  position: fixed;
  left: 20vw;
  height: 100vh;
  width: 80vw;
  background-image: -webkit-linear-gradient(#13282d, #296460);
  overflow: hidden; }

@-webkit-keyframes glow {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9); }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1); }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9); } }

@keyframes glow {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9); }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1); }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9); } }

@-webkit-keyframes sway {
  0% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  50% {
    -webkit-transform: rotate(2.5deg);
    transform: rotate(2.5deg); } }

@keyframes sway {
  0% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  50% {
    -webkit-transform: rotate(2.5deg);
    transform: rotate(2.5deg); } }

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 200px;
  width: 200px;
  background: rgba(217, 194, 74, 0.1);
  border-radius: 100%;
  -webkit-animation: glow 3s infinite;
  animation: glow 3s infinite;
  -webkit-transition: all 0.2s cubic-bezier(0.43, 0.13, 0.15, 0.99);
  -moz-transition: all 0.2s cubic-bezier(0.43, 0.13, 0.15, 0.99);
  -o-transition: all 0.2s cubic-bezier(0.43, 0.13, 0.15, 0.99);
  transition: all 0.2s cubic-bezier(0.43, 0.13, 0.15, 0.99); }

.light {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
  background: rgba(217, 194, 74, 0.25);
  -webkit-filter: blur(100px);
  filter: blur(100px);
  border-radius: 100%;
  -webkit-transition: all 2s cubic-bezier(0.43, 0.13, 0.15, 0.99);
  -moz-transition: all 2s cubic-bezier(0.43, 0.13, 0.15, 0.99);
  -o-transition: all 2s cubic-bezier(0.43, 0.13, 0.15, 0.99);
  transition: all 2s cubic-bezier(0.43, 0.13, 0.15, 0.99); }

.seed {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 50px;
  width: 75px; }
  .seed .seed-inner {
    height: 100%;
    width: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
    -moz-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
    -o-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
    transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99); }
    .seed .seed-inner img {
      height: 100%;
      position: absolute;
      left: 50%;
      -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%); }

.plant {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 200px;
  height: 280px; }
  .plant .spark {
    position: absolute;
    top: -8%;
    left: 25%;
    width: 100%;
    height: 80%;
    z-index: 4;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.25s cubic-bezier(0.43, 0.13, 0.15, 0.99);
    -moz-transition: all 0.25s cubic-bezier(0.43, 0.13, 0.15, 0.99);
    -o-transition: all 0.25s cubic-bezier(0.43, 0.13, 0.15, 0.99);
    transition: all 0.25s cubic-bezier(0.43, 0.13, 0.15, 0.99); }
    .plant .spark img {
      height: 100%; }
  .plant .head {
    position: absolute;
    top: 0;
    width: 100%;
    height: 50%;
    z-index: 1; }
    .plant .head .head-inner {
      height: 100%;
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      transform: scale(0);
      -webkit-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
      -moz-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
      -o-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
      transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99); }
      .plant .head .head-inner img {
        height: 100%;
        position: absolute;
        left: 22.5%; }
    .plant .head .hair {
      position: absolute;
      top: 0;
      left: 0%;
      height: 40%;
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      transform: scale(0);
      -webkit-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
      -moz-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
      -o-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
      transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99); }
      .plant .head .hair img {
        height: 100%;
        position: absolute;
        left: 0%; }
    .plant .head .eyes {
      position: absolute;
      top: 0;
      left: 40%;
      height: 50%;
      z-index: 2;
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      transform: scale(0);
      -webkit-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
      -moz-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
      -o-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
      transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99); }
      .plant .head .eyes img {
        height: 100%;
        position: absolute;
        left: 0; }
    .plant .head .shooter-ball {
      position: absolute;
      top: 35%;
      right: 10%;
      height: 40%;
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      transform: scale(0);
      z-index: 10;
      -webkit-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
      -moz-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
      -o-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
      transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99); }
      .plant .head .shooter-ball img {
        height: 100%;
        position: absolute;
        left: 0%;
        -webkit-animation: rotate 1s linear infinite;
        animation: rotate 1s linear infinite; }
  .plant .upper-body {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
    -webkit-transform-origin: center 100%;
    -ms-transform-origin: center 100%;
    transform-origin: center 100%;
    -webkit-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
    -moz-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
    -o-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
    transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99); }
  .plant .body {
    position: absolute;
    top: 45%;
    width: 100%;
    height: 35%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
    -moz-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
    -o-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
    transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99); }
    .plant .body img {
      height: 100%;
      position: absolute;
      left: 50%;
      -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%); }
  .plant .leaves-front,
  .plant .leaves-back {
    position: absolute;
    top: 70%;
    width: 100%;
    height: 30%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
    -moz-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
    -o-transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99);
    transition: all 0.5s cubic-bezier(0.43, 0.13, 0.15, 0.99); }
    .plant .leaves-front .leaf,
    .plant .leaves-back .leaf {
      position: absolute;
      top: 0;
      width: 100%;
      height: 70%; }
      .plant .leaves-front .leaf img,
      .plant .leaves-back .leaf img {
        height: 100%;
        position: absolute;
        left: 50%;
        -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%); }
  .plant .leaves-back {
    top: 60%; }

.text-wrapper {
  position: absolute;
  top: 50%;
  left: 20%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 1;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease; }
  .text-wrapper p {
    font-family: "Roboto", sans-serif;
    font-size: 15em;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.1); }

.button-wrapper {
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0); }

button {
  padding: 18px 30px;
  background: #18b77e;
  border: none;
  outline: none;
  font-size: 0.8em;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 5px;
  -webkit-transition: all 0.4s cubic-bezier(0.43, 0.13, 0.15, 0.99);
  -moz-transition: all 0.4s cubic-bezier(0.43, 0.13, 0.15, 0.99);
  -o-transition: all 0.4s cubic-bezier(0.43, 0.13, 0.15, 0.99);
  transition: all 0.4s cubic-bezier(0.43, 0.13, 0.15, 0.99); }

button:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  height: 100%;
  width: 100%;
  background: #18b77e;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-filter: blur(15px);
  opacity: 0.5;
  z-index: -1;
  -webkit-transition: all 0.4s cubic-bezier(0.43, 0.13, 0.15, 0.99);
  -moz-transition: all 0.4s cubic-bezier(0.43, 0.13, 0.15, 0.99);
  -o-transition: all 0.4s cubic-bezier(0.43, 0.13, 0.15, 0.99);
  transition: all 0.4s cubic-bezier(0.43, 0.13, 0.15, 0.99); }

button:hover {
  -webkit-box-shadow: 0 0 0 0.4rem rgba(102, 204, 167, 0.25);
  box-shadow: 0 0 0 0.4rem rgba(102, 204, 167, 0.25); }

button:hover:before {
  top: 20px; }

button:active {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8); }

@media only screen and (max-width: 700px) {
  .container {
    width: 100vw;
    left: 0;
    top: 99px;
    height: calc(100vh - 99px); }
  nav {
    top: 0;
    height: 100px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    nav .tab {
      width: auto;
      margin: 5px; }
    nav .tab:first-of-type {
      margin: 0; } }
