@charset "utf-8";
/* Web Font */
@import url(https://fonts.googleapis.com/earlyaccess/nanumgothic.css);
@import url(https://fonts.googleapis.com/css2?family=Montserrat&display=swap);
/* ---------------------------------------------------------------------- */
/*  CSS Reset
/* ---------------------------------------------------------------------- */
html{-webkit-text-size-adjust:100%;}
body{font-family:"Montserrat",NanumGothic,"나눔고딕","Malgun Gothic","맑은 고딕",dotum,"돋음",Arial,sans-serif;font-weight:200;word-break:keep-all;}
em{color:#333;font-style:normal;font-weight:bold;}
ul,ol{padding:0;}
li{list-style:none;}
img{max-width:100%;}
p,small{word-break:keep-all;}
pre{font-family:inherit;}
input::-webkit-input-placeholder{color:#c2c2c2 !important;}
a:link,
a:hover,
a:active{text-decoration:none !important;}
svg{vertical-align:text-bottom;}
select.form-control{
	padding-right: 2rem;
	background: url('https://api.iconify.design/feather-chevron-down.svg') no-repeat right 10px top 50%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
select.form-control::-ms-expand{
    display: none;
}
/* ---------------------------------------------------------------------- */
/*  Checkbox & Radio
/* ---------------------------------------------------------------------- */
.pseudo-control-group{
    position: relative;
    display: inline-block;
    padding-left: 30px;
}
.pseudo-control-group .pseudo-control > .pseudo-element{
	position: absolute;
	left: -30px;
}
.pseudo-control{
    position: relative;
    text-align: left;
    line-height: 24px;
	font-weight: normal;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 0rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.pseudo-control > input{
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.pseudo-control > .pseudo-element{
    position:relative;
    top: 0px;
    left: 0;
    height: 24px;
    width: 24px;
    display: inline-block;
    vertical-align: bottom;
    border: 1px solid #c7c7c7;
    background-color: #fff;
}
.pseudo-checkbox > .pseudo-element{
    border-radius:3px;
}
.pseudo-radio > .pseudo-element{
    border-radius:50%;
}
.pseudo-checkbox > .pseudo-element:after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -4px;
    margin-top: -9px;
    width: 8px;
    height: 14px;
    border-width: 0 2px 2px 0;
    border-color: #c7c7c7;
    border-style: solid;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.pseudo-radio > .pseudo-element:after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    background-color: #e5e5e5;
    border-radius: 100%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.pseudo-control > input:checked ~ .pseudo-element{
    border-color: #ec1b34;
}
.pseudo-checkbox > input:checked ~ .pseudo-element:after{
    border-color: #ec1b34;
}
.pseudo-radio > input:checked ~ .pseudo-element:after{
    background-color: #ec1b34;
}
/* ---------------------------------------------------------------------- */
/*  Common
/* ---------------------------------------------------------------------- */
#header{
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 10;
    background-color: rgba(255,255,255,1);
    box-shadow: inset 0 -1px #ebebeb;
	transition: all .5s ease;
}
#header .navbar{
	position: inherit;
	padding: .75rem 0;
}
.header-logo{
    position: relative;
    font-size: 0;
    margin-bottom: 0rem;
}
.logo{
    display: inline-block;
    width: 180px;
    height: 48px;
	overflow: hidden;
	text-indent: -9999px;
    /*background:url('../images/logo-basic.png') no-repeat center;*/
	background-size: contain;
}
#gnb{
    font-size: 1.125rem;
    white-space: nowrap;
	margin-right: -1.5rem;
}
#gnb::before{
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    height: 0px;
    background-color: #fff;
    border-bottom: 0px solid #ebebeb;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
#gnb:hover::before{
    height: 200px;
    border-bottom: 1px solid #ebebeb;
}
#gnb > .nav-item{
    position: relative;
}
#gnb > .nav-item > .nav-link{
    position: relative;
	color: #333;
    padding: 1rem 1.5rem;
}
#gnb > .nav-item::after{
    content: "";
    display: block;
    width: 0px;
    height: 2px;
    background-color: #ec1b34;
    position: absolute;
    bottom: -12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
#gnb > .nav-item:hover::after{
    width: 50px;
}
.sub-nav-link:hover{
    /* font-weight: 600; */
	color: #ec1b34;
}
.sub-nav{
    position: absolute;
	top: 75px;
    left: 0px;
    padding: 1rem 1.5rem;
    width: 100%;
    height: 0px;
    visibility: hidden;
    opacity: 0;
    transition: all .5s ease;
}
#gnb:hover .sub-nav{
	height: auto;
	visibility: visible;
	opacity: 1;
	transition-delay: .3s
}
.sub-nav > ul > li > a{
    font-size: .875rem;
	color: #333;
    display: block;
    padding: .5rem 0;
}
#content{
	position: relative;
	border-bottom: 1px solid #ebebeb;
}
#content > .container{
	padding-top: 3rem;
	padding-bottom: 3rem;
}
#footer{
    text-align: center;
	padding: 2rem 0;
}
.footer-inner{
	position: relative;
    text-align: left;
	display: inline-block;
}
.footer-inner::before{
	content: "";
	display: none;
	width: 68px;
	height: 32px;
	background: url('../images/footer_logo.png') no-repeat center;
}
.footer-link{
	font-size: 0;
	margin-bottom: .25rem;
}
.footer-link > li{
	position: relative;
	display: inline-block;
	padding-right: 10px;
	margin-right: 10px;
}
.footer-link > li > a{
	font-size: .875rem;
	color: #333;
	display: inline-block;
	padding: .25rem 0rem;
}
.footer-link > li:not(:last-child) > a::after{
    content: '';
    display: block;
    width: 1px;
    height: 12px;
    background-color: #ddd;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
#footer address{
	font-size: .875rem;
	color: #666;
	margin-bottom: 0;
}
#footer .copyright{
	font-size: .75rem;
	color: #999;
	letter-spacing: .5px;
}
/* ------------------------------------------- */
/* Sidemenu
/* ------------------------------------------- */
.overlay{
	overflow: hidden;
}
.overlay #mask{
	display: block;
	background-color: rgba(0,0,0,0.7);
}
.overlay #sidemenu{
	right: 0;
}
#sidemenu{
	overflow-y: auto;
	position: fixed;
	z-index: 9999;
	top: 0;
	bottom: 0;
	right: -100%;
    width: 100%;
	padding-left: 0;
	padding-right: 0;
	background: #fff;
	box-shadow: 2px 0px 10px rgba(0,0,0,.3);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	display: flex;
	flex-direction: column;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
