@charset "utf-8";
/*
Theme Name:     demo
Description:    eCIS에서 제작한 커스텀 테마입니다.
Author:         Ecis co.,ltd.
Author URI:     http://clubj.co.kr/
*/

/* common */

/* font - pretendard */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

* {
    font-family: 'Open Sans', 'Pretendard', sans-serif;
    letter-spacing: 0;
    line-height: 1.5;
    font-style: normal;
    word-break: keep-all;
}


*::placeholder {
    color: #bbb;
    font-weight: 300;
}


p {
    line-height: inherit;
    margin: auto;
}

.elementor a{
    color: inherit;
}

ul,
ol,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
.heading-size-1,
h2,
.heading-size-2,
h3,
.heading-size-3 {
    margin: 0;
    letter-spacing: 0;
}

table {
    margin: 0;
    font-size: inherit;
    border-top: 2px solid #1E2A7B;
}

table thead {
    background: #f7f7f7;
    color: #333;
    text-align: center;
}

table th {
    font-weight: 500;
    background: #f7f7f7;
}

table th,
td {
    border: 1px solid #eee;
    white-space: normal;
    vertical-align: middle;
    padding: 1rem 2rem;
}

section{
    padding: 0;
}

/* header */

.header-inner {
    width: 90%;
    min-width: 1280px;    
    padding: 2rem;
}

#site-header {
    position: relative;
    margin: 0 auto;
    width: 100%;
    background: #0e325c;
    z-index: 9;
}

#site-header.fixed{
    position: fixed;
    background: #0e325c !important;
    z-index: 999;
}

#site-header.fixed .header-inner{
    padding: 1.6rem 2rem;
}
#site-header.fixed .header-inner .site-logo img{
    height: 5rem;
    transition: ease all .5s;    
}


#site-header .header-inner .primary-menu>li>a{
    color: rgba(255,255,255,0.5) !important;
    font-size: 2rem;
    padding: 1rem;
    margin: 0;
}

#site-header.fixed .header-inner .primary-menu>li{
    margin-left: 0 0 0 3rem;
}

#site-header.fixed .header-inner .primary-menu>li>a{
    font-size: 1.8rem;
}


#site-header .header-inner .primary-menu>li.current_page_ancestor>a,
#site-header .header-inner .primary-menu>li>a:hover{
    color: #fff !important;
    text-decoration: none;
}

.home #site-header{
    background: transparent;
    position: fixed;
}


.home #site-header .header-inner .primary-menu>li>a,
.home #site-header .header-inner .primary-menu>li>a:hover{
    color: #0e325c !important;
}
.home #site-header.fixed .header-inner .primary-menu>li>a:hover,
.home #site-header.fixed .header-inner .primary-menu>li>a{
    color: #fff !important;
}

.home #site-header .header-inner .site-logo img{
    visibility: hidden;
}
.home #site-header .header-inner .site-logo a{
    background: url('/wp-content/uploads/2024/12/logo.png');
    background-size: cover !important;
}
.home #site-header.fixed .header-inner .site-logo a{
    background: url('/wp-content/uploads/2025/01/logo_white.png');
}




#site-header.fixed .primary-menu ul {
    top: calc(100% + 1.9rem);
}

.site-description{
    display: none;
}

.primary-menu ul:before {
    height: 4rem;
}

.primary-menu>li {
    margin: 0 0 0 6rem;
    overflow: hidden;
}

.primary-menu>li:hover {
    overflow: visible;
}

.primary-menu>li img{
    display: inline-block;
}

body:not(.overlay-header) .primary-menu>li>.icon {
    display: none;
}

.primary-menu ul a{
    font-size: 1.6rem;
}
.primary-menu a {
    text-transform: capitalize;
}





#site-header .header-inner .primary-menu>li.menu-item-object-custom>a{
    font-size: 1.4rem;
    border: 1px solid #ccc;
    border-radius: 50px;
    padding: 0.6rem 1.6rem;
}
#site-header .primary-menu li.menu-item-object-custom img{
    margin: 0 0.4rem 0 0;
}


ul.primary-menu {
    align-items: center;
}

.primary-menu ul {
    top: calc(100% + 3.2rem);
    border-radius: 0;
}


body:not(.overlay-header) .primary-menu ul {
    background-color: #f7f7f7 !important;
    color: #222 !important;
    left: 50%;
    margin-left: -10rem;
}

