:root {
    --navbar-height: 73px; /* 네비게이션 바의 높이를 변수로 설정 */
}

.fixed-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--navbar-height); /* CSS 변수 사용 */
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.scrollable-content {
    height: calc(100% - var(--navbar-height)); /* CSS 변수 사용 */
    overflow-y: auto;
    padding-top: var(--navbar-height);
}

.resup_menu {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.05);
    width: 100%;
    opacity: 1;
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    padding: 12px 0;
    /* overflow: hidden; */
    /* padding: 12px 32px; */
    /* position: fixed; */
    /* width: 1200px; */

    /* max-width: 1280px; */
    max-width: 1459px;
}

.m_logo {
    flex: 0 0 159px;
    display: flex;
    align-items: center;
}

.m_nav {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.m_nav_menu,
.m_nav_right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.menu_link {
    /* box-sizing: border-box; */
    color: rgb(71, 85, 105);
    cursor: pointer;
    display: inline;
    font-family: "Inter", "Inter Placeholder", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    height: auto;
    letter-spacing: -0.2px;
    line-height: 28px;
    text-align: center;
    text-decoration-color: rgb(71, 85, 105);
    text-decoration-line: none;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    text-transform: none;
    text-wrap: nowrap;
    user-select: none;
    width: auto;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-color: rgb(71, 85, 105);
    -webkit-text-stroke-width: 0px;
}

.sign_btn {
    background: linear-gradient(rgb(54, 58, 68) 0%, rgb(3, 7, 18) 100%);
    padding: 12px 16px;
    cursor: pointer;
    font-size: 16px;
    font-family: Inter, "Inter Placeholder", sans-serif;
    border-radius: 16px;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 2px 0px 0px inset;
    color: rgb(255, 255, 255);
    font-weight: 500;
    line-height: 20px;
}

.sign_btn:hover {
    color: rgb(255, 255, 255) !important; 
}

.resup_menu_bottom {
    background-color: rgba(0, 0, 0, 0.08);
    opacity: 1;
    bottom: 0;
    flex: none;
    height: 1px;
    left: 0;
    overflow: visible;
    position: absolute;
    right: 0;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    body {
        padding-top: 0px;
    }
}

@media screen and (max-width: 1600px) {
    .resup_menu {
        
        padding: 12px 32px;
   
    }
}
