@charset "utf-8";



.inMenu {
    position: relative;
    left: 0;
    top: 0;
    margin: 0 auto;
    max-width: 400px;
    height: 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-weight: 400;
}

.inMenu a {
    color: #d6d6d6;
}


.inMenu .active {
    color: #222;
    font-weight: 500;
}


.inMenu div a {
    display: block;
    width: 100%;
    height: 100%;
}


.inMenu div:hover > a {
    color: #666;
}

.inMenu div:hover a::after {
    content: '●';
    position: absolute;
    color: #3b73b9;
    top: 10px;
    font-size: 10px;
}

/* 임시로 */

.inMenu div.active a::after {
    content: '●';
    position: absolute;
    color: #3b73b9;
    top: 10px;
    font-size: 10px;
}

.inMenu div.active a {
    color: #222;
    font-weight: 500;
}

/* 요까지 */



@media all and (max-width: 1023px) {

    .inMenu {
        position: relative;
        left: 0;
        top: 0;
        margin: 0 auto;
        max-width: 400px;
        height: 56px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        font-weight: 400;
        padding: 0 10px;
    }

}