.active {
  transition: all .3s ease-in-out;
  transform: translateX(0%) !important;
}

.navi {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  display: block !important;

  &__img {
    background-image: url("../../images/navi-background/navi-background_transparent.svg");
    background-size: cover;
    background-repeat: no-repeat;
  }

  &__mobile {
    transition: all .3s ease-in-out;
    transform: translateX(100%);
    background-color: #E3EFF9;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 2;
    position: fixed;

    &--close-btn {
      margin-top: 60px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);

      &__line {
        width: 30px;
        height: 3px;
        background-color: #53738a;
        transform: rotate(45deg);
      }

      &__line-flipped {
        margin-top: -2px;
        width: 30px;
        height: 3px;
        background-color: #53738a;
        transform: rotate(-45deg);
      }
    }

    &--elements {
      text-align: center;

      ul {
        position: absolute;
        height: 70vh;
        width: 100vw;
        top: 15%;

        a {

          &:first-child {
            margin-top: 10%;
          }

          p {
            text-transform: uppercase;
            margin-bottom: 7vh;
            font-size: 20px;
            font-weight: bold;
            color: #53738a !important;
          }
        }
      }
    }
  }

  &__inner {
    padding-top: 300px;
    padding-bottom: 30px;

    @media screen and (max-width: 1366px) {
      padding-top: 225px;
    }

    @media screen and (min-width: 2000px) {
      padding-top: 325px;
    }

    @media screen and (min-width: 2200px) {
      padding-top: 350px;
    }

    @media screen and (min-width: 2400px) {
      padding-top: 375px;
    }

    &--branding {
      font-family: Hand_Of_Sean_Demo, sans-serif;
      font-size: 35px;
      text-align: center;

      a {
        text-decoration: none;
        color: #53738a !important;
      }
    }

    .navbar-toggler {
      transform: scale(2);
      color: #53738a;
    }

    &--menu-elements {
      margin-top: 15px;
      font-family: Raleway, sans-serif;
      font-size: 16px;
      color: #53738a !important;
      text-transform: uppercase;

      &__inner {
        width: 100%;
        justify-content: space-between;

        a {
          text-decoration: none;

          p {
            color: #53738a !important;
          }
        }
      }
    }
  }
}