header{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 3;
      background-color: $white;
    .header_wrap{
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 90px; 
        
        .h_item1{
          font-size: 28px;
          color: $primaryColor;
          font-weight: 600;
        }
        .h_item2{
            ul{
                li{
                    display: inline-block;
                    padding-right: 20px;
                    a{
                      color: $black;
                      font-weight: 400;
                      font-size: 16px; 
                    }
                }
            }
        }
        .h_item3{
          .h_btn{
            a{
                @include button;
                padding: 12px 25px;
                font-weight: 600;
                border-radius: 5px;
            }
          }
        }
    }
}