
.main-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    background-color: #171717;
    z-index: 1;

}
.main-menu-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 16px;
    width: 100%;
    max-width: 1350px;
}
.main-menu-right {
    display: flex;
    flex-direction: row;
    margin-right: 5%;
}
.main-menu-left {
    display: flex;
    flex-direction: row;
    margin-left: 5%;
}
.main-menu-left-item,
.main-menu-right-item {
    display: inline-block;
    color:#969696;
    font-size: 14px;
    font-weight: 300;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 0;
    margin-bottom: 0;
}
.main-menu-right-item,
.main-menu-left-item {
    cursor: pointer;
    transition: color 0.2s;
}
.main-menu-right-item:hover,
.main-menu-left-item:hover {
    color: #ffffff;
}
.main-menu-right-item:active,
.main-menu-left-item:active {
    color: #ffffff;
}