.elementor-43 .elementor-element.elementor-element-2c16951{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-aac383a *//* ==============================================
 * 1. 헤더 기본
 * ==============================================
 */
#custom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background-color .2s ease, border-bottom .2s ease, color .2s ease;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 0 200px;
    transition: color .2s ease;
}

/* ==============================================
 * 2. 헤더 상태 (색상/투명)
 * ==============================================
 */
#custom-header.header-transparent {
    background-color: #fff;
    color: #111;
    border-bottom: 1px solid #eee;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
}

#custom-header.header-white {
    background-color: transparent;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    
}

/* [추가] 헤더 숨김 처리 (make-header-hidden 클래스 대응) */
#custom-header.header-is-hidden .logo-area,
#custom-header.header-is-hidden .main-menu-area > .main-nav > li,
#custom-header.header-is-hidden .button-area {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

#custom-header.header-is-hidden {
    border-bottom: 0;
}

/* [추가] 헤더 숨김 상태에서 호버 시 (흰색 배경 노출) */
#custom-header.header-is-hidden.is-gnb-hover {
    background-color: #fff;
    color: #111;
    border-bottom-color: #eee;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
}

#custom-header.header-is-hidden.is-gnb-hover .logo-area,
#custom-header.header-is-hidden.is-gnb-hover .main-menu-area > .main-nav > li,
#custom-header.header-is-hidden.is-gnb-hover .button-area {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

/* [추가] 숨김 상태 호버 시 로고 색상 반전 (흰색 로고 숨김, 컬러 로고 노출) */
#custom-header.header-is-hidden.is-gnb-hover .logo-white,
#custom-header.header-is-hidden.is-gnb-hover .hamburger-menu .ham-white {
    display: none;
}

#custom-header.header-is-hidden.is-gnb-hover .logo-color,
#custom-header.header-is-hidden.is-gnb-hover .hamburger-menu .ham-black {
    display: block;
}

/* ==============================================
 * 3. 로고 & 햄버거 아이콘
 * ==============================================
 */
.logo-area img {
    height: 50px;
    display: none;
}
.hamburger-menu {
    cursor: pointer;
}
.hamburger-menu img {
    height: 18px;
    display: none;
}

#custom-header.header-transparent .logo-color,
#custom-header.header-transparent .hamburger-menu .ham-black {
    display: block;
}

#custom-header.header-white .logo-white,
#custom-header.header-white .hamburger-menu .ham-white {
    display: block;
}

#custom-header.header-white:hover {
    background-color: #fff;
    color: #111;
    border-bottom-color: #eee;
}
#custom-header.header-white:hover .logo-white,
#custom-header.header-white:hover .hamburger-menu .ham-white {
    display: none;
}
#custom-header.header-white:hover .logo-color,
#custom-header.header-white:hover .hamburger-menu .ham-black {
    display: block;
}

/* ==============================================
 * 4. PC 메인 메뉴 (GNB)
 * ==============================================
 */
.main-menu-area {
    width: 100%;
    max-width: 1000px;
}
.main-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav > li {
    position: relative;
    text-align: center;
    width: calc(100% / 4);
}
.main-nav a {
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    color: inherit;
    line-height: 100px;
    display: inline-block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    font-family: "Exo 2";
}
.main-nav a:hover {
    transition: all 0.3s ease-out;
    color: #532411;
}

/* ----- PC 서브메뉴 ----- */
.submenu-bg {
    position: absolute;
    top: 100px;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background-color: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    height: 240px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility 0s .2s;
    z-index: 1;
}
.submenu-content {
    position: absolute;
    top: 100px;
    color: #000;
    height: 240px;
    width: 100%;
    left: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility 0s .2s;
    z-index: 2;
}
.main-nav > li:hover .submenu-content {
    border-top: 1px solid #173419;
    background-color: #f9fff9;
}
.submenu-content ul {
    list-style: none;
    padding: 25px 0;
    margin: 0;
}
.submenu-content li a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 10px 0;
    line-height: 24px;
    transition: color .2s;
    font-size: 17px;
    font-family: "Exo 2";
    font-weight: 400;
}
.submenu-content li a:hover {
    color: #173419;
}
.main-menu-area.is-active .submenu-bg,
.main-menu-area.is-active .submenu-content {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

/* ==============================================
 * 5. 헤더 버튼 영역 (Contact, Lang, Ham)
 * ==============================================
 */
.button-area {
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-btn.contact-icon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    padding: 0;
    color: inherit;
    text-decoration: none;
    transition: background-color 0.3s;
}
.contact-btn.contact-icon-btn svg {
    width: 22px;
    height: 22px;
}
.header-transparent .contact-icon-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.header-white .contact-icon-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* ==============================================
 * 6. 다국어 선택기 (Language Selector)
 * ==============================================
 */
.lang-menu {
    position: relative;
}
.lang-toggle {
    
    /*display: flex;*/
    display: none;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font-size: 15px;
    font-weight: 500;
    padding: 8px;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.lang-toggle .icon-globe {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}
.header-transparent .lang-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.header-white .lang-toggle:hover {
    background-color: rgba(255, 255, 255, 0.15);
}
#custom-header.header-white:hover .lang-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 5px;
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
}
.lang-menu.is-active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
}
.lang-dropdown a:hover {
    background-color: #f5f5f5;
    color: #183419;
}
.lang-dropdown a img {
    margin-right: 5px;
}

