/* Scroll Parallax */

.scroll-parallax
{
	display: flex;
	height: 80vh;
	justify-content: space-around;
	align-items: center;
}

.scroll-parallax .right-column
{
	background-color: white;
}

.scroll-parallax .right-column .scroll-item
{
	display: flex;
	justify-content: left;
	align-items: center;
}

.scroll-parallax .left-column,
.scroll-parallax .right-column
{
	position: relative;
	overflow: hidden;
	/* width: 50%; */
	height: 80vh;
}

.scroll-parallax .left-column .parallax-item
{
	transition: 0.3s linear;
	/* background-image: url("https://3371202.fs1.hubspotusercontent-na1.net/hubfs/3371202/source/assets/images/illustrations/mentoring/mentoring-program.png"); */
	background-repeat: no-repeat;
	background-position: top center;
	background-size: auto 70%;
	height: 240vh;
}

.scroll-parallax .scroll-item,
.scroll-parallax .parallax-item
{
	position: relative;
	z-index: 1;
	width: 100%;
	height: 80vh;
	background-color: transparent;
	overflow: hidden;
}


/* TODO: Identify */
.scroll-parallax .right-column .scroll-item > div
{
	padding: 4rem;
}

@media (max-width: 1199px)
{
	.scroll-parallax
	{
		height: 100vh;
	}

	/* .scroll-parallax.show-lg,
	.scroll-parallax.show-lg .scroller
	{
		height: 0;
		display: none !important;
	} */

	.scroll-parallax .left-column
	{
		width: 300vw !important;
		height: 40vh;
	}

	.scroll-parallax .left-column .parallax-item
	{
		background-size: 70% auto;
		background-position: center left;
		width: 100%;
		height: 100%;
	}

	.scroll-parallax .right-column
	{
		display: flex;
		width: 300vw !important;
	}

	.scroll-parallax .right-column,
	.scroll-parallax .right-column .scroll-item
	{
		height: 60vh;
		justify-content: center;
	}

	TODO: Identify
	.scroll-parallax .right-column .scroll-item > div
	{
		padding: 2rem;
	}
}