:root { /* 가상 클래스를 이용해 변수를 선언하고 동일하게 적용 및 변경이 가능합니다. */
	/* color */
	--primary-color: #0277bd;
	--primary-color-dark: #004c8c;
	--primary-color-light: #58a5f0;
	--text-color: #333;
	--text-color-light: #999;
	--title-color: #263238;
	--border-color: #919ea1;
	--border-color-light: #ddd;
	--body-color: #fff;
	--body-color-deep: #eee;
	--white-color: #fff;
	--black-color: #1b1b1b;
	--input-color: #f6f9f9;

	/* font & size - 폰트 사이트 계산은 https://nekocalc.com/px-to-rem-converter 참고해 변환 확인합니다. */
	--basic-font: 'Noto Sans KR', sans-serif;
	--en-font: 'Montserrat', 'Noto Sans KR', sans-serif;
	--biggest-font-size: 1.5rem; /* 24px */
	--h1-font-size: 1.25rem; /* 20px */
	--h2-font-size: 1.125rem; /* 18px */
	--h3-font-size: 1rem; /* 16px */
	--normal-font-size: .9375rem; /* 15px */
	--small-font-size: .8125rem; /* 13px */
	--smaller-font-size: .75rem; /* 12px */
}
@media (min-width: 768px) {
	:root {
		--biggest-font-size: 2.5rem; /* 40px */
		--h1-font-size: 1.5rem; /* 24px */
		--h2-font-size: 1.25rem; /* 20px */
		--h3-font-size: 1rem; /* 16px */
		--normal-font-size: 1rem; /* 16px */
		--small-font-size: .875rem; /* 14px */
		--smaller-font-size: .8125rem; /* 13px */
	}
}
@media (min-width: 992px) {
	:root {
		--biggest-font-size: 2.75rem; /* 44px */
		--h1-font-size: 2.25rem; /* 36px */
		--h2-font-size: 1.75rem; /* 28px */
		--h3-font-size: 1.375rem; /* 22px */
	}
}
@media (min-width: 1200px) {
	:root {
		--biggest-font-size: 3rem; /* 48px */
		--h1-font-size: 2.5rem; /* 40px */
		--h2-font-size: 2.125rem; /* 34px */
	}
}

