/* Break Point */
#navbar {
    z-index: 100;
}

.header-container {
    width: 100vw;
    position: fixed;
    top: 0;
    display: flex;
    background-color: rgba(255, 0, 0, 0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 80;
    margin: 0;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    height: 12vh;
}

.header-container .nav-bar-text-container {
    width: auto;
}

.header-container .nav-bar-text-container li {
    padding: 0;
    margin: 0;
    text-align: left;
    padding: 0 15px 0px 13px;
    text-align: center;
}

.navbar-child-container {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-bar-text-container > ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    color: white;
    justify-content: left;
    align-items: center;
}

.nav-bar-text-container a {
    text-decoration: none;
    color: white;
    font-size: 0.93rem;
    font-weight: 400;
    transition: 300ms;
}

.nav-bar-text-container a:hover {
    color: #c2c4ff;
    transition: 300ms;
}

/* Dark theme link colors */
.logo-dark-visible .nav-bar-text-container a {
    color: #000000;
    transition: 300ms;
}

.logo-dark-visible .nav-bar-text-container a:hover {
    color: #2D348F;
    transition: 300ms;
}

#dark {
    display: none;
}

#light {
    display: block;
}

.logo-dark-visible #dark {
    display: block;
}

.logo-dark-visible #light {
    display: none;
}

.company-logo-dark,
.company-logo-light {
    width: 200px;
    cursor: pointer;
}

.company-logo-light {
    display: block;
}

.company-logo-dark {
    display: none;
}

.logo-dark-visible .company-logo-light {
    display: none;
}

.logo-dark-visible .company-logo-dark {
    display: block;
}

.nav-bar-button {
    background-color: #2D348F;
    font-size: 12px;
    font-weight: 600;
    color: white;
    border-radius: 69px;
    height: 35px;
    width: 157px;
    border: none;
}

.menu-button {
    color: white;
    display: none;
}

#sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #2b388f;
    z-index: 200;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 1s, opacity 0.5s;
}

#sidebar .sidebar-links {
    text-align: center;
}

#sidebar .sidebar-links li {
    list-style: none;
    margin-top: 30px;
}

#sidebar .sidebar-links a {
    text-decoration: none;
    color: white;
    font-size: large;
}

#sidebar .sidebar-up {
    display: flex;
    justify-content: space-between;
    padding: 30px;
}

#sidebar .sidebar-bottom {
    bottom: 0;
    left: 0;
    right: 0;
    position: inherit;
}

#sidebar .sidebar-bottom .icon-set {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#sidebar .sidebar-bottom .icon-set .social-media-icon {
    width: 400px;
}

#sidebar .sidebar-bottom .icon-set .social-media-icon a {
    text-align: center;
}

#sidebar.sidebar-responsive {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 1026px) {
    .nav-bar-text-container {
        display: none;
    }

    .navBtn1 {
        display: none;
    }

    #navbar img {
        scale: 0.8;
    }

    .menu-button {
        display: block;
    }
}
