header {
    padding: var(--site_padding);
    padding-bottom: 0.5em;
    height: 25vh;
    background-color: var(--market_shadow);
    color: var(--white);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.nav_brand {
    width: 8.125em;
    display: flex;
    color: var(--white);
}

.header_bg {
    display: block;
    position: absolute;
    height: 150%;
    width: 65%;
    right: 0;
    top: 0;
    pointer-events: none;
}

.pulse_svg {
    padding: 0.06125em;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ringring {
    border-radius: 100%;
    border: 0.06125em solid #fc1c1f;
    position: absolute;
    height: 100%;
    width: 100%;
    animation: pulse 1.75s infinite cubic-bezier(0.66, 0, 0, 1);
    opacity: 1;
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(0.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.6);
        opacity: 0;
    }
}
.live_icon {
    flex: none;
    justify-content: center;
    align-items: center;
    width: 0.75em;
    height: 0.75em;
    margin-top: 0.25em;
    display: flex;
}
.header_content {
    z-index: 2;
    margin-top: auto;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.hc_line {
    width: calc(100% + (var(--site_padding) * 2));
    margin: 0.5em 0;
    margin-left: calc(0em - var(--site_padding));
    background-color: #444444;
    height: 0.06125em;
}

.hc_inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.left_side {
    display: flex;
    align-items: center;
    gap: 0.6125em;
}
.status {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8f959d33;
    padding: 0.6125em;
    color: var(--iron_horizon--lighter);
    line-height: 1;
}

.status::after {
    content: 'Inactive';
}
.status.active::after {
    content: 'Active';
}
.status.active {
    background-color: #28D93B33;
    color: #28D93B;
}
.status.ineligible::after {
    content: 'Ineligible';
}
.status.ineligible {
    background-color: #FF170033;
    color: #FF1700;
}

.start_assessment-button {
    padding: 0.6125em;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 0.06125em solid var(--iron_horizon);
    outline-offset: -0.125em;
    color: var(--iron_horizon);
    text-decoration: none;
    line-height: 1;
    transition: all 0.25s var(--inOutSine);
}

.live_prop {
    display: flex;
    gap: 0.6125em;
}

.live_prop-content {
    display: flex;
    flex-direction: column;
    gap: 0.125em;
}
.profile_dd {
    position: absolute;
    right: 1.25em;
    top: 1.25em;
    display: flex;
    align-items: center;
    width: 25%;
    backdrop-filter: blur(.25em);
    z-index: 9999;
    cursor: pointer;
}

.profile_dd img {
    border: 0.06125em solid var(--iron_horizon);
    width: 2em;
    height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user_dd {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6125em;
    background-color: #ffffff1a;
    transition: all 0.25s var(--inOutSine);
    font-weight: var(--med);
}
.profile_dd:hover .user_dd {
    background-color: #ffffff33;
}
.start_assessment-button:hover {
    background-color: var(--white);
    color: var(--black);
    outline-color: var(--white);
}
.hamb_menu {
    display: none;
}

@media (max-width: 992px) {
    .left_side {
        display: none;
    }

    .hc_line {
        display: none;
    }

    .header_content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .hc_inner {
        width: auto;
    }

    .live_prop-content p:nth-child(2) {
        display: none;
    }
    .mm_profile .profile_dd {
        display: flex;
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        color: var(--market_shadow);
    }
    .mm_profile .user_dd {
        background-color: var(--iron_horizon--lighter);
    }
    .profile_dd {
        display: none;
    }

    header {
        height: 20vh;
    }

    .header_bg {
        height: 135%;
        width: 100%;
    }
    .hamb_menu {
        text-transform: uppercase;
        position: absolute;
        top: var(--site_padding);
        right: var(--site_padding);
        display: flex;
        align-items: center;
        gap: 0.3125em;
    }

    .hamb_menu p {
        letter-spacing: normal;
        line-height: 1;
    }

    .hm_lines {
        width: 2.5em;
        height: 0.6125em;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hm_lines .line {
        width: 100%;
        height: 0.125em;
        background-color: var(--white);
    }
}