html{
	width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
	font-family: 'NanumSquare', sans-serif;
  background-color: #FFFFFF;
  margin:0px;
  color: #000;
  height: 100%;
  overflow: auto;
}

* {
  box-sizing: border-box;
}

.header{
	margin: 15px auto;
    position: relative;
    max-width: 1750px;
    width: 97%;
}

.header .logo{
    width: 190px;
    padding: 15px;
}

.header .link{
	position: absolute;
	font-size: 1.3em;
	right: 4%;
    top: calc(50% - 24px);
}

.header .link a{
	text-decoration: unset;
	color: #000;
    vertical-align: middle;
    font-weight: 700;
}

.header .link span:nth-child(1)::after {
    content: '|';
    padding-left: 30px;
    padding-right: 30px;
    font-size: 1.1em;
    vertical-align: middle;
    font-weight: 300;
}

.space{
	height: calc(18% - 85px);
}

.main .section{
	float: left;
}

.main .section.images{
	width: 65%;
	/* height: 100%; */
	/* background-image: url('/img/index/background.png'); */
	/* background-image: url('/img/index/image-all.png');
	background-repeat: no-repeat;
	background-size: contain; */
	margin-left: -1px;
	position: relative;
}

.main .section.images > .image{
	width: 100%;
	max-width: 1242px;
	animation-name: showimage;
  	animation-duration: 1s;
}


@keyframes showimage {
    from {
        opacity: 0;
		transform:translate3d(-200px,0,0);
    }
    to {
        opacity: 1;
    }
}

.main .section.images > .mobile{
	position: absolute;
	top: -58px;
    left: 95px;
    width: 23%;
}

.main .section.images > .desktop{
	position: absolute;
	bottom: -58px;
    right: 110px;
    width: 48%;
}

.main .section.text{
	width: 30%;
	padding-left: 40px;
	margin-top: 60px;
  	cursor: default;
	animation-name: showtext;
  	animation-duration: 1s;    
}

@keyframes showtext {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.main .section.text > h1{
	font-family: 'NanumSquareAc', sans-serif;
	font-weight: 800;
	font-size: 2.6em;
}

.main .section.text > p{
  font-family:'Noto Sans KR', sans-serif;
  font-size: 1.4em;
}

.panel{
	display: none;
	width: 36%;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    background-color: #fafbfd;
    min-width: 640px;
}

.footer{
    background-color: #eeeeee;
    height: 88px;
    width: 100%;
}

.footer_inner{
	width: 60%;
	margin: 0 auto;
	text-align: center;
}
.footer_inner > div{
	display: inline-block;
	margin-top : 10px;	
}

.footer_inner > div:nth-child(1){
	width:20%;
}

.footer_inner > div:nth-child(2){
	font-size: 12px;
	vertical-align: top;
	width: 40%;
	text-align: left;
}

.footer_inner > div:nth-child(3){
	width: 35%;
	font-weight: 600;
	vertical-align: top;
}


.footer_inner > span{
	font-size: 12px;
	display: block;
}

.login_box{
	width: 480px;
	margin: 30px auto;
}

.login_box h2, .login_box p{
	margin: 0px;
	text-indent: 10px;
}

.login-form{
	margin-top: 17px;
    border: 1px solid #ddd;
    padding: 20px;
}

.login-form .form-group{
	margin-bottom: 1.2rem!important;
}

.login-form .form-group label {
    display: inline-block;
    margin-bottom: .2rem;
    font-weight: 700;
    font-size: 15px;
}

.login-form .form-control {
    display: block;
    width: 100%;
	height: 48px;
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    background-clip: padding-box;
    background: rgba(0,0,0,.05);
    color: #000;
    font-size: 16px;
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    padding-right: 20px;
}

input[type=submit].form-control{
	font-weight: 700;
	font-size: 18px;
	color: #fff;
	cursor: pointer;
	background: #254381;
}

.form-control:focus, .form-control:active {
    outline: none!important;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: rgba(0,0,0,.07);
    border-color: transparent;
}

.login-form .find-text{
	float: right;
    text-decoration: none;
    color: #3d3d3d;
    font-size: 14px;
    line-height: 25px;
}

.msg_wrap {
    background: white;
    padding: 5px 8px;
    color: #5c82d5;
    margin: 1px 10px;
    font-size: 0.85em;
    width: 95%;
}


/* layer modal */
.layer_area{
	width: 100%;
	height: 100%;
	position: fixed;
	left:0px;
	top:0px;
	display: none;
	z-index: 101;
}

.layer_area > .modal_area{
	position: absolute;
	width: 700px;
	height: 700px;
    top: calc(50% - 350px);
    left: calc(50% - 350px);
    background-color: white;
    border: 1px solid #757575;
    box-shadow: 3px 0px 7px -2px #a7a7a7;
    user-select: none;
}

.modal_area > .modal_top{
	background-color: #e4e4e4;
    height: 35px;
}

.modal_area > .modal_top > span{
	padding: 0px 10px;
    line-height: 35px;
    font-size: 15px;
    font-weight: bold;
}

.modal_area > .modal_top > .close_btn{
	float: right;
    margin: 2px 7px;
    padding: 5px 5px;
    cursor: pointer;
    font-size: 20px;
}

.modal_area > .modal_content{
	width: 100%;
	height: calc(100% - 35px);
}

.modal_area > .modal_content > iframe{
	width:100%;
	height: 100%;
	border: none;
}

@media (max-width: 1080px){
	.main .section.images{
		width: 100%;
	}
	
	.main .section.text{
		width: 100%;
	}
	
	.main .section.images > .mobile{
		display: none;
	}
	
	.main .section.images > .desktop{
		display: none;
	}
}

@media (max-width: 640px){
	.header .logo{
		width: 180px;
	}

	.header .link{
		font-size: 1.1rem;
	}
	
	.header .link span:nth-child(1)::after {
    	padding-left: 5px;
    	padding-right: 5px;
		font-size: 0.9em;
	}
	
	.space{
		height: 0px;
	}
	
	.main .section.text{
		padding-left: 20px;
		margin-top: 15px;
	}

	.main .section.text > h1{
		font-size: 2em;
	}
	
	.main .section.text > p{
	  	font-size: 1.1em;
	}
	
	.panel{
		width: 100%;
		min-width: unset;
	}
	
	.login_box{
		width: 92%;
	}
	
	.footer_inner{
		width: 100%;
	}
		
}