.logo-container {
    background-color: #D7E0CA;

}
body {
    margin: 0;
    padding: 0;
}
/* .current-page {
    font-weight: 200;
} */
.uncommon-logo {
    height: 50px; /* desktop height: 120px  */
    position: fixed;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    max-width: 1440px;
    justify-self: center;
    background-color: #D7E0CA;
}

@media only screen and (max-width: 767px){
    .uncommon-logo > img {
        height: 24px;
        margin-left: 10px !important;
    }
}
#hamburger-icon {
    height: 30px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1;
}
.video-container {
    width: 100%;         
    height: 160px;       
    overflow: hidden;    
    position: relative;   
    display: flex;
    align-items: center;
    justify-content: center;
}
.non-interactive-video {
    width: 100%;         
    height: 100%;         
    object-fit: cover;    
    pointer-events: none; 
    position: absolute;  
    top: 50;              
    left: 0;  
}
#nav-bar {
    /* display: flex; */
    /* display: none; */
    right: -100%;
    flex-direction: column;
    position: fixed;
    top: 50px;
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    font-style: normal;
    background-color: #263F3C;
    width: 100%;
    height: 100%; 
    z-index: 100;
    transition: 0.5s ease-out;
    max-width: 1440px;
    justify-self: center;
}

#nav-bar a:hover {
    font-weight: 300; 
}
.nav-item.desktop {
    display: none;
}
.nav-item {
    text-decoration: none;
    margin-top: 20px;
    padding-left: 40px;
    padding-right: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: white;
}

@media only screen and (min-width: 768px) and (max-width: 1023px){
    #hamburger-icon {
        height: 30px;
        position: fixed;
        top: 10px;
        right: 30px;
        z-index: 1;
    }
    .uncommon-logo > img {
        height: 24px;
        margin-left: 30px !important;
    }
}


@media only screen and (min-width: 1024px) {
    .uncommon-logo {
        height: 120px; 
        position: static;
        /* background-color: #D7E0CA; */
        width: 100%;
    }
    .uncommon-logo > img {
        height: 50px;
        margin-left: 0px;
    }
    #nav-bar {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-content: center;
        position: static;
        top: auto;
        font-family: 'Raleway', sans-serif;
        font-weight: 100;
        font-style: normal;
        background-color: white;
        width: 100%;
        height: 80px; 
        z-index: 0;
        /* margin-bottom: 10px; */
    }
    .nav-item.desktop {
        display: block;
    }
    .nav-item {
        text-decoration: none;
        /* margin-top: 20px; */
        padding-left: 0px;
        padding-right: none;
        margin: auto;
        display: flex;
        color: black;
        /* flex-direction: row; */
        /* justify-content: space-between; */

    }
    .dropdown-content {
        display: none;
        flex-direction: column;


        position: absolute;
        background-color: #f9f9f9;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
        padding-bottom: 10px;
      }
      .dropdown-content > .nav-item.desktop {
        /* color: red; */
        padding-left: 20px;
        padding-top: 10px;
        font-weight: 100;
      }
      .dropdown-content > .nav-item.desktop:hover {
        font-weight: 300;
      }
    
      .dropbtn:hover .dropdown-content {
        display: flex;
        flex-direction: column;
        padding-top: 10px;
        font-weight: 300;
        padding-left: 10px;
      }
      .dropbtn:hover {
        font-weight: 300;
      }
    .mobile {
        display: none !important;
    }
    #hamburger-icon {
        display: none !important;
     }
     .video-container {
        width: 100%;         
        height: 200px;       
        overflow: hidden;    
        position: relative;   
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .non-interactive-video {
        width: 100%;         
        height: 100%;         
        object-fit: cover;    
        pointer-events: none; 
        position: statis;  
        top: auto;              
        left: auto;  
    }
}
