@charset "utf-8";

/* 상단 해더 */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    z-index: 5000;
}

#header:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--color-sky) 0%, var(--color-blue) 100%);
    content: '';
}

#header .head-top h1 {
    font-size: 0;
}

#header .head-top h1 a {
    display: inline-block;
    padding: 10px;
}

#header .head-top h1 img {
    height: 40px;
}

#header .head-top .head-search {
    display: none;
    width: 50%;
    max-width: 660px;
    height: 50px;
    padding: 2px;
    background: linear-gradient(to right, var(--color-sky) 0%, var(--color-blue) 100%);
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    border-radius: 25px;
}

#header .head-top .head-search .inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 46px;
    padding: 0 4px;
    background-color: #fff;
    border-radius: 23px;
}

#header .head-top .head-search .inner .hs-select {
    flex-shrink: 0;
    width: 100px;
    border: none;
}

#header .head-top .head-search .inner .hs-input {
    flex-grow: 1;
    width: 100%;
    height: 30px;
    line-height: 30px;
    border: none;
    border-left: 1px solid #dcdcdc;
}

#header .head-top .head-search .inner .search-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
}

#header .head-top .head-search .inner .multi-lang-btn {
    background-color: var(--color-point);
    color: var(--color-basic-reverse);
    font-size: 2.4rem;
}

#header .head-top .side-mnu {
    position: absolute;
    top: 5px;
    right: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#header .head-top .side-mnu a.user-mnu-btn {
    display: block;
    padding: 10px;
    color: var(--color-gray-deep);
}

#header .mnu-area {
    display: none;
}

#header .gnb {
    padding: 0 20px;
}

#header .gnb ul.gnb-1ul li.gnb-1li a.gnb-1a {
    display: block;
    height: 64px;
    line-height: 64px;
    padding-right: 40px;
    font-size: 1.8rem;
}


#header .gnb ul.gnb-1ul:hover li.gnb-1li {
    opacity: 0.6;
}

#header .gnb ul.gnb-1ul li.gnb-1li:hover {
    opacity: 1;
}

#header .gnb ul.gnb-1ul li.gnb-1li:hover a.gnb-1a {
    color: var(--color-point);
}

#header .gnb ul.gnb-1ul li.gnb-1li.select a.gnb-1a {
    font-weight: 700;
    color: var(--color-point);
}

#header .gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul {
    margin-top: 30px;
}

#header .gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul li {
    margin-top: 20px;
}

#header .gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul li.gnb-2li a.gnb-2a {
    display: block;
    height: 42px;
    line-height: 42px;
    font-size: 1.6rem;
    color: var(--color-gray);
}

#header .gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul li.gnb-2li a.gnb-2a:hover {
    color: var(--color-green);
}

#header .head-notice-latest {
    position: absolute;
    top: 12px;
    right: 20px;
    overflow: hidden;
    width: 280px;
    height: 40px;
    padding: 0 15px 0 50px;
    background-color: var(--bg-gray-light);
    border-radius: 20px;
}

#header .head-notice-latest .notice-link-btn {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background-color: rgba(var(--color-black-rgb),0.16);
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 1.6rem;
}

#header .head-notice-latest ul {
    height: 40px;
}

#header .head-notice-latest ul li a {
    display: block;
    line-height: 40px;
    color: var(--color-gray);
    font-size: 1.4rem;
}

@media screen and (min-width: 767px) {
    #header {
        height: 80px;
    }

    #header .head-top {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: 80px;
    }

    #header .head-top h1 {
        flex-shrink: 0;
    }

    #header .head-top h1 a {
        padding: 15px 20px;
    }

    #header .head-top h1 img {
        height: 50px;
    }

    #header .head-top .head-search {
        display: block;
    }

    #header .head-top .side-mnu {
        top: 15px;
        right: 20px;
    }
}

@media screen and (min-width: 979px) {
    #header {
        height: auto;
    }

    #header .head-top {
        height: 110px;
        transition: .2s;
    }

    #header .head-top h1 img {
        height: 70px;
    }

    #header .head-top .head-search .inner .hs-select {
        width: 125px;
        padding-left: 25px;
    }

    #header .head-top .head-search .inner .submit-btn {
        margin-right: 5px;
    }

    #header .head-top .side-mnu {
        top: 30px;
        transition: .2s;
    }

    #header .mnu-area {
        display: block;
        overflow: hidden;
        height: 68px;
        transition: 0.3s;
    }

    #header .mnu-area:hover {
        height: 300px;
    }

    #header .mnu-area:hover .gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul {
        margin-top: 0;
    }

    #header .mnu-area:hover .gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul li {
        margin-top: 0px;
    }

    .scrollOn #header {
        background-color: rgba(255,255,255,0.9);
        backdrop-filter: blur(10px);
    }

    .scrollOn #header .head-top {
        height: 70px;
    }

    .scrollOn #header .head-top h1 img {
        height: 50px;
    }

    .scrollOn #header .head-top .side-mnu {
        top: 10px;
    }
}

@media screen and (min-width:1239px) {
    #header .head-top .head-search {
        margin-left: 40px;
    }

    #header .head-top .head-search .inner .hs-input {
        padding: 0 15px;
    }

    #header .head-top .side-mnu a.user-mnu-btn {
        padding: 10px 20px;
        transition: .2s;
    }

    #header .head-top .side-mnu a.user-mnu-btn:hover {
        color: var(--color-blue);
    }

    #header .head-top .side-mnu .mnubtn {
        margin-left: 10px;
    }

    #header .gnb ul.gnb-1ul li.gnb-1li a.gnb-1a {
        padding-right: 60px;
    }

    #header .head-notice-latest {
        width: 350px;
    }
}

