.landing_page{
	position: relative;
	z-index: 201;
	display: flex;
	background: #fff;
	height: 100vh;
}
.landing_page .text{
	cursor: pointer;
	width: 50%;
	height: 100%;
	background: #fff;
	transition: all 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
}
.landing_page .text a{
	z-index: 1;
	position: absolute;
	top:0; left: 0;
	width: 100%;
	height: 100%;
}
.landing_page .text .off,
.landing_page .text .on{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}
.landing_page .text1 .off{
	font-family: 'Montserrat';
	font-size: 40px;
	font-weight: 500;
	letter-spacing: -0.04em;
	transform: translateY(-50%) scaleY(1.1);
}
.landing_page .text2 .off{
	font-family: 'Questrial';
	font-size: 45px;
	font-weight: 400;
	line-height: 46px;
	letter-spacing: -0.07em;
}
.landing_page .text .off{
	opacity: 1;
}
.landing_page .text .on{
	position: relative;
	font-size: 32px;
	font-weight: 500;
	opacity: 0;
}
.landing_page .text1 .on{
	color: #fff;
}
.landing_page .text1 .off,
.landing_page .text1 .on{
	right: 9.4rem;
	text-align: right;
}
.landing_page .text2 .off,
.landing_page .text2 .on{
	left: 9.4rem;
}
.landing_page .text2 .on{
	top: 49.7%;
}
.landing_page .text .on .desc{
	position: absolute;
	top: 10rem;
	width: 100%;
	font-family: 'Archivo';
	font-size: 24px;
	font-weight: 500;
}
.landing_page .text1 .on .desc{
	right: 0;
	color: #C0DF16;
}
.landing_page .text2 .on .desc{
	left: 0;
}

@media (min-width:992px) {
	/* hover */
	.landing_page .text1:hover{
		background: #000;
	}
	.landing_page .text2:hover{
		background: #98A6C6;
	}
	.landing_page .text:hover p.off{
		opacity: 0;
	}
	.landing_page .text:hover p.on{
		opacity: 1;
	}
}
@media (max-width:991.98px) {
	/* click */
	.landing_page .text a{
		top: -10000px;
	}
	.landing_page .text.clicked a{
		top: 0;
		transition-delay: .5s;
	}
	.landing_page .text1.clicked{
		background: #000;
	}
	.landing_page .text2.clicked{
		background: #98A6C6;
	}
	.landing_page .text.clicked p.off{
		opacity: 0;
	}
	.landing_page .text.clicked p.on{
		opacity: 1;
	}
}
@media (max-width:767.98px) {
	.landing_page{
		display: block;
	}
	.landing_page .text{
		width: 100%;
		height: 50%;
	}
	.landing_page .text .off, 
	.landing_page .text .on {
		text-align: center;
		left: 50%;
		right: unset;
		transform: translate(-50%,-50%);
	}
	.landing_page .text1 .off{
		transform: translate(-50%,-50%) scaleY(1.1);
	}
	.landing_page .text2 .off{
		font-size: 40px;
		line-height: 45px;
		white-space: nowrap;
	}
	.landing_page .text .on{
		font-size: 28px;
	}
	.landing_page .text .on .desc{
		top: calc(4rem + 30px);
		font-size: 20px;
    font-weight: 400;
	}
}

