/* CSS Document */

section {
	position: relative;
}


#weCanDo .bgImage {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}

#weMustDo .bgImage {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	transform:perspective(500px) translateZ(-1000px);
	transition: transform 1s;
}

#weMustDo.pushUp .bgImage {
	transform: perspective(500px) translateZ(0);
	transition: transform 1s;
}

.area01::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	background: url("../content/images/lesson03.jpg") center / cover no-repeat;
	z-index: -1;
}

.bgImage {
	position: sticky;
	top: 0;
	left: 0;
	z-index: -1;
}

.bgImage img {
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	object-position: center;
}

.titleBox {
	position: absolute;
	top: 250px;
	left: 30px;
	z-index: 20;
}


.titleBox h2 {
	font-size: 36px;
	padding:0 0 25px 0;
	font-weight: bold;
	letter-spacing: 0.33em;
	position: relative;
	z-index: 20;
}

.titleBox p {
	padding: 20px 10px;
	font-size: 18px;
	letter-spacing: 0.2em;
	font-weight: 600;
	position: relative;
	z-index: 20;
}

.downArrow {
	height: 20px;
	width: 40px;
	margin: 30px 0 0 120px;
	animation: blinkArrow 1s alternate infinite ;
}

@keyframes blinkArrow {
	from {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}



.textBox {
	min-height: 150vh;
	position:relative;
	z-index: 20;
}

.textArea {
	max-width: 600px;
	padding: 50px 20px;
	background-color: rgba(255,255,255,0.7);
	position: relative;
	z-index: 25;
}

@media screen and (min-width:641px) {
	.textArea {
		margin-left: 20px;
	}
}

.textArea h3 {
	font-size: 24px;
	margin-bottom: 48px;
	font-weight: bold;
	letter-spacing: 0.25em;
	position: relative;
	z-index: 20;
}

.textArea p {
	font-size: 16px;
	margin-bottom: 36px;
	letter-spacing: 0.2em;
	font-weight: 300;
	position: relative;
	z-index: 20;
	line-height: 2;
}
