.cbp-so-scroller {
	margin-top: 3em;
	overflow: hidden;
}

.cbp-so-section {
	margin-bottom: 3.5em;
	
}

/* Clear floats of children */
.cbp-so-section:before,
.cbp-so-section:after {
	content: " ";
	display: table;
}

.cbp-so-section:after {
	clear: both;
}

/* Text styling */
.cbp-so-section h2 {
	font-size: 2em;
	font-weight: lighter;
	font-family: "Hand_Of_Sean_Demo";
	margin: 8px 0 25px 0;
}

.cbp-so-section p {
	height: 180px;
	font-size: 1em;
	font-weight: lighter;
}

/* Sides */
.cbp-so-side {
	width: 50%;
	float: left;
	margin: 0;
	border-bottom: 2px dashed white;
	padding: 0em 4% 3em 4%;
	overflow: hidden;
	min-height: 12em;
	-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;
}

/* Clear floats of children */
.cbp-so-side:before,
.cbp-so-side:after {
	content: " ";
	display: table;
}

.cbp-so-side:after {
	clear: both;
}

.cbp-so-side-right {
	text-align: left;
}

.cbp-so-side-left {
	text-align: left;
	margin-bottom: 10px;
}

.cbp-so-side-right img { /* Aqui puedeo meter los MARGIN TOP */
	margin-right: 15px;

}

.cbp-so-side-left img {
	margin-right: 15px;
	
}

/* Initial state (hidden or anything else) */
.cbp-so-init .cbp-so-side {
	opacity: 0;
}

.cbp-so-init .cbp-so-side-left {
	-webkit-transform: translateX(-80px);
	-moz-transform: translateX(-80px);
	transform: translateX(-80px);
}

.cbp-so-init .cbp-so-side-right {
	-webkit-transform: translateX(80px);
	-moz-transform: translateX(80px);
	transform: translateX(80px);
}

/* Animated state */
/* add you final states (transition) or your effects (animations) for each side */
.cbp-so-section.cbp-so-animate .cbp-so-side-left,
.cbp-so-section.cbp-so-animate .cbp-so-side-right {
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
	opacity: 1;
}

/* Example media queries */

@media (min-width: 760px) and (max-width: 1139px) {
	.cbp-so-scroller {
		margin-top: 0em;
	}

	.cbp-so-section h2 {
		font-size: 1.3em;
		margin: 0;
	}

	.cbp-so-side img {
		max-width: 100%;
	}

	.cbp-so-section p {
		font-size: 0.95em;
		font-weight: lighter;}

}

@media (min-width: 320px) and (max-width: 760px) {
	.cbp-so-scroller {
		margin-top: 1em;
	}

	.cbp-so-section h2 {
		font-size: 1.2em;
		margin: 0;}

	.cbp-so-side {
		float: none;
		width: 100%;
	}

	.cbp-so-side img {
		max-width: 100%;
	}

	.cbp-so-section p {
	height: auto;
	font-size: 0.95em;
	font-weight: lighter;}

	.cbp-so-side-left {
	margin-bottom: 40px;
	}

}

