.header {
    position: relative;
    padding: 0 13%;
    width: 100%;
    height: 60px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    z-index: 9;
}

.header .header-logo {
    position: relative;
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
}

.header .header-logo > .title {
    position: relative;
    padding: 8px 0;
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.header .header-logo > .title > img {
    position: relative;
    width: auto;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.header .header-logo > .title > hr {
    position: relative;
    width: 1px;
    height: 50%;
    background-color: #ddd;
    border: none;
}

.header .header-logo > .title > span {
    position: relative;
    font-size: 22px;
    font-weight: 700;
}

.header .header-menu {
    position: relative;
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.header .header-menu > ul {
    position: relative;
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style-type: none;
}

.header .header-menu > ul > li {
    position: relative;
    padding: 0 16px;
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #121212;
}

.header .header-menu > ul > li[class*="active"] {
    color: #F28705;
}

.header .header-menu > ul > li[class*="active"]:before {
    content: "";
    position: absolute;
    margin: 0 12px;
    width: calc(100% - 24px);
    height: 2px;
    background-color: #F28705;
    bottom: 0;
    left: 0;
}

.header .header-login {
    position: relative;
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 10px;
}

.header .header-login > button {
    position: relative;
    padding: 8px 26px;
    width: auto;
    height: 36px;
    display: flex;
    font-size: 14px;
    background: #F28705;
    border: none;
    border-radius: 18px;
    color: white;
}

.header .header-login > label {
    position: relative;
    padding: 0 12px;
    width: auto;
    height: 36px;
    border-radius: 18px;
    border: solid 1px #DDDDDD;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.header .header-login > label > input {
    position: relative;
    width: 165px;
    height: 100%;
    border: none;
    padding: 8px 0;
    font-size: 14px;
    color: #aaaaaa;
    display: flex;
    outline: none;
}

.header .header-login > label > i {
    color: #aaaaaa;
    font-size: 14px;
}