#pp-header {
    background-color: rgba(0, 31, 46, 0.42);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
}
#pp-header > div {
    max-width: 1240px;
    padding: 18px 20px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#pp-header > div > img {
    width: 203px;
    height: 67px;
}
#pp-header > div > nav {
    display: flex;
    align-items: center;
    gap: 20px;
}
#pp-header > div > nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
#pp-header > div > nav > ul > li {
    
}
#pp-header > div > nav > ul > li > a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 30px;
    color: #ececec;
}
#pp-header > div > nav > #btn-wpp {
    border: 1px solid rgba(255, 255, 255, 0.32);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: #ececec;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(5px);
    background-color: rgba(237, 237, 237, 0.33);
    border-radius: 21px;
    padding: 10px 16px;
    text-decoration: none;
}
#pp-header > div > nav > #btn-wpp > img {
    width: 19px;
    height: 19px;
}
#pp-header > div > nav > #pp-mobileMenuClose,
#pp-header > div > nav > #pp-mobileLogo,
#pp-header > div > nav > #pp-mobileMenuDivider {
    display: none;
}
#pp-header > div > #asideMenuBtn {
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}
#pp-header > div > #asideMenuBtn > span {
    width: 20px;
    height: 2px;
    background-color: #999;
    border-radius: 2px;
    display: block;
}
body.pp-menu-open {
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    #pp-header > div > nav {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        height: 60vh;
        background-color: #001f2e;
        flex-direction: column;
        align-items: center;
        padding: 24px 20px 40px;
        gap: 50px;
        z-index: 1000;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }
    #pp-header.is-menu-open > div > nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    #pp-header > div > #asideMenuBtn {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #pp-header > div > nav > #pp-mobileMenuClose {
        display: block;
        align-self: flex-end;
        width: 32px;
        height: 32px;
        background: transparent;
        border: 0;
        color: #c7c7c7;
        font-size: 22px;
        line-height: 1;
        cursor: pointer;
    }
    #pp-header > div > nav > #pp-mobileLogo {
        display: block;
        width: 180px;
        height: auto;
    }
    #pp-header > div > nav > ul {
        width: 100%;
        max-width: 280px;
        background-color: #ffffff;
        border-radius: 14px;
        padding: 12px 16px;
        flex-direction: column;
        gap: 12px;
    }
    #pp-header > div > nav > ul > li > a {
        font-size: 14px;
        line-height: 20px;
        color: #4a4a4a;
        display: block;
        padding: 6px 0;
    }
    #pp-header > div > nav > #btn-wpp {
        background-color: rgba(237, 237, 237, 0.08);
        padding: 8px 14px;
    }
    #pp-header > div > nav > #btn-wpp > img {
        width: 18px;
        height: 18px;
    }
    #pp-header > div > nav > #pp-mobileMenuDivider {
        display: block;
        width: 100%;
        max-width: 280px;
        height: 1px;
        background-color: rgba(236, 236, 236, 0.2);
    }
}
