.stickyContainer {
	position: relative;
	width: 100%;
	height: 200vh;
	margin-top: 0;
	/* 	background-color: rgba(208, 71, 71, 0.51); */
	z-index: 900;
	-webkit-overflow-scrolling: touch;
	color: white;
}

.stickyContainer .text {
  text-align: center;
  margin: auto;
  box-sizing: border-box;
  padding: 20px;
}

.stickyContainer .content .sentence {
	max-width: 800px;
	margin: auto;
}

.stickyBg {
	position: -webkit-sticky;
	/* Safari */
	position: sticky;
	width: 100%;
	height: 100vh;
	top: 0;
	/* means when top=0 sticky enabled */
	margin-top: 0;
	/* starting position */
	text-align: center;
	font-size: 100px;
	color: white;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 900;
	overflow: hidden;
}

.stickyPageUnit {
	position: -webkit-sticky;
	position: sticky;
	width: 100%;
	top: 0;
	margin-top: 0;
	height: 100vh;
	text-align: center;
	/* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 1)); */
	justify-content: center;
	align-items: center;
	z-index: 900;
}

.stickyPageUnit .content {
	box-sizing: border-box;
	padding: 20px;
}

.dotCover {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-repeat: repeat;
	background-size: 6px;
	opacity: 0.2;
}

.overBg {
	position: absolute;
	width: 100%;
	height: 100vh;
	top: 0;
	/* means when top=0 sticky enabled */
	margin-top: 0;
	/* starting position */
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.overBg img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.overBg svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	/* object-fit: contain; */
}

/* Media query for devices in portrait orientation, e.g., iPhones */
@media only screen and (max-width: 768px) and (orientation: portrait) {
	.overBg img {
		transform: scale(1.4);
		/* Scale the image by 25% */
	}
}