  .mobile-nav-btn-cont{
   position: absolute;
    width: 70px;
    height: 60px;
    right: 10%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .one{
   position: absolute;
   top: 0;
   width: 100%;
   height: 14px;
   background: black;
   border-radius: 25px;
   transition: 0.5s ease-in-out;
  }
    .two{
    position: absolute;
    width: 100%;
    height: 14px;
    top: 50%;
    background: black;
    transform: translateY(-50%);
    border-radius: 25px;
      transition: 0.5s ease-in-out;
  }
    .three{
    position: absolute;
    width: 100%;
    height: 14px;
    top: 100%;
    background: black;
    transform: translateY(-100%);
    border-radius: 25px;
    transition: 0.5s ease-in-out;
  }
  /* Navbar mobile and medium collapse menu */
  .mobile-collapse-menu{
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 3;
    left: 100%;
   transition: 0.5s ease-in-out;
  }

  .mobile-collapse-menu h1{
    position: relative;
    font-family: 'Advent Pro', sans-serif;
    width: 100%;
    font-size: 60px;
    color: grey;
    margin-top: 20px; /* with animation should be 20px */
    text-align: center;
    cursor: pointer;
    left: -100px; /* with animation should be 0px */
    opacity: 0; /* with animation should be 1 */
    transition: 0.5s ease-in-out;
  }

  .mobile-collapse-menu h1:nth-child(1){
    margin-top: 150px;
  }

  .mobile-collapse-menu p{
    position: relative;
    font-family: 'Advent Pro', sans-serif;
    width: 50%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: grey;
    margin-top: 10px;
    text-align: center;
  }

  .mobile-collapse-menu div{
    position: relative;
    height: 0px;
    overflow: hidden;
    transition: 0.5s ease-in-out;
  }

  .mobile-collapse-menu div p{
    opacity: 0;
  }

