

.pilule-menu {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translate(-50%, 0);

    padding: 17.5px 24px;
    display: flex;
    width: 388px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;

    border-radius: 106px;
    overflow: hidden;
    mix-blend-mode: exclusion;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    background-color: rgba(9, 9, 9); /* Fix for Safari */
    clip-path: rect(1px 383px 59px 1px round 100px); /* Fix for hide side effect of fix for Safari */
    /* Common/Body button */
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.32px;
    text-transform: uppercase;

    z-index: 1001;
}

.pilule-menu > div {
    flex: 1;
}

.pilule-menu-right {
    text-align: right;
}

.pilule-menu .logo {
    width: 100px;
    height: 24.194px;
    flex-shrink: 0;
    color: var(--color-primary);
}

.hotline-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000;
    color: #fff;
    padding: 0.5rem;
    text-align: center;
    z-index: 1001;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px 0;
}

.branding-left {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: start;
}

.branding-left-one {
    color: var(--color-primary);
    leading-trim: both;
    text-edge: cap;

    /* Common/Body button */
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.32px;
    text-transform: uppercase;
}

.branding-left-logo {
    display: none;
}

.branding-left-two {
    color: var(--color-primary);
    leading-trim: both;
    text-edge: cap;
    font-family: "Work Sans";
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 280% */
    letter-spacing: -0.2px;
    text-transform: uppercase;
}

.dark .branding-left-one {
    color: var(--color-dark-text);
}

.dark .branding-left-two {
    color: var(--color-dark-text);
}

.dark .header-right .bcorp-logo {
    filter: invert(1);
}

.header-center {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
}


.header-logo img {
    height: 2rem;
    width: auto;
}

#fullscreen-menu .toast-messages {
    top: 104px;
    right: 0;
}

.page-template-default .entry-content {
    padding: 120px 0;
}

@media screen and (max-width: 1024px) { /* Mobile and Tablet */
    .header-content {
        padding: 16px 8px 0;
    }

    .branding-left > span {
        display: none;
    }

    .branding-left-logo {
        display: block;
    }

    .pilule-menu {
        left: 8px;
        top: 14px;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transform: translate(0, 0);
        flex-direction: row-reverse;
        padding: 17.5px 0;
        width: calc(100% - 16px);
    }

    .pilule-menu-left {
        position: absolute;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .pilule-menu .pilule-menu-right {
        display: none;
    }

    .site-header .header-right {
        position: fixed;
        z-index: 1000;
        right: 8px;
        top: 14px;
    }

    .page-template-default .entry-content {
        padding: 80px 0;
    }
}