/* //////// RELAXX ////////// */

div.wrap_rellax {
	position: relative;
	border: 2px dotted red;
}

.rellax {
	position: relative;
}


/* /////// AOS Test //////// */

div.test-aos {
	position: relative;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;  
	width: 80%;
	height: 400px;
	margin: 10px auto;
	padding: 10px;

	background: rgba(0,0,0,.2);	
}


div.aos-test {
	position: relative;
	background: rgba(0,0,0,.3);
}
.aos-test .item {
	width: 200px;
	margin: 50px auto;
	max-height: 250px;
	padding: 75px 20px;
	background: #ccc;
	text-align: center;
	color: #FFF;
	font-size: 2em;
}
.aos-test .item  span {
	display: block;
	font-size: 1rem;
}
.aos-test .item--primary {
	position: fixed;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 20px;
	background: green;
}
.aos-test .item--secondary {
	position: fixed;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 20px;
	background: red;
}

