.site-header {
    background-color: var(--color--white);
    font-size: 16px;
    position: sticky;
    text-transform: uppercase;
    top: 0;
    z-index: 2;
}


.site-header .container {
    align-items: center;
    display: flex;
    height: 141px;
    position: relative;
}


.site-header .about {
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 178.9px;
}

.site-header .logo {
    display: block;
}


.site-header nav {
    display: grid;
    grid-column-gap: 285px;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.site-header ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.site-header ul:last-child {
    justify-content: flex-end;
}

.site-header li:not(:last-child) {
    margin-right: 28px;
}


.site-header .menu {
    display: none;
}




@media (max-width: 1307px) {
    .site-header {
        font-size: 14px;
    }

    .site-header .container {
        height: 125px;
    }

    .site-header .about {
        width: 150.57px;
    }

    .site-header nav {
        grid-column-gap: 205px;
    }

    .site-header li:not(:last-child) {
        margin-right: 24px;
    }
}


@media (max-width: 1024px) {
    .site-header {
        font-size: 20px;
    }


    .site-header .container {
        height: 80px;
        justify-content: space-between;
        position: static;
    }


    .site-header .about {
        left: auto;
        margin: 0;
        position: static;
        right: auto;
        width: 100px;
    }


    .site-header nav {
        background-color: var(--color--white);
        border-bottom: 6px solid var(--color--permanent-geranium-lake);
        border-top: 1px solid var(--color--arsenic-transparent-16);
        bottom: 0;
        box-sizing: border-box;
        display: block;
        font-weight: 700;
        left: 0;
        overflow-y: auto;
        padding: 32px 0 58px;
        position: fixed;
        right: 0;
        top: 80px;
        transform: translateX(-100%);
        width: auto;
        z-index: 2;
    }

    .site-header nav[_active] {
        transform: translateX(0);
    }

    .site-header ul {
        display: block;
    }

    .site-header li:not(:last-child) {
        margin: 0 0 4px 0;
    }

    .site-header li a {
        display: block;
        padding: 13px 0 11px;
        text-align: center;
    }


    .site-header .menu {
        align-items: center;
        background-color: transparent;
        border: 1px solid var(--color--permanent-geranium-lake);
        color: var(--color--permanent-geranium-lake);
        display: flex;
        height: 40px;
        justify-content: center;
        padding: 0;
        width: 48px;
    }
}
