@media (min-width: 1200px) {
    .container{
        width: 1270px;
    }
}

.header {
    background-color: rgba(29, 29, 29, 0.8);
    min-height: 120px;
    width: 100%;
    position: fixed;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
}

.header .logo-section a img{
    height: 80px;
    margin: 20px;
}

.nav-toggle {
    display: none;
    position: absolute;
    top: 1rem;
    right: 2rem;
}

.open {
    height: 100%;
}

.hidden {
    display: none;
}

.nav-toggle i {
    font-size: 80px;
    color: white;
}

.header nav ul {
    list-style: none;

}

.header nav ul li {
    float:left;
}

.header nav ul li a {
    color:#fff;
    font-weight: 600;
    padding: 4em 0;
    margin: 0 .95em;
    border-top: 3px solid transparent;
}

.header nav ul li a:hover {
    border-top: 3px solid #df471c;
    text-decoration: none;
}

.header .user-panel-item .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    position: absolute;
    top: 85px;
    right: 10px;
}
.header .user-panel-item:hover .tooltiptext {
    visibility: visible;
}

.user-icon {
    font-size: 20px;
    margin-top: -6px;
    color: #fa6a36;
    padding: 0px 5px;
}

@media all and (max-width: 1200px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }
    nav {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .header nav ul li {
        float: none;
        display: block;
        text-align: center;
    }
    .header nav ul li a {
        padding: 20px 0;
        display: block;
        font-size: 25px;
    }
    .nav-toggle {
        display: block;
    }
}
