header{
    background-color: #16243d;
    .header_wrap{
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 90px; 
        
        .h_item1{
          font-size: 28px;
          color: $primaryColor;
          font-weight: 500;
        }
        .h_item2{
            ul{
                li{
                    display: inline-block;
                    padding: 0 15px;
                    a{
                      color: $white;
                      &:hover{
                        color: $primaryColor; 
                      }
                    }
                }
            }
        }
        .h_item3{
          .h_btn{
            a{
                @include button;
            }
          }
        }
    }
}