.animated-section{
	width: 100%;
	height: 30vw;
	display: block;
	position: relative;
	margin: 0;
}

#section-2 {
	height: 35em;
	width: 100%;
	padding-bottom: 2vw;
}

#section-2 h3{
	margin: 0;
	color: black;
	font-size: 2.2vw;
	font-weight: 300;
	letter-spacing: 0.1em;
}

#section-2 img{
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
}

.animated-box-left{
	width: 50vw;
	height: 10vw;
	margin: auto;
	position: absolute;
  	top: 0; left: 0; bottom: 0; right: 0;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 0.3vw;
	border: 0.18vw solid #BABABA;
	display: flex;
	text-align: center;
	align-items: center;
}

.animated-box div {
	width: 50vw;
	font-style: italic;
}
.animated-box-right{
	width: 50vw;
	height: 10vw;
	margin: auto;
	position: absolute;
  	top: 0; left: 0; bottom: 0; right: 0;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 0.3vw;
	border: 0.18vw solid #BABABA;
	text-align: center;
	display: flex;
	align-items: center;
}

.animated-split-line{
	margin: 0;
	width: 100%;
	color: #d1d1d1;
}


#arrows {
	width: 2vw;
	height: 4vw;
	position:fixed;
	right: 5vw;
	top: 50vh;
	z-index: 100;
	display: inline;
	float: left;
	opacity: 0.8;
}

.animated-box {
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
	-moz-transition: -moz-transform 0.5s, opacity 0.5s;
	transition: transform 0.5s, opacity 0.5s;
	
}

.animated-box:before,
.animated-box:after {
	content: " ";
	display: table;
}

.animated-box:after {
	clear: both;
}

.animated-init .animated-box {
	opacity: 0;
}

.animated-init .animated-box-left {
	-webkit-transform: translateX(-10vw);
	-moz-transform: translateX(-10vw);
	transform: translateX(-10vw);
}

.animated-init .animated-box-right {
	-webkit-transform: translateX(10vw);
	-moz-transform: translateX(10vw);
	transform: translateX(10vw);
}

.animated-section.animated-animate .animated-box-left,
.animated-section.animated-animate .animated-box-right {
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
	opacity: 1;
}


@media screen and (max-width: 73.5em) {
	.cbp-so-scroller {
		font-size: 65%;
	}

	.animated-section h2 {
		margin: 0;
	}

	.animated-box img {
		max-width: 70%;
	}


	.animated-box div {
		width: 100%;

	}

	#arrows {
		top: 70vh;
	}
}

@media screen and (max-width: 41.125em) {
	.animated-box {
		float: none;
		width: 70%;
	}

	.animated-box img {
		max-width: 70%;
	}

	.animated-box div {
		width: 100%;
	}
	
	#arrows {
		top: 70vh;
	}

}

