@charset "euc-kr";
.mp4_bg01 {
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat;
	background-attachment: fixed;
	-webkit-background-size: 100%;
	background-size: 100%;
	background-position: 50% 50%;
	display: block;
}


.mp4_bg01 > video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	-webkit-transition: 1s opacity;
	transition: 1s opacity;
}
.stopfade { 
   opacity: .5;
}

#mp4 {
	background: rgba(0,0,0,0.3);
	color: white;
	padding: 5% 2%;
	width: 80%;
	margin: auto;
	text-align: center;
	text-decoration: none;
}
#mp4 button { 
  display: block;
  width: 80%;
  padding: .4rem;
  border: none; 
  margin: 1rem auto; 
  font-size: 1.3rem;
  background: rgba(255,255,255,0.23);
  color: #fff;
  border-radius: 3px; 
  cursor: pointer;
  transition: .3s background;
}
#mp4 button:hover { 
   background: rgba(0,0,0,0.5);
}


@media (max-width: 767px) { .mp4_bg01 {
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-image: url(../../../images/banner_bg01.jpg);
}
.mp4_bg01 > video { display: none; }
}


