
@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-style: normal;
}
#wrap * {
    font-family: 'Pretendard-Regular';
}

header {
    padding: 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: rgba(33, 35, 38, 0.3) 0px 10px 10px -10px;
    background-color: #fff;
}

.header_wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header a {
    width: 60%;
    font-size: 16px;
}

header img {
    width: 20%;
    height: 20%;
}

header ul {
    display: flex;
    gap: 1rem;
    width: 40%;
    justify-content: flex-end;
}

header ul li {
    padding: .5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
}
header ul li::after {
    content: '';
    width: 3px; 
    height: 3px;
    background-color: #333; 
    border-radius: 50%; 
    position: absolute;
    top: 50%; 
    right: -10px; 
    transform: translateY(-50%); 
}
header ul li:last-child::after {
    content: ''; 
    display: none;
}
header ul li a {
    text-decoration: none;
    font-size: 17px;
}

.selected a {
    color: #169174;
}

.header_mo {
    display: none;
}

body {
    margin-top: 70px;
}

@media screen and (max-width: 767px) {
    header {
        padding: 10px 0;
    }
    .header_wrap {
        width: 100%;
        max-width: unset;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }
    header a {
        width: 100%;
        font-size: 14px;
        text-align: center;
    }
    header img {
        width: 30%;
        height: 20%;
    }
    header ul {
        display: flex;
        gap: 1rem;
        width: 100%;
        justify-content: space-around;
        border-top: 1px solid #ddd;
        padding-top: 10px;
    }
    header ul li::after {
        content: '';
        width: 3px;
        height: 3px;
        background-color: #333;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        right: -20px;
        transform: translateY(-50%);
    }
}