@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

* {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
::-moz-selection {background: #242424; /*메인색*/ color: #e6e6e6;text-shadow: none;}
::selection {background: #242424; color: #e6e6e6; text-shadow: none;}
html, body, div, span, object, iframe, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, strong, sub, sup, legend, caption, table, tbody, thead, tfoot, tr, th, td, summary, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, b, i, a, small, menu, nav, section, time, mark, audio, video, dl, dt, dd, ul, li, ol, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, select, textarea, p, blockquote, button {margin:0;padding:0; border: 0;outline: 0;font-weight: inherit;font-style: inherit;font-family: inherit;color:inherit;vertical-align: top}
dl,ul,ol,menu,li {list-style:none}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block}
input,select,textarea,button {font-family:"Pretendard";background:none}
input::-moz-placeholder, textarea::-moz-placeholder {color: #bbb !important;}
textarea {resize: none; }
img {border:0; max-width:100%}
table {border-collapse:collapse; table-layout: fixed;}
a {text-decoration:none;}
a:hover {transition:.3s all ease}
span {vertical-align:top}
blockquote {font-style:italic;border-left:5px #000 solid; padding-left:20px;margin:40px 20px;}
div,p {word-break:keep-all;}
b, strong {font-weight:700;}
html{font-size:16px;/* scroll-behavior: smooth; */}
body {
	width: 100vw;
	color:#333; 
	font-family:"Pretendard","Malgun Gothic","Apple SD Gothic NEO",dotum,sans-serif; 
	overflow-x: hidden;
	background:#fff;-webkit-font-smoothing: antialiased;-webkit-overflow-scrolling: touch;
}

:root {
	--main: #22628F;
	--main-bg: #202C4B;
	--main-navy: #214B91;
	--bg-gray: #EAEBF1;
}

.ta-c {text-align: center;}
.ta-l {text-align: left;}
.ta-r {text-align: right;}

.btn {
	display: inline-block;
	border: 1px solid #232323;
	border-radius: 0.5rem;
	padding: 0.75rem 1rem;
	cursor: pointer;
}
.btn_hard {
	display: inline-block;
	font-size: 1.25rem;
	font-weight: 500;
	border: 2px solid #0E1320;
	padding: 0.75rem 1.25rem;
	cursor: pointer;
}
.btn_navy {
	display: inline-block;
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
	background-color: #214B91;
	padding: 0.75rem 1.25rem;
	cursor: pointer;
}

.w100 {width: 100% !important;}
.b {font-weight: 600;}
.d-f {display: flex;}
.montserrat {font-family: 'Montserrat';}
.noborder {border: 0;}
.navyborder{border-color:var(--main-navy)}

.mt2 {margin-top: 2rem;}
.mt3 {margin-top: 3rem;}
.mb05 {margin-bottom: 0.5rem;}
.mb1 {margin-bottom: 1rem;}
.mb2 {margin-bottom: 2rem;}

.gray {background-color: var(--bg-gray);}
.navy {background-color: var(--main-navy);}

.f-white {color: #fff;}
.f-red {color: red;}

.mo_none {display: block;}
.pc_none {display: none;}

.swiper-container img {width: 100%;}
.containerWrap {width: 100%; padding: 7rem 3rem;}
.sub-page .containerWrap {padding: 4rem 3rem;}
.container {max-width:1155px; margin: 0 auto;}
.wrap {padding-top: 72px;}

/*메인 팝업*/
#div_laypopup{
	display:none;
	position:absolute;
	top:90px; left:10px;
	max-width:600px;
	color:white;
	text-align:center;
	z-index:13;
	transition: 1s all ease;
	box-shadow:0 0 20px #000;
}	
.todayClose {
	position: absolute;
	right: 6px;
	bottom: 5px;
	margin: 0;
	padding: 0;
	color: #fff;
	text-shadow: 0 0 5px #000;
	z-index: 100;
}
.todayClose input{vertical-align:middle;}
.justClose {
	display:inline-block;
	font-size: 0.9em;
	color:#000;
	cursor:pointer;
	line-height: 1.2em;
	border:1px solid #ccc;
	padding:0px 2px 1px 2px;
	margin-left:3px;
	margin-top:2px;
	background-color:#FFF;
	text-shadow:none;
}
@media(max-width:768px){
	#div_laypopup {width: 96%;}
}

header {
	position: fixed;
	display: flex;
	justify-content: space-between;
	background-color: var(--main);
	width: 100%;
	top: 0;
	z-index: 10;
}
header .logo {
	max-width: 169px;
	padding: 1rem;
	margin-left: 5rem;
}
header .gnb {
	display: flex;
	color: #fff;
	margin-right: 5rem;
}
header .gnb > li {
	display: flex;
	align-items: center;
	position: relative;
	height: 100%;
	margin-right: 1rem;
}
header .gnb > li:hover > a {font-weight: 700;}
header .gnb > li:hover .snb {display: block;}
header .gnb > li > a {padding: 1rem;}
header .snb {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	width: 200%;
	transform: translateX(-50%);
	text-align: center;
	background-color: #22628f;
}
header .snb li a {display: block;padding: 1rem;}
header .snb li:hover {
	font-weight: 700;
	color: var(--main-navy);
	background-color: #F2F6FF;
}
header #nav-icon3 {
	display: none;
	position: absolute;
	right: 3%;
	top: 50%;
	margin-top: -14px;
	float: right;
	width: 30px; height: 28px;
	cursor: pointer;
	transform: rotate(0deg);
	transition: .5s ease-in-out;
}
header #nav-icon3 span {
	transform: rotate(0deg);
	transition: .25s ease-in-out;
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background: #FFF;
	border-radius: 5px;
	opacity: 1;
	left: 0;
}
header #nav-icon3 span:nth-child(1) {top: 3px;}
header #nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {top: 50%; margin-top:-2px;}
header #nav-icon3 span:nth-child(4) {bottom: 3px;}
header #nav-icon3.open span:nth-child(1) {top: 18px;width: 0%;left: 50%;}
header #nav-icon3.open span:nth-child(2) {transform: rotate(45deg);}
header #nav-icon3.open span:nth-child(3) {transform: rotate(-45deg);}
header #nav-icon3.open span:nth-child(4) {top: 18px;width: 0%;left: 50%;}

header .ham_nav {
	position:fixed;
	top:72px; left:200%;
	width: 100%;
	height: 100%;
	transition: all 0.5s;
	border-top: 1px solid #969EB0;
	background:#fff;
	z-index:99;
}
header .ham_nav.on { left:0%; }
header .ham_nav > ul { 
	width:100%;
	height:100%;
	padding:0 0 3rem;
	overflow-y:auto;
} 
header .ham_nav > ul  > li { 
	width:100%; 
	font-size:1.5rem;
	color: #0E1320;
} 
header .ham_nav > ul  > li.on {
	color: #fff;
	font-weight: 700;
	background-color: var(--main-navy);
}
header .ham_nav > ul > li > a {
	display:block; 	
	cursor:pointer; 
	-ms-user-select: none;
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	border-bottom: 1px solid #969EB0;
	padding: 1.5rem;
}
header .ham_nav .snb_mo {
	display: none;
	font-weight:400;
	color: #0E1320;
	background-color: #fff;
}
header .ham_nav .snb_mo a {
	display: block;
	border-bottom: 1px solid #EAEBF1;
	padding: 1.5rem 0;
	margin: 0 3rem;
}

#index #bannerSwiper {
	width: 100vw;
	height: calc(100vh - 72px);
	background-color:var(--main);
}
#index #bannerSwiper .ment {
	position: absolute;
	left: 50%;
	top: 40%;
	width: 90%;
	transform: translate(-50%, -25%);
	color: #fff;
	text-align: center;
	font-size: 2.5rem;
}
#index #bannerSwiper .ment h1 {
	font-family: "Montserrat";
	margin-bottom: 2rem;
}
#index #bannerSwiper .ment p {
	font-size: 1rem;
	letter-spacing: 15px;
}
#index #bannerSwiper .bannerPager {
	font-family: "Montserrat";
	left: 70px;
	bottom: 70px !important;
	text-align: left;
}
#index #bannerSwiper	.bannerPager .swiper-pagination-bullet {
	opacity: 1;
	width: 6rem;
	height: 0;
	color: #fff;
	font-size: 1rem;
	border-radius:0;
	border-bottom: 3px solid #fff5;
	padding-bottom: 1.5rem;
	margin: 0;
	background: transparent;
}
#index #bannerSwiper	.bannerPager .swiper-pagination-bullet-active {
	font-weight: 700;
	border-bottom: 3px solid #fff;
	padding-bottom: 1.5rem;
}

