.content {
    min-height: calc(100dvh - var(--header-height));
}

/* =================================== HEADER =================================== */

#header{
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    left: 0;
    background-color: var(--on-primary);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 1rem 2rem;
    width: 100vw;
    height: var(--header-height);
    z-index: 1000;
}

#mobileDrawer, .burger-menu-wrapper {
    display: none;
}

#desktopNav{

}

.header-logo{
    height: 100%;
    filter: var(--to-secondary);
}

.logo{
    height: 100%;
}

.nav-list{
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color .2s;
    padding: 0 0;
    position: relative;
    z-index: 2;
}

.body-cta-link, #cta-desk-link, #cta-mob{
    text-transform: uppercase;
    border: 2px solid var(--primary);
    background-color: var(--primary);
    color: var(--on-primary);
    text-decoration: none;
    text-align: center;
    outline: none;
    padding: .5rem 1rem;
    border-radius: 8px;
    transition: 300ms;
    font-weight: 700;
    font-family: var(--font-company), sans-serif;
    cursor: pointer;
    box-sizing: border-box;
}

.body-cta-link:hover, #cta-desk-link:hover{
    background-color: var(--primary-hover);
}

.body-cta-link::after{
    content: "";
    height: 0;
}

.nav-list a:hover {
    color: var(--text-inverted);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width .2s;
    z-index: -1;
}


.nav-list a:hover::after {
    width: 100%;
}


/* =================================== FOOTER =================================== */

#footer{
    width: 100%;
    box-sizing: border-box;
    height: auto;
    min-height: 300px;
    background-color: var(--on-primary);
    padding: 1rem 1rem .25rem 1rem;
    color: var(--text-inverted);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-row{
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

#top{
    padding-bottom: 1rem;
}

.footer-col{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: fit-content;
    box-sizing: border-box;
    padding: .25rem .5rem;
}

.footer-logo{
    max-height: 135px;
    max-width: 300px;
     min-width: 200px;
    height: 100%;
    width: 100%;
    object-fit: contain;
    filter: invert(1);
     margin-bottom: 2rem;
}

.footer-name{
    font-weight: 700;
    font-size: var(--font-m);
    color: var(--primary);
    margin-bottom: .5rem;
}

.footer-addr, .footer-contact{
    margin-top: .25rem;
    font-size: var(--font-m);
    font-weight: normal;
}

#addr{
    font-weight: normal;
}

.footer-col-heading{
    font-weight: normal;
    font-size: var(--font-l);
}

.footer-col-info p{
    font-family: var(--font-company);
    margin: 0 0 2px 0;
    font-weight: 600;
}

.footer-col a {
    color: var(--text-inverted);
    text-decoration: none;
    letter-spacing: 1.5px;
}

.footer-col-info{
    margin: .5rem 0;
}

.footer-links{
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    position: relative;
}

.footer-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: normal;
    transition: color .2s;
    padding: 0 0;
    position: relative;
    z-index: 2;
}


.footer-link:hover {
    color: var(--text-inverted);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-inverted);
    transition: width .2s;
    z-index: -1;
}


.footer-link:hover::after {
    width: 100%;
}

.icon-list-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.social-icon{
    height: 32px;
    width: 32px;
    object-fit: contain;
    filter: invert(1);
}

#bottom{
    justify-content: space-between;
    border-top: 1px solid var(--text-muted);
    padding: .5rem 0 .25rem 0;
    color: var(--text-muted);
}

#bottom > *{
    margin: 0;
}

.bottom-links{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
}

.bottom-link{
    text-decoration: 1px solid underline;
    color: var(--text-muted);
}

/* =================================== MOBILE =================================== */

/* Phone */
@media (max-width: 640px) {
    /* =================================== HEADER =================================== */
    /* =================================== FOOTER =================================== */
    #footer {
        width: 100%;
    }

}
/* Tablet */
@media (max-width: 1150px) {
    /* =================================== HEADER =================================== */
    /* =================================== FOOTER =================================== */
    #footer{
        width: 100%;
    }

    #desktopNav {
        display: none;
    }

    .burger-menu-wrapper {
        display: flex;
        margin-left: auto;
    }

    #burger-menu {
        box-sizing: border-box;
        outline: none;
        display: flex;
        border: none;
        border-radius: 50%;
        background-color: transparent;
        cursor: pointer;

    }

    #burger-menu svg {
        color: var(--primary-hover);
        height: 36px;
        width: 36px;
    }

    .closed {
        width: 0;
    }

    .closed > * {
        display: none;
    }

    .closed .mobile-menu-bottom-bar {
        display: none;
    }

    .open {
        display: flex;
        width: 300px;
        box-shadow: 0 0 .5em .05em rgba(0, 0, 0, .2);
        z-index: 1000;

    }

    .open .mobile-menu-top-bar {
        /*box-shadow: 0 0 .5em .05em var(--color-shadow);*/
    }

    .open #mobileDrawer {
        display: flex;
    }

    .open li {
        box-sizing: border-box;
        width: 100%;
        padding: .5rem .5rem;
        transition: 100ms;
    }

    .open li:active {
        box-shadow: 0 0 .35em 0 var(--primary);
    }

    #mobileDrawer {
        flex-direction: column;
        align-items: end;
        justify-content: start;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background: var(--on-primary);
        z-index: 1001;
        border-left: 1px solid var(--border-focus);
        transition: width 0.4s;
        border-top-left-radius: 1rem;
        border-bottom-left-radius: .5rem;
        overflow: hidden;
        display: flex;
    }

    .mobile-logo {
        margin-left: auto;
        /*margin-right: auto;*/
        height: 36px;
        width: auto;
        filter: invert(1);
    }

    .mobile-menu-top-bar {
        width: 100%;
        height: var(--header-height);
        box-sizing: border-box;
        padding: 1rem .5rem;
        display: flex;
        flex-direction: row;
        align-items: start;
        justify-content: start;
        border-top-left-radius: 1rem;

    }

    .mobile-menu-top-bar button {
        box-sizing: border-box;
        display: flex;
        border: none;
        outline: none;
        border-radius: 50%;
        background-color: transparent;
        cursor: pointer;
    }

    .mobile-menu-top-bar svg {
        color: var(--text-inverted);
        height: 36px;
        width: 36px;
        transition: 200ms;
    }

    .mobile-menu-top-bar button:hover svg {
        color: var(--primary-hover);
    }

    .mobile-menu {
        box-sizing: border-box;
        padding: 0 .5rem 1rem .5rem;
        list-style: none;
        margin: 0;
        width: 100%;
    }

    .mobile-menu li {
        margin: 0;
        box-sizing: border-box;
        padding: .5rem 0;
        border-bottom: 1px solid var(--border-focus);
        border-top: 1px solid transparent;
        border-left: 1px solid transparent;
        border-right: 1px solid transparent;
    }

    .mobile-menu li:last-child {
        border-bottom: 1px solid transparent;
    }

    .mobile-menu li a {
        display: block;
        font-size: var(--font-l);
        font-weight: 600;
        color: var(--text-inverted);
        width: 100%;
        height: 100%;
        text-decoration: none;
    }

    .mobile-menu-bottom-bar {
        margin-top: auto;
        width: 100%;
        box-sizing: border-box;
        padding: 1rem .5rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        /*border-top: 1px solid var(--color-border);*/
        font-size: var(--font-s);
    }

    .mobile-menu-bottom-bar span a {
        font-size: var(--font-s);
        color: var(--text-muted);
        text-decoration: none;

    }
}
/* 2K + */
@media (min-width: 1536px) {
    /* =================================== HEADER =================================== */
    /* =================================== FOOTER =================================== */
}