#mask{
	content: "";
	display: none;
	position: fixed;
	z-index: 9998;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.sidemenu-header{
	position: relative;
	display: flex;
    align-items: center;
	padding: .75rem 15px;
	background-color: #f9f9f9;
	border-bottom: 1px solid #ebebeb;
}
.sidemenu-close{
    font-size:  1.25rem;
    line-height:  1;
	display: block;
	padding: .875rem;
	margin: -.75rem -15px -.75rem auto;
    background-color:  transparent;
    border:  0;
}
.sidemenu-user{
	font-size: .875rem;
	line-height: 1;
	padding: 1rem 1rem;
	background-color: #fff;
	border-bottom: 1px solid #ebebeb;
}
.sidemenu-body{
	position: relative;
	flex: auto;
	background-color: #565758;
}
#snb{
	display: flex;
	flex-direction: column;
	width: 44%;
}
#snb::after{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 56%;
	background-color: #fff;
}
#snb > li > a{
	position: relative;
	z-index: 3;
	font-size: 0.875rem;
	color: #fff;
	word-break: keep-all;
	display: block;
	padding: 0.75rem 1rem;
	border-bottom: 1px solid #65696d;
}
#snb > li > a:not(.collapsed){
	color: #fff;
    background-color: #df0024;
}
.submenu{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	width: 56%;
	padding: 0 1rem;
	background-color: #fff;
	border-left: 1px solid #ebebeb;
}
.submenu > h2{
	font-size: 1rem;
	font-weight: 600;
	height: 46px;
    line-height: 46px;
	padding: 0 .75rem;
	margin-bottom: 0;
    border-bottom: 1px solid #414141;
}
.submenu > ul > li > a{
	font-size: 0.875rem;
	display: block;
	padding: 0.75rem;
	border-bottom: 1px solid #ebebeb;
}
/* ---------------------------------------------------------------------- */
/*  Main
/* ---------------------------------------------------------------------- */
.main-wrapper{
	display: flex;
	justify-content: center;
    flex-direction: column;
	height: auto;
    padding: 2rem 0;
}
.main-header{
	text-align: center;
    margin-bottom: 2rem;
}
.main-header .logo{
	margin-bottom: .5rem;
}
.main-header h1{
	font-size: 1.5rem;
}
.g-box-section{
	margin-bottom: 0px;
}
.g-box{
	text-align: center;
	display: block;
	padding: 1rem 1rem;
	margin-bottom: 20px;
	background-color: #eff0f3;
    border: 1px solid #ededed;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.g-box:hover{
	color: #fff;
	background-color: #ec1b34;
}
.g-box-wrap .g-box::before{
	content: "";
	display: block;
	width: 60px;
	height: 60px;
	margin: 0 auto 8px;
	background-image: url('../images/iconset_main.png');
	background-repeat: no-repeat;
	background-position: 0 0;
    background-size: 400px;
}
.g-box-wrap .row > div:nth-of-type(1) .g-box::before{
	background-position: 0 0;
}
.g-box-wrap .row > div:nth-of-type(2) .g-box::before{
	background-position: -64px 0;
}
.g-box-wrap .row > div:nth-of-type(3) .g-box::before{
	background-position: -132px 0;
}
.g-box-wrap .row > div:nth-of-type(4) .g-box::before{
	background-position: -200px 0;
}
.g-box-wrap .row > div:nth-of-type(5) .g-box::before{
	background-position: -270px 0;
}
.g-box-wrap .row > div:nth-of-type(6) .g-box::before{
	background-position: -340px 0;
}
.g-box > h3{
	font-size: 1rem;
	margin-bottom: 0;
}
.m-link-wrap{
	margin-bottom: 20px;
}
.m-link{
	display: flex;
	justify-content: space-around;
	padding: .75rem;
	margin-bottom: 0rem;
	border: 1px solid #f2f2f2;
}
.m-link-item{
	font-size: .875rem;
    text-align: center;
	display: block;
	padding: 0rem;
}
.m-family .m-link-item::after,
.m-direct .m-link-item::before{
	content: "";
	display: inline-block;
	width: 36px;
	height: 36px;
	margin: 0;
	vertical-align: middle;
	background-image: url('../images/iconset_main.png');
	background-repeat: no-repeat;
	background-position: 0px -100px;
}
.m-direct .m-link-item:nth-of-type(1)::before{
	background-position: 0px -200px;
}
.m-direct .m-link-item:nth-of-type(2)::before{
	background-position: -100px -200px;
}
.m-direct .m-link-item:nth-of-type(3)::before{
	background-position: -200px -200px;
}
.m-direct .m-link-item:nth-of-type(4)::before{
	background-position: -300px -200px;
}
.m-family{
	margin-top: 1rem;
}
.m-family .m-link-item::after{
	background-position: -400px -200px;
}
/* ---------------------------------------------------------------------- */
/*  Pages
/* ---------------------------------------------------------------------- */
.page-header{
	margin-bottom: 3rem;
}
.page-header > h2{
	font-size: 1.375rem;
	font-weight: 600;
	margin-bottom: .5rem;
}
.page-header > p{
	font-size: 1.125rem;
    color: #666;
	margin-bottom: 0;
}
.page-header > small{
	font-size: 1.125rem;
    font-weight: 100;
    display: block;
    margin-bottom: .5rem;
}
.page-top{
	position: relative;
	color: #fff;
	padding: 2.5rem 0rem;
	margin-bottom: 0;
	background-image :url('../images/bg_biz.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.page-top.bg-biz{
	background-image :url('../images/bg_biz.jpg');
}
.page-top.bg-ds{
	background-image :url('../images/bg_ds.jpg');
}
.page-top.bg-dap{
	background-image :url('../images/bg_dap.jpg');
}
.page-top.bg-dar{
	background-image :url('../images/bg_dar.jpg');
}
.page-top.bg-ntc{
	background-image :url('../images/bg_ntc.jpg');
}
.page-top .lead{
	font-size: 1rem;
	color: #fff;
	text-align: center;
    margin-bottom: 1rem;
}
.page-top .page-header > p{
    color: #fff;
}
.btn-wrap{
	margin: 2px;
}
.page-top .btn-wrap{
	text-align: center;
}
.page-top .btn-wrap > .btn{
	font-size: .875rem;
	min-width: auto;
}
.page-top .btn-wrap > .btn{
	color: #fff;
    border-color: #fff;
}
.page-top .btn-wrap > .btn:hover{
	color: #fff;
    border-color: #ec1b34;
	background-color: #ec1b34;
}
.page-top .page-header{
	margin-bottom: 0;
}

.h-tit{
	font-size: 1.5rem;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid #ddd;
}
h4{
	font-size: 1.125rem;
	font-weight: 600;
}
.spacer{
	content: "";
	display: block;
	height: 3rem;
}
.input-group-addon{
    margin-left: -1px;
    margin-right: -1px;
}
.input-group-addon > .input-group-text{
    border-radius: 0;
}
.flex-inner-group{
	flex: 1 1 auto;
    width: 1%;
}
.inner-group .form-control{
	position: relative;
	z-index: 5;
	padding-right: 2.5rem;
	background-color: transparent;
}
.inner-group .input-group-text:not(:first-child):last-child{
	position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
	right: 0;
	border-color: transparent;
    background-color: transparent;
}
.mt-n{
    margin-top: -1px !important;
}
ul.form-text > li{
	position: relative;
	padding-left: 10px;
}
ul.form-text > li::before{
	content: "";
	display: inline-block;
	width: 2px;
	height: 2px;
	border-radius: 50%;
	background-color: #7d7d7d;
	position: absolute;
	top: 8px;
	left: 2px;
}
.text-list > li{
	position: relative;
	font-size: .875rem;
	color: #999;
	padding-left: 10px;
}
.text-list > li:not(:first-child){
	margin-top: .25rem;
}
.text-list > li::before{
	content: "";
	display: inline-block;
	width: 2px;
	height: 2px;
	border-radius: 50%;
	background-color: #7d7d7d;
	position: absolute;
	top: 10px;
	left: 2px;
}
.text-list .text-list > li{
	font-size: .8125rem;
	padding-left: 12px;
}
.text-list .text-list > li::before{
	content: "";
	display: inline-block;
	width: 4px;
	height: 1px;
	border-radius: 0%;
	background-color: #7d7d7d;
	position: absolute;
	top: 10px;
	left: 2px;
}
.btn-area{
	text-align: center;
	padding: 1.5rem 0;
}
.btn-area .btn{
	margin: .125rem 0;
}
.terms-body{
	padding: 1.5rem;
}
.terms > h1{
	font-size: 1.5rem;
	color: #333;
	font-weight: 600;
	padding-bottom: 1rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid #333;
}
.terms > h2{
	font-size: 1.25rem;
	color: #333;
	font-weight: 600;
    margin-bottom: 1rem;
}
.pre{
	font-size: .875rem;
	color: #666;
	letter-spacing: -1px;
	margin-bottom: 2rem;
}
.pre > h1{
	font-size: 1.75rem;
	color: #333;
	font-weight: 600;
	padding-bottom: 1rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid #333;
}
.pre > h2{
	font-size: 1.5rem;
	color: #333;
	font-weight: 600;
    margin-bottom: 1.25rem;
}
.pre > h3{
	font-size: 1.25rem;
	color: #730202;
	font-weight: 600;
	margin-bottom: 1rem;
}
.pre > h4{
	font-size: 1rem;
	color: #333;
	font-weight: 600;
	margin-bottom: .5rem;
}
.pre p{
	color: #666;
	margin-bottom: .5rem;
}
.terms-pre{
    white-space: pre-line;
}
.m-box{
	padding: 1.5rem;
	background-color: #f9f9f9;
	border: 1px solid #ededed;
}
.m-msg{
	text-align: center;
    margin: 2rem 0;
}
.m-msg p{
	font-size: 1.125rem;
	margin: 0rem 0 0;
}
.m-desc{
	font-size: 1rem;
}
.t-box{
	background-color: #f9f9f9;
	padding: 1.5rem;
	border: 1px solid #ededed;
}
.i-box{
    position: relative;
    word-wrap: break-word;
    display: block;
    padding: 3rem 1rem;
    margin-bottom: 2rem;
    background-color: #eff0f3;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.i-box:hover{
	background-color: #ec1b34;
}
.i-box:hover h3{
	color: #fff;
}
.i-box h3{
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0;
}
.icon-lg{
    display: block;
	margin-bottom: 1rem;
}
.icon-lg::before{
    content: "";
    display: block;
    margin: 0 auto;
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-position: center top;
}
.ico-person::before{
	background-image:url('../images/icon_person.png');
}
.ico-corp::before{
    background-image:url('../images/icon_corp.png');
}
.ico-check::before{
    background-image:url('../images/icon_check.png');
}
.i-box:hover .ico-person::before,
.i-box:hover .ico-corp::before{
	background-position: center -80px;
}
.agree-box{
	margin-bottom:2rem;
}
.alert-msg{
	text-align: center;
}
.form-label-group{
	position: relative;
	display: flex;
    justify-content: space-between;
}
.modal-sm .modal-body{
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}
.modal-sm .modal-footer{
	padding: 0;
}
.modal-sm .modal-footer > .btn{
	flex: 1 1 0;
	margin: 0;
}
.ul-list{
	margin-bottom: 0;
}
.ul-list > li{
	position: relative;
	padding-left: 10px;
}
.ul-list > li:not(:first-child){
	margin-top: .25rem;
}
.ul-list > li::before{
	content: "";
	display: inline-block;
	width: 5px;
	height: 1px;
	border-radius: 50%;
	background-color: #7d7d7d;
	position: absolute;
	top: 10px;
	left: 0px;
}
.ol-list{
	padding-left: 1rem;
}
.ol-list > li{
	list-style: decimal;
}
.ol-list > li:not(:first-child){
	margin-top: .25rem;
}
.ol-circle-list{
	padding-left: 0rem;
}
.ol-circle-list > li{
	position: relative;
	padding-left: 1.125rem;
}
.ol-circle-list > li:not(:first-child){
	margin-top: .25rem;
}
.ol-circle-list > li::before{
	position: absolute;
	top: 2px;
	left: 0;
	line-height: 1;
}
.ol-circle-list > li:nth-of-type(1)::before{
	content: "①";
}
.ol-circle-list > li:nth-of-type(2)::before{
	content: "②";
}
.ol-circle-list > li:nth-of-type(3)::before{
	content: "③";
}
.ol-circle-list > li:nth-of-type(4)::before{
	content: "④";
}
.ol-circle-list > li:nth-of-type(5)::before{
	content: "⑤";
}
.ol-circle-list > li:nth-of-type(6)::before{
	content: "⑥";
}
.ol-circle-list > li:nth-of-type(7)::before{
	content: "⑦";
}
.ol-circle-list > li:nth-of-type(8)::before{
	content: "⑧";
}
.ol-circle-list > li:nth-of-type(9)::before{
	content: "⑨";
}
.ol-circle-list > li.ol-li-2::before{
	content: "②";
}
.ol-circle-list > li.ol-li-3::before{
	content: "③";
}
.ol-circle-list > li.ol-li-4::before{
	content: "④";
}
.ol-circle-list > li.ol-li-5::before{
	content: "⑤";
}
.ol-kr-list{
	padding-left: 0rem;
}
.ol-kr-list > li{
	position: relative;
	padding-left: 1.125rem;
}
.ol-kr-list > li:not(:first-child){
	margin-top: 0;
}
.ol-kr-list > li::before{
	position: absolute;
	top: 2px;
	left: 0;
	line-height: 1;
}
.ol-kr-list > li:nth-of-type(1)::before{
	content: "가.";
}
.ol-kr-list > li:nth-of-type(2)::before{
	content: "나.";
}
.ol-kr-list > li:nth-of-type(3)::before{
	content: "다.";
}
.ol-kr-list > li:nth-of-type(4)::before{
	content: "라.";
}
.ol-kr-list > li:nth-of-type(5)::before{
	content: "마.";
}
.ol-kr-list > li:nth-of-type(6)::before{
	content: "바.";
}
.ol-kr-list > li:nth-of-type(7)::before{
	content: "사.";
}
.ol-kr-list > li:nth-of-type(8)::before{
	content: "아.";
}
.table{
    font-size: .875rem;
}
.tab-fixed{
	position: sticky;
	position: -webkit-sticky;
	top: 82px;
	z-index: 9;
}
.error-msg{
	text-align: center;
	padding: 5rem 2rem;
}
.error-msg > h1{
	font-size: 8rem;
}
.error-msg > p{
	font-size: 1.5rem;
	color: #333;
}
.dropdown-toggle.btn-light{
    color: #565758;
    border-color: #ddd;
	background-color: #fff;
}
.badge-primary{
    background-color: #f57f8c;
}
.badge-secondary{
    background-color: #9a9c9e;
}
.input-group .bootstrap-select:not(.input-group-btn),
.input-group .bootstrap-select[class*="col-"]{
	margin-right: -1px;
}
.bootstrap-select .dropdown-toggle:focus{
    outline: 5px auto #dc3545 !important;
    outline-offset: -2px;
	border-radius: 0 !important;
}
.gender-num .inner-group{
	flex: 1 1 auto;
    width: 1%;
}
.gender-num .inner-group .input-group-text{
	font-size: 10px;
	color: #999;
	letter-spacing: 5px;
}
.gender-num .inner-group .input-group-text:not(:first-child):last-child{
	right: auto;
	left: 20px;
}
.formula{
	position: relative;
	line-height: 1.3;
	padding: 10px;
    padding-left: 70px;
	margin-bottom: .5rem;
    background-color: #f7f7f7;
    border-radius: 10px;
}
.formula span:nth-of-type(1){
	position: absolute;
	left: 15px;
    top: 22px;
}
.formula span:nth-of-type(2){
	display: block;
	text-align: center;
}
.formula span:nth-of-type(3){
	text-align: center;
	display: block;
	padding-top: 4px;
	margin-top: 2px;
	border-top: 1px solid #999;
}
.form-row > [class*="col-"]{
	margin-top: -1px;
}
.custom-file-label::after{
	content: "" !important;
    color: #565758;
	height: auto;
    border: 0px;
    background-color: transparent;
    background: url('https://api.iconify.design/feather-paperclip.svg') no-repeat center;
	background-size: 22px;
}

/* ---------------------------------------------------------------------- */
/*  Slider
/* ---------------------------------------------------------------------- */
.m-slider-wrap{
	padding-bottom: 20px;
	display: none;
}
.m-slider{
	height: 100%;
}
.m-slider img{
	max-width: inherit;
}
.slider-wrapper{
	position:relative;
	z-index:9;
}
.slick-slider{
	border: 1px solid #f2f2f2;
}
.slider .slide{
	position:relative;
	height:auto;
	outline:none;
}
.slider .slide > a{
	position:relative;
	padding: .75rem 1rem;
	margin: 0 10px;
	height: 66px;
    display: flex;
    align-items: center;
	outline: none;
	transition:all .3s ease;
}
.slider .slide img{
	margin:auto;
	transition:all .3s ease;
	transform-origin:50% 100%;
}
.m-slide-ctrl,
.slide-ctrl{
	font-size:0;
    line-height:0;
    position:absolute;
    top:50%;
    z-index:9;
    display:block;
    width:32px;
    height:32px;
    padding:0;
    -webkit-transform:translate(0, -50%);
    transform:translate(0, -50%);
    cursor:pointer;
    color:transparent;
    border:1px solid #eee;
    outline:none;
    background-color:#fff;
    background-repeat:no-repeat;
    background-position:center;
    background-size:100%;
    border-radius:0px;
    box-shadow:0 5px 10px rgba(48,56,67,.05);
	background: url('https://api.iconify.design/feather-chevron-left.svg') no-repeat left 6px top 50%;
}
.m-slide-ctrl:focus,
.slide-ctrl:focus{
	outline:none;
}
.m-slide-prev{
	left:-5px;
	background:#fff url('https://api.iconify.design/feather-chevron-left.svg') no-repeat left 6px top 50%;
	border-width: 0;
	border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
	box-shadow:none;
}
.m-slide-next{
	right:-5px;
	background:#fff url('https://api.iconify.design/feather-chevron-right.svg') no-repeat right 6px top 50%;
	border-width: 0;
	border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
	box-shadow:none;
}
.slide-prev{
	left:-15px;
	background:#fff url('https://api.iconify.design/feather-chevron-left.svg') no-repeat left 6px top 50%;
}
.slide-next{
	right:-15px;
	background:#fff url('https://api.iconify.design/feather-chevron-right.svg') no-repeat right 6px top 50%;
}
/* ---------------------------------------------------------------------- */
/*  공제증서
/* ---------------------------------------------------------------------- */
@page{size: a4;}
body{min-width: 100% !important;}
#cert-wrap{
	position:relative;
	width:700px;
	height:1000px;
	margin:1rem auto;
	box-shadow:0px 0px 5px rgba(0,0,0,.2);
}
#cert-wrap .cert-clfa{display:block;}
#cert-wrap .cert-outline{
	position:absolute;
	width:100%;
	height:920px;
	padding:40px 60px;
}
#cert-wrap .cert-no{
	font-size:16px;
	font-weight:700;
	display:block;
	margin-bottom:60px;
}
#cert-wrap .cert-pattern{
	text-align:center;
	margin-top:30px;
	margin-bottom: 16px;
}
#cert-wrap .cert-pattern img{width:280px;}
#cert-wrap .cert-title{
	font-size:36px;
	font-weight:700;
	text-align:center;
	margin-bottom:30px;
}
#cert-wrap .cert-money{
	font-size:26px;
	font-weight:700;
	text-align: center;
	margin-bottom:10px;
}
#cert-wrap .cert-tbl{
	border-top:2px solid #000;
	border-bottom:2px solid #000;
}
#cert-wrap .cert-tbl tbody th,
#cert-wrap .cert-tbl tbody td{
	position:relative;
	font-size:14px;
	font-weight:bold;
	border:1px solid #333;
}
#cert-wrap .cert-tbl tbody th{
	text-align:center;
	background:#fff;
}
#cert-wrap .cert-tbl tbody td{
	text-align:left;
	background:#fff;
}
#cert-wrap .cert-tbl tbody .th{
	position:relative;
	z-index:2;
}
#cert-wrap .cert-tbl tbody .th-bg{
	position:absolute;
	top:0px;left:0px;
	display:block;
	width:100%;
	height:100%;
}
#cert-wrap .cert-tbl tbody .th-bg img{
	display:block;
	width:100%;height:100%;
}
#cert-wrap .cert-item{margin-bottom:80px;}
#cert-wrap .cert-item dt,
#cert-wrap .cert-item dd{
	font-size:16px;
	line-height:30px;
}
#cert-wrap .cert-item dt{float:left;margin-right:10px;}
#cert-wrap .cert-item dd{padding-left:120px;}
#cert-wrap .cert-body{
	font-size:14px;
	text-indent:20px;
	letter-spacing:1px;
	margin-bottom:30px;
}
#cert-wrap .cert-date{
	font-size:16px;
	font-weight:700;
	text-align:center;
	display:block;
	margin-bottom:30px;
}
#cert-wrap .cert-date span{
	display: inline-block;
	margin:0 10px 0 30px;
}
#cert-wrap .cert-sign{
	font-size:26px;
	font-weight:700;
	text-align:center;
	padding-left: 70px;
	margin-bottom:20px;
}
#cert-wrap .cert-sign:before,
#cert-wrap .cert-sign:after {
	content: "";
	display: table;
	}
