* {
	margin: auto;
	box-sizing: border-box;
	font-family: "Noto Sans KR", Sans-serif;
	-webkit-tap-highlight-color: transparent;
	hyphens: manual;
	word-wrap: break-word;
}
body {
	direction: ltr;
	font-weight: 300;
    line-height: 1.618;
    font-size: 14px;
}
div {
	word-break: keep-all !important;
}

img {
	visibility: hidden;
	animation: imageView .3s forwards;
	animation-delay: .5s;
}

/* p { */
/* 	margin: 0 0 10px; */
/* 	display: block; */
/* 	margin-block-start: 1em; */
/*     margin-block-end: 1em; */
/*     margin-inline-start: 0px; */
/*     margin-inline-end: 0px; */
/* 	font-size: inherit; */
/* } */

strong {
	font-weight: bold;
}

.section {
	margin: 70px 0;
	width: 100%;
}

/* slide */
.slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 700px;
	/* flex-basis: 100%; */
	min-width: 100%;
	min-height: 100%;
	background-image: linear-gradient( rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) ), url(../images/main_image.jpg);
	background-color: rgba(0, 0, 0, 0.15);
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	word-wrap: break-word;
	margin-bottom: 15px;
	overflow: hidden;
}

.slide-content {
	display: flex;
	margin: auto;
	overflow: auto;
	background: rgba(73, 95, 118, 0.4);
	/* padding: 20px 10px; */
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 45%;
}

.slide-content-heading {
	text-align: center;
	margin-top: 10px;
	margin-bottom: 15px;
	color: #FFFFFF;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	float: left;
	width: 50%;
	font-size: 72px;
	font-weight: bold;
	font-family: "Noto Serif", Sans-serif;
}

.slide-constent-description {
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	float: left;
	width: 50%;
/* 	padding-top: 20px; */
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5em;
	font-family: "Noto Sans KR", Sans-serif;
	text-align: left;
}

/* column */

.column {
	width: 100%;
}

.column-row {
	display: flex;
	justify-content: center;
	max-width: 1140px;
	width: 100%;
	margin: 0 auto;
	flex-wrap: wrap;
} 

.row-item {
	display: flex;
	flex-wrap: wrap;
	margin: 10px;
	border: 1px solid #e8e8e8;
	width: 208px;
	height: 350px;
}

.item-image {
	display: inline-block;
	vertical-align: middle;
	height: 137px;
	margin: 0;
	max-width: 100%;
	border: none;
	flex-grow: 2;
	
}

.item-text {
	margin: 0;
	padding-left: 10px;
	flex-grow: 2;
	height: 155px;
}

.item-text p {
	font-size: 16px;
}

.item-text strong {
	font-size: 18px;
}


.item-text p span {
	font-size: 16px;
	color: #999;
}

.item-link {
	text-align: right;
	flex-grow: 1;
	margin: 0 3px 0 3px;

}

.item-link a{
	display: inline;
	color: #0070c0;
}

.infomain{
	background-color: #F8FBFF;
}

.mainBottom{
	display: flex;
	justify-content: space-around;
	margin: 0 auto;
	padding: 80px 50px;
	width: 100%;
}

.info, .map{
	margin: 0;
}

.info{
	animation-name: fadeInLeft;
	animation-duration: 3s;
}

.info .infoTop{
	margin-bottom: 20px;
}

.info .infoTop h3{
	color: #000000;
    font-size: 35px;
    line-height: 1.4em;
    font-weight: 700;
}

.info .infomiddle{
	margin-bottom: 40px;
}

.info .infomiddle h3{
	color: #0070C0;
    font-size: 35px;
    line-height: 1.2em;
    font-weight: 400;
}

.info .infobottom p{
	color: #000;
    font-size: 17px;
    line-height: 1.2em;
}

.map{
	width: 700px;
	height: 370px;
	animation-name: fadeInRight;
	animation-duration: 3s;
}


/* media */
@media ( max-width : 767px) {
	.slide {
		height: 420px;
	}
	.slide-content {
		max-width: 90%;
		font-size: 15px;
		margin-bottom: 15px;
	}
	.slide-content-heading {
		font-size: 46px;
		line-height: 1;
	}
}

@media ( max-width : 1024px) {
	.slide {
		height: 600px;
	}
	.slide-content {
		max-width: 85%;
	}
	.slide-content-heading {
		font-size: 55px;
	}
	.slide-constent-description {
		font-size: 18px;
	}
}

@media (min-width: 768px) {
	.widget-wrap {
		width: 25%;
	}
	
	/* .row-item {
		width: 25%;
	} */
	
}

@media screen and (min-width: 415px) and (max-width: 768px){
	.slide-content-heading {
		width: 37%;
	}
	.slide-constent-description {
		width: 63%;
    	padding-top: 10px;
	}
}

/* animation */
.animated {
	animation-name: fadeInUp;
	animation-duration: 2s;
	margin: 80px auto;
	width: 100%;
}

@keyframes imageView {
	from {
  		visibility:hidden;
 	}
  	to {
  		visibility:visible;
  	}
}


@keyframes fadeInUp {
	0% {
	    opacity: 0;
	    transform: translate3d(0,100%,0);
	}
	100% {
	    opacity: 1;
	    transform: none;
	}
}

@keyframes fadeInLeft {
	0% {
	    opacity: 0;
	    transform: translate3d(-100%,0,0);
	}
	100% {
	    opacity: 1;
	    transform: none;
	}
}

@keyframes fadeInRight {
	0% {
	    opacity: 0;
	    transform: translate3d(100%,0,0);
	}
	100% {
	    opacity: 1;
	    transform: none;
	}
}