body#intro {
	overflow: hidden;
}
section#intro {
	background-color: #0D0E0F;
	width: 100vw;
	height: 100vh;
	padding: 0;
	position: relative;
	overflow: hidden;
}
section#intro .intro-head,
section#intro .intro-body,
section#intro .intro-effect {
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: fit-content;
	max-height: 100vh;
	overflow: hidden;
/*	border: 1px dashed gray;*/
}

section#intro .intro-head {
	padding: 40px 6vw;
}
section#intro .intro-head img {
	width: 230px;
}


/**/
section#intro .intro-body {
    transform: scale(0.93);
    transform-origin: center bottom;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
    animation: on 1.5s linear 1s forwards;
}
  @keyframes on {
    from { opacity: 0; }
    to { opacity: 1; }
  }

section#intro .intro-body * { color: #fff; }
/* 소제목 */
section#intro p {
	color: #f9f9f9;
	font-size: 1.5vw;
	letter-spacing: 0.1em;
	margin-bottom: 0.5em;
}
/* 키워드 */
section#intro h1 {
	font-size: 4.75vw;
	letter-spacing: -0.07em;
	font-weight: 800;
	text-shadow: 0 3px 44px rgba(101, 183, 255, 1.0);
}
/* 카운터 */
section#intro div.counter {
	font-size: 1.5em;
	margin: 2em auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: 500;
}
section#intro div.counter h2 {
	font-weight: 900;
	font-size: 3em;
	letter-spacing: -0.08em;
	color: #C5F6E5;
	text-shadow: 0 1px 30px rgba(112, 231, 255, .62);
}




/* 버튼 */
section#intro a.btn-cta {
	font-size: 1.8em;
	padding: 0.9em 4em;
	font-weight: 700;
	border: 2px solid #fff;
	border-radius: 3em;
	display: flex;
	position: relative;
	overflow: hidden;
	background-size: auto 120%;
	box-shadow: 0 0 30px -5px rgba(101, 229, 255, 0.0);
	transition: all ease 0.6s;
}
section#intro a.btn-cta:hover {
	box-shadow: 0 0 30px -1px rgba(101, 229, 255, .8);
}
section#intro a.btn-cta::before {
	content: '';
	position: absolute;
	aspect-ratio: 7 / 1;
	height: 6em;
	left: 50%;
	top: 60%;
	transform: translate(-50%, -50%);
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
	background-image: url('./img/btn-cta-light.png');
	transition: all ease 0.6s;
	opacity: 1;
}
section#intro a.btn-cta:hover::before {
	opacity: 0;
}




/* 이펙트 */
section#intro .intro-effect {
	height: 100vh;
	opacity: 0;
    animation: on 1s linear .5s forwards;
}
section#intro .intro-effect > div.img {
    position: fixed;
    /*width: 138vw;
    left: -18vw;
    top: -42vw;*/
    width: 130%;
    left: -15%;
    top: -75%;

	aspect-ratio: 1 / 1;
	background-image: url(./img/effect-storm.webp);
	background-repeat: no-repeat;
	background-size: 105%;
	background-position: center;
    animation: rotate360 40s linear infinite;
    transform-origin: center;
    transition: all ease 0.5s;
}

  @keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
section#intro .intro-effect.pause > div.img {
	opacity: 0;
	background-size: 130%;
}






























html { margin-top:0 !important }
#wpadminbar { display:none !important; }
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    MEDIA QUERY
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
@media (min-width: 1920px) {
    /* 넓은화면일때 */
  }

/*---PC (wide)-----------------------------------------------------------*/
@media (max-width: 1700px) {
	section#intro {
		width: 100vw;
		height: 100vh;
		padding: 0;
		position: relative;
		overflow: hidden;
	}
	/* 이펙트 */
	section#intro .intro-effect { height: 150vw; }
	section#intro .intro-effect > div.img {
        width: 158vw;
        left: -28vw;
        top: -50%;
	}
}

/*---태블릿 ~ PC -----------------------------------------------------------*/
@media (max-width: 1400px) {
	section#intro .intro-effect > div.img {
        left: -30%;
        top: -10%;
	}


}

/*---모바일 ----------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	section#intro .intro-head,
	section#intro .intro-body,
	section#intro .intro-effect {
		position: absolute;
		left: 0;
		top: 0;
		width: 100vw;
		height: fit-content;
		max-height: 100vh;
		overflow: hidden;
	}
	section#intro .intro-head {
		padding: 40px 6vw;
		text-align: center;
	}
	section#intro .intro-head img {
		width: 40vw;
	}


	/**/
	section#intro .intro-body {
		height: 100vh;
    transform: scale(1);
    transform-origin: center bottom;
	}
	/* 소제목 */
	section#intro p {
		font-size: 4vw;
	}
	/* 키워드 */
	section#intro h1 {
		font-size:9vw;
		text-shadow: 0 3px 1em rgba(101, 183, 255, 1.0);
	}
	/* 카운터 */
	section#intro div.counter { font-size: 5vw; }
	section#intro div.counter h2 {
		font-size: 12vw;
		text-shadow: 0 1px 0.5em rgba(112, 231, 255, .62);
	}




	/* 버튼 */
	section#intro a.btn-cta {
		font-size: 1.5em;
		padding: 0.9em;
		width: 60%;
		margin: 0 auto;
		text-align: center;
		justify-content: center;
	}

	/* 이펙트 */
	section#intro .intro-effect { height: 100vw; }
	section#intro .intro-effect > div.img {
        width: 130vh;
        left: -37vh;
        top: -16vh;
	}
}