#cert-wrap .cert-sign:after{clear: both;}
#cert-wrap .cert-sign .cert-sign-wrap{
	float:left;
}
#cert-wrap .cert-sign .clfa{width:70px;margin:4px 8px 0 0;}
#cert-wrap .cert-sign em{position:relative;z-index:2;}
#cert-wrap .cert-addr{
	font-size:14px;
	display:block;
}
#cert-wrap .cert-stamp{
	position:relative;
	font-size:18px;
	font-weight:700;
	display:inline-block;
	margin-left: -76px;
    margin-top: -30px;
}
#cert-wrap .stamp-text{
	position: absolute;
	z-index: 2;
	top:30px;
	left:20px;
}
#cert-wrap .cert-box{
	position:absolute;
	bottom: 20px;
    left: 0;
	width:100%;
	height: 160px;
	padding: 0 60px;
	margin-bottom:10px;
}
#cert-wrap .cert-box p{
	position:absolute;
	left: 0;
	height:100%;
	padding: 18px 85px;
	display:block;
	font-size: 12px;
}
#cert-wrap .cert-box img{
	display:block;
	width:100%;height:100%;
	overflow:hidden;
	border-radius:15px;
}
#cert-wrap .cert-desc{
	position:absolute;
	bottom: 50px;
	width:100%;
	font-size:12px;
	text-align:center;
}
#cert-wrap .cert-border{
	width:100%;
}
@media print {
    #btnArea {
        display: none;
    }
}
/* ---------------------------------------------------------------------- */
/*  Responsible
/* ---------------------------------------------------------------------- */
@media screen and (min-width:360px){

}
@media screen and (min-width:576px){
	.footer-inner{
		padding-left: 100px;
	}
	.footer-inner::before{
		display: inline-block;
		position: absolute;
	    top: 10px;
	    left: 0px;
	}
	.page-top{
		padding: 4rem 0rem;
	}
	.page-top .lead{
		font-size: 1.25rem;
		text-align: left;
	    margin-bottom: 2rem;
	}
	.page-top .btn-wrap{
		text-align: left;
	}
	.page-top .btn-wrap > .btn{
		font-size: 1rem;
		min-width: 160px;
	}
	.page-header > small {
	    font-size: 1.5rem;
	}
	.page-header > h2{
	    font-size: 2.5rem;
		font-weight: normal;
	}
	.page-header > p{
	    font-size: 1.375rem;
	}
	.table {
	    font-size: inherit;
	}
	.g-box-wrap .g-box::before{
		width: 80px;
		height: 80px;
	    background-size: inherit;
	}
	.g-box{
	    padding: 2.5rem 1rem;
	}
	.g-box > h3 {
		font-size: 1.125rem;
	}
	.g-box-wrap .row > div:nth-of-type(1) .g-box::before{
		background-position: 0 0;
	}
	.g-box-wrap .row > div:nth-of-type(2) .g-box::before{
		background-position: -100px 0;
	}
	.g-box-wrap .row > div:nth-of-type(3) .g-box::before{
		background-position: -200px 0;
	}
	.g-box-wrap .row > div:nth-of-type(4) .g-box::before{
		background-position: -300px 0;
	}
	.g-box-wrap .row > div:nth-of-type(5) .g-box::before{
		background-position: -400px 0;
	}
	.g-box-wrap .row > div:nth-of-type(6) .g-box::before{
		background-position: -500px 0;
	}
	.g-box-wrap .row > div:nth-of-type(1) .g-box:hover::before{
		background-image: url('../images/iconset_main.png');
		background-position: 0px -100px;
	}
	.g-box-wrap .row > div:nth-of-type(1) .g-box:hover::before{
		background-image: url('../images/iconset_main.png');
		background-position: 0px -100px;
	}
	.g-box-wrap .row > div:nth-of-type(2) .g-box:hover::before{
		background-image: url('../images/iconset_main.png');
		background-position: -100px -100px;
	}
	.g-box-wrap .row > div:nth-of-type(3) .g-box:hover::before{
		background-image: url('../images/iconset_main.png');
		background-position: -200px -100px;
	}
	.g-box-wrap .row > div:nth-of-type(4) .g-box:hover::before{
		background-image: url('../images/iconset_main.png');
		background-position: -300px -100px;
	}
	.g-box-wrap .row > div:nth-of-type(5) .g-box:hover::before{
		background-image: url('../images/iconset_main.png');
		background-position: -400px -100px;
	}
	.g-box-wrap .row > div:nth-of-type(6) .g-box:hover::before{
		background-image: url('../images/iconset_main.png');
		background-position: -500px -100px;
	}
	.gender-num .inner-group .input-group-text{
		letter-spacing: 10px;
	}
}
@media screen and (min-width:768px){
	.main-wrapper{
		height: 100vh;
	}
}
@media screen and (min-width:880px){

}
@media screen and (min-width:992px){
	.m-slider-wrap{
		display: block;
	}
	.m-family{
		margin-top: 0;
	}
}
@media screen and (min-width:1200px){

}
@media screen and (min-width:1280px){

}
@media screen and (min-width:1400px){

}
@media screen and (max-width:576px){
	.g-box-wrap{
		margin-bottom: 1rem;
	}
	.g-box-wrap .col-6:nth-of-type(1) .g-box{
		background-color: #2a5eda;
	}
	.g-box-wrap .col-6:nth-of-type(2) .g-box{
		background-color: #4d89f6;
	}
	.g-box-wrap .col-6:nth-of-type(3) .g-box{
		background-color: #173b69;
	}
	.g-box-wrap .col-6:nth-of-type(4) .g-box{
		background-color: #95b3e8;
	}
	.g-box-wrap .col-6:nth-of-type(5) .g-box{
		background-color: #9bafcd;
	}
	.g-box-wrap .col-6:nth-of-type(6) .g-box{
		background-color: #bac8dc;
	}
	.g-box-wrap .col-6{
		padding-right: 0;
		padding-left: 0;
	}
	.g-box-wrap .g-box{
		color: #fff;
		padding: 1.5rem 1rem;
		margin-bottom: 0;
		border: 0;
	}
	.g-box-wrap .g-box::before{
		background-image: url('../images/iconset_main_mobile.png');
	}
	.g-box-wrap .row > div:nth-of-type(1) .g-box::before{
	    background-position: -0px 0;
	}
	.g-box-wrap .row > div:nth-of-type(2) .g-box::before{
	    background-position: -68px 0;
	}
	.g-box-wrap .row > div:nth-of-type(3) .g-box::before{
	    background-position: -136px 0;
	}
	.g-box-wrap .row > div:nth-of-type(4) .g-box::before{
	    background-position: -204px 0;
	}
	.g-box-wrap .row > div:nth-of-type(5) .g-box::before{
	    background-position: -272px 0;
	}
	.g-box-wrap .row > div:nth-of-type(6) .g-box::before{
	    background-position: -340px 0;
	}
}
/* ---------------------------------------------------------------------- */
/*  Loader
/* ---------------------------------------------------------------------- */
.loading{
	display:none;
    position:fixed;
    z-index:999999;
    top:0;left:0;right:0;bottom:0;
    background-color:rgba(0,0,0,.3);
}
.loading.active{
	display:flex;
    justify-content:center;
    align-items:center;
}
.spinner-border{
	display:inline-block;
	width:3rem;
	height:3rem;
	vertical-align:text-bottom;
	border:.25em solid #fff;
	border-right-color:transparent;
	border-radius:50%;
	animation:spinner-border .75s linear infinite;
}

