@charset "utf-8";

.navigation {
    width: 1240px;
    height: 92px;
    position: fixed;
    top: 0;
    left: calc(50% - 620px);
    z-index: 998;
    font-family: 'pretendard';
    font-weight: 700;
}

nav {
    width: 100%;
    height: 100%;
    color: #333;
    font-size: 1.25em;
    position: absolute;
    left: calc(50% - 620px);
    z-index: 99;
}

.pluspark_logo {
    width: 24%;
    text-align: center;
}

.top-menu {
    line-height: 92px;
}

.navigation.on{
    background: none;
}
.navigation.on .top-menu ul,
.navigation.on .top-menu a{
    opacity: 0;
}

.top-menu .left-menu {
    width: 35%;
}

.top-menu .right-menu {
    width: 38%;
}

.left-menu li {
    float: left;
    width: 33%;
    text-align: center;
}

.right-menu li {
    float: left;
    width: 25%;
    text-align: center;
}

nav li a {
    color: #707070;
}

nav li a:hover {
    font-weight: 900;
    color: #195461;
}

nav li a.on {
    font-weight: 700;
    color: #195461;
}

.top-menu img {
    width: 88px;
}

.top-menu .full-menu-button {
    width: 52px;
    margin: 0 auto;
    cursor: pointer;
}


/* modal 설정*/
.nav-modal {
    width: 100%;
    height: 100vh;
    background: rgba(0, 8, 8, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: scroll;
    display: none;
    z-index: 999;
}

.nav-modal .content {
    width: 1132px;
    height: 360px;
    margin: 0 auto;
    margin-top: 25vh;
    color: #fff;
}

.nav-modal .content ul {
    display: flex;
    flex-wrap: wrap;
}

.nav-modal .content>ul>li {
    width: 25%;
    font-size: 2.50em;
    font-weight: 600;
}

.nav-modal .content>ul>li>a {
    color: #fff;
}

.drop-menu {
    padding: 18px 0 40px 0;
}

.drop-menu li {
    width: 100%;
    height: 44px;
    line-height: 44px;
}

.drop-menu a {
    font-size: 0.6em;
    font-weight: 400;
}

.drop-menu a:hover {
    color: #fff;
}

.modal-close-button {
    position: absolute;
    top: 52px;
    right: 52px;
    cursor: pointer;
}

.download{
    height: 52px;
    line-height: 52px;
    margin-top: 40px;
    text-align: center;
}

.download a{
    width: 98%;
    height: 100%;
    display: inline-block;
    border: 1px #fff solid;
    border-radius: 4px;
    margin: 2px 0;
}



/*반응형 - 1240*/
@media screen and (max-width: 1240px) {
    .navigation {
        width: 100%;
        height: 72px;
        left: 0;
    }

    nav {
        height: 72px;
        left: 0;
    }

    .top-menu {
        line-height: 72px;
    }

    .top-menu ul {
        display: none;
    }

    .pluspark_logo {
        width: calc(100% - 72px);
    }
    
    .top-menu .full-menu-button {
        width: 40px;
    }
    

    /*Modal*/
    .nav-modal .content {
        width: 64%;
        height: 80%;
        margin: 0 auto;
        margin-top: 12vh;
        overflow-y: scroll;
    }

    .nav-modal .content>ul>li {
        width: 100%;
        line-height: 52px;
        font-size: 1.6em;
        cursor: pointer;
    }

    .nav-modal .content .drop-menu {
        padding: 0;
        padding-bottom: 12px;
        display: none;
    }

    .nav-modal .content .drop-menu.on {
        display: block;
    }

    .drop-menu li {
        height: 32px;
        line-height: 26px;
    }

    .modal-close-button {
        width: 26px;
        height: 26px;
        top: 36px;
        right: 36px;
    }
}