.content{
    min-height: calc(100vh - var(--header-height));
}

/* =================================== HEADER =================================== */
#header{
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    width: 100vw;
    box-sizing: border-box;
    padding: .5rem 1rem;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    background-color: var(--bg-ui-subtle);
    height: var(--header-height);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.header-logo{
    height: calc(var(--header-height) * .9);
    width: auto;
}

#desktop_nav{

}

#mobile_menu, .burger-menu-wrapper{
    display: none;
}

.desktop-nav-list{
    display: flex;
    list-style: none;
    gap: 2rem;
}

.desktop-nav-list li{
    position: relative;
}

.desktop-nav-list a{
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color .2s;
    padding: .5rem 0;
}

.desktop-nav-list a:hover{
    color: var(--text);
}


@media (max-width: 767px) {
    #desktop_nav {
        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 {
        width: 300px;
        box-shadow: 0 0 .5em .05em rgba(0, 0, 0, .2);
    }

    .open .mobile-menu-top-bar {
        /*box-shadow: 0 0 .5em .05em var(--color-shadow);*/
    }

    .open #mobile_menu {

    }

    .open li {
        box-sizing: border-box;
        width: 100%;
        padding: .5rem .5rem;
        transition: 100ms;
    }

    .open li:active {
        box-shadow: 0 0 .35em 0 var(--primary);
    }

    #mobile_menu {
        display: flex;
        flex-direction: column;
        align-items: end;
        justify-content: start;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-ui-subtle);
        z-index: 1001;
        border-left: 1px solid var(--border-elevated);
        transition: width 0.4s;
        border-top-left-radius: 1rem;
        border-bottom-left-radius: .5rem;
    }

    .mobile-logo {
        margin-left: auto;
        /*margin-right: auto;*/
        height: 36px;
        width: auto;
    }

    .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);
        height: 36px;
        width: 36px;
        transition: 200ms;
    }

    .mobile-menu-top-bar button:hover svg {
        color: var(--text);
    }

    .mobile-menu {
        box-sizing: border-box;
        padding: 1rem .5rem;
        list-style: none;
        margin: 0;
        width: 100%;
    }

    .mobile-menu li{
        margin: 0;
        border-bottom: 1px solid var(--secondary-hover);
        border-top: 1px solid transparent;
        border-left: 1px solid transparent;
        border-right: 1px solid transparent;

    }

    .mobile-menu li a {
        display: block;
        font-size: var(--font-size-l);
        font-weight: 600;
        color: var(--text);
        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-size-s);
    }

    .mobile-menu-bottom-bar span a {
        font-size: var(--font-size-s);
        color: var(--text-muted);
        text-decoration: none;

    }
}

/* 5. Small (sm) -> Mobile */
@media (max-width: 639px) {

}



/* --------------------------------- DROPDOWN --------------------------------- */
.dropdown-menu{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--surface-elevated);
    width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    border-radius: .25rem;
    padding: 10px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s ease;
}

.dropdown-parent:hover .dropdown-menu{
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
}

.dropdown-menu li{
    display: block;
    width: 100%;
}

.dropdown-menu a{
    display: block;
    padding: 10px 20px;
    color: var(--text-muted);
}

.dropdown-menu a:hover{
    background-color: var(--surface);
    color: var(--text);
}

.dropdown-parent > a::before {
    content: '▼ ';
    font-size: var(--font-size-s);
    vertical-align: middle;
}


/* =================================== FOOTER =================================== */

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    box-sizing: border-box;
    padding: 1rem 1.5rem 0 1.5rem;
    width: 100vw;
    min-height: fit-content;
    background-color: var(--bg-ui-subtle);
    border-top: 1px solid var(--border);
}

.footer-content{
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-column{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.footer-column a{
    color: var(--text);
    text-decoration: none;
    font-size: var(--font-size-m);
    font-weight: 500;
    transition: color .2s;
}
.footer-column a:hover{
    color: var(--primary-hover);
}

#companyInfos{
    width: 25%;
    min-width: 225px;
}

.footer-logo{
    max-width: 150px;
    width: 100%;
    height: auto;
    filter: invert(1);
}

.address{
    margin-top: 1rem;
}

.footer-col-heading{
    font-size: var(--font-size-l);
    font-weight: 700;
    margin: 0;
}

.footer-column ul{
    list-style: none;
    margin: 0;
    padding: .5rem 0;
}

#bottomRow{
    border-top: 1px solid var(--border);
    padding: .5rem 0 .5rem 0;
    width: 100%;
    box-sizing: border-box;
}

.copyright{
    font-size: var(--font-size-m);
    color: var(--text);
}

.sm-footer-links{
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.sm-footer-links a{
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color .2s;
}

.sm-footer-links a:hover{
    color: var(--text);
}

/* =================================== BUTTONS =================================== */


.cta-btn{
    box-sizing: border-box;
    padding: .5rem 1rem;
    border-radius: 5px;
    border: none;
    outline: none;
    transition: .25s ease;
    text-decoration: none;
}

.primary{
    background: var(--primary);
    border: 2px solid var(--primary);
    font-size: var(--font-size-s);
    color: var(--on-primary);
    cursor: pointer;
    letter-spacing: 1.25px;
    font-weight: 700;
}

.primary:hover{
    background: var(--primary-hover);
}

.ghost{
    background: transparent;
    color: var(--text);
    border: 2px solid var(--secondary);
    font-size: var(--font-size-s);
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.ghost:hover{
    background: var(--secondary-hover);
}

/* --------------------------------- UTILS --------------------------------- */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease;
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.social-icons{
    height: 1rem;
    width: 1rem;
    object-fit: contain;
}