.navbar-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: end !important;
    align-items: center;
}
  #navbar {
    position: fixed;
    margin: 0 0 0 0;
    margin-left: 0rem;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    z-index: 1000;
    transition: 1.3s ease;
  }
  #navbar.scrolled {
    top: 3%;
    left: 0;
    transform: translateX(0);
    margin-left: 7rem !important;
  }
  #logo {
    position: fixed;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    padding: 10px 20px;
    z-index: 1000;
    transition: 1.3s ease;
  }
  #logo.scrolled {
    top: 0;
    right: 0;
    transform: translate(0, 0);
    width: 150px;
    margin: 0 7rem 0 0 !important;
}

#logo.top-show-hover,
#navbar.top-show-hover {
  opacity: 1 !important;
  /*
  opacity: 0.13 !important;
  transition-duration: 800ms;
  transition-property: opacity;
  */
}
#logo.top-show-hover:hover,
#navbar.top-show-hover:hover {
  opacity: 1 !important;
}
