.nav-desktop {
    height: 88px;
    /* max-width: 100dvw; */
    display: flex;
    gap: 0;
    justify-content: space-between;
    align-items: center;
}

.nav-desktop .logo-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: "Roobert";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    gap: 8px;
    margin-left: 32px;
}

.nav-desktop .logo-container:hover span {
    opacity: 0.8;
}

.nav-desktop .heading-container {
    height: 100%;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    font-family: "Roobert";
}

.nav-desktop .nav-redesign-link {
    font-size: 15px;
    font-style: normal;
    line-height: 24px; /* 150% */
    color: #FFFFFF;
    padding: 16px;
    transition: all .2s ease-in-out;
    font-family: "Roobert-semibold"
}

.nav-desktop .nav-redesign-link:hover {
    color: #ff7040;
}

.nav-desktop .nav-redesign-link::after {
    background: hsla(0,0%,100%,.36);
    content: "";
    display: block;
    height: 2px;
    left: 0;
    margin-top: 2px;
    transition: all .2s ease-in-out;
    width: 16px;
}

.nav-desktop .nav-redesign-link:hover::after {
    width: 100%;
    background: #ff7040;
}

.nav-desktop .sign-off-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    gap: 8px;
    text-transform: uppercase;
    font-size: 15px;
    font-family: "Roobert-semibold";
    margin-right: 32px;
}

.nav-desktop .sign-off-btn:hover span {
    opacity: 0.8;
}

.nav-mobile {
    display: none;
}

.nav-signout {
    height: 88px;
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .nav-mobile {
        display: block;
    }

    .nav-mobile {
        height: 120px;
    }

    .nav-mobile-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 50%;
    }

    .nav-mobile-bottom {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50%;
    }

    .nav-mobile .nav-redesign-link {
        font-size: 15px;
        font-style: normal;
        line-height: 24px; /* 150% */
        color: #FFFFFF;
        padding: 16px;
        transition: all .2s ease-in-out;
        font-family: "Roobert-semibold"
    }

    .nav-mobile .nav-redesign-link::after {
        background: hsla(0,0%,100%,.36);
        content: "";
        display: block;
        height: 2px;
        left: 0;
        margin-top: 2px;
        transition: all .2s ease-in-out;
        width: 16px;
    }

}
