header {
    padding: 10px 50px;
    background-color: #1A1F24;
    color: #ffffff;
    border-bottom: 1px solid #707070;
    position: sticky;
    top: -1px;
    z-index: 20;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.header-container .header-logo {
    min-width: 100px;
}

.header-container .header-logo img {
    width: 100%;
}

.header-menu {
    display: flex;
    justify-content: space-between;
}

.header-close {
    display: none;
}

.header-menu-list {
    list-style-type: none;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.header-menu-list li {
    color: #ffffff;
    font-size: 18px;
    margin-right: 35px;
}

.header-menu-list li.active {
    color: #64DDCD;
}

.header-menu-list li:last-child {
    margin-left: 0;
}

.menu-toggle {
    display: none;
}