body:not(.overlay-header) .primary-menu>li>ul:after {
    content: none;
}

.nav-toggle .toggle-inner{
    padding-top: 0.3rem;
}
.header-inner .toggle{
    justify-content: end;
}





.mobile-nav-toggle .toggle-inner .toggle-text {
    display: none;
}
.nav-toggle .toggle-icon, 
.nav-toggle svg{
    height: 2rem;
    width: 2.6rem;
    color: #fff;
}
.home .nav-toggle .toggle-icon,
.home .nav-toggle svg{
    color: #000;
}

.fixed .nav-toggle .toggle-icon,
.fixed .nav-toggle svg{
    color: #fff;
}

body:after {
    display: block;
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0;
    transition: opacity ease-in 0.25s;
    z-index: -1;
}

body.showing-menu-modal:after {
    z-index: 1000;
    opacity: .5;
    transition: opacity ease-out 0.15s;
}

.menu-modal {
    transition: transform ease-in 0.25s, left ease-in .25s;
    width: 70%;
    transform: translateX(100%);
    opacity: 1;
    z-index: 1001;
    left: 100%;
    right: auto;
}

.menu-modal.active {
    transform: translateX(0);
    left: 30%;
    transition: transform ease-out 0.25s, left ease-out .25s;
}

.menu-wrapper {
    width: 100%;
}

.menu-modal .toggle .toggle-text {
    display: none;
}

.modal-menu {
    width: 100%;
    left: 0;
}

button.sub-menu-toggle {
    border-left: 0;
}

.modal-menu li {
    border: 0;
}

.modal-menu li a {
    color: #222;
}

.modal-menu ul li a {
    font-size: 16px;
    font-weight: 400;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 4rem;
    background: #f7f7f7;
}

.modal-menu>li>.ancestor-wrapper>a {
    font-size: 18px;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    font-weight: 500;
}

.menu-wrapper .active {
    margin-bottom: 1.5rem;
}


button.sub-menu-toggle svg {
    width: 1.2rem;
}


/* footer */
footer{
    color: #67697b;
    font-size: 1.6rem;
}

footer address{
    margin: 0;
}

footer address ul{
    margin: 0.4rem 0 0 0;
}

footer address ul li{
    display: inline-block;
    margin: 0 4rem 0 0;
}
footer address ul li:last-child{
    margin: 0;
}

footer address ul li b{
    color: rgba(255,255,255,0.5);
    margin: 0 2rem 0 0;
    padding: 0 2rem 0 0;
    font-weight: 500;
    position: relative;
}

footer address ul li b:after{
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    height: 70%;
    width: 2px;
    background: rgba(255,255,255,0.1);
}

#site-footer .section-inner {
    max-width: 1140px;
}

.to-the-top {
    position: fixed;
    right: 2rem;
    bottom: -50px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 3px;
    overflow: hidden;
}

.to-the-top.fixed {
    bottom: 5rem;
}

.to-the-top span {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-width: 2px 0 0 2px;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -4px;
    margin-left: -9px;
}



@media screen and (max-width: 1280px) {
    .header-inner{
        width: 100%;
        min-width: auto;
    }

    .primary-menu>li{
        margin-left: 2.4rem;
    }



}

@media screen and (max-width: 991px) {
    #site-header .header-inner .site-logo img,
    #site-header.fixed .header-inner .site-logo img
    {
        height: 4rem;
        transition: ease all .5s;
    }

    .header-inner {
        padding: 1.2rem 2rem;
    }

    nav.mobile-menu > ul > li{
        border-top: 1px solid #eee;
    }
    
    nav.mobile-menu > ul > li:last-child{
        border-bottom: 1px solid #eee;;
    }
    .modal-menu>li>.ancestor-wrapper>a{
        padding: 1.6rem !important;
    }
    button.close-nav-toggle svg{
        margin: 0 2rem 0 0;
    }
    .modal-menu > li > .ancestor-wrapper > button.sub-menu-toggle{
        padding: 0 2rem;
    }
    

}

@media screen and (max-width: 768px) {

    #site-header .header-inner .site-logo img {
        height: 3rem;
    }

    
    

    .menu-wrapper .active{
        margin: 0;
    }
    
    footer{
        font-size: 1.4rem;
    }


}


@media screen and (max-width: 699px) {
    

    button.close-nav-toggle {
        padding: 2.7rem 2.5rem;
    }
}

