nav ul{
  display: flex;
  gap: 32px;
}
nav ul li a{
  color: #fff;
  text-decoration: none;
}
nav ul li a:hover{
  font-family: BatonTurboBook, sans-serif;
}
.top-menu-wrapper{
  background: #02312C;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 0 30px;
}
.top-menu-wrapper.light{
  background: #F5F5F5;
}
.top-menu{
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1216px;
  margin: 0 auto;
}
.top-menu .right{
  display: flex;
  gap: 32px;
}
.top-menu a{
  text-decoration: none;
  font-size: 16px;
  color: #D6D6D6;
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-menu-wrapper.light .top-menu a{
  color: #737373;
}
.top-menu a svg path{
  fill: #D6D6D6;
}
.top-menu-wrapper.light .top-menu a svg path{
  fill: #737373;
}
@media(max-width: 980px){
  
  .header .mobile-view {
    padding: 30px 0 60px !important;
  }
  
  .header .mobile-view ul li a {
    font-size: 1rem !important; 
  }
  
  .header .mobile-view ul {
    gap: 10px !important; 
  }
  
  .top-menu-wrapper{
    position: relative;
    padding: 0;
    background: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #000;
    {# display: none; #}
  }
  .top-menu{
    height: unset;
    justify-content: unset;
    flex-direction: column;
    align-items: flex-start;
  }
  .top-menu .left a{
    margin-bottom: 20px;
  }
  .top-menu .right{
    flex-direction: column;
    gap: 10px;
  }
  .top-menu a{
    color: #D6D6D6;
    font-size: 1.125rem;
  }
  .top-menu-wrapper.light .top-menu a{
    color: #525252;
  }
  .top-menu-wrapper.light{
    background: none;
    border-top: 1px solid #E5E5E5;
  }
}