@charset "utf-8";


.main_slider {
	display: block;
	clear: both;
	position: relative;
	width: 100%;
	height: 800px;
}
.main_slider .slide {
	width: 100%;
	height: 800px;
	display:block;
}

/* 슬라이드 후 이미지 크기 변경 */
.main_slider .slide img {
	width: 100%;
	height: 800px;
	object-fit: cover;
/*	opacity: 0.7;*/
}
.main_slider .slide .img_bg {
	width: 100%;
	height: 800px;
	position:absolute;
	left:0;
	top:0;
	background:rgba(0,0,0,0.0);
}

/*
.slick-current img {
	animation: moveimg 3s linear 0s  alternate;
}
@keyframes moveimg {
    from {transform: scale(1.1)}
    to {transform:none}
}
*/

/* 슬라이드 후 이미지 크기 변경 */

.main_slider .txt_box {
	margin: 0;
	width: 70%;
	color: #ffffff;
	font-size: 30px;
	line-height: 40px;
	position:absolute;
	top:50%;
	left:10%;
	transform: translate(0, -50%);
	z-index:9;
	text-shadow:2px 2px 2px rgba(0,0,0,0.5);
}
.main_slider .txt_box span, .main_slider .txt_box strong {
	display:block;
}
.main_slider .txt_box .txt_big {
	margin-bottom:24px;
	font-weight: bold;
	font-size: 60px;
	line-height: 90px;
	color:#fff;
	text-shadow:2px 2px 2px rgba(0,0,0,0.5);
}

.main_slider .ico_more {
	content: "";
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
	margin: 140px 0px 0px 380px;
	background: url("./img/ico_more.png") no-repeat 0 0;
	background-size: 100%;
	text-align: center;
	text-indent: -2000em;
}

.main_slider .ico_player {
	content: "";
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
	margin: 140px 0px 0px 380px;
	background: url("./img/ico_player.png") no-repeat 0 0;
	background-size: 100%;
	text-align: center;
	text-indent: -2000em;
}

.main_slider .slick-dots {
	position: absolute;
	left: 50%;
	bottom: 100px;
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	transform:translateX(-50%);
	width: 100%;
	text-align: center;
}
.main_slider .slick-dots li {
	display: inline-block;
	margin-right: 30px;
}
.main_slider .slick-dots li:last-child {
	margin-right: 0;
}
.main_slider .slick-dots li button {
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 25px;
	opacity: 0.5;
	font-size: 1px;
	text-indent: -2000em;
	overflow: hidden;
	vertical-align: middle;
}
.main_slider .slick-dots li.slick-active button {
	width: 14px;
	height: 14px;
	background: none;
	border: 3px solid #fff;
	opacity: 1;
}

.main_slider button {
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	outline: none;
}

.main_slider .btn_arrow {
	position: absolute;
	top: 50%;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform: translateY(-50%);
	font-size: 2em;
	color: #fff;
	opacity: 0.5;
	z-index: 1;
}
.main_slider .btn_arrow.btn_prev {
	left: 2.5%;
	text-align: right;
}
.main_slider .btn_arrow.btn_next {
	right: 2.5%;
	text-align: left;
}
.main_slider .btn_arrow.slick-disabled {
	opacity:0.3;
}
.main_slider .btn_arrow:hover {
	opacity:1;
}


@media (max-width:992px) {
.main_slider .txt_box {
	width: 90%;
	font-size: 18px;
	line-height: 1.3;
}

.main_slider .txt_box .txt_big {
	margin-bottom:14px;
	font-size: 30px;
	line-height: 30px;
}

	.main_slider .ico_more {
		width: 72px;
		height: 72px
	}
}
@media (max-width:767px) {
	
	.main_slider {
		height: 500px;
	}
	.main_slider .slide {
		height: 500px;
	}

	/* 슬라이드 후 이미지 크기 변경 */
	.main_slider .slide img {
		height: 500px;
	}

	.main_slider .ico_more {
		display:none;
		width:45px;
		height:45px;
	}

}