@charset "UTF-8";
/* CSS Document */

@font-face {
    font-family: Montserrat Semibold;
    src: url('../font/Montserrat-SemiBold.ttf');
	font-weight: 300;
}

@font-face {
    font-family: Montserrat Regular;
    src: url('../font/Montserrat-Regular.ttf');
	font-weight: 200;
}

@font-face {
    font-family: Montserrat Light;
    src: url('../font/Montserrat-Light.ttf');
	font-weight: 100;
}

.page {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: auto;
}


.intro-wrapper {
	width: 100%;
	min-height: 300vh;
	display: flex;
}

.right-side {
	min-height: 300vh;
	top: 0;
	bottom: 0;
}

.box-wrapper {

	display: flex;
	align-items: center;
	justify-content: center;
}

.box {
	width: 50vw;
	height: 100vh;
	transition: background 0.5s;
}
.box img{
	width: 50vw;
	height: 100vh;
	object-fit: cover;
}
.box video{
	width: 50vw;
	height: 100vh;
	object-fit: cover;
}

.text-wrapper {
	margin: 0 20%;
	position: sticky;
	top: 20vh;
	bottom: 0;
	transition: transform 0.8s ease;
}

.text-wrapper h1{
	margin-bottom: 20px;
	font-size: 24px;
	font-family: 'Montserrat SemiBold';
}
	
.text-wrapper p {
	opacity: 1;
	font-family: montserrat light;
	transition: opacity 0.8s ease-in-out;
	font-size: 12px;
	line-height: 24px;
	margin-bottom: 20px;
	text-align: justify;
}

p.hidden {
	opacity: 0;
}

	.step-1 {
		transform: translateY(5%);
	}

	.step-2 {
		transform: translateY(0%);
	}

	.step-3 {
		transform: translateY(-5%);
	}
