.elementor-50 .elementor-element.elementor-element-0ea7492{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-bb4326d *//* * ----------------------------------------------------------------------------
 * 1. 헤더 기본 및 PC 메뉴
 * ----------------------------------------------------------------------------
 */

#custom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background-color .4s ease, border-bottom .4s ease, color .4s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 0 100px;
    transition: color .4s ease;
}

#custom-header.header-transparent {
    background-color: #fff;
    color: #111;
    border-bottom: 1px solid #eee;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#custom-header.header-white {
    background-color: transparent;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

#custom-header.header-white:hover {
    background-color: #fff;
    color: #111;
    border-bottom-color: #eee;
}

.logo-area img {
    height: 30px;
    display: none;
}

.hamburger-menu {
    cursor: pointer;
}

.hamburger-menu img {
    height: 24px;
    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 .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;
}

.main-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > li {
    position: relative;
}

.main-nav > li.mega-menu {
    position: static;
}

.main-nav > li > a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    color: inherit;
    line-height: 100px;
    display: inline-block;
    padding: 0 60px;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease-out;
}

.main-nav > li > a:hover {
    color: #013778;
}

.submenu-content {
    position: absolute;
    top: 100%;
    left: 0;
    transform: none;
    background-color: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, transform .3s ease, visibility 0s .3s;
    z-index: 1;
    min-width: 200px;
    padding: 0;
    box-sizing: border-box;
}

.main-nav > li:hover > .submenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}

.submenu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu-content li a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 15px 20px;
    line-height: 1.5;
    transition: color .2s, background-color .2s;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    white-space: nowrap;
    position: relative;
}

.submenu-content li a::before{
    display: block;
    content: "";
    position: absolute;
    height: 2px;
    left: 0px;
    top: 0px;
    width: 2px;
    height: 0%;
    background: #013778;
    opacity: 1;
}

.submenu-content li a:hover::before{
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.submenu-content li a:hover {
    color: #013778;
    background-color: #f5f5f5;
    font-weight: 500;
}

.mega-menu-content {
  
    width: 100vw;
    padding: 40px 0;
    box-sizing: border-box;
}

.mega-menu-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 70px;
    box-sizing: border-box;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.mega-menu-inner ul {
    flex: 1;
    min-width: 0;
    position: relative;
}
.mega-menu-inner ul::before{
    content: "";
    display:block;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #ddd;
}

.mega-menu-inner ul:last-child::before{
    display: none;
}
   

.mega-menu-inner li{
    position: relative;
}

 

.mega-menu-inner li a {
    padding: 8px 20px;
    display: inline-block;
    width: 90%;
}

.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-radius: 50%;
    color: inherit;
    text-decoration: none;
}

.contact-btn.contact-icon-btn svg {
    width: 22px;
    height: 22px;
}

.lang-menu {
    position: relative;
    display: none;
}

.lang-toggle {
    display: flex;
    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;
}

.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);
}

.lang-toggle .icon-globe {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.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: 15px;
}

.lang-dropdown a:hover {
    background-color: #f5f5f5;
}

/* * ----------------------------------------------------------------------------
 * 2. 전체 화면 메뉴 (데스크톱용)
 * ----------------------------------------------------------------------------
 */

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0s 0.4s;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-menu.is-open {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
    background: #edf0f7;
}

.fullscreen-menu-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 50px;
    box-sizing: border-box;
}

.close-btn-fullscreen {
    position: absolute;
    top: 30px;
    right: 50px;
    background: none;
    border: none;
    font-size: 40px;
    color: #333;
    cursor: pointer;
}

.ft_menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft_menu > li {
    width : calc(100% / 5);
    padding: 50px 0px 50px 30px;
    border-left: 1px solid #ddd;
    font-family: "Oxanium";
    font-size: 24px;
    font-weight: bold;
    position: relative;
    color: #111;
}

.ft_menu > li:last-child {
    border-right: 1px solid #ddd;
}

.ft_menu > li:first-child::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50px;
    width: 3px;
    height: 21px;
    background: #094c97;
}

.ft_menu > li .ft_sub {
    list-style: none;
    padding: 0 0 0 20px;
    margin: 20px 0 0 0;
}

.ft_menu .ft_sub li a {
    cursor: pointer;
    text-decoration: none;
    color: #555;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease-out;
    display: block;
    padding-bottom: 5px;
}

.ft_menu .ft_sub li:last-child a {
    padding-bottom: 0;
}

.ft_menu .ft_sub li a::before {
    display: block;
    content: "";
    width: 10px;
    height: 2px;
    position: absolute;
    left: -20px;
    top: 50%;
    transform :translateY(-50%);
    background: #111;
    opacity: 0;
    transition: all 0.3s ease-out;
}

.ft_menu .ft_sub li a:hover::before {
    opacity: 1;
}

.ft_menu .ft_sub li a:hover {
    color: #111;
    font-weight: 500;
}

.m-menu-title {
    cursor: pointer;
}

/* * ----------------------------------------------------------------------------
 * 3. 오프캔버스 메뉴 (모바일용)
 * ----------------------------------------------------------------------------
 */

.offcanvas-menu,
.offcanvas-overlay {
    display: none;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: #fff;
    z-index: 1001;
    transition: right .4s ease;
    padding-top: 60px;
    box-sizing: border-box;
    overflow-y: auto;
    border-left: 1px solid #eee;
}

