@charset "utf-8";
/*
layout.css for supported in all modern browsers 
ie11.0, chrome 29.0, safari 10, firefox 22.0, opera 48  
By xetemplate(https:xetemplate.com) 
*/

/* ------------------------------------------------------------------------------------------------------------------ */
/* Default
/* ------------------------------------------------------------------------------------------------------------------ */
html, 
body, 
table, 
th, 
td, 
button, 
input,
select,
textarea { 
	font-family: 'Godo', 'Nanum Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', '돋움', Dotum, 'Lucida Sans', 'Trebuchet MS', Arial, Tahoma, sans-serif; word-break: keep-all; 
}
::-webkit-scrollbar {
    display: none;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* wow effect
/* ------------------------------------------------------------------------------------------------------------------ */
.wow {
    visibility: hidden;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Layout
/* ------------------------------------------------------------------------------------------------------------------ */
body {
    background: #fff;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
    body.dark {
        background: #000;
    }

.xet-layout-wrp  {
    overflow: hidden;
}
.xet-layout-body {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh);
}
.xet-layout-wrp a {
    color: #3b3b3b;
}
    .xet-layout-wrp.dark a {
        color: #fff;
    }

.xet-btn-theme {
    background-color: #ff6600 !important;
    color: #fff !important;
}
.xet-bg-theme {
    background-color: #ff6600 !important;
    color: #fff !important;
}
.xet-text-theme {
    color: #ff6600 !important;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Cursor
/* ------------------------------------------------------------------------------------------------------------------ */
/* body:not(.act) {
    cursor: none;
} */
.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: #12c2e9;
    -webkit-transition: width .3s ease-in-out,
    height .3s ease-in-out,
    margin .3s ease-in-out,
    opacity .3s ease-in-out;
    -o-transition: width .3s ease-in-out,
    height .3s ease-in-out,
    margin .3s ease-in-out,
    opacity .3s ease-in-out;
    transition: width .3s ease-in-out,
    height .3s ease-in-out,
    margin .3s ease-in-out,
    opacity .3s ease-in-out;
}
.cursor-inner.cursor-hover {
    margin-left: -40px;
    margin-top: -40px;
    width: 80px;
    height: 80px;
    background-color: #12c2e9;
    opacity: .3;
}
.cursor-outer {
    margin-left: -15px;
    margin-top: -15px;
    width: 40px;
    height: 40px;
    border: 1px solid #12c2e9;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: .5;
    -webkit-transition: all .08s ease-out;
    -o-transition: all .08s ease-out;
    transition: all .08s ease-out;
}
.cursor-outer.cursor-hover {
    opacity: 0;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Layout - Sub
/* ------------------------------------------------------------------------------------------------------------------ */
/* 서브페이지 상단 */
.xet-sub-top {
    position: fixed;
    width: 100%;
    height: calc(100vh - -0px * 1);
    padding-top: 100px;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
    background-color: #2a2a2a;
}

/* 현재메뉴위치 */
.xet-page-path {
    margin: 20px 0;
}
.xet-page-path ul li {
    position: relative;
    float: left;
    height: 24px;
    padding: 0 20px 0 0;
    margin: 0 0 0 10px;
}
.xet-page-path ul li::after {
    content: "\e93f";
    font-family: xeicon!important;
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #707070;
}
.xet-page-path ul li:first-child {
    margin-left: 0;
}
.xet-page-path ul li:last-child {
    padding-right: 0;
}
.xet-page-path ul li:last-child::after {
    display: none;
}
.xet-page-path ul li a {
    display: flex;
    align-items: center;
    height: 24px;
	text-transform: uppercase;
	color: #707070;
}

    /* Dark Mode */ 
    .xet-layout-wrp.dark .xet-page-path ul li a {
        color: #dbdbdb;
    }

/* ------------------------------------------------------------------------------------------------------------------ */
/* Body - Content
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-body {
    z-index: 1;
    margin: 160px 0 0;
	flex: 1 0 auto;
	background-color: rgba(250,250,250,0.95);
    transition:all 0.3s ease-in-out 0.1s;
    -webkit-transition:all 0.3s ease-in-out 0.1s;
}
     /* dark mode */
     .xet-layout-wrp.dark #xet-body {
        background-color: rgba(0,0,0,0.95);
    }

#xet-body.member-act {
    min-height: calc(100vh);
    margin: 0px !important;
    background-color: #fff !important;
}
#xet-body.is-scroll {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* content */
#xet-body .xet-content {
    padding: 20px 0;
}
#xet-body .xet-content .btnArea {
    padding: 0 !important;
}

   
/* Page Content */
#xet-page {
    color: #707070;
}
#xet-page h2 {
    position: relative;
    color: #1b1b1b;
}
#xet-page h3,
#xet-page h4,
#xet-page h5,
#xet-page h6 {
    color: #3b3b3b;
}
#xet-page h5>strong,
#xet-page h6>strong {
    color: #707070;
}

    /* Dark */
	#xet-page.dark h2 {
		color: #f1f1f1;
	}
    #xet-page.dark h3,
    #xet-page.dark h4,
	#xet-page.dark h5,
    #xet-page.dark h6 {
		color: #c1c1c1;
	}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Footer
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-footer {
    z-index: 1;
    padding: 20px 0;
    background-color: #1b1b1d;
    color: #707070;
    transition:all 0.3s ease-in-out 0.1s;
    -webkit-transition:all 0.3s ease-in-out 0.1s;
}
#xet-footer.sub.is-scroll {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
#xet-footer a {
    display: flex;
    align-items: center;
    color: #707070;
}
#xet-footer h6 {
    color: #fbfbfb;
}
#xet-footer ul li {
    float: left;
    margin: 0 20px 4px 0;
    padding: 0;
}
#xet-footer ul li strong {
    display: inline-block;
    margin-right: 6px;
    font-weight: bold;
    color: #fbfbfb;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Goto Scroll Top
/* ------------------------------------------------------------------------------------------------------------------ */
#scroll-top-btn { 
    position: fixed;
	bottom: 20px;
	right: 20px;
	width: 48px; 
	height: 48px; 
    display: flex;
    align-items: center;
    justify-content: center;
	background: #2b2b2b; 
	color: #fff;
}
#scroll-top-btn>i {
    font-size: 16px;
}