header {
  background-color: #fff !important;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

header img{
  max-width: 100px !important;
}


header li+li{
  margin-left: 15px;
}

.menuArea li a{
  color: #000;
  font-size: 18px;
}
.menuArea li a:hover{
  color: #ff0a3b;
}

.bar {
  width: 30px;
  height: 20px;
  z-index: 100000;
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
}


@media (max-width: 767px){
  .menuArea span ul {
        width: 100vw;
        height: 100vh;
        position: fixed;
        left: 0;
        top: 0;
        background: rgb(24 24 24);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5vh;
        transform: translateX(-100%);
        transition: .3s;
  }
  
  .menuArea li a{
    color: #fff;
  }
  
  
  .bar {
    display: block;
  }


  .bar div {
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background: #000;
    transition: .3s;
  }

  .bar div {
    margin-bottom: 5px;
  }

  .activeBars .top {
    transform: rotate(-45deg) translate(-11px, 11px);
  }

  .activeBars .middle {
    transform: translateX(-20px);
    opacity: 0;
  }

  .activeBars .bottom {
    transform: rotate(45deg);
  }

  .activeNav {
    transform: translateX(0) !important;
  }












