/* PC Header */
header {
    width: 100%;
    height: 100px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    top: 38px;
    position: absolute;
    z-index: 9999;
}
h1.navbar-header {
    width: 250px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
/* h1.navbar-header a {
    display: inline-block;
    width: 100%;
    height: 100%;
} */

h1.navbar-header svg {
    width: 100%;
}

nav ul.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul.navbar-nav>li {
    margin-left: 34px;
    position: relative;
}

nav ul.navbar-nav>li>a {
    position: relative;
    font-size: 17px;
    font-weight: 700;
    color: #D9D9D9;
    padding: 5px 0;
    cursor: pointer;
}
nav ul.navbar-nav > li.on > a {
    color: #fff;
    font-weight: bold;
}
nav ul.navbar-nav > li > a:hover {
    font-weight: bold;
    color: #fff;
}

/* Header fixed */
header.navbar-fixed-top {
    width: 100%;
    height: 80px;
    position: fixed !important;
    top:0;
    background: rgba(255,255,255,0.9);
    color: #363636;
    z-index: 99999;
    border-bottom:1px solid #ececec
}
header.navbar-fixed-top h1.navbar-header {
    width: 230px;
}
header.navbar-fixed-top h1.navbar-header rect,
header.navbar-fixed-top h1.navbar-header path {
    fill: #162347;
}
    /*  Header 미디어쿼리 */
    @media all and (max-width: 1400px) {
        h1.navbar-header {
            width: 280px;
        }
    }
    @media all and (max-width: 1200px) {
        header .pc-menu {
            display: none;
        }
        header {
            top: 7px
        }
        nav {
            justify-content: center;
            height: 80px;
            padding: 0 5%;
            border-bottom: 1px solid #e9e5d9;
        }

        nav.navbar-fixed-top {
            padding: 5px 0;
            height: 60px;
        }

        .mobile-menu h1.navbar-header {
            width: 191px;
        }

        .mobile-menu-top {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .menu-slider-sns {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 70px;
            font-size: 12px;
        }

        .menu-slider-sns li {
            margin: 0 7px;
        }

        .menu-slider-sns a {
            display: flex;
            align-items: center;
            font-size: 13px;
            font-weight: 600;
        }

        .menu-slider-sns li img {
            width: 17px;
            margin-right: 5px;
        }
    }

    @media all and (max-width: 640px) {
        header {
            top: 12px
        }

        header,
        header.navbar-fixed-top {
            height: 50px;
        }

        h1.navbar-header,
        header.navbar-fixed-top h1.navbar-header {
            width: 168px;
        }
    }


/* Footer */
#footer {
    position: relative;
    padding: 80px 0 56px;
    background: #E9E9E9;
    display: flex;
    justify-content: center;
    background: center / cover url("/public/images/footer-bg.jpg") no-repeat;
}

#footer .footer-wrap {
    position: relative;
    width: 90%;
    max-width: 1376px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#footer .footer-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    width: 298px;
}

.footer-logo svg {
    width: 100%;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
}

.footer-info li,
.footer-middle .sitemap li a,
.footer-middle .footer-policy li a,
.footer-bottom .copyright {
    font-size: 16px;
    color: #9F9F9F;
    line-height: 1
}

.footer-middle .ft-tit {
    color: #C8C8C8;
    font-weight: 700;
}

.footer-middle ul {
    margin-top: 20px;
}

.footer-middle ul.footer-policy {
    margin-top: 43px;
}

.footer-info li {
    margin-bottom: 13px
}

.footer-policy li {
    margin-bottom: 8px
}

.footer-middle .sitemap li {
    margin-bottom: 8px
}

.footer-middle .sitemap li a {}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .copyright {
    font-weight: 300;
}
.footer-bottom .copyright a:hover {
    color:#FFFFFF
}

/*  Scroll Top */
.scrolltop {
    width: 36px;
    height: 60px;
    position: fixed;
    bottom: 40px;
    right: 5%;
    z-index: 3;
    display: none;
    transition: all 0.5s ease;
    transform: translate(0, 0);
    cursor:pointer
}
.scrolltop img {
    width: 100%
}
.scrolltop:hover {
    transform: translate(0,-10px);
}

    /*  Scroll Top 미디어쿼리 */
    @media all and (max-width: 640px) {
        .scrolltop {
            width: 15px;
            right: 6%;
            bottom: 14px
        }
    }
    /* Footer 미디어쿼리 */
    @media all and (min-width: 1201px) {
        .footer-info a:hover,
        .footer-middle .sitemap li a:hover,
        .footer-middle .footer-policy li a:hover {
            color: #fff
        }

        .footer-middle .sitemap li,
        .footer-middle .footer-policy li {
            line-height: 1.3;
        }

        .footer-middle .sitemap {
            margin: 0 180px 0 107px
        }

        .footer-bottom {
            position: absolute;
            left: 0;
            bottom: 0;
        }
    }

    @media all and (max-width: 1200px) {
        #footer {
            padding: 50px 0 56px
        }

        #footer .footer-top {
            flex-direction: column;
            flex-wrap: wrap;
        }

        .footer-middle {
            width: 100%;
            margin: 43px 0 25px
        }

        .footer-middle ul {
            margin-top: 10px;
        }

        .footer-middle ul.footer-policy {
            margin-top: 33px;
        }
    }

    @media all and (max-width: 700px) {
        #footer {
            padding: 40px 0 30px;
        }

        .footer-logo {
            font-size: 20px;
        }

        .footer-middle {
            margin: 20px 0 20px
        }

        .footer-logo br {
            display: none
        }

        .footer-middle {
            flex-direction: column;
        }

        .footer-info li {
            margin-bottom: 5px
        }

        .footer-middle .sitemap {
            margin: 10px 0
        }

        .footer-middle .sitemap li {
            margin-bottom: 3px
        }

        .footer-policy li {
            margin-bottom: 4px
        }
    }

    @media all and (max-width: 640px) {
        #footer {
            padding: 28px 0 22px
        }

        .footer-logo {
            width: 180px;
        }

        .footer-middle .sitemap {
            margin: 20px 0;
        }

        .footer-info li,
        .footer-middle .sitemap li a,
        .footer-middle .footer-policy li a,
        .footer-bottom .copyright {
            font-size: 13px;
        }

        .footer-middle {
            margin: 20px 0 11px
        }

        .footer-middle ul {
            margin-top: 8px;
        }

        .footer-middle .sitemap ul,
        .footer-policy {
            display: flex;
            margin-top: 0;
        }

        .footer-middle ul.footer-policy {
            margin-top: 0;
        }

        .footer-middle .sitemap li,
        .footer-policy li:last-child {
            margin: 0 0 0 10px;
        }

        .footer-middle .sitemap li:first-child {
            margin: 0;
        }

        .footer-middle .footer-policy a {
            font-weight: 700;
        }

        .footer-bottom {
            border-top: 1px solid rgba(217, 217, 217, 0.13);
            padding-top: 17px;
        }
    }