@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

.navigation-bar-container {
    position: sticky;
    height: 70px;
    background: #262626;
    z-index: 999;
    width: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
}

.logo-container {
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    padding-left: 20px;
    padding-right: 20px;
    float: left;
    line-height: 70px;
    text-transform: uppercase;
    font-size: 2em;
    font-weight: bold;
    border-right: 2px solid red;
}

.logo-container a,
.logo-container a:visited {
    color: #fff;
    text-decoration: none;
}

.nav-container {
    margin: 0px auto;
}

.navbar {
    float: right;
}

.navbar ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    margin-right: 10px;
    z-index: 9999;
}

.navbar ul li {
    float: left;
    position: relative;
    font-size: 14px;
}

.navbar ul li a,
.navbar ul li a:visited {
    display: block;
    padding: 0px 10px;
    line-height: 70px;
    background: #262626;
    color: #fff;
    text-decoration: none;
}

.navbar ul li a:hover,
.navbar ul li a:visited:hover {
    background: red;
    color: #fff;
}

.navbar ul li ul li {
    min-width: 190px;
}

.navbar ul li ul li a {
    padding: 15px;
    line-height: 20px;
}

.nav-dropdown-c {
    position: absolute;
    z-index: 1;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.15);
    display: none;
}

.nav-mobile {
    position: absolute;
    float: right;
    top: 0px;
    right: 0px;
    background: #262626;
    height: 70px;
    width: 70px;
    display: none;
}

#nav-toggle {
    position: absolute;
    left: 10px;
    top: 22px;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
}

#nav-toggle span,
#nav-toggle span:after,
#nav-toggle span:before {
    cursor: pointer;
    border-radius: 1px;
    height: 5px;
    width: 35px;
    background: #fff;
    position: absolute;
    display: block;
    content: '';
    transition: all 300ms ease-in-out;
}

#nav-toggle span:after {
    bottom: -10px;
}

#nav-toggle span::before {
    top: -10px;
}

#nav-toggle.active span {
    background: transparent;
}

#nav-toggle.active span:after,
#nav-toggle.active span:before {
    top: 0px;
}

#nav-toggle.active span:after {
    transform: rotate(-45deg);
}

#nav-toggle.active span:before {
    transform: rotate(45deg);
}

@media only screen and (max-width: 790px) {
    .nav-mobile {
        display: block;
    }

    .navbar {
        width: 100%;
        padding: 70px 0px 0px;
    }

    .navbar ul {
        display: none;
    }

    .navbar ul li {
        float: none;
    }

    .navbar ul li a {
        padding: 15px;
        line-height: 20px;
    }

    .navbar ul li ul li a {
        padding-left: 30px;
    }

    .nav-dropdown-c {
        position: static;
    }
}

@media screen and (min-width: 799px) {
    .nav-list {
        display: block !important;
    }
}

.nav-li {
    margin: 0px;
}

.composer-list-container {
    display: flex;
    justify-content: flex-start;
}

.composer-list-photo {
    width: 44px;
    margin-right: 16px;
}

.circular-portrait {
    width: 44px !important;
    height: 44px;
    border-radius: 50%;
    margin-right: 16px;
    border: 1px solid #666;
}