/* Hamburger Menu  */

nav {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  z-index: 2;
}
.hamburger,
.hamburger_top,
.hamburger_mid,
.hamburger_bottom {
  display: none;
}
.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.hamburger_top,
.hamburger_mid,
.hamburger_bottom {
  width: 40px;
  height: 4px;
  margin: 0.5rem 2rem;
  border-radius: 24px;

  background-color: var(--White_main);
}

/* Hamburger Menu End  */

/* Open Menu */

/* Open Menu  End*/

.nav_container {
  width: 100%;
  height: 8rem;
  background-color: var(--Navy_main);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav_container h1,
h2,
li,
a {
  color: var(--White_main);
  font-family: Bebas;
  border-bottom: 2px solid transparent;
}

.nav_container h1 {
  font-size: 40px;
  margin-left: 2rem;
  white-space: nowrap;
  cursor: pointer;
}
.nav_container h1 a {
  text-decoration: none;
}

.nav_container ul {
  display: flex;
  align-items: center;
}
.nav_container ul li a {
  margin: 0rem 2rem;
  cursor: pointer;

  font-size: 24px;
  text-decoration: none;
}
.nav_container ul li {
  list-style: none;
}

.nav_container ul li a:hover {
  border-bottom: 2px solid var(--White_main);
}

.nav_container svg {
  margin: 0rem 2rem;
  cursor: pointer;
  margin-bottom: 2px;
}

.nav_container a img {
  height: 5rem;
  width: auto;
}

/* Media Queries */

@media only screen and (max-width: 1050px) {
  .nav_container ul li {
    display: none;
  }

  .nav_container svg {
    display: none;
  }
  .hamburger,
  .hamburger_top,
  .hamburger_mid,
  .hamburger_bottom {
    display: block;
  }
}

/* Media Queries End */
