@charset "utf-8";
/* CSS Document */

@import url('bootstrap.css');
@import url('font-awesome.min.css');
@import url('normalize_8.css');

html, body{
	margin:0;
	height:100%;
	letter-spacing:-0.025em;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Malgun Gothic", "맑은 고딕", Arial, sans-serif;
	line-height: 1.42857143;
	color: #333;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/*modal 실행시 스크롤바 고정*/
body{
	padding-right:0 !important;
	-ms-overflow-style: scrollbar;
}

.modal-open{
	overflow: auto !important;
}

p, ul, ol, li, dl, dt, dd, form {
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
	border:0px;
	margin:0px;
	padding:0px;
}

ul, ol{
	list-style-type:none;
	margin:0;
	padding:0;	
}

ul li, ol li {
	list-style-type: none;
}

label, th img, td img {
	vertical-align:middle;
}

img {
	border:0;
	margin:0;
	padding:0;
	vertical-align:middle;
}

/* ie antialiasing */
img { -ms-interpolation-mode: bicubic; }


/*form */
textarea {
	padding:10px 5px;
	border:1px solid #d0d0d0;
	background:#fff;
	width:100%;
	color:#454545;
	resize:none;
}

input{
	border-radius:0;
	-webkit-appearance: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

input[type=checkbox] {
	border:none;
	height:13px;
}
input[type=radio] {
	border:none;
	height:13px;
	margin-top:-1px;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder{
	color: #ccc !important;
}/*Internet Explorer 10 이상에 적용*/

input::-ms-input-placeholder,
textarea::-ms-input-placeholder{
	color: #ccc !important;
}/*Internet Explorer 10 이상에 적용*/

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #ccc !important;
}/*Webkit, Blink, Edge에 적용*/

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #ccc !important;
}/* Mozilla Firefox 4 부터 18에 적용*/

input::-moz-placeholder,
textarea::-moz-placeholder{
	color: #ccc !important;
}/*Mozilla Firefox 19 이상에 적용*/

/* Clear button styles
--------------------------------------------- */
::-ms-clear {
  display: none;
}

.form-control-clear {
	width:32px;
	height:32px;
	pointer-events: auto;
	cursor: pointer;
	z-index: 10;
	display:none;
}

/* Custom page CSS (Not required)
--------------------------------------------- */
#exampleContainer {
  padding: 50px;
}


.form-control {
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/*.form-control:hover,*/
.form-control:focus{
	border-color:#ff6600 !important;
}

select {
	width:125px;
    -webkit-appearance: none;  /* 네이티브 외형 감추기 */
    -moz-appearance: none;
    appearance: none;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 7px 9px;
	font-size: 13px;
	font-weight: 700;
	background: #fff url('../images/common/ico_selectbox_arrow.png') no-repeat 90% / 9px;
	outline:none;
}

select::before{
	font-family:'FontAwesome';
	content:"\f0d7";
	width:20px;
	height:20px;
	display:inline-block;
}

/* IE 10, 11의 네이티브 화살표 숨기기 */
select::-ms-expand {
    display: none;
}

span.button, img.button, a.button {
	cursor: pointer;
	vertical-align: middle;
}

input[type=text], input[type=password], textarea, input[type=email] {
	vertical-align: middle;
	border: none;
    font-size: 14px;
    line-height: 100%;
    color: #454545;
    background-color: #fff;
    transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
	padding:6px 10px;
	/**padding:4px 5px 0 5px;*/
}
/*input[type=text]:focus, textarea:focus, input[type=email]:focus {
	background-color: #f3f3f3;
}*/
input[type=text]::-ms-clear {
	display: none;
}

/*링크테두리 삭제*/
a,img,input,textarea{
	outline:none !important;
	box-shadow:none !important;
}
a {
	color: #454545;
}

a, a:link, a:active, a:visited, a:hover{
	text-decoration: none;
}



h1, h2, h3 {
	font-weight: bold;
	letter-spacing: -1px;
}
h1 strong, h2 strong, h3 strong {
	font-weight: 600;
}
h1, h2, h3 {
	/*text-transform: uppercase;*/
}

iframe{
	overflow: hidden;
}


/*여러줄 말줄임*/
.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4; /* 라인수 */
	-webkit-box-orient: vertical;
	word-wrap:break-word;
}

.ellipsis.multiline {
	white-space: normal;
}


/*Back to Top*/
.scroll-top-wrapper {
	position:fixed;
	opacity:0;
	visibility:hidden;
	overflow:hidden;
	text-align:center;
	background:rgba(0,0,0,.5);
	line-height:48px;
	right:10px;
	bottom:10px;
	-webkit-transition:all 0.5s ease-in-out;
	-moz-transition:all 0.5s ease-in-out;
	-ms-transition:all 0.5s ease-in-out;
	-o-transition:all 0.5s ease-in-out;
	transition:all 0.5s ease-in-out;
	z-index:9999;
}