/* ---------------------------------------------------------------------- */
/*  modal
/* ---------------------------------------------------------------------- */

.prvw-modal-overlay {
	position: fixed;
	z-index: 1030;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	display: flex;
}
.prvw-modal-dialog {
	position: relative;
	margin: 0 auto;
	pointer-events: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}
.prvw-modal-dialog .prvw-modal {
	display: inline-block;
	max-width: 540px;
	background: #fff;
	margin: 5px;
	box-shadow: 0 20px 30px -20px rgba(0,0,0,.8);
}
.prvw-modal-dialog .prvw-modal-header {
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	padding: 20px 30px;
	background-color: #000;
}
.prvw-modal-dialog .prvw-modal-body p {
	margin: 0;
}
.prvw-modal-dialog .prvw-modal-footer {
	font-size: 12px;
	color: #fff;
	padding: 10px;
	background-color: #45484b;
	overflow: hidden;
}
.prvw-modal-dialog .prvw-modal-footer label {
	float: left;
}
.prvw-modal-dialog .prvw-modal-footer .prvw-modal-close {
	color: #fff;
	float: right;
}

@-webkit-keyframes spinner-border{
	to { -webkit-transform:rotate(360deg); }
}
@keyframes spinner-border{
	to { transform:rotate(360deg); }
}
