
  #hamburger {
    z-index: 10;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: 23px;
    left: 2vw;
    background-color: #ca2026;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(10, 10, 10, 0.3);
    transition: all 0.1s ease-in-out;
  }
  #hamburger .icon-bar {
    display: block;
    background-color: #FFFFFF;
    width: 22px;
    height: 2px;
    transition: all 0.1s ease-in-out;
  }
  #hamburger .icon-bar + .icon-bar {
    margin-top: 4px;
  }
  
  .nav {
    z-index: 9;
    position: fixed;
    bottom: 4.5%;
    left: 2.2%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibilty: hidden;
    opacity: 0;
    box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.48);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.18, 1.35, 1, 1);
  }
  
  .material-icons {
    font-size: 24px;
    color: rgba(0, 0, 0, 0.54);
  }
  
  #email.show {
    transform: translateY(-125%);
  }
  
  #calendar.show {
    transform: translateY(-250%);
  }
  
  #home.show {
    transform: translateY(-375%);
  }
  
  #hamburger.show {
    box-shadow: 7px 7px 10px 0px rgba(0, 0, 0, 0.48);
  }
  #hamburger.show #wrapper {
    transition: transform 0.3s ease-in-out;
    transform: rotateZ(90deg);
  }
  #hamburger.show #one {
    transform: translateY(6px) rotateZ(45deg) scaleX(0.9);
  }
  #hamburger.show #thr {
    transform: translateY(-6px) rotateZ(-45deg) scaleX(0.9);
  }
  #hamburger.show #two {
    opacity: 0;
  }
  
  .nav.show {
    visibility: visible;
    opacity: 1;
  }
  @media (max-width:885px){
    #hamburger {
      bottom: 13px !important;
      left: 2% !important;
    }
    .nav{
        bottom: 20px !important;
		    left: 2.5% !important;
    }
  }