/* ==============================================
 * 7. 오프캔버스 메뉴 (모바일/태블릿)
 * ==============================================
 */
.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: #fff;
    z-index: 1001;
    transition: right .4s ease;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    border-left: 1px solid #eee;
}
.offcanvas-menu.is-open {
    right: 0;
}
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #333;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s, visibility .4s;
}
.offcanvas-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* ----- 오프캔버스 GNB ----- */
.offcanvas-menu .offcanvas-nav {
    list-style: none;
    padding: 0;
    margin-top: 60px;
}
.offcanvas-menu .offcanvas-nav li {
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
}
.offcanvas-menu .offcanvas-nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    display: block;
    padding: 15px 10px;
    font-weight: 500;
}
.offcanvas-menu .offcanvas-nav a:hover {
    color: #183419;
}
.offcanvas-menu .offcanvas-nav li.has-submenu > a {
    position: relative;
}
.offcanvas-menu .offcanvas-nav li.has-submenu > a::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: #999;
    transition: transform 0.3s;
}
.offcanvas-menu .offcanvas-nav li.has-submenu.is-open > a::after {
    content: '-';
}

/* ----- 오프캔버스 서브메뉴 ----- */
.offcanvas-menu .submenu-content {
    display: none;
    position: static;
    height: auto;
    background-color: #f8f8f8;
    opacity: 1;
    visibility: visible;
    padding: 0;
    transform: none;
    transition: none;
    border-top: none;
    box-shadow: none;
}
.offcanvas-menu .submenu-content ul {
    padding: 10px 0;
}
.offcanvas-menu .submenu-content a {
    font-size: 15px;
    font-weight: 400;
    color: #555;
    padding: 10px 10px 10px 30px;
    line-height: 1.5;
}
.offcanvas-menu .submenu-content a:hover {
    color: #b68149;
    background: #f0f0f0;
}

/* [추가] 오프캔버스 언어 메뉴 스타일 */
.offcanvas-menu .lang-menu.offcanvas-lang {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    /*display: block !important;*/
    display: none;
}
.offcanvas-menu .lang-menu.offcanvas-lang .lang-toggle {
    display: none;
}
.offcanvas-menu .lang-menu.offcanvas-lang .lang-dropdown {
    position: static;        
    display: flex;       
    gap: 10px;              
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: transparent;
    width: 100%;
    margin: 0;
    padding: 0;
}
.offcanvas-menu .lang-menu.offcanvas-lang .lang-dropdown li {
    flex: 1; 
}

.offcanvas-menu .lang-menu.offcanvas-lang .lang-dropdown a {
    display: flex;
    justify-content: center; 
    align-items: center;
    height: 40px;             
    border: 1px solid #e1e1e1;
    border-radius: 5px;       
    background: #fff;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    padding: 0;              
}

/* 현재 선택된 언어(KR) 스타일 강조 */
.offcanvas-menu .lang-menu.offcanvas-lang .lang-dropdown a.current-lang {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* 호버 효과 */
.offcanvas-menu .lang-menu.offcanvas-lang .lang-dropdown a:hover {
    border-color: #e50012;
    color: #e50012;
    background: #fff;
}
.offcanvas-menu .lang-menu.offcanvas-lang .lang-dropdown a img {
    margin-right: 6px; 
    vertical-align: middle;
    width: 20px;        
}

/* ==============================================
 * 8. 기타 (Top 버튼, Fullpage)
 * ==============================================
 */
#scroll-to-top-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
#scroll-to-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#scroll-to-top-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}
#scroll-to-top-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
.fp-watermark {
    display: none !important;
}
#fullpage-container .fp-table {
    justify-content: flex-start;
}
#fullpage-container .fp-center {
    justify-content: center;
}

#fp-nav.white-nav ul li a span {
    background: #fff;
}
#fp-nav.white-nav ul li a.active span,
#fp-nav.white-nav ul li:hover a.active span {
    background: #fff;
}

/* ==============================================
 * 9. 반응형
 * ==============================================
 */
@media(max-width: 1600px) {
    .header-inner {
        padding: 0 50px !important;
    }
}
@media(max-width: 1400px) {
    .main-menu-area {
        display: none;
    }
}
@media(max-width: 1300px) {
    .header-inner {
        height: 70px !important;
        padding: 0 20px !important;
    }
    .logo-area img, .hamburger-menu img {
        height: 28px !important;
    }
}
@media(max-width: 776px) {
    #custom-header,
    #custom-header.header-transparent,
    #custom-header.header-white {
        background-color: #fff !important;
        color: #111 !important;
        border-bottom: 1px solid #eee !important;
    }
    #custom-header .logo-color,
    #custom-header .hamburger-menu .ham-black {
        display: block !important;
    }
    #custom-header .logo-white,
    #custom-header .hamburger-menu .ham-white {
        display: none !important;
    }
    #scroll-to-top-btn, #fp-nav {
        display: none !important;
    }
}
@media(max-width: 500px) {
    .contact-btn {
        display: none !important;
    }
    #custom-header .lang-menu {
        display: none !important;
    }
}/* End custom CSS */