/* ========== base ========== */
html {scroll-behavior: smooth;}
body {margin: 0;font-size: var(--normal-font-size);background-color: var(--body-color);}
.en-font {font-family: var(--en-font);}
body.modal-open {padding: 0 !important;}
p, li {word-break: keep-all;}
ul {margin-bottom: 0;}
strong {font-weight: 700;}
a:hover {color:var(--primary-color);}
.transition-03 {-webkit-transition: all 0.3s linear;-moz-transition: all 0.3s linear;-o-transition: all 0.3s linear;-ms-transition: all 0.3s linear;transition: all 0.3s linear;}
.color-primary {color: var(--primary-color);}
/* 버튼 스타일 */
.btn-more a {overflow:hidden;position: relative;z-index: 1;display: inline-block;padding: 5px 20px;font-size: var(--smaller-font-size);color: var(--text-color);border:1px solid var(--black-color);border-radius:15px;}
.btn-more a:hover {color:var(--white-color);}
.btn-more a:before {content: "";z-index:-1;position: absolute;top: 0;left: 0;width: 0;height: 100%;background-color: var(--text-color);transition: 0.3s linear;}
.btn-more a:hover:before {width: 100%;}
.btn-more.btn-wht a {color: var(--white-color);border-color: var(--white-color)}
.btn-more.btn-wht a:hover {color: var(--text-color);}
.btn-more.btn-wht a:before {background-color: var(--white-color);}
@media(min-width:992px) {
	.btn-more a {padding: 10px 30px;border-radius:20px;}
}
.offcanvas-backdrop {z-index: 1003;}
/* 편집 버튼 */
.btn-edit-admin {position:fixed;top:230px;right:-1px;width:130px;padding:5px 10px;background:rgba(255, 255, 255, 0.9);box-shadow:0 0 1px rgba(0,0,0,.7);z-index:1100}
/* 편집모드 오버레이 */
.adm-edit-btn {z-index:10;}
.overlay-area {display: flex;align-items:center;justify-content:center;z-index:1;position:absolute;top: 0;left: 0;right: 0;bottom: 0;width: 100%;height: 100%;padding:45px 20px;font-size: 15px;color:#fff;}
.overlay-area.a-i-top {align-items:flex-start;}
.overlay-area > div {max-width:800px;margin:0 auto;}
.overlay-master {background-color: rgba(255,0,0,.7);}
.overlay-item {background-color: rgba(0,0,255,.7);}

/* ========== wrapper ========== */
#hd-h1 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
.to-content a {z-index:1000;position:absolute;top:0;left:0;width:0;height:0;font-size:0;line-height:0;overflow:hidden}
.wrapper {position: relative;overflow: hidden;}
.wrapper-inner {background-color: var(--body-color);}

/* ========== Header ========== */
.header {position: absolute;top: 0;left: 0;width: 100%;z-index: 999;padding: 0 15px;transition: .3s;}
.header.header-bg {background-color: var(--white-color);box-shadow:0 0 1px rgba(0,0,0,.3)}
.header .header-inner {display: flex;flex-wrap: wrap;}
#header-fixed.header {position: fixed;}
@media (min-width:992px){
	.header {padding: 0 2rem;}
	.header:after {content:"";display: block;opacity:0;position: absolute;top: 80px;left: 0;width: 100%;height: 1px;background-color:rgba(0,0,0,.1);}
	.header.header-over:after,
	.header.header-bg:after {opacity:1;}
	.header .header-inner {justify-content: space-between;}
}

/* header logo */
.header-logo {position: relative;margin: 15px 0;}
.header-logo a {display: block;}
.header-logo a img {display: block;height: 35px;width:auto;}
.header-logo a img.logo-drk {opacity:0;}
.header-logo a img.logo-wht {opacity:1;position: absolute;top: 0;left: 0;}
.header.header-over .header-logo a img.logo-wht,
.header.header-bg .header-logo a img.logo-wht {opacity:0;}
.header.header-over .header-logo a img.logo-drk,
.header.header-bg .header-logo a img.logo-drk {opacity:1;}
@media (min-width:992px){
	.header-logo {margin: 17px 0;}
	.header-logo a img {height: 46px;}
}

/* nav-bar */
.gnb-wrap .gnb .gnb-nav {padding: 0;list-style: none;}
/* gnb - mobile */
@media (max-width:991px){
	.gnb-bg, .gnb-overlay-bg {display: none;}
	.gnb-wrap .gnb {position: fixed;top: 0;right: -100%;z-index: 9999;overflow-y: auto;-webkit-overflow-scrolling: touch;width: 85%;height: 100vh;background-color: var(--body-color);box-shadow: 1px 3px 6px rgb(0 0 0 / 32%);transition: .3s ease-out;}
	.gnb-wrap .gnb.act {right: 0;}
	.gnb-wrap .gnb .mobile-box {padding: 20px 30px 10px;}
	.gnb-wrap .gnb .mobile-box .mobile-nav-trigger {position: absolute;top: 15px;right: 20px;}
	.gnb-wrap .gnb .mobile-box .mobile-nav-trigger a {display: block;width: 30px;height: 30px;line-height: 30px;font-size: var(--h2-font-size);text-align: center;}
	.gnb-wrap .gnb .mobile-box .mobile-nav-trigger img {width: 24px;}
	.gnb-wrap .gnb .mobile-box .login-box ul {display: flex;flex-wrap: wrap;padding: 0 30px 10px 0;list-style: none;}
	.gnb-wrap .gnb .mobile-box .login-box ul li {margin-right: 20px;}
	.gnb-wrap .gnb .mobile-box .login-box ul li:last-child {margin-right: 0;}
	.gnb-wrap .gnb .mobile-box .login-box ul li a {display: block;position: relative;font-size: var(--smaller-font-size);}
	.gnb-wrap .gnb .mobile-box .login-box ul li a:after {content: "";display: block;position: absolute;top: 50%;right: -10px;width: 1px;height: 10px;margin-top: -5px;background-color: var(--body-color-deep);}
	.gnb-wrap .gnb .mobile-box .login-box ul li:last-child a:after {display: none;}

	.gnb-wrap .gnb .mobile-box .search-box input[type="text"] {width: 100%;height: 45px;padding: 6px;font-size: var(--smaller-font-size);color: var(--text-color-light);border: 0 none !important;border-bottom: 2px solid var(--primary-color) !important;}
	.gnb-wrap .gnb .mobile-box .search-box .button {position: absolute;right: 1px;top: 0;padding: 0 5px;height: 45px;line-height: 45px;font-size: var(--normal-font-size);color: var(--primary-color);background: transparent;border: 0 none;}
	.gnb-wrap .gnb .mobile-box .search-box .button input {position: absolute;top: 0;right: 0;padding: 0;font-size: var(--smaller-font-size);line-height: 40px;opacity: 0;cursor: pointer;}
	.gnb-wrap .gnb .mobile-box .search-box .button img {width: 20px;vertical-align: sub;}

	.gnb-wrap .gnb .gnb-nav {padding: 0 30px;}
	.gnb-wrap .gnb .gnb-nav > li:last-child {border-bottom: 0 none;}
	.gnb-wrap .gnb .gnb-nav > li > a {display: block;padding: 8px 0;font-size: var(--normal-font-size);font-weight: 700;color: var(--text-color);}
	.gnb-wrap .gnb .gnb-nav > li > a:after {display: none;}
	.gnb-wrap .gnb .gnb-nav > li.active > a {color: var(--primary-color);background: transparent;}
	.gnb-wrap .gnb .gnb-nav > li > .cate-dropdown-open {position: absolute;top: 1px;right: 0;width: 30px;height: 38px;line-height: 38px;margin: 0;padding: 0;text-align: center;border: 0 none;z-index: 9;}
	.gnb-wrap .gnb .gnb-nav > li > .cate-dropdown-open:before {content: "";display: block;width: 100%;height: 100%;background-image: url("../image/icons/add-line.png");background-repeat: no-repeat;background-position: center;}
	.gnb-wrap .gnb .gnb-nav > li > .gnb-dep-2 {display: none;}
	.gnb-wrap .gnb .gnb-nav > li > ul {float: none;position: relative !important;transform: translate(0,0) !important;width: 100%;margin: 0;padding: 0;border: 0 none;box-shadow: none;background-color: var(--body-color-deep);}
	.gnb-wrap .gnb .gnb-nav > li > ul > li {border-bottom: 1px solid var(--white-color);}
	.gnb-wrap .gnb .gnb-nav > li > ul > li:last-child {border-bottom: 0 none;}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > a {padding: 10px 20px;font-size: var(--smaller-font-size);color: var(--text-color);}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > a:hover {background: transparent;}
	.gnb-wrap .gnb .gnb-nav > li > ul > li.active > a {color: var(--primary-color);background: transparent;}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > ul {display: block !important;float: none;position: relative;width: 100%;padding: 0 20px 10px;margin: 0;border: 0 none;box-shadow: none;background: transparent;}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li > a {position: relative;padding: 3px 10px 3px 15px;font-size: var(--smaller-font-size);color: var(--text-color);}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li > a:after {content: "";display: block;position: absolute;top: 50%;left: 2px;transform:translateY(-50%);width: 7px;height: 7px;border-left: 1px solid var(--border-color);border-bottom: 1px solid var(--border-color);}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li > a:hover, .gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li.active > a {color: var(--primary-color);background: transparent;}
}

/* gnb - pc */
@media (min-width:992px){
	/* gnb-on */
	.gnb-overlay-bg {z-index:5;opacity:0;visibility:hidden;position: fixed;top: 0;bottom: 0;left: 0;right: 0;width: 100%;height: 100%;background: rgba(0,0,0,.6);transition:.3s;}
	.gnb-overlay-bg.on {opacity:1;visibility:visible;}
	.gnb-bg {z-index:10;opacity:1;position: fixed;top: 0;left: 0;width: 100%;background: #fff;transition:height 0.2s ease-in-out, opacity 0.2s ease-in-out}
	.gnb-bg.off {opacity:0;height:0 !important}
	
	.gnb-wrap {display: flex;flex-wrap: wrap;}
	.gnb-wrap .mobile-box {display: none;}
	.gnb-wrap .gnb {width:auto;}
	.gnb-wrap .gnb .gnb-nav {display: flex;flex-wrap: wrap;}
	.gnb-wrap .gnb .gnb-nav > li {position: relative;padding: 0;}
	.gnb-wrap .gnb .gnb-nav > li.depth-off {height:80px !important;}
	.gnb-wrap .gnb .gnb-nav > li > a {display: block;z-index:11;position: relative;padding: 0 25px;line-height: 80px;font-size: var(--normal-font-size);font-weight: 500;color: var(--white-color);}
	.header.header-over .gnb-wrap .gnb .gnb-nav > li > a,
	.header.header-bg .gnb-wrap .gnb .gnb-nav > li > a {color:var(--text-color);}
	.gnb-wrap .gnb .gnb-nav > li > a::after {display: none;}
	.gnb-wrap .gnb .gnb-nav > li > .gnb-dep-2 {position: relative;transition:.2s;}
	.gnb-wrap .gnb .gnb-nav > li:hover > .gnb-dep-2 {background-color: #f8f8f8;}
	.gnb-wrap .gnb .gnb-nav > li > .gnb-dep-2:after {content:"";position: absolute;top: 0;left: 0;width: 0;height: 2px;background-color: var(--primary-color);transition:.4s;}
	.gnb-wrap .gnb .gnb-nav > li:hover > .gnb-dep-2:after {width: 100%;}
	.gnb-wrap .gnb .gnb-nav > li > .gnb-dep-2.dep-off {height:0 !important;}
	.gnb-wrap .gnb .gnb-nav > li > ul {display: block;z-index:10;top:80px;left: 50%;transform:translateX(-50%);opacity: 0;visibility: hidden;width: 145px;min-width:inherit;padding: 20px 10px 30px;text-align:center;background-color:transparent;border: 0 none;-webkit-transition: all 0.25s ease;-moz-transition: all 0.25s ease;-o-transition: all 0.25s ease;-ms-transition: all 0.25s ease;transition: all 0.25s ease;}
	.gnb-wrap .gnb .gnb-nav.on > li > ul {opacity: 1;visibility: visible;}
	.gnb-wrap .gnb .gnb-nav > li > ul > li {position: relative;}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > a {padding: 7px 0;font-size: var(--small-font-size);font-weight: 500;color: var(--text-color-light);background: transparent;}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > a:hover,
	.gnb-wrap .gnb .gnb-nav > li > ul > li.active > a {color: var(--text-color);background: transparent;}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > a .sub-caret {position: absolute;right: 10px;top: 50%;transform: translateY(-50%);color: var(--text-color-light);}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > ul {display: block !important;position: relative;top: inherit;left: inherit;min-width: 100%;padding: 0 10px 5px;margin-bottom: 10px;text-align: center;border: 0 none;background: transparent;box-shadow: 0 0 0 var(--white-color);}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li > a {padding: 3px 0 0;font-size: var(--smaller-font-size);color: var(--text-color-light);background: transparent;}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li:last-child > a {border-bottom: 0 none;}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li > a:hover,
	.gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li.active > a {background: transparent;color: var(--text-color);}
}
@media (min-width:1200px){
	.gnb-wrap .gnb .gnb-nav > li > a {padding: 0 35px;}
}

/* top bar */
.top-bar {margin-left: auto;}
.top-bar .top-bar-list {display: flex;flex-wrap: wrap;margin-top: 18px;}
.top-bar .top-bar-list li {margin-left: 3px;}
.top-bar .top-bar-list li a, .top-bar .top-bar-list li span {display: block;position: relative;width: 25px;height: 25px;line-height: 25px;text-align: center;transition: .3s ease-out;}
.top-bar .top-bar-list li img {width: 24px;transition: .3s;}
.top-bar .top-bar-list li img.icon-drk {opacity:0}
.top-bar .top-bar-list li img.icon-wht {opacity:1;position: absolute;top: 50%;left: 50%;transform:translate(-50%,-8px);}
.header.header-over .top-bar .top-bar-list li img.icon-drk,
.header.header-bg .top-bar .top-bar-list li img.icon-drk {opacity:1;}
.header.header-over .top-bar .top-bar-list li img.icon-wht,
.header.header-bg .top-bar .top-bar-list li img.icon-wht {opacity:0;}
.top-bar .top-bar-list li.btn-live-mov a {background-color: var(--primary-color);}
.top-bar .top-bar-list li.btn-live-mov a:hover {background-color: var(--primary-color-2);}
.top-bar .top-bar-list li a span {display: none;}
@media (min-width:992px){
	.top-bar {margin-left: 0;}
	.top-bar .top-bar-list {margin-top: 25px;}
	.top-bar .top-bar-list li.mobile-nav-trigger {display: none;}
	.top-bar .top-bar-list li a, .top-bar .top-bar-list li span {width: 30px;height: 30px;line-height: 30px}
	.top-bar .top-bar-list li a {font-size: var(--h3-font-size);}
	.top-bar .top-bar-list li img {width: 21px;opacity: .8;transition: .3s;}
	.top-bar .top-bar-list li a:hover img {opacity: 1;}
}

/*---------- 사이트 맵 ----------*/
.site-map{position:fixed;top:-200%;left:0;width:100vw;height:100vh;z-index:999;padding-top:75px;background-color:rgba(0, 0, 0, .8);transition:0.3s;}
.site-map.active{top:0;}
.site-map .container{max-width:900px;}
.site-map .site-map-title{position:relative;padding-bottom:10px;margin-bottom:20px;border-bottom:1px solid #bbb;}
.site-map .site-map-title h4{font-size:var(--h3-font-size);color:#fff;}
.site-map .site-map-title h4 strong{color:var(--primary-color-light);}
.site-map .site-map-title a{position:absolute;right:0;top:5px;font-size:16px;font-weight:300;color:var(--white-color);}
.site-map .site-map-title a:hover{color:var(--primary-color-light);}
.site-map .site-map-nav{display:flex;flex-wrap:wrap;list-style:none;}
.site-map .site-map-nav > li{flex:0 0 50%;width:50%;position:relative;padding-left:200px;margin-bottom:30px;}
.site-map .site-map-nav > li:last-child{margin-bottom:0;}
.site-map .site-map-nav > li > a{position:absolute;left:0;top:0;font-size:var(--normal-font-size);font-weight:700;color:var(--white-color);}
.site-map .site-map-nav > li > a:hover{color:var(--primary-color-light);}
.site-map .site-map-nav > li > ul > li{margin-bottom:10px;}
.site-map .site-map-nav > li > ul > li > a{font-size:var(--small-font-size);color:var(--white-color);}
.site-map .site-map-nav > li > ul > li > a:hover{color:var(--primary-color-light);}
.site-map .site-map-nav > li > ul > li > ul{margin-top:5px;padding-left:7px;}
.site-map .site-map-nav > li > ul > li > ul li a{font-size:var(--smaller-font-size);color:var(--white-color);}
.site-map .site-map-nav > li > ul > li > ul li a:hover{color:var(--primary-color-light);}
@media (max-width:991px){
	.site-map{display: none;}
}

/*---------- Modal ----------*/
.contents-modal .modal-box {margin-left: auto;margin-right: auto;}
.contents-modal .modal-box .modal-content {position: relative;padding: 15px;background-color: var(--body-color-deep);box-shadow: 0 0 0 var(--white-color);}
.contents-modal .modal-box .modal-content h4 {position: relative;margin: 0 0 20px;font-size: var(--normal-font-size);text-align: center;color: var(--text-color);}
/* --- 검색 모달 --- */
/* 입력창 */
.contents-modal .input-button {position: relative;}
.contents-modal .input-button input[type="text"] {width: 100%;padding: 6px 12px;font-size: var(--smaller-font-size);color: var(--text-color-light);background-color: var(--body-color);border: 0 none !important;border-bottom: 1px solid var(--input-color) !important;border-radius: 5px;}
.contents-modal .input-button .button {position: absolute;right: 0;top: 0;padding: 0 10px;height: 38px;line-height: 38px;background: none;border: 0 none;}
.contents-modal .input-button .button input {position: absolute;top: 0;right: 0;padding: 0;opacity: 0;cursor: pointer}
.contents-modal .input-button .button img {max-width: 20px;vertical-align: sub;}
/* bottom */
.contents-modal .modal-box .contnets-bottom {margin-top: 20px;text-align: center;}
.contents-modal .modal-box .contnets-bottom button {border: 0 none;position: relative;display: inline-block;overflow: hidden;padding: 5px 20px;letter-spacing: 2px;font-size: var(--smaller-font-size);color: var(--text-color);background: none;border-width: 1px;border-style: solid;border-color: var(--text-color);-webkit-transition: all 0.5s ease;-moz-transition: all 0.5s ease;transition: all 0.5s ease
}
.contents-modal .modal-box .contnets-bottom button span {position: relative;z-index: 1;}
.contents-modal .modal-box .contnets-bottom button:hover {color: var(--white-color);background-color: var(--text-color);}
@media(max-width:767px) {
	.contents-modal .modal-box {width: 300px;}
	.contents-modal .modal-box .modal-content {padding: 10px;}
	.contents-modal .modal-box .modal-content h4 {margin-bottom: 10px;font-size: var(--h3-font-size);line-height: 30px;}
	.contents-modal .input-button input[type="text"] {height: 50px;font-size: var(--normal-font-size);}
	.contents-modal .input-button .button {font-size: var(--h3-font-size);}
	.contents-modal .modal-box .contnets-bottom {margin-top: 20px;}
}
/* --- 멤버 모달 --- */
.contents-modal .modal-box .member-list {display: flex;justify-content: center;}
.contents-modal .modal-box .member-list li {margin: 0 10px;text-align: center;}
.contents-modal .modal-box .member-list li a {display: block;width: 70px;padding: 12px 0;background-color: var(--body-color);border-radius: 5px;transition: .3s;}
.contents-modal .modal-box .member-list li a:hover {box-shadow: 3px 3px 7px rgba(0,0,0,.2);}
.contents-modal .modal-box .member-list li a img {display: block;width: 20px;margin: 0 auto;opacity: .85;transition: 0.3s;}
.contents-modal .modal-box .member-list li a span {font-size: .75rem;color: var(--text-color)
}
.contents-modal .modal-box .member-list li a:hover img {opacity: 1;}
@media(max-width:767px) {
	.contents-modal .modal-box .member-list li a {width: 70px;}
}

/* ========== footer ========== */
.footer {padding: 30px 0;background-color: var(--black-color);}

.footer-top .footer-logo {position: relative;}
.footer-top .footer-logo a img {height:40px;width:auto;}
.footer-top .footer-menu {display: flex;justify-content: flex-start;margin-top: 20px;}
.footer-top .footer-menu li {position:relative;margin-right: 20px;}
.footer-top .footer-menu li:last-child {margin-right: 0;}
.footer-top .footer-menu li a {display: block;line-height: 20px;font-size: var(--small-font-size);font-weight:700;color: var(--text-color-light);transition:.3s;}
.footer-top .footer-menu li a:hover {color: var(--white-color);}
.footer-top .footer-menu li:after {content:"";position: absolute;right: -10px;top: 50%;width: 1px;height: 12px;margin-top:-6px;background-color:var(--border-color);}
.footer-top .footer-menu li:last-child:after {display: none;}

.footer-btm .footer-info {position: relative;margin: 1.25rem 0;font-size: var(--small-font-size);color: var(--text-color-light);}
.footer-btm .footer-info address {font-size: var(--small-font-size);}
.footer-btm .footer-info address a {opacity: .8;color: var(--white-color);transition: .3s;}
.footer-btm .footer-info address a:hover {color: var(--primary-color-light);}
.footer-btm .copyright {margin-top: 10px;font-size: var(--small-font-size);color: var(--text-color-light);}

@media (max-width:991px){
	.footer-top .footer-menu {margin-bottom: 20px;}
}
@media (max-width:767px){
	.footer-top .footer-link li {flex:0 0 auto;width:150px;}
	.footer-top .footer-link li a {font-size:var(--small-font-size);}
	.footer-top .footer-link li a small {display: none;}
}
@media (min-width:992px){
	.footer {padding: 60px 0;}
	.footer-top {padding-bottom: 15px;}
	.footer-top .footer-logo a img {height:50px;}
	.footer-top .footer-menu {justify-content: flex-end;}
	.footer-btm .footer-info, .footer-btm .footer-info address {margin: 0;}
}

/* ========== side layout ========== */
.side-contents {display: none;}
.side-contents h2 {margin-bottom: 20px;font-size: var(--h1-font-size);font-weight: 700;color:var(--primary-color);}
.side-contents .side-nav > li {position: relative;}
.side-contents .side-nav > li > a {display: block;padding: 12px 15px;font-size: var(--normal-font-size);border-top:3px solid var(--primary-color);}
.side-contents .side-nav > li.active > a {font-weight: 500;color:var(--primary-color);}
.side-contents .side-nav .sidebar-nav-item.submenu:after {display: inline-block;position: absolute;top: 17px;right: 10px;font-family:'Font Awesome\ 5 Free';content:"\f078";font-weight: 900;color:var(--border-color);}
.side-contents .side-nav > li > ul > li > a {display: block;padding: 10px 15px;font-size: var(--small-font-size);border-top:1px solid var(--border-color);}
.side-contents .side-nav > li > ul > li.active > a {font-weight: 500;color:var(--primary-color);}
.side-contents .side-nav > li > ul > li > ul {padding-left: 20px;margin-bottom: 20px;}
.side-contents .side-nav > li > ul > li > ul > li > a {font-size: var(--smaller-font-size);}
.side-contents .side-nav > li > ul > li > ul > li.active > a {font-weight: 500;color:var(--primary-color);}
@media (min-width:992px){
	.side-contents {display: block;padding-right: 50px;}
}

/*---------- Eb BackToTop ----------*/ 
.eb-backtotop {position:fixed;right:15px;bottom:15px;height:46px;width:46px;cursor:pointer;display:block;-webkit-border-radius:50% !important;-moz-border-radius:50% !important;border-radius:50% !important;box-shadow:inset 0 0 0 2px rgba(255,255,255,0.15);background:#fff;z-index:1003;opacity:0;visibility:hidden;transform:translateY(15px);-webkit-transition:all 0.2s linear;transition:all 0.2s linear} 
.eb-backtotop.active-progress {opacity:1;visibility:visible;transform:translateY(0)} 
.eb-backtotop:after {position:absolute;content:"\f106";font-family:'Font Awesome\ 5 Free';font-weight:900;text-align:center;font-size:16px;color:#757575;left:0;top:0;height:46px;width:46px;line-height:28px;cursor:pointer;display:block;z-index:1;-webkit-transition:all 0.2s linear;transition:all 0.2s linear} 
.eb-backtotop:hover:after {color:#cc2300} 
.eb-backtotop svg path {fill:none} 
.eb-backtotop svg.backtotop-progress path {stroke:#b5b5b5;stroke-width:4;box-sizing:border-box;-webkit-transition:all 0.2s linear;transition:all 0.2s linear} 
.eb-backtotop .progress-count {display:block;position:absolute;bottom:8px;left:0;right:0;font-size:11px;text-align:center;color:#a5a5a5} 
.eb-backtotop {box-shadow:inset 0 0 0 2px rgba(0,0,0,0.15)} 
.eb-backtotop:after {color:#2b2b2e} 
.eb-backtotop svg.backtotop-progress path {stroke:var(--primary-color)} 

/* ========== page Title % sub-menu ========== */
/* page title */
.page-title {position:relative;}
.page-title-image {position:relative;width:100%;height:450px;background-repeat:no-repeat;background-size:cover;background-position:center;}
.page-title-caption {position:absolute;bottom:70px;left:0;width:100%;}
.page-title-caption h2 {position:relative;margin-bottom: 100px;font-size:var(--biggest-font-size);color:var(--white-color);}
.page-title .list-sub-menu ul > li {display: inline-block;margin-right: 100px;}
.page-title .list-sub-menu ul > li:last-child {display: inline-block;}
.page-title .list-sub-menu ul > li > a {display: block;position: relative;width: 150px;padding-bottom: 7px;font-size: var(--h3-font-size);font-weight: 500;color:var(--white-color);}
.page-title .list-sub-menu ul > li > a:before,
.page-title .list-sub-menu ul > li > a:after {content:"";display: block;position:absolute;bottom:0;left: 0;width: 0;height: 3px;background-color: var(--white-color);transition:.3s;}
.page-title .list-sub-menu ul > li > a:before {opacity:.45;width: 100%;}
.page-title .list-sub-menu ul > li > a:hover:after,
.page-title .list-sub-menu ul > li.active > a:after {width: 100%;}
.sub-page-title {margin-bottom: 40px;padding-bottom: 40px;font-size:var(--h1-font-size);text-align: center;font-weight: 700;border-bottom:1px solid var(--body-color-deep);}
@media(max-width:1199px) {
	.page-title .list-sub-menu ul > li {margin-right: 80px;}
}
@media(max-width:991px) {
	.page-title-image {height: 250px;}
	.page-title-caption {bottom:50px;}
	.page-title-caption h2 {margin-bottom: 30px;}
	.page-title .list-sub-menu {bottom: 40px;}
	.page-title .list-sub-menu ul > li {margin: 0 20px 10px 0;}
	.page-title .list-sub-menu ul > li > a {width: 110px;font-size: var(--small-font-size);}
	.sub-page-title {margin-bottom: 25px;padding-bottom: 25px;}
}
@media(max-width:767px) {
	.page-title-caption {bottom:20px;}
	.page-title-caption h2 {margin-bottom: 20px;}
	.page-title .list-sub-menu ul > li > a {width: 100px;}
}

/* basic body */
.sub-basic-body {padding: 40px 0;}
@media (min-width:992px){
	.sub-basic-body {padding: 60px 0;}
}

/* ========== index ========== */
.section {position: relative;}
.section-p-tb {padding: 2.813rem 0;/* 45px*/}
.section-m-tb {margin: 2.813rem 0;}
@media (min-width: 992px){
	.section-p-tb {padding: 6.25rem 0;/* 100px*/}
	.section-m-tb {margin: 6.25rem 0;}
}
@media (max-width: 1199px){
	.section-1-inner {padding:30px 15px;}
}
@media (min-width: 1200px){
	.section-1-inner {position: absolute;top: 50%;left: 50%;transform:translateY(-50%);width: 100%;max-width: 590px;}
}
@media (min-width: 1400px){
	.section-1-inner {max-width: 680px;}
}
/* 페이지 로더 */
.page-loader {position: fixed;top: 0;left: 0;z-index: 9999;width: 100%;height: 100%;background: var(--white-color);}
.page-loader.sub-page-loader {background:transparent;}
.page-loader .logo-loader {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}
.page-loader .logo-loader img {height: 50px;width: auto;}

/*---------- Counsel Btn ----------*/
.counsel-btn {display:block;position:fixed;bottom:70px;right:15px;width:45px;height:45px;line-height:45px;text-align:center;background:#3f4678;font-size:1.125rem;color:#fff !important;border:0;border-radius:50%;z-index:1000}
@media (max-width:991px) {
	.counsel-btn {bottom:15px;right:70px}
}