#index #productWrap h2 {
	font-family: "Montserrat";
	font-weight: 600;
	font-size: 3rem;
	color: #0e0e0e;
	text-align: center;
	margin-bottom: 3rem;
}
#index #productSwiper .slick-prev:before {display: none;}
#index #productSwiper .slick-next:before {display: none;}
#index #productSwiper .slick-prev, 
#index #productSwiper .slick-next {width: 60px;height: 60px;z-index: 1;}
#index #productSwiper .slick-prev {left:-5rem}
#index #productSwiper .slick-next {right: -5rem;}
#index #productSwiper .img-wrap {
	display: flex;
	width: 100%;
	padding: 1rem;
	aspect-ratio: 1/1;
	flex-direction: column;
	justify-content: center;
	background-color: #fff;
}
#index #productSwiper .tit {
	font-weight: 700;
	font-size: 1.25rem;
	text-align: center;
	padding: 1rem 0 2rem;
	background: #fff;
}
#index #productSwiper .slick-slide {margin: 0 10px;}
#index #productSwiper .slick-slide img {
	width: 100%;
}
#index #productSwiper .slick-list {margin: 0 -10px;}

#index #youtubeWrap {
	text-align: center;
	background-color: var(--main-bg);
}
#index #youtubeWrap h2 {
	color: #fff;
	font-family: "Montserrat";
	font-weight: 600;
	font-size: 3rem;
	margin-bottom: 2rem;
}
#index #youtubeWrap .video-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 비율 -> (9 / 16) * 100 */
	overflow: hidden;
}
#index #youtubeWrap .video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