.offcanvas-menu.is-open {
    right: 0;
}

.close-btn-offcanvas {
    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 0s .4s;
}

.offcanvas-overlay.is-open {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.offcanvas-menu .ft_menu {
    flex-direction: column;
}

.offcanvas-menu .ft_menu > li {
    width: 100%;
    border-left: none;
    border-bottom: 1px solid #eee;
    padding: 0;
    font-size: 18px;
}

.offcanvas-menu .ft_menu > li:last-child {
    border-bottom: none;
}

.offcanvas-menu .m-menu-title {
    padding: 15px 20px;
    position: relative;
}

.offcanvas-menu .m-menu-title::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: #999;
}

.offcanvas-menu .ft_menu > li.is-open > .m-menu-title::after {
    content: '-';
}

.offcanvas-menu .ft_sub {
    display: none;
    margin: 0;
    padding: 10px 0;
    background-color: #f8f8f8;
}

.offcanvas-menu .ft_sub a {
    font-size: 15px;
    padding: 10px 20px 10px 40px;
}

.offcanvas-menu .ft_sub a::before {
    display: none;
}

/* * ----------------------------------------------------------------------------
 * 4. 기타 요소
 * ----------------------------------------------------------------------------
 */

#scroll-to-top-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    width: 110px;
    height: 110px;
    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: 100%;
    height: 100%;
}

#scroll-to-top-btn text {
    font-size: 28px; 
    font-family: "Exo 2", serif;
    fill: #dddddd;

}

/* 텍스트만 회전하는 애니메이션 */
.rotating-text {
    animation: rotateText 30s linear infinite;
    transform-origin: center;
    display: block;
}

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 화살표 스타일 (고정) */
.fixed-arrow {
    stroke: #ddd;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.fp-watermark {
    display: none !important;
}

#fullpage-container .fp-table {
    justify-content: flex-start;
}

#fullpage-container .fp-center {
    justify-content: center;
}

/* * ----------------------------------------------------------------------------
 * 5. 반응형 스타일
 * ----------------------------------------------------------------------------
 */

@media(max-width: 1600px){
    .header-inner, .mega-menu-inner {
        padding: 0 50px !important;
    }
}

@media(max-width: 1400px){
    .main-menu-area {
        display: none;
    }
    .fullscreen-menu {
        display: none !important;
    }
    .offcanvas-menu,
    .offcanvas-overlay {
        display: block !important;
    }
}

@media(max-width: 1300px){
    .header-inner {
        height: 70px !important;
        padding: 0 20px !important;
    }
    .logo-area img {
        height: 24px !important;
    }
    .hamburger-menu img {
        height: 20px !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;
    }
    
    .ft_menu > li:first-child::before{
        display: none !important;
    }
    .offcanvas-menu .lang-desktop .lang-on{
        color: #094c97;
        font-weight: 600;
    }
}

@media(max-width: 500px){
    .lang-menu, .contact-btn {
        display: none !important;
    }
}

.fullscreen-menu-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}

/* 데스크톱: 나열형 언어 버튼 */
.fullscreen-menu .lang-desktop {
    /*display: flex;*/
    display: none;
    align-items: center;
    gap: 10px;
}
.fullscreen-menu .lang-desktop a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 50px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}
.fullscreen-menu .lang-desktop a:hover {
    background-color: #f5f5f5;
    border-color: #aaa;
}
.fullscreen-menu .lang-desktop img {
    height: 16px;
    width: auto;
}
.fullscreen-menu .lang-desktop span {
    font-size: 15px;
    font-weight: 500;
}

/* 데스크톱: 문의하기 버튼 */
.fullscreen-menu .contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    background-color: #013778;
    color: #fff;
    transition: all 0.3s ease;
}
.fullscreen-menu .contact-btn:hover {
    background-color: #153860;
}
.fullscreen-menu .contact-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.fullscreen-menu .lang-mobile {
    display: none;
}


.offcanvas-menu .fullscreen-menu-buttons {
    flex-direction: column;
    padding: 20px;
    margin-top: auto; 
    gap: 12px;
    border-top: 1px solid #eee;
    background-color: #f8f8f8;
    align-items: flex-start;
}


.offcanvas-menu .lang-desktop {
    /*display: flex;*/
    display: none;
    gap: 15px;
}

.offcanvas-menu .lang-desktop  a{
    font-family: "Oxanium";
    color: #111;
    font-size: 14px;
}
/* 모바일에서는 모바일용 토글 메뉴 보임 */
.offcanvas-menu .lang-mobile {
    /*display: block;*/
    display: none;
    width: 100%;
    position: relative;
}
.offcanvas-menu .lang-toggle {
    width: 100%;
    justify-content: center;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
}
.offcanvas-menu .lang-dropdown {
    width: 100%;
    top: auto;
    bottom: calc(100% + 5px); /* 드롭다운이 위로 열림 */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.offcanvas-menu .contact-btn {
    width: 100%;
    justify-content: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    background-color: #013778;
    color: #fff;
}
.offcanvas-menu .contact-btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}

/* 오프캔버스 메뉴 전체가 스크롤 되도록 수정 */
.offcanvas-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.offcanvas-menu .ft_menu {
    flex-shrink: 0;
}

/* * --
 * Active Menu State
 * --
 */

.main-nav > li.active > a {
    color: #013778;
    font-weight: 600;
}/* End custom CSS */