.menu-container {
    position: absolute;
   
    margin: 1.75em auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    bottom:50%;
    left:95%;
  }
  .cont, .menu, .btn-menu {
    position: absolute;
    color: #fff;
    border-radius: 100%;
    background:#c09769;
    padding: 10px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .btn-menu {
    width: 50px;
    height: 50px;
    z-index: 10;
  }
  .menu {
    font-size: 0px;
    width: 0px;
    height: 0px;
    transform: translateY(0px);
    cursor: pointer;
  }
  .menu:nth-child(1) {
    transition: all 0.3s;
  }
  .menu:nth-child(2) {
    transition: all 0.3s;
  }
  .menu:nth-child(3) {
    transition: all 0.3s;
  }
  .menu:nth-child(4) {
    transition: all 0.3s;
  }
  .menu:nth-child(5) {
    transition: all 0.3s;
  }
  .menu:nth-child(6) {
    transition: all 0.3s;
  }
  .menu:nth-child(7) {
    transition: all 0.3s;
  }
  .menu-container .menu.animate {
    opacity: 1;
  }
  .menu-container .menu.animate:nth-child(1) {
    width: 60px;
    height: 60px;
   
    transform: rotate(0deg) translate(150px) rotate(0deg);
  }
  .menu-container .menu.animate:nth-child(2) {
    width: 60px;
    height: 60px;
    
    /* Galary */
    transform: rotate(140deg) translate(150px) rotate(-140deg);
  }
  .menu-container .menu.animate:nth-child(3) {
    width: 60px;
    height: 60px;
   
    /* VR */
    transform: rotate(100deg) translate(150px) rotate(-100deg);
  }
  .menu-container .menu.animate:nth-child(4) {
    width: 60px;
    height: 60px;

    /* Select */
    transform: rotate(180deg) translate(150px) rotate(-180deg);
  }
  .menu-container .menu.animate:nth-child(5) {
    width: 60px;
    height: 60px;
   
    /* Location */
    transform: rotate(220deg) translate(150px) rotate(-220deg);
  }
  .menu-container .menu.animate:nth-child(6) {
    width: 60px;
    height: 60px;
    /* Home */
    transform: rotate(260deg) translate(150px) rotate(-260deg);
  }
  .menu-container .menu.animate:nth-child(7) {
    width: 80px;
    height: 80px;
   
    transform: rotate(100deg) translate(150px) rotate(-100deg);
  }
  .menu-container .menu.animate:nth-child(8) {
    width: 80px;
    height: 80px;
    
    transform: rotate(315deg) translate(150px) rotate(-315deg);
  }
  .btn-menu:focus {
    outline: none;
    background:#c09769;
  }
  div.times {
    position: absolute;
    font-size: 50px;
    opacity: 0;
    transition: all 0.4s;
  }
  div.times.animate {
    transform: rotate(360deg);
    opacity: 1;
    font-size: 50px;
    position: absolute;
    bottom: -15%;
  }
  .btn-menu .circle {
    position: absolute;
    border: 2px solid #fff;
    width: 25px;
    height: 25px;
    background: transparent;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.4s;
  }
  .btn-menu .circle.animate {
    width: 0px;
    height: 0px;
    opacity: 0;
  }
  .menu-icons{
    width: 25px !important; 
  }
 