/*=====MOBILE=====*/
.mobile-header{
    position: fixed;
    top:0;
    width: 100%;
    height:75px;
    background-color: transparent;
    z-index: 700;
}
.mobile-header.sub-page{
    background-color:rgba(255,255,255,.9);
}
.mobile-header .logo{
    display:inline-block;
    margin-top:24px;
    padding-left:22px;
    font-size: 17px;
    font-weight: 400;
}
.mobile-header.sub-page .logo{
    color:#252525;
}
.mobile-header .logo .logo-img {
    display: inline-block;
    width: 99px;
    height: 13px;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
}
.mobile-header .logo_subtext {
    display:block;
    font-size:11px;
    font-weight:300;
    letter-spacing: 0.08em;

}
.mobile-header.sub-page .logo_subtext{
    color:#090909;
}
/* 네비게이션 메뉴 버튼 */
.mobile-header .menu-btn {
    padding-right:22px;
    cursor: pointer;
    z-index: 800;
}
.mobile-header .menu-btn span{
    display: block;
    width:22px;
    height: 2px;
    background-color:#000;
    margin-bottom: 5px;
}
.mobile-header .menu-btn span:last-child{
    margin-bottom: 0;
}
.mobile-header .menu-btn.on span{
    background-color:#000 !important;
}
.mobile-header .menu-btn.on .one{
    -webkit-transform: translateY(10px) rotateZ(135deg);
    transform: translateY(4px) rotateZ(135deg);
}
.mobile-header .menu-btn.on .two{
    opacity:0
}
.mobile-header .menu-btn.on .three{
    -webkit-transform: translateY(-10px) rotateZ(-135deg);
    transform: translateY(-10px) rotateZ(-135deg);
}
/* 네비게이션 컨텐츠 */
.mobile-nav-wrap{
    position: fixed;
    top:0;
    right:0;
    width: 250px;
    background-color: #fff;
    height: 100%;
    padding-left: 35px;
    z-index: 700;
    overflow: auto;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}