.scroll-top-wrapper.show {
	visibility:visible;
	cursor:pointer;
	opacity:1.0;
}

.scroll-top-wrapper a{
	width: 50px;
	height: 50px;
	display: inline-block;
}

.scroll-top-wrapper i.fa {
	width:100%;
	height:100%;
	line-height:inherit;
	font-size:20px;
	color:#fff;
}

@media(max-width:767px){
	.scroll-top-wrapper {
		line-height: 38px;
	}

	.scroll-top-wrapper a{
		width: 40px;
		height: 40px;
	}
}



/* ==============================================
Button
=============================================== */
.btn{
	padding: 8px 40px;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
	box-shadow:none !important;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus{
	outline:0;
}

.btn:hover{
	opacity: 0.8;
}

.btn-cancle{
	font-weight: 700;
	color:#fff;
	background:#6b6a6a;
}

.btn-cancle:hover,
.btn-cancle:focus{
	color:#fff;
	background:#323131 !important;
}

.btn-primary{
	font-weight: 700;
	color:#fff;
	background:#f26222;
}

.btn-primary:hover,
.btn-primary:focus{
	color:#fff;
	background:#e23304 !important;
}


/* ==============================================
Modal
=============================================== */
@media(max-width:767px){
	/*Modal Fullscreen*/
	.modal.modal-fullscreen {
	  /* Maximize the main wrappers on the screen */
	  /* Make the parent wrapper of the modal box a full-width block */
	  /* Remove borders and effects on the content */
	  /**
		 * /!\ By using this feature, you force the header and footer to be placed
		 * in an absolute position. You must handle by yourself the margin of the
		 * content.
		 */
		background:#fff;
	}
	.modal.modal-fullscreen .modal-dialog,
	.modal.modal-fullscreen .modal-content {
	  bottom: 0;
	  left: 0;
	  position: absolute;
	  right: 0;
	  top: 0;
	}
	.modal.modal-fullscreen .modal-dialog {
	  margin: 0;
	  width: 100%;
	}
	.modal.modal-fullscreen .modal-content {
	  border: none;
	  -moz-border-radius: 0;
	  border-radius: 0;
	  -webkit-box-shadow: inherit;
	  -moz-box-shadow: inherit;
	  -o-box-shadow: inherit;
	  box-shadow: inherit;
	}
	.modal.modal-fullscreen.force-fullscreen {
	  /* Remove the padding inside the body */
	}
	.modal.modal-fullscreen.force-fullscreen .modal-body {
	  padding: 0;
	}
	.modal.modal-fullscreen.force-fullscreen .modal-header,
	.modal.modal-fullscreen.force-fullscreen .modal-footer {
	  left: 0;
	  position: absolute;
	  right: 0;
	}
	.modal.modal-fullscreen.force-fullscreen .modal-header {
	  top: 0;
	}
	.modal.modal-fullscreen.force-fullscreen .modal-footer {
	  bottom: 0;
	}
}

.modal{
	z-index:999999;
}

.modal-header{
	padding:10px 0;
}

.modal .modal-content{
	padding:0 18px;
	border:1px solid #cacaca;
}

.modal-title{
	font-size:16px;
	font-weight:700;
}

.modal-body{
	padding:15px 0;
}

.modal .close{
    position: absolute;
    top: 5px;
    right: 10px;
    padding: 6px 10px;
    opacity: 1;
    outline: none;
}

.modal .close img{
	width:14px;
	height:auto;
}


	
/* Selectbox */
.btn-select {
    position: relative;
    padding: 0;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.btn-select .btn-select-value {
    padding: 3px 12px;
    display: block;
    position: absolute;
    left: 0;
    right: 34px;
	font-size:14px;
	line-height:20px;
    text-align: left;
    text-overflow: ellipsis;
    overflow: hidden;
}

.btn-select .btn-select-arrow {
    float: right;
    line-height: 20px;
    padding: 3px 10px;
    top: 0;
	color:#666;
	-webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.btn-select ul {
    display: none;
    background-color: white;
    color: black;
    clear: both;
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: none !important;
    position: absolute;
    top: 27px;
    border: 1px solid #eee;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    z-index: 999;
}

.btn-select ul li {
    padding: 6px;
    text-align: left;
	font-size:14px;
	color:#454545;
}

.btn-select ul li:hover {
    background-color: #ddd;
}

.btn-select ul li.selected {
    color: #fff;
}

.btn-select.active .btn-select-arrow{
	-webkit-transform:rotate(-180deg);
    -moz-transition:rotate(-180deg);
    -o-transition:rotate(-180deg);
    transform:rotate(-180deg);
}

.btn-select ul li.selected {
    background-color: #999;
}

.btn-select:hover,
.btn-select.active {
    background-color: #eee;
}

/* Checkbox */
.checkbox {
	padding-left: 20px;
}
.checkbox label {
	line-height:16px;
	display: inline-block;
	position: relative;
	padding-left: 5px;
}
.checkbox label::before {
	display: inline-block;
	position: absolute;
	width: 17px;
	height: 17px;
	left: 0;
	margin-left: -20px;
	border: 1px solid #e5e5e5;
	background-color: #fff;
	-webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
	-o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
	transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
	font-family: 'FontAwesome';
	content: "";
	color: #cacaca;
	font-size: 11px;
	text-align: center;
}
.checkbox label::after {
	display: inline-block;
	position: absolute;
	width: 17px;
	height: 17px;
	left: 0;
	top: 0;
	margin-left: -20px;
	padding-top: 1px;
	font-size: 12px;
	color: #555555;
	text-align: center;
}
.checkbox input[type="checkbox"] {
    opacity: 0;
}
.checkbox input[type="checkbox"]:focus + label::before {
	/*outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;*/ 
}
.checkbox input[type="checkbox"]:checked + label::after {
	font-family: 'FontAwesome';
	content: "\f00c";
}
.checkbox input[type="checkbox"]:disabled + label {
	opacity: 0.65;
}
.checkbox input[type="checkbox"]:disabled + label::before {
	background-color: #eeeeee;
	cursor: not-allowed;
}
.checkbox.checkbox-circle label::before {
    border-radius: 50%;
}
.checkbox.checkbox-inline {
    margin-top: 0;
}
.checkbox input[type="checkbox"]:checked + label::before {
  /*background-color: #4b526f;
  border-color: #4b526f;*/
}
.checkbox input[type="checkbox"]:checked + label::after {
  color: #f26222;
}

/* Radiobox */
.radio {
	padding-left: 20px;
}
.radio label {
	display: inline-block;
	position: relative;
	padding-left: 5px;
}
.radio label::before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 17px;
	height: 17px;
	left: 0;
	margin-left: -20px;
	border: 2px solid #ddd;
	border-radius: 50%;
	background-color: #ededed;
	-webkit-transition: border 0.15s ease-in-out;
	-o-transition: border 0.15s ease-in-out;
	transition: border 0.15s ease-in-out;
}
.radio label::after {
	display: inline-block;
	position: absolute;
	content: " ";
	width: 9px;
	height: 9px;
	left: 4px;
	top: 4px;
	margin-left: -20px;
	border-radius: 50%;
	background-color: #f26222;
	-webkit-transform: scale(0, 0);
	-ms-transform: scale(0, 0);
	-o-transform: scale(0, 0);
	transform: scale(0, 0);
	-webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
	-moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
	-o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
	transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.radio input[type="radio"] {
    opacity: 0;
}
.radio input[type="radio"]:focus + label::before {
	/*outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;*/
}
.radio input[type="radio"]:checked + label::after {
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
}
.radio input[type="radio"]:disabled + label {
	opacity: 0.65;
}
.radio input[type="radio"]:disabled + label::before {
	cursor: not-allowed;
}
.radio.radio-inline {
    margin-top: 0;
}
.radio-primary input[type="radio"] + label::after {
	background-color: #428bca;
}
.radio-primary input[type="radio"]:checked + label::before {
	border-color: #428bca;
}
.radio-primary input[type="radio"]:checked + label::after {
	background-color: #428bca;
}


.wrapper{
	min-height: 100%;
}

.wrapper section,
.wrapper .container{
	position: relative;
}

.wrapper .group-1{
	background:url("../images/bg_group1.png") no-repeat center center;
	background-size:cover;
}
.wrapper .group-3,
.wrapper .group-5{
	background: #135698;
}
.wrapper .group-2{
	background: #40a0ff;
}

.wrapper .group-4,
.wrapper .group-6{
	background: #fddc8a;
}

.wrapper section .container{
	padding: 90px 0;
	z-index: 999;
}
.wrapper .group-2 .container{
	padding:60px 0;
}
.wrapper section.group-7 .container{
	padding: 50px 0;
}

.wrapper section .container > p{
	position: relative;
	z-index: 999;
}

.wrapper section .container .btn-link{
	display: block;
	text-align: center;
}

.wrapper section .container .btn-link img{
	width: 40%;
	height: auto;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2) !important;
}

.wrapper section .container .btn-link:hover{
	opacity: 0.8;
}

.wrapper section .container .m-img img{
	width: 100%;
	height: auto;
}

.wrapper section.group-1 .container{
	padding: 25px 0 0;
}

.wrapper section.group-3:before{
	content: "";
	width: 570px;
	height: 330px;
	position: absolute;
	top: 0;
	right: 0;
	background: url("../images/bg-1s.png") no-repeat 0 100%;
	background-size: 896px 803px;
}

.wrapper section.group-3:after{
	content: "";
	width: 410px;
	height: 490px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: url("../images/bg-2s.png") no-repeat 100% 0;
	background-size: 920px 743px;
}

.wrapper section.group-3 .container:before{
	content: "";
	width: 104px;
	height: 178px;
	position: absolute;
	bottom: 370px;
	left: 90px;
	background: url("../images/bg-3.png") no-repeat 0 0;
	background-size: 100%;
}

.wrapper section.group-3 .container .btn-link{
	margin-top: 40px;
}

.wrapper section.group-4 .container:before{
	content: "";
	width: 250px;
	height: 177px;
	position: absolute;
	bottom: 120px;
	left: -125px;
	background: url("../images/bg-3s.png") no-repeat 0 0;
	background-size: 100%;
}

.wrapper section.group-4 .container:after{
	content: "";
	width: 250px;
	height: 177px;
	position: absolute;
	top: 110px;
	right: -70px;
	background: url("../images/bg-4s.png") no-repeat 0 0;
	background-size: 100%;
}

.wrapper section.group-5 .container .youtube{
	width: 100%;
	position: relative;
	margin-top: 45px;
	padding-bottom: 56.25%;
	text-align: center;
}

.wrapper section.group-5 .container .youtube iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	padding: 0 3%;
}

.wrapper section.group-5 .container .m-img.tnd{
	margin-top: 70px;
}

.wrapper section.group-5 .container .btn-link{
	margin-top: 45px;
}

.wrapper section.group-6 .container ul{
	width: 100%;
	display: inline-block;
	margin-top: 60px;
}

.wrapper section.group-6 .container li{
	float: left;
	width: calc(100% / 3);
	padding: 0 10px;
}

.wrapper section.group-6 .container li:hover{
	opacity: 0.8;
}

.wrapper section.group-6 .container li a{
	display: inline-block;
}

.wrapper section.group-6 .container li a img{
	width: 100%;
}

.wrapper section.group-6 .container .btn-link{
	margin-top: 90px;
}

.wrapper .close-event{
    width: 70px;
    height: 70px;
    position: fixed;
    top: 3%;
    right: 5%;
    z-index: 99999;
}

.wrapper .close-event img{
    width: 100%;
    height: auto;
}

@media (min-width: 1200px){
	.container {
		width: 760px;
	}
	.wrapper section.group-1 .container{
		width:1000px;
	}
}

@media(max-width: 1199px){
	.wrapper section .container .btn-link img{
		width: 35%;
	}
	
	.wrapper section.group-3:before{
		width: 30%;
		height: 15%;
		background-size: 200%;
	}
	
	.wrapper section.group-3:after{
		width: 25%;
		height: 25%;
		background-size: 200%;
	}
	
	.wrapper section.group-3 .container:before{
		width: 12%;
		height: 200px;
		bottom: 20%;
		left: 10%;
	}
	
	.wrapper section.group-3 .container .btn-link{
		margin-top: 5%;
	}
	
	.wrapper section.group-4 .container:before{
		width: 13%;
	}
	
	.wrapper section.group-4 .container:after{
		width: 13%;
		right: 0;
	}
	
	.wrapper section.group-5 .container .youtube{
		margin-top: 5%;
	}
	
	.wrapper section.group-5 .container .m-img.tnd{
		margin-top: 6%
	}
	
	.wrapper section.group-5 .container .btn-link{
		margin-top: 5%;
	}
	
	.wrapper section.group-6 .container ul{
		margin-top: 6%;
	}
	
	.wrapper section.group-6 .container li{
		padding: 0 10px;
	}
	
	.wrapper section.group-6 .container li a img{
		width: 303px;
	}
	
	.wrapper section.group-6 .container .btn-link{
		margin-top: 7%;
	}
}

@media(max-width: 991px){
	.wrapper section .container{
		padding: 10% 0;
	}
    
    .wrapper section.group-7 .container{
        padding: 5% 0;
    }
	
	.wrapper section.group-6 .container li a img{
		width: 230px;
	}
}

@media(max-width: 767px){
	.wrapper section.group-1 .container{
		padding: 25px 0 0;
	}	
	
	.wrapper section .container .btn-link img{
		width: 40%;
	}
	
	.wrapper section.group-4 .container:before,
	.wrapper section.group-4 .container:after{
		display: none;
	}
	
	.wrapper section.group-6 .container li{
		float: none;
		width: 100%;
		margin-bottom: 3%;
		padding:0 5%;
		text-align: center;
	}
	
	.wrapper section.group-6 .container li a img{
		width: 100%;
	}
    
    .wrapper .close-event{
        width: 60px;
        height: 60px;
    }
}

@media(max-width: 681px){
	.wrapper section.group-5 .container .youtube{
		padding-bottom: 53%;
	}
}
