*{
  padding: 0;
  margin: 0;
}header{
  background-color: #FFF;
}li{
  list-style: none;
}a{
  color: white;
  text-decoration: none;
}

.container{
  max-width: 1224px;
  width: 90%;
  margin: 0 auto;
}

.navbar{
  min-height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-branding{
  z-index: 98;
  font-size: 2rem;
}
.nav-menu{
  z-index: 97;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.nav-menu ol, ul {
  padding-left: 0;
}

.nav-link{
  transition: 0.3s ease-out;
}
.nav-link:hover{
  color: dodgerblue;
}
.hamburger{
  z-index: 99;
  display: none;
  cursor: pointer;
}
.bar{
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #000;
}

@media(max-width:1024px){
  .hamburger{
    display: block;
  } 
  .hamburger.active .bar:nth-child(2){
    opacity: 0;
  } 
  .hamburger.active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  } 
  .hamburger.active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  } 
  .nav-menu{
    position: fixed;
    left: -100%;
    top: 110px;
    gap: 0;
    flex-direction: column;
    background-color: #f2f2f2;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    height: 100vh;
    margin-top: -110px;
  } 
  .nav-item{
    margin: 16px 0;
    font-size: 24px;
  } 

  .nav-item a{
    color: #000;
  } 
  .nav-menu.active{
    left: 0;
  }
}