.mobile-header.on .mobile-nav-wrap{
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.mobile-nav-wrap .nav-top-menu{
    margin-bottom:20px;
    padding: 26.5px 15px;

}
.mobile-nav-wrap .mobile-nav .aco{
    text-transform: capitalize;
    font-size: 15px;
    color:#181818;
}
.mobile-nav-wrap .mobile-nav .aco a{
    height: 53px;
    line-height: 53px;
}
.mobile-nav-wrap .mobile-nav .aco .text{
    position: relative;
    display: inline-block;
}
.mobile-nav-wrap .mobile-nav .aco .text:after{
    content:"";
    position: absolute;
    left:0;
    bottom:15px;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #a6a6a6;
    transform-origin: 50%;
    transition:transform .5s;
    -webkit-transition:transform .5s;
    transform:scaleX(0);
    -webkit-transform:scaleX(0);
}
.mobile-nav-wrap .mobile-nav.on .aco .text:after,
.mobile-nav-wrap .mobile-nav .aco:hover .text:after,
.mobile-nav-wrap .mobile-nav .aco:active .text:after{
    transform:scaleX(1);
    -webkit-transform:scaleX(1);
}
.mobile-nav-wrap .mobile-nav .aco i{
    right: 20px;
    font-size: 20px;
}
.mobile-nav-wrap .mobile-nav .aco.on i {
    transform: translate(0%, -50%) rotate(-180deg);
}
.mobile-nav-wrap .submenu{
    display:none;
}
.mobile-nav-wrap .aco.on .submenu {
    display: block;
}
.mobile-nav-wrap .submenu li{
    background-color: #eee;
}

/* 네비게이션 뒤 배경 */
.mobile-bg{
    display: none;
}
.mobile-bg{
    position: fixed;
    top:0;
    bottom:0;
    width: 100%;
    background-color: rgba(0,0,0,.4);
}
/*소셜 링크 아이콘*/
.social-link-list{
    float: left;
    line-height: normal;
    margin-top: 30px;
    margin-right: 20px;
}
.social-link-list:last-child{
    margin-right: 0;
}
.social-link-list i{
    font-size: 16px;
    transition: color .5s;
    -webkit-transition: color .5s;
}
.mobile-nav-wrap .social-link-list i{
    color:#c8c8c8;
}

@media screen and (min-width: 992px) {
    #home-home-body .social-link-list:hover i {
        color: #fff!important;
    }
    .social-link-list:hover .fa-envelope-o {color: #2e9800;}
    .social-link-list:hover .fa-facebook {color: #1957c9;}
    .social-link-list:hover .fa-instagram {color: #f78e38;}
    .social-link-list:hover .fa-pinterest {color: #c50000;}
    .social-link-list:hover .fa-behance {color: #2f47ff;}
}
/*=====MOBILE end=====*/

/*=====PC=====*/
@media screen and (min-width: 992px) {
    .pc-header{
        position:fixed;
        left:0;
        top:0;
        width:320px;
        padding:50px;
        z-index: 700;
    }
    .pc-header .inner-wrap{
        width: 220px;
        border-top:1px solid #e9e9e9;
        border-bottom:1px solid #e9e9e9;
        padding:20px 0;
    }
    /* 네비게이션 컨텐츠 */
    .pc-header.sub-page{
        color:#252525;
    }
    .pc-header .logo{
        margin-bottom: 45px;
        font-size: 18px;
        font-weight: 400;
    }
    .pc-header .logo .logo-img{
        display: inline-block;
        width: 160px;
        height: 53.33px;
        margin-bottom: -12px;
        background-position: 50%;
        background-repeat:no-repeat;
        background-size: contain;
    }
    .pc-header.sub-page .logo_subtext{
        color:#777;
        opacity:1;
    }
    .pc-header .logo_subtext {
        display:block;
        font-size:11px;
        font-weight:300;
        letter-spacing: 0.08em;
        opacity:0.98;
    }
    .pc-header.sub-page .pc-nav .menu-list{
        color:#252525;
        opacity:1;
    }
    .pc-header .pc-nav .menu-list{
        line-height: normal;
        margin-bottom: 10px;
        font-size: 12px;
        font-weight: 500;
        letter-spacing:0.05em;
        opacity:0.95;
        text-transform: capitalize;
    }
    .pc-header .pc-nav .menu-list a .text{
        position: relative;
        display: inline-block;
    }
    .pc-header .pc-nav .menu-list a .text .line{
        content:"";
        position: absolute;
        left:0;
        bottom:0;
        display: block;
        width: 100%;
        height: 1px;
        transform-origin: 50%;
        transition:transform .5s;
        -webkit-transition:transform .5s;
        transform:scaleX(0);
        -webkit-transform:scaleX(0);
    }
    .pc-header.sub-page .pc-nav .menu-list a .text .line{
        background-color: #828282;
    }
    .pc-header .pc-nav .menu-list:first-child.on a .text .line{
        transform:scaleX(0);
    }
    .pc-header .pc-nav .menu-list.on a .text .line,
    .pc-header .pc-nav .menu-list:hover a .text .line,
    .pc-header .pc-nav .menu-list:active a .text .line,
    .pc-header .pc-nav .menu-list:first-child:hover a .text .line{
        transform:scaleX(1);
        -webkit-transform:scaleX(1);
    }

    /*소셜 링크 아이콘*/
    .social-link-list{
        margin-right: 15px;
    }
    .social-link-list i{
        font-size: 13px;
    }
    .pc-header .social-link-list i{
        opacity:.8;
    }
    .sub-page .social-link-list i{
        color:#c8c8c8;
        opacity:1;
    }
    #home-home-body .pc-header{
        top:3px;
    }
    #home-home-body .pc-header .inner-wrap{
        border-top-color:#484848;
        border-bottom-color:#484848;
    }
    #home-home-body .pc-header .pc-nav .menu-list a .text:after{
        /*background-color: #000;*/
    }
    /*=====PC end=====*/
}