
/*Makes it so header is not reliant on percentage-widths*/
#header {
    display:flex;
    max-width: 1200px !important;
}

#header .logo-content-wrapper {
    width: 35%;
}

#header .logo-content-wrapper .logo-inner {
    height: 100%;
    display: flex;
    padding-left: 1em;
}

#logo.header__logo {
    justify-content: center;
    display: flex;
    align-content: center;
    height: 100%;
    padding-top:0;
}

#logo.header__logo img {
    width: 100%;
    object-fit: contain;
}

@media screen and (max-width: 800px) {
    #logo.header__logo img {
        margin-top: 50px;
        
    }
    
    #header .logo-content-wrapper .logo-inner {
        padding-left: 0;
    }
    
    #logo.footer__logo img {
        margin-top: 25px;
    }
}