.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  /* max-width: 100%; */
  margin: 0 auto;
  overflow-x: hidden;
}

.header {
  background-color: rgb(0, 3, 64);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 20vh;
  padding: 0 1rem;
}

.logo-container {
  display: flex;
}

.left-corner-logo {
  max-width: 18.75rem;
  object-fit: contain;
}

.horizontal-menu {
  /* background-color: #05A591; */
  display: flex;
  padding-left: 0;
  margin-right: 6rem;
  list-style: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.125rem;
  color: rgb(255, 255, 255);
  /* flex-wrap: wrap; */
}

.horizontal-menu li {
  margin-left: 4rem;
}

.nav-1{
  height: 100px;
  background-color: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: .5em;
  border: none;
  outline: none;
  position: relative;
  cursor: pointer;

  --background-color: rgb(0, 3, 64);
  --border-size: 2px;
  --accent-color: #08ffbd;
}

.nav-1::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-color: var(--accent-color);

  transition: transform 300ms ease-in-out;
  transform: scaleX(0);
  transform-origin: left;
}

.nav-1{
  transition: color 300ms ease-in-out;
  z-index: 1;
}

.nav-1:hover::before,
.nav-1:focus::before{
  transform: scaleX(1);
}

.nav:hover,.nav-1:focus{
  color:#08ffbd;
}

.nav-1 a{
  color: inherit;
  text-decoration: none;
}

a:hover{
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 800px) {
  .horizontal-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 20vh;
    left: 0;
    background-color: rgb(0, 3, 64);
    text-align: center;
  }

  .horizontal-menu li {
    margin: 1rem 0;
  }

  .hamburger {
    display: block;
  }

  .horizontal-menu.active {
    display: flex;
  }
}