.nav_component {
    position: fixed;
    top: 0;
    left:0;

    z-index: 100;

    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;

    background-color: #000010;

    /*@media(max-width: 984px) {*/
    /*    background: transparent;*/
    /*}*/

    @media(max-width: 744px) {
        background: black !important;
    }
}

.nav_contents {
    width: 984px;
    height: 70px;
    margin: 0 auto;
    gap: 24px;

    display: flex;
    flex-direction: row;
    align-items: center;

    @media(max-width: 984px) {
        width: 744px;
    }

    @media(max-width: 744px) {
        width: calc(100% - 48px);
        padding: 0 24px;
    }
}

.nav_menus {
    flex:1;
}

.nav_links {
    @media(max-width: 744px) {
        display: none !important;
    }
}

.nav_button {
    width: 168px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #FF4E00;

    cursor: pointer;

    &:hover {
        opacity: 0.5;
    }

    @media(max-width: 744px) {
        width: 104px;
        height: 36px;
        font-size: 12px;
    }
}
