#intro{
	position:relative;
	height:calc(100vh - 24px);
	border-radius:var(--jb-radius-form);
	overflow:hidden;
}

#intro .bg-video_content {
	position:absolute;
	left:0;
	top:0;
	height:calc(100vh - 24px);
  width: 100%;
  object-fit: cover;
	z-index:1;
}

#intro .content {
	position:relative;
	width:100%;
	height:calc(100vh - 24px);
	background-color:rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;	
	z-index:2;
}

#intro .content #nature{
	position: relative;
	font-size:3rem;
	font-family:'Newsreader', serif;
	font-weight:600;
	color:var(--jb-white);
  white-space: nowrap;	
	overflow:hidden;
}

#intro .content #nature span{
	font-family:'Newsreader', serif;
	opacity: 0; /* 초기 상태: 투명 */
	display: inline-block;
	animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
	to { opacity: 1; }
}

#intro .content .text-blocker {
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
}

#intro .content .reveal {
  transition: all 1s linear;
  width: 0;
  right: 0;
}

#intro .content .company{
	position:absolute;
	bottom:0;
	width:100%;
	font-size:4rem;
	font-weight:600;
	color:var(--jb-white);
	text-align:center
}

/*@media only screen and (max-device-width: 767px) {*/
@media only screen and (max-width: 767px) {
	#intro .content #nature{
		font-size:1rem;
	}

	#intro .content .company{
		font-size:2rem;
	}	
}