.pa-site-header-space,
.pa-site-header-space * {
    box-sizing: border-box;
}

.pa-site-header-space {
    position: relative;
    z-index: 9999;
    width: 100%;
    height: 0;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0;
}

.pa-site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 112px;
    color: #fff;
}

.pa-site-header a {
    color: inherit;
    text-decoration: none;
}

.pa-site-header ul,
.pa-site-header li,
.pa-site-header p {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pa-site-header__container {
    width: min(calc(100% - 30px), 1410px);
    margin: 0 auto;
}

.pa-site-header__utility {
    height: 40px;
    background: transparent;
}

.pa-site-header__utility-inner {
    position: relative;
    height: 40px;
}

.pa-site-header__utility p {
    overflow: hidden;
    max-width: calc(100% - 210px);
    height: 40px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 40px;
    text-overflow: ellipsis;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .8);
    white-space: nowrap;
}

.pa-site-header__socials {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pa-site-header__socials--desktop {
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
}

.pa-site-header__socials a {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 0;
    border-radius: 50%;
    background: transparent;
}

.pa-site-header__socials a > span {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px 30px;
}

.pa-site-header__socials .pa-site-header__more > span {
    background:
        radial-gradient(circle at 35% 50%, #232323 0 2px, transparent 2.5px),
        radial-gradient(circle at 50% 50%, #232323 0 2px, transparent 2.5px),
        radial-gradient(circle at 65% 50%, #232323 0 2px, transparent 2.5px),
        #fff !important;
}

.pa-site-header__main {
    height: 72px;
}

.pa-site-header__main-inner {
    display: flex;
    height: 72px;
    align-items: flex-start;
}

.pa-site-header__brand {
    display: flex;
    width: 153px;
    height: 60px;
    flex: 0 0 153px;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
}

.pa-site-header__brand img {
    display: block;
    width: 153px;
    height: 60px;
    object-fit: contain;
}

.pa-site-header__menu-button {
    display: none;
}

.pa-site-header__nav {
    height: 60px;
    margin: 6px 0 0 auto;
}

.pa-site-header__nav > ul:first-child {
    display: flex;
    height: 60px;
    align-items: stretch;
}

.pa-site-header__nav > ul:first-child > li {
    position: relative;
    height: 60px;
    padding: 0 20px;
}

.pa-site-header__nav > ul:first-child > li > a {
    position: relative;
    display: block;
    height: 60px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 60px;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .75);
}

.pa-site-header__nav > ul:first-child > li > a::after {
    position: absolute;
    right: 0;
    bottom: 14px;
    left: 0;
    height: 2px;
    background: #d6aa38;
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 160ms ease;
}

.pa-site-header__nav > ul:first-child > li > a:hover::after,
.pa-site-header__nav > ul:first-child > li > a.is-active::after {
    transform: scaleX(1);
}

.pa-site-header__socials--mobile {
    display: none;
}

.pa-social-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, .56);
}

.pa-social-modal.is-open {
    display: flex;
}

.pa-social-modal__dialog {
    position: relative;
    width: min(560px, 80vw);
    min-height: 290px;
    padding: 72px 44px 38px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .24);
}

.pa-social-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.pa-social-modal__close::before,
.pa-social-modal__close::after {
    position: absolute;
    top: 9px;
    left: 0;
    width: 20px;
    height: 1px;
    background: #0b2740;
    content: "";
    transform: rotate(45deg);
}

.pa-social-modal__close::after {
    transform: rotate(-45deg);
}

.pa-social-modal__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pa-social-modal__list li,
.pa-social-modal__list a {
    min-width: 0;
}

.pa-social-modal__list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #111;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
}

.pa-social-modal__list img {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 8px;
}

.pa-social-modal__list span {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1064px) {
    .pa-site-header-space {
        height: 60px;
    }

    .pa-site-header {
        position: fixed;
        height: 60px;
        background: #080405;
        box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
    }

    .pa-site-header__utility {
        display: none;
    }

    .pa-site-header__main,
    .pa-site-header__main-inner {
        width: 100%;
        height: 60px;
    }

    .pa-site-header__main-inner {
        position: relative;
        display: block;
    }

    .pa-site-header__brand {
        position: absolute;
        top: 4px;
        left: 50%;
        width: 133px;
        height: 52px;
        margin: 0;
        transform: translateX(-50%);
    }

    .pa-site-header__brand img {
        width: 133px;
        height: 52px;
    }

    .pa-site-header__menu-button {
        position: absolute;
        z-index: 2;
        top: 5px;
        left: -15px;
        display: flex;
        width: 40px;
        height: 50px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 10px;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .pa-site-header__menu-button span {
        display: block;
        width: 20px;
        height: 2px;
        background: #fff;
        transition: transform 160ms ease, opacity 160ms ease;
    }

    .pa-site-header.is-open .pa-site-header__menu-button span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .pa-site-header.is-open .pa-site-header__menu-button span:nth-child(2) {
        opacity: 0;
    }

    .pa-site-header.is-open .pa-site-header__menu-button span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .pa-site-header__nav {
        position: fixed;
        z-index: 1;
        top: 60px;
        left: 0;
        width: 100vw;
        height: calc(100dvh - 60px);
        margin: 0;
        overflow: hidden;
        background: #080405;
        opacity: 0;
        pointer-events: none;
        transform: scale(0);
        transform-origin: top left;
        transition: transform 160ms ease, opacity 160ms ease;
    }

    .pa-site-header.is-open .pa-site-header__nav {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1);
    }

    .pa-site-header__nav > ul:first-child {
        display: block;
        height: auto;
        padding-top: 0;
    }

    .pa-site-header__nav > ul:first-child > li,
    .pa-site-header__nav > ul:first-child > li:last-child {
        width: 100%;
        height: 43px;
        padding: 0 20px;
    }

    .pa-site-header__nav > ul:first-child > li > a {
        display: inline-block;
        height: 43px;
        font-size: 16px;
        line-height: 43px;
        text-shadow: none;
    }

    .pa-site-header__nav > ul:first-child > li > a::after {
        bottom: 0;
    }

    .pa-site-header__socials--mobile {
        position: absolute;
        bottom: 14px;
        left: 0;
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .pa-social-modal__dialog {
        padding-right: 22px;
        padding-left: 22px;
    }

    body.pa-site-nav-open {
        overflow: hidden;
    }
}

