#header-wrapper {
    background-color: black;
    /*height: 210px;*/
    height: 165px;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 8px 16px;
}
#logo-section{
    height: 100%;
}
#header{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#trq-logo{
    height: 125px;
    width: 100%;
}
#logo-tagline {
    letter-spacing: 0.05em;
    color: #D4D4D4;
    font-size: 17px;
    font-weight: bold;
    white-space: nowrap;
}
#site-menu {
    position: fixed;
    top: 0;
    right: -390px;
    width: 70%;
    max-width: 390px;
    background-color: var(--deep-grey);
    height: 100%;
    padding: 12px;
    transition: right .4s ;
}

#site-menu.open {
    right: 0;
    transition: right .4s ;
}

.menu-link, .menu-link:visited {
    display: block;
    line-height: 25px;
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.menu-link.active {
    color: var(--trq-blue);
}

#youtube-ref a{
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-end;

}

#mobile-menu-button{
    width: 50px;
    height: 50px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: 0;
}

#mobile-menu-button-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#close-video-player{
    position: absolute;
    top: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
    color: #D4D4D4;
    font-size: 25px;
    background: transparent;
}
.social-media-element span{color: white; margin-left: 15px;}

@media (max-width: 991px) {
    #mobile-menu-button-wrapper, #mobile-empty-section, #header{width: 100%}
    #youtube-ref{display: none}
    #site-menu {
        z-index: 100;
    }
    .menu-element{
        display: flex;
        align-items: center;
        height: 50px;
        width: 100%;
    }
    #social-media-divisor hr{border: 1px solid white; width: 100%; opacity: 1;}

}

@media (min-width: 992px) {
    #social-media-divisor{display: none}
    .social-media-element span{display: none}
    #mobile-menu-button, #mobile-empty-section{display: none}
    #header {
        width: 992px;
        display: flex;
        flex-direction: row;
    }

    #logo-section {
        width: 270px;
        margin: 5px 0 0 15px;
        flex-shrink: 0;
    }
    #logo-tagline {
        letter-spacing: 0.05em;
        color: #D4D4D4;
        font-size: 17px;
        font-weight: bold;
        padding-left: 10px;
        white-space: nowrap;
    }

    #content-section {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    #site-menu {
        position: initial;
        width: 100%;
        max-width: 100%;
        background-color: transparent;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    #menu-list{
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .menu-element{
        margin-left: 20px;
    }

    .menu-link, .menu-link:visited{
        margin: 0;
        line-height: normal;
        font-size: 18px;
    }

    #youtube-ref{
        height: 80px;
        padding: 0 12px;
    }


}

@media (min-width: 1200px) {
    #header {
        width: 1200px;
    }
}