#index #partnersWrap ul {
	/* display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem; */
	display: flex;
	padding: 1.5rem;
	justify-content: center;
}
#index #partnersWrap ul li {margin: 0 1rem;}


/******* sub *******/
header.white-header {background-color: #fff;}
header.white-header .gnb {color: #0E1320;}
header.white-header .gnb > li:hover > a {color: var(--main-navy); font-weight: 700;}
header.white-header .snb li {background-color: #F2F6FF;}
header.white-header #nav-icon3 span {background: #000;}

.top-banner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	color: #fff;
	font-size: 4rem;
	font-weight: 500;
	height: 415px;
	padding-top: 2rem;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-image: url('/images/sub/bg_sub.jpg');
}
.sub-page h2 {
	font-size: 2rem;
	font-weight: 700;
	line-height: 2.75rem;
	text-align: center;
	margin-bottom: 3rem;
}

#pdf-container {
	height: 800px;
	overflow-y: auto;
	width: 1200px;
	max-width:100%;
	margin: 0 auto;
}
#pdf-container canvas {
	max-width:100%;
}

#about .top-banner {background-image: url('/images/sub/bg_about.jpg');}
#about h2 {white-space: pre-line;}
#about .h2-sub {
	text-align: center;
	white-space: pre-line;
	line-height: 1.5rem;
	margin-bottom: 3rem;
}
#about .about-box {display: flex;}
#about .about-box .left {width: 50%;}
#about .about-box .left img {height: 100%;}
#about .about-box .right {
	display: flex;
	width: 50%;
	align-items:center;
	background-color: var(--bg-gray);
}
#about .about-box .right-sub {padding: 5rem 4rem;}
#about .about-box .tit {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2rem;
	margin-bottom: 1rem;
	white-space: pre-line;
}
#about .about-box .sub {line-height: 1.5rem;white-space: pre-line;}

#organization .top-banner {background-image: url('/images/sub/bg_organization.jpg');}

