header,
footer {
    margin: 0 auto;
}

nav {
    display: flex;
    flex-direction: row;
    align-items: end;
    height: 100%;
    width: 100%;
    padding: 24px 4px;
}

header {
    height: var(--sk-header-height);
}

header a {
    text-transform: uppercase;
}

header a.sk-a-current {
    border-bottom: var(--sk-green) 2.5px solid;
    margin-bottom: -2.5px;
}

header a:not(:last-child) {
    margin-right: 18px;
}

footer {
    padding-top: 80px;
    background-image: url("/assets/logos/footer-bg.webp");
    background-size: auto 100%;
    background-position: 13%;
    background-repeat: no-repeat;
}

footer,
.sk-footer-bottom {
    border-top: 1px solid var(--sk-gray);
}

footer nav a:not(:last-child) {
    margin-right: 35px;
}

footer nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

footer nav a {
    letter-spacing: normal;
    padding: 0;
    font-weight: 600;
}

.sk-footer-bottom {
    height: 120px;
    align-items: center;
    margin-top: 10px;
}

.sk-footer-bottom :is(a, p) {
    font-size: 13px;
}

.sk-footer-bottom p {
    height: 40px;
    line-height: 40px;
}

.sk-footer-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

a.sk-corner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    padding: 0;
}

a.sk-corner-logo img {
    width: 330px;
    transform: translateX(0px);
}

.sk-flex-spacer {
    flex-grow: 1;
}

@media (min-width: 1200px) {

    header,
    footer {
        width: 1183px;
    }

    a.sk-corner-logo img {
        transform: translateX(-20px);
    }
}

@media (max-width: 700px) {
    nav {
        align-items: center;
    }

    nav a:not(:last-child) {
        margin-right: 0;
    }

    a.sk-corner-logo img {
        max-width: 45vw;
    }

    footer {
        padding-top: 0;
    }

    .sk-footer-bottom {
        height: fit-content;
        flex-direction: column;
        justify-self: center;
    }

    .sk-footer-bottom p {
        margin-bottom: 8px;
    }
}