:root {
    --colors-orange: #FE5100;
    --colors-dark-blue: #030D26;
    --colors-grey: #2E2E2E;
    --colors-light-blue: #25437C;
    --colors-off-white: #DEE3DD;
    --colors-cream: #CCBD9E;
}

html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

.site-container {

}

/* Header */

header {
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 100;
}

header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--wp--style--global--wide-size);
    margin: 0 auto;
}

header a.logo {
    display: block;
    width: 100%;
    max-width: 220px;
    position: relative;
    z-index: 20;
}

header a.logo svg { width: 100%; height: 100%; object-fit: contain; }

.main-navigation {
    position: absolute;
    width: 100%;
    height: 100dvh;
    left: 0;
    right: 0;
    top: 0;
    background: var(--colors-dark-blue);
    padding: 100px var(--wp--style--root--padding-right) 0 var(--wp--style--root--padding-left);
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease .2s;
}

body.menu-active .main-navigation {
    opacity: 1;
    visibility: visible;
    transition: all .2s ease 0s;
}

.main-navigation ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.main-navigation ul li a {
    color: white;
    font-size: 1.375em;
    font-weight: 700;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease 0s;
}

body.menu-active .main-navigation ul li a {
    opacity: 1;
    visibility: visible;
    transition: all .2s ease .2s;
}

.main-navigation ul li a:hover { color: var(--colors-orange); }


@media all and (min-width: 1024px) {

    header a.logo { max-width: 280px; }

    header .burgerbutton { display: none; }

    header .main-navigation {
        position: relative;
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
    }

    header .main-navigation ul { display: flex; align-items: center; gap: 1.625rem; }

    header .main-navigation ul li a {
        font-size: 1rem;
        font-weight: 400;
        opacity: 1;
        visibility: visible;
    }

}

/* Footer */

footer {
    background: var(--wp--preset--color--grey);
    padding: 3.125rem 0;
}

footer .footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

footer a.footer-logo {
    display: block;
    width: 100%;
    max-width: 280px;
}

.footer-columns { width: 100%; display: flex; flex-direction: column; gap: 2rem; }

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer ul li a {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact a {
    color: var(--wp--preset--color--orange);
    display: block;
    text-decoration: none;
    font-weight: 600;
}

footer address {
    color: #ffffff;
    font-style: normal;
}

.footer-bottom { margin-block-start: 4rem !important; width: 100%; }

.footer-bottom ul li a { font-size: 0.75rem; }

@media all and (min-width: 768px) {

    .footer-logo { width: 100%; text-align: left; margin-right: auto; }

    .footer-columns {
        margin-block-start: 2rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-contact { text-align: right; }

    footer address { text-align: right; }

}

@media all and (min-width: 1024px) {

    footer { padding-bottom: 1.5rem; }

    .footer-bottom ul { display: flex; gap: .5rem; }
    .footer-bottom ul li:not(:last-child)::after {
        content: "|";
        margin-left: .5rem;
        color: #ccc;
    }

}