#certificate .top-banner {background-image: url('/images/sub/bg_certificate.jpg');}
#certificate .list-wrap {
	display: flex;
	flex-wrap:wrap;
}
#certificate .list-wrap li {
	width: calc(33.33% - 2rem);
	text-align: center;
	margin: 0 1rem 3rem;
}
#certificate .list-wrap li p {
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 2rem;
}
#certificate .list-wrap li img {
	width: 100%;
	cursor: pointer;
}
#certificate .image-popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9999;
}
#certificate .image-popup img {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

#location .top-banner {background-image: url('/images/sub/bg_location.jpg');}
#location .ctt {
	display: flex;
	margin-bottom: 2rem;
}
#location .ctt > div {width: 50%;}
#location .ctt .left {text-align: center;}
#location .ctt .right {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}
#location .ctt .right dl {
	display: flex;
	margin-bottom: 1.5rem;
	text-align: left;
	width: 80%;
}
#location .ctt .right dt {width: 20%;font-weight: 700;}
#location .ctt .right dd {width: 80%; color: #969EB0;white-space: pre-line;}

#business-areas .top-banner {background-image: url('/images/sub/bg_business-areas.jpg');}
#business-areas .area {display: flex;text-align: center;}
#business-areas .area li {
	flex:1;
	white-space: pre-line;
	padding: 3rem;
	margin: 0 1rem 1rem;
	background-color: #F2F6FF;
}
#business-areas .area .top {
	font-weight: 700;
	font-size: 1.5rem;
	margin-bottom: 3rem;
}
#business-areas .area img {border-radius: 100%;}
#business-areas .area .middle {
	margin: 1rem 0;
	color: var(--main-navy);
	font-size: 1.5rem;
	font-weight: 700;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--main-navy);
}

#business-rnd .top-banner {background-image: url('/images/sub/bg_business-rnd.jpg');}
#business-rnd .h2-sub {
	white-space: pre-line;
	line-height: 1.75rem;
}
#business-rnd .area {
	display: flex;
	flex-wrap: wrap-reverse;
	justify-content: center;
}
#business-rnd .area li {
	position: relative;
	width: calc(33.33% - 2rem);
	margin: 0 1rem 3rem;
}
#business-rnd .area li img {max-height: 312px; width: 100%;}
#business-rnd .area .white-box {
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	width: 90%;
	padding: 2rem 1rem;
	text-align: center;
}
#business-rnd .area .white-box .sub {
	color: #0E1320; 
	font-weight: 600;
	white-space: pre-line;
	line-height: 1rem;
}

#product .product-navi {
	display: flex;
	justify-content: center;
	color: #969EB0;
	margin-bottom: 3rem;
}
#product .product-navi li {
	border-bottom: 3px solid #969EB0;
}
#product .product-navi li.active {
	color: var(--main-navy);
	font-weight: 700;
	border-bottom: 3px solid var(--main-navy);
}
#product .product-navi li a {display: inline-block;padding: 1rem 1.5rem;}
#product .product-list {
	display: flex;
	flex-wrap:wrap;
}
#product .product-list li {
	width: calc(33.33% - 2rem);
	text-align: center;
	padding: 1rem;
	margin: 0 1rem 2rem;
	background-color: #EAEBF1;
}
#product .product-list li .img-wrap {
	display: flex;
	aspect-ratio: 1/1;
	flex-direction: column;
	justify-content: center;
	background-color: #fff;
}
#product .product-list li img {
	width: 100%;
}
#product .product-list li p {
	font-weight: 700;
	font-size: 1.25rem;
	padding: 1.5rem 0 0.5rem;
	background: #EAEBF1;
}

