@font-face {
  font-family: "metropolis",sans-serif;
  src: url(../fonts/Metropolis-Thin.otf); }
.effect-menu {
  padding-top: 30px;
  position: fixed;
  top: -80px;
  left: 0;
  width: 100%;
  z-index: 99;
  display: none; }

.animatedmenu {
  display: block;
  animation: floatBubble 3s forwards;
  animation-delay: 1s; }

@keyframes floatBubble {
  100% {
    top: 0px; } }
div.element-up {
  z-index: 10;
  animation: floatBubble 2s forwards;
  position: absolute; }

.headerLogo {
  display: flex;
  align-items: center; }
  .headerLogo .tbutton {
    margin-left: auto;
    position: relative;
    z-index: 99; }
    .headerLogo .tbutton .menu-toggle {
      background-color: unset;
      border: 0;
      display: block; }

.main {
  padding: 20px;
  width: 100%;
  z-index: 2;
  position: relative;
  text-align: center; }

/* Nav */
.panel {
  width: 0;
  overflow: auto;
  position: fixed;
  top: 0;
  right: -700px;
  transition: left 0.2s ease-in;
  z-index: 10;
  color: #fff;
  background: #262219; }
  .panel ul {
    margin-top: 90px;
    list-style-type: none;
    padding-right: 90px; }
  .panel li {
    transition: right 0.2s ease-in;
    text-align: right;
    margin-bottom: 20px; }
    .panel li a {
      display: inline-block;
      padding: 10px 0px;
      color: #fff;
      font-size: 48px;
      text-decoration: none;
      transition: color 0.2s ease-out, background-color 0.2s ease-out;
      border-bottom: 0.5px solid #FFFFFF;
      font-weight: 200;
      white-space: nowrap; }

.panel.active {
  right: 0;
  width: 100%;
  height: 100vh; }

.slide-left {
  animation: 3s slide-left; }

@keyframes slide-left {
  from {
    margin-left: 100%; }
  to {
    margin-left: 0%; } }
/* Nav Toggle */
.toggleIcon {
  position: relative;
  margin: auto;
  width: 50px;
  height: 50px;
  cursor: pointer; }
  .toggleIcon span {
    position: absolute;
    display: block;
    width: 36px;
    height: 3px;
    background-color: #ccc;
    border-radius: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%) translateY(-50%);
    transform-origin: 50% 50%;
    transition: 0.5s, transform 0.5s, background-color 0.5s; }
    .toggleIcon span::before {
      display: block;
      position: absolute;
      content: "";
      background-color: #ccc;
      border-radius: 2px;
      width: 36px;
      height: 3px;
      transform: translateY(-10px);
      transition: 0.5s, transform 0.5s, background-color 0.5s; }
    .toggleIcon span::after {
      display: block;
      position: absolute;
      content: "";
      background-color: #ccc;
      border-radius: 2px;
      width: 36px;
      height: 3px;
      transform: translateY(-10px);
      transition: 0.5s, transform 0.5s, background-color 0.5s;
      transform: translateY(10px); }
  .toggleIcon:hover span {
    background-color: white; }
    .toggleIcon:hover span::before {
      background-color: white;
      transform: translateY(-13px); }
    .toggleIcon:hover span::after {
      background-color: white;
      transform: translateY(13px); }

.menu-toggle.is-opened .toggleIcon {
  transform: rotate(360deg); }
  .menu-toggle.is-opened .toggleIcon span {
    background: transparent; }
    .menu-toggle.is-opened .toggleIcon span::before {
      background-color: white;
      transform: translateY(0) rotate(45deg); }
    .menu-toggle.is-opened .toggleIcon span::after {
      background-color: white;
      transform: translateY(0) rotate(-45deg); }

@media (min-width: 768px) and (max-width: 991px) {
  .panel ul {
    padding-right: 50px; }
    .panel ul li a {
      font-size: 32px; } }
@media (max-width: 767px) {
  .headerLogo .logo {
    width: 128px; }

  .effect-menu {
    padding-top: 10px; }

  .panel ul {
    padding-right: 30px; }
    .panel ul li a {
      font-size: 20px; } }

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