@media screen and (min-width:1439px) {
    #header .head-top h1 a {
        padding: 15px 0;
    }

    #header .head-top .side-mnu {
        right: 0;
    }

    #header .gnb {
        padding: 0;
    }

    #header .gnb ul.gnb-1ul li.gnb-1li a.gnb-1a {
        padding-right: 80px;
        font-size: 2rem;
    }

    #header .gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul li.gnb-2li a.gnb-2a {
        font-size: 1.7rem;
    }

    #header .head-notice-latest {
        right: 0;
    }
}


/* 하단푸터 */
#footer {
    position: relative;
    padding: 20px;
    background-color: var(--bg-footer);
    color: var(--color-basic-reverse);
}

#footer .foot-mnu {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#footer .foot-mnu a {
    padding: 10px 0;
    color: var(--color-basic-reverse);
}

#footer .foot-mnu a:not(:first-child) {
    margin-left: 20px;
}

#footer .foot-mnu .related-site-link {
    position: absolute;
    top: calc(50% - 18px);
    right: 0;
    border: none;
    background-color: var(--bg-white);
}

#footer .foot-info {
    position: relative;
    padding-top: 20px;
    margin-top: 20px;
}

#footer .foot-info:after {
    position: absolute;
    top: 0;
    left: -1000px;
    right: -1000px;
    height: 1px;
    background-color: var(--bg-white);
    opacity: 0.2;
    content: '';
}

#footer .foot-info .side-sns-link a.ssl-btn {
    display: inline-block;
    font-size: 3rem;
}

#footer .foot-info .side-sns-link a.ssl-btn.ssl-youtube {
    color: #DC2915;
}

#footer .foot-info .foot-tit {
    margin-bottom: 10px;
    font-weight: 700;
}

#footer .foot-info ul li {
    margin-right: 30px;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

#footer .foot-info .copyright {
    margin-top: 10px;
    font-size: 400;
    opacity: 0.7;
    text-transform: uppercase;
}

@media screen and (min-width: 767px) {
    #footer .foot-mnu a:not(:first-child) {
        margin-left: 40px;
    }

    #footer .foot-mnu .related-site-link {
        width: 200px;
    }

    #footer .foot-info .side-sns-link {
        position: absolute;
        top: 10px;
        right: 0;
    }

    #footer .foot-info .side-sns-link a.ssl-btn {
        font-size: 4rem;
    }
}

@media screen and (min-width:1239px) {
    #footer {
        padding-bottom: 40px;
    }

    #footer .foot-info {
        padding-top: 40px;
    }

    #footer .foot-info .side-sns-link {
        top: 30px;
    }

    #footer .foot-info .side-sns-link a.ssl-btn {
        font-size: 4.6rem;
    }
}


/* 모바일 GNB */
.mobile-modal {
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    width: 100%;
    padding: 20px;
    color: var(--color-basic-reverse);
    background-color: var(--color-green);
    z-index: 4000;
}

.mobile-modal .mobile-mnu {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-modal .mobile-mnu a {
    flex-grow: 1;
}

.mobile-modal .m-gnb {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    /* margin-top: 20px; */
}

.mobile-modal .m-gnb ul.gnb-1ul li.gnb-1li {
    position: relative;
    padding: 15px 10px;
    border-top: 1px solid rgba(var(--color-background-rgb),0.2);
}

.mobile-modal .m-gnb ul.gnb-1ul li.gnb-1li:first-child {
    border-top: none;
}

.mobile-modal .m-gnb ul.gnb-1ul li.gnb-1li a {
    display: block;
    color: var(--color-basic-reverse);
}

.mobile-modal .m-gnb ul.gnb-1ul li.gnb-1li a.gnb-1a {
    font-family: var(--font-point);
    font-size: 18px;
}

.mobile-modal .m-gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul {
    margin: 5px 0 -5px;
}

.mobile-modal .m-gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul li.gnb-2li {
    margin-right: 20px;
}

.mobile-modal .m-gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul li.gnb-2li a.gnb-2a {
    padding: 5px 0;
    opacity: 0.7;
    font-size: 16px;
}

@media screen and (min-width: 767px) {
    .mobile-modal {
        top: 80px;
    }
}

@media screen and (min-width: 979px) {
    .mobile-modal {
        top: 178px;
    }

    .mobile-modal .m-gnb ul.gnb-1ul li.gnb-1li {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 30px 20px;
    }

    .mobile-modal .m-gnb ul.gnb-1ul li.gnb-1li a.gnb-1a {
        flex-shrink: 0;
        width: 200px;
        padding: 5px;
    }

    .mobile-modal .m-gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul {
        flex-grow: 1;
        margin: 0;
    }

    .mobile-modal .m-gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul li.gnb-2li {
        margin-right: 30px;
    }

    .mobile-modal .m-gnb ul.gnb-1ul li.gnb-1li ul.gnb-2ul li.gnb-2li a.gnb-2a:hover {
        opacity: 1;
    }
}


/* 모달 */
.modal-backdrop {
    z-index: 8000;
}

.modal-backdrop.show {
    opacity: 0.7;
}

.modal {
    z-index: 9000;
}

.modal .modal-header {
    border-bottom: none;
    background-color: var(--color-point);
    color: #fff;
}

.modal .modal-header .modal-clos-btn {
    padding: 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
    font-size: 20px;
    color: #fff;
}

.modal .modal-footer {
    justify-content: center;
}

@media screen and (min-width: 639px) {
    .modal-dialog {
        margin-top: 200px;
    }
}







/* -------------------------------- */
@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
}

@media screen and (min-width: 979px) {
}

@media screen and (min-width:1239px) {
}

@media screen and (min-width:1339px) {
}

@media screen and (min-width:1439px) {
}

@media screen and (min-width:1639px) {
}

@media screen and (min-width:1839px) {
}