#product-detail .ctt-box {display: flex;max-width:1200px;}
#product-detail .ctt-box .img-box {width: 40%;}
#product-detail .ctt-box .detail-box {
	width: 60%;
	padding-left: 2rem;
}
#product-detail .ctt-box .category {
	display: inline-block;
	font-weight: 700;
	font-size: 1.25rem;
	border: 2px solid #000;
	padding: 0.25rem 0.5rem;
	margin-bottom: 0.5rem;
}
#product-detail .ctt-box h3 {
	font-weight: 700;
	font-size: 2.25rem;
	margin-bottom: 0.5rem;
}
#product-detail .ctt-box .property1 {margin-bottom: 1rem;}
#product-detail .ctt-box .property2 {
	color: #fff;
	font-weight: 700;
	padding: 1rem;
	margin-bottom: 2rem;
	background: var(--main-navy);
}
#product-detail .ctt-box dl {display: flex;margin-bottom: 1rem;}
#product-detail .ctt-box dt {
	font-weight: 700;
	width: 20%;
	text-align: left;
	margin-right: 1rem;
}
#product-detail .ctt-box dd {
	width: 80%;
	color: #969EB0;
	text-align: left;
	line-height: 1.25rem;
}

#counsel .privacy-box {
	padding: 2rem;
	margin-bottom: 1rem;
	background-color: #EAEBF1;
}
#counsel .privacy-box textarea {
	width: 100%;
	height: 120px;
	font-size: 1rem;
}
#counsel .counsel-box {
	padding: 4rem 2rem;
	background-color: #F2F6FF;
}
#counsel .counsel-box .inner {
	max-width:476px;
	width: 100%;
	margin: 0 auto;
}
#counsel .counsel-box input {
	width: 100%;
	font-size: 1rem;
	border: 1px solid #B7C6E0;
	padding: 1rem;
	background-color: #fff;
}
#counsel .counsel-box input[readonly] {
  background-color: #f5f5f5;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.7;
}
#counsel .counsel-box textarea {
	width: 100%;
	border: 1px solid #B7C6E0;
	padding: 1rem;
	background-color: #fff;
}
#counsel .counsel-box dl {margin-bottom: 1rem;}
#counsel .counsel-box dt {
	margin-bottom: 0.5rem;
	font-weight: 600;
	font-size: 1.05rem;
}
#counsel .counsel-box dt img{
	top: -2px;
	position: relative;
}
#counsel .counsel-box dt .alert {
	color: #969EB0;
	font-size: 1rem;
	font-weight: 400;
}
#counsel .file-upload-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  border: 1px solid #B7C6E0;
  margin-bottom: 1rem;
  background-color: #fff;
}
#counsel .file-label {
  flex-grow: 1;
  color: #969EB0;
  padding-left: 1rem;
  cursor: pointer;
}
#counsel .file-input {display: none;}
#counsel .upload-btn {
	color: #214B91;
	font-weight: 700;
	padding: 1rem 3rem;
	background-color: #B7C6E0;
	cursor: pointer;
}

#catalog .top-banner {background-image: url('/images/sub/bg_archives.jpg');}
#catalog .list-wrap {
	display: flex;
	flex-wrap:wrap;
}
#catalog .list-wrap li {
	width: calc(33.33% - 2rem);
	text-align: center;
	margin: 0 1rem 3rem;
}
#catalog .list-wrap li p {
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 2rem;
}
#catalog .list-wrap li img {
	width: 100%;
	cursor: pointer;
}

#manual .top-banner {background-image: url('/images/sub/bg_archives.jpg');}
#manual .manual-list {
	border-top: 6px solid #EAEBF1;
	border-bottom: 6px solid #EAEBF1;
	margin-bottom: 2.5rem;
}
#manual .manual-list li {
	display: flex;
	justify-content: space-between;
	font-size: 1.25rem;
	font-weight: 600;
	color: #0E1320;
	border-bottom: 1px solid #EAEBF1;
	padding: 1.5rem 2rem;
}
#manual .manual-list li .num {
	flex:1;
	color: #214B91;
	font-size: 1rem;
}
#manual .manual-list li .tit {flex:8}
#manual .manual-list li .date {
	flex:1;
	color: #969EB0;
	font-size: 1rem;
	font-weight: 500;
}
#manual .search-box {
	display: flex;
	width: 30%;
	border: 1px solid #B7C6E0;
	background-color: #fff;
	min-width: 400px;
	margin: 0 auto;
}
#manual .search-box input {
  flex-grow: 1;
  color: #969EB0;
  padding-left: 1rem;
}
#manual .search-btn {
	color: #214B91;
	font-weight: 700;
	padding: 1rem 3rem;
	background-color: #B7C6E0;
	cursor: pointer;
}
#gallery .top-banner {background-image: url('/images/sub/bg_archives.jpg');}
#gallery .gallery-list {
	display: flex;
	flex-wrap:wrap;
}
#gallery .gallery-list li {
	width: calc(33.33% - 2rem);
	text-align: center;
	margin: 0 1rem 3rem;
}
#gallery .gallery-list li a {
	display: block;
	height: calc(100% - 2.3rem);
}
#gallery .gallery-list li a img {
	width: 100%;
	height: 100%;
}
#gallery .gallery-list li p {
	font-weight: 700;
	font-size: 1.15rem;
	margin-top: 1rem;
}
#gallery .video-container {
	position: relative;
	width: 100%;
	padding-bottom: 51.3%; /* 16:9 비율 -> (9 / 16) * 100 */
	overflow: hidden;
}
#gallery .video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
#gallery video {
	width: 100%;
	max-height: 480px;
}

#cs .top-banner {background-image: url('/images/sub/bg_cs.jpg');}
#cs .privacy-box {
	padding: 2rem;
	margin-bottom: 1rem;
	background-color: #EAEBF1;
}
#cs .privacy-box textarea {
	width: 100%;
	height: 120px;
	font-size: 1rem;
}
#cs .counsel-box {
	padding: 4rem 2rem;
	background-color: #F2F6FF;
}
#cs .counsel-box .inner {
	max-width:476px;
	width: 100%;
	margin: 0 auto;
}
#cs .counsel-box input {
	width: 100%;
	font-size: 1rem;
	border: 1px solid #B7C6E0;
	padding: 1rem;
	background-color: #fff;
}
#cs .counsel-box input[readonly] {
  background-color: #f5f5f5;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.7;
}
#cs .counsel-box textarea {
	width: 100%;
	border: 1px solid #B7C6E0;
	padding: 1rem;
	background-color: #fff;
}
#cs .counsel-box dl {margin-bottom: 1rem;}
#cs .counsel-box dt {
	margin-bottom: 0.5rem;
	font-weight: 600;
	font-size: 1.05rem;
}
#cs .counsel-box dt img{
	top: -2px;
	position: relative;
}
#cs .counsel-box dt .alert {
	color: #969EB0;
	font-size: 1rem;
	font-weight: 400;
}
#cs .file-upload-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  border: 1px solid #B7C6E0;
  margin-bottom: 1rem;
  background-color: #fff;
}
#cs .file-label {
  flex-grow: 1;
  color: #969EB0;
  padding-left: 1rem;
  cursor: pointer;
}
#cs .file-input {display: none;}
#cs .upload-btn {
	color: #214B91;
	font-weight: 700;
	padding: 1rem 3rem;
	background-color: #B7C6E0;
	cursor: pointer;
}

/*************** pager *****************/
.pager {
	text-align: center;
	margin-top: 2.5rem;
	display: flex;
	justify-content: center;
}
.pager:after{content:""; display:block; clear:both;}
.pager li {padding: 4px 8px 3px;}
.pager a{
	width: 40px;
	height: 40px;
	display: flex;
	font-weight: 600;
	justify-content: center;
	align-items: center;
	text-decoration:none;
	color:#000;
	border: 1px solid #EAEBF1;
	cursor:pointer;
}
.pager a.active{
	color: #fff;
	border: 1px solid var(--main-navy);
	background: var(--main-navy);
}
.pager .prev {background: url('/images/common/pager_prev.svg') no-repeat;background-size: 100% 100%;text-indent: -999999px;}
.pager .next {background: url('/images/common/pager_next.svg') no-repeat;background-size: 100% 100%;text-indent: -999999px;}

