nav {

  min-height: 8vh;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  background: #2341;
  overflow-x: hidden;
  

  

}

.banner_link .fas{

  color: #00C8EE;
  margin:3px;
}

.banner_link p{
  font-size: 14px;
  color: #f8f8f8;
  margin:15px;
}


nav .nav-links {
  display: flex;
  align-items: center;
  justify-content: space-around;
  direction: rtl;
  list-style: none;
  transition: all 0.5s;
  color: white;
}
nav .nav-links li {
  padding: 10px 15px;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
nav .nav-links li:hover,
nav .nav-links li.active {
  background: #00C8EE;
}
nav .nav-links a {
  text-decoration: none;
  color: var(--color-light-blue);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 1px 2px 2px black;
}

nav .logo {
  align-self: center;
}
nav #burger {
  display: none;
  align-self: center;
  border: none;
  background: none;
  outline: none;
}

nav #burger .line {
  width: 30px;
  margin: 6px 0;
  height: 3px;
  background: #fff;
  transition: all 0.5s;
}

#burger.active .line1 {
  transform: rotate(-45deg) translate(-6px, 7px);
}
#burger.active .line2 {
  opacity: 0;
}
#burger.active .line3 {
  transform: rotate(45deg) translate(-6px, -6px);
}

@media screen and (max-width: 650px) {
  nav .nav-links {
    position: absolute;
    top: 8vh;
    background: #234c;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 30vh;
    z-index: 100000;
  }
  nav .nav-links {
    transform: scaleY(0);
    transform-origin: top;
  }
  nav .nav-links.active {
    transform: scaleY(1);
  }
  nav .nav-links li {
    width: 100%;
    font-size: 1.1rem;
    border: 1px var(--color-dark-op50) solid;
  }

  nav #burger {
    display: block;
  }
}