/************* quick *************/
#quick_left {
	position: fixed;
	right: 50px;
	bottom: 50px;
	z-index: 99;
	/* animation: quick_bounce 1.6s infinite; 애니메이션 요청하면 */
	transform-origin: center bottom;
}
#quick_left a {display:block; width:100%;}
#quick_left a img {max-width:100%}
#quick_left div {
	position: absolute;
	right: 50%;
	bottom: 110px;
	width: 17rem;
	color: #214B91;
	text-align: center;
	padding: 0.9rem 1rem;
	background-color: #F4F5FA;
}
#quick_left div:after {
	content: '';
	position: absolute;
	top:100%;
	right:0;
	border-style: solid;
	border-width: 0 15px 15px 0; /* 오른쪽 직각삼각형 */
	border-color: transparent #F4F5FA transparent transparent; /* 파란색 삼각형 */
}
#quick_left .cloud {display: none;}
#quick_left .cloud.active {display: block;}

@-webkit-keyframes quick_bounce {
	0%,100%,20%,53%,80% {
		-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);
		transition-timing-function:cubic-bezier(0.215,.61,.355,1);
		-webkit-transform:translate3d(0,0,0);
		transform:translate3d(0,0,0)
	}
	40%,43% {
		-webkit-transition-timing-function:cubic-bezier(0.755,.050,.855,.060);
		transition-timing-function:cubic-bezier(0.755,.050,.855,.060);
		-webkit-transform:translate3d(0,-30px,0);
		transform:translate3d(0,-30px,0)
	}
	70% {
		-webkit-transition-timing-function:cubic-bezier(0.755,.050,.855,.060);
		transition-timing-function:cubic-bezier(0.755,.050,.855,.060);
		-webkit-transform:translate3d(0,-15px,0);
		transform:translate3d(0,-15px,0)
	}
	90% {
		-webkit-transform:translate3d(0,-4px,0);
		transform:translate3d(0,-4px,0)
	}
}		

#rightWindow {
	position: fixed; top: 15%; bottom:0; right: 0px;
	width: 430px;
	height: 600px;
	border: 0px none;
	padding:1.5rem;
	box-shadow: 0 0 5px #666;
	transform: translate3d(100.5%,0,0);
	transition:.7s all ease;
	z-index: 200;
	overflow-y:scroll;
	overflow-x:hidden;
	background: #F2F6FF;
}
#rightWindow.active {right:450px; transition:.7s all ease;}
#rightWindow .tit {
	font-size: 1.25rem;
	font-weight: 600;
	color: #214B91;
	margin-bottom: 1rem;
}
#rightWindow .close {
	position: absolute;
	font-size: 2rem;
	top: 1rem;
	right: 1.5rem;
	cursor: pointer;
}
#rightWindow input, #rightWindow textarea {
	width: 100%;
	font-size: 1rem;
	border: 1px solid #ccc;
	padding: 0.75rem;
	margin-bottom: 1rem;
	background-color: #FFF;
}
#rightWindow .tbl_sideBar {width: 100%;}
#rightWindow .tbl_sideBar th {
	font-size: 1.05rem;
	color: #0E1320;
	font-weight: 600;
	text-align: left;
	padding-bottom: 0.25rem;
}
#rightWindow .tbl_sideBar th img {position: relative;top:-2px;}

footer {
  overflow: hidden;
  width: 100%;
}

@keyframes auto-slide {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-250px * 17))}
}

footer .slider {
	padding: 1rem;
	background-color: #F4F5FA;
}
footer .auto-slider {
	background: white;
	box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
	height: 100px;
	margin: auto;
	overflow:hidden;
	position: relative;
	width: 100%;
}
footer .auto-slide-track {
	animation: auto-slide 80s linear infinite;
	width: calc(250px * 28);
}
footer .auto-slide {
	display: inline-block;
	margin-right: 2rem;
	text-align: center;
}
footer .auto-slide img {border: 0;}

footer .infos {
	text-align: center;
	padding: 2rem 1rem;
}
footer .infos img {max-width: 254px;}
footer .infos .type {
	display: inline-block;
	line-height: 2rem;
	border-top: 4px solid #C2C2C2;
	padding-top: 1rem;
	margin-top: 1rem;
}
footer .infos .type b {font-weight: 500;}
footer .infos .type .line {
	width: 2px;
	height: 16px;
	background-color: #bcbcbc;
	display: inline-block;
	transform: translateY(50%);
	margin: 0 1rem;
}

.grecaptcha-badge {display: none;}