/* ==== Google font ==== */
@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,300,700,100);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,700,600);
@import url('font-awesome.css');

/* ==== overwrite bootstrap standard ==== */
@import url('overwrite.css');
@import url('animate.css');

/*************************
*******Typography******
**************************/

.overflow-div {
	max-width: 100%;
	position: relative;
	overflow: hidden;
}

body {
	background: #fff;
	font-family: 'Futura-Bold', arial;
	color: #696969;
	line-height: 1.9em;
	overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
	font-family: 'Futura-Bold', arial;
	color: #000;
}

h1 {
	font-size: 36px;
	color: #fff;
}

h2 {
	font-size: 20px;
}

h3 {
	font-size: 16px;
	color: #787878;
	font-weight: 400;
	line-height: 24px;
}

h4 {
	font-size: 16px;
}

h6 {
	font-size: 25px;
	color: #787878;
	margin-bottom: 0;
	padding-bottom: 0;
}

a {
	color: c;
	-webkit-transition: color 300ms, background-color 300ms;
	-moz-transition: color 300ms, background-color 300ms;
	-o-transition: color 300ms, background-color 300ms;
	transition: color 300ms, background-color 300ms;
}

	a:hover, a:focus {
		color: rgba(0,0,0,.85);
		text-decoration: none;
	}

hr {
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #fff;
}

.btn-primary {
	margin-top: 30px;
}

.btn {
	display: inline-block;
	padding: 10px 20px;
	margin-bottom: 0;
	margin-top: 80%;
	font-size: 16px;
	font-weight: normal;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	/*vertical-align: middle;*/
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
	background-color: #213967;
}

	.btn:hover {
		color: #fff;
		background-color: #213967;
		border-color: #213967;
	}

.social-bar {
	position: fixed;
	top: 76%;
	display: flex;
	flex-direction: column;
	z-index: 100;
	width: 5.5%;
}

	.social-bar a {
		/*background: #b38d01; #000059*/
		border-radius: 5%;
		box-shadow: -10px 0px 0px 0px #b38d01;
		background: #000059;
		color: #fff;
		font-size: 180%;
		text-align: center;
		padding: 10px 2px 8px 2px;
		transform: rotate(-90deg);
		-webkit-transform: rotate(-90deg);
		-moz-transform: rotate(-90deg);
		-o-transform: rotate(-90deg);
		margin-left: -65%;
		text-transform: uppercase;
		text-shadow: 5px 3px 5px black;
	}

		.social-bar a:hover {
			background: #b38d01;
			box-shadow: 0px 0px 0px 0px;
			color: #fff;
			-webkit-transition: color 300ms, background-color 300ms;
			-moz-transition: color 300ms, background-color 300ms;
			-o-transition: color 300ms, background-color 300ms;
			transition: color 300ms, background-color 300ms;
		}



.parpadea {
	animation-name: parpadeo;
	animation-duration: 2.0s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-name: parpadeo;
	-webkit-animation-duration: 2.0s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo {
	0% {
		opacity: 1.0;
	}

	50% {
		opacity: 0.0;
	}

	100% {
		opacity: 1.0;
	}
}

@-webkit-keyframes parpadeo {
	0% {
		opacity: 1.0;
	}

	50% {
		opacity: 0.0;
	}

	100% {
		opacity: 1.0;
	}
}

@keyframes parpadeo {
	0% {
		opacity: 1.0;
	}

	50% {
		opacity: 0.0;
	}

	100% {
		opacity: 1.0;
	}
}

@media screen and (max-width: 500px) {

	.social-bar {
		top: 80%;
		width: 20%;
	}

		.social-bar a {
			font-size: 110%;
			padding: 0px 10px 0px 10px;
			/* padding:7%;*/
			transform: rotate(-90deg);
			-webkit-transform: rotate(-90deg);
			-moz-transform: rotate(-90deg);
			-o-transform: rotate(-90deg);
			margin-left: -77%;
			text-align: center;
			box-shadow: 0px 0px 0px 0px;
		}
}

@media screen and (min-width:501px) and (max-width: 600px) {

	.social-bar {
		top: 80%;
		width: 12%;
	}

		.social-bar a {
			font-size: 120%;
			padding: 0px 10px 0px 10px;
			/* padding:7%;*/
			transform: rotate(-90deg);
			-webkit-transform: rotate(-90deg);
			-moz-transform: rotate(-90deg);
			-o-transform: rotate(-90deg);
			margin-left: -55%;
			text-align: center;
			box-shadow: 0px 0px 0px 0px;
		}
}


@media (orientation: landscape) and (min-width:601px) and (max-width:1024px) {
	.social-bar {
		top: 71%;
		width: 8%;
	}

		.social-bar a {
			font-size: 110%;
			padding: 1%;
			margin-left: -60%;
		}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	.social-bar {
		top: 77%;
		width: 5%;
	}

		.social-bar a {
			font-size: 120%;
			padding: 1%;
			margin-left: -55%;
		}
}

.body {
	background: white;
	margin-top: 2px;
	margin-bottom: -70%;
}

.closeModal {
	position: fixed;
	font-size: 25px;
	z-index: 2002;
	height: 50px;
	width: 40px;
	line-height: 40px;
	top: 10px;
	right: 15px;
	text-align: center;
	border: none;
	background: none;
	cursor: pointer;
}

.modalPreregistro {
	width: 100%;
	height: 103vh;
	background: rgba(0,0,0,0.8);
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	animation: modal 1s 3s forwards;
	visibility: hidden;
	opacity: 0;
	z-index: 2003;
}

.contenido {
	margin: 6.5% 15% 6% 15%;
	width: 70%;
	height: 70%;
	background: white;
	border-radius: 10px;
}

#cerrar {
	display: none;
}

	#cerrar + label {
		position: absolute;
		color: dimgrey;
		text-align: center;
		font-size: 20px;
		z-index: 2005;
		/*background: darkred;*/
		height: 40px;
		width: 40px;
		line-height: 40px;
		border-radius: 20%;
		right: 14.8%;
		top: 12.5%;
		cursor: pointer;
		animation: modal 1s 3s forwards;
		visibility: hidden;
		opacity: 0;
	}

	#cerrar:checked + label, #cerrar:checked ~ .modalPreregistro {
		display: none;
	}

@keyframes modal {
	100% {
		visibility: visible;
		opacity: 1;
	}
}

@media (max-width: 1000px) {
	.closeModal {
		right: 30px;
	}

	.modalPreregistro {
		height: 95vh;
	}

	.contenido {
		margin: 9.5% 7.5% 9.5% 7.5%;
		width: 85%;
		height: 85%;
	}

	#cerrar + label {
		right: 6.5%;
		top: 5.2%;
	}
}

@media (orientation: landscape) and (min-width:1001px) and (max-width:1024px) {
	.modalPreregistro {
		height: 140vh;
	}

	.contenido {
		margin: 8% 0% 8% 0%;
		width: 100%;
	}

	#cerrar + label {
		right: .5%;
		top: 10.5%;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	.modalPreregistro {
		height: 110vh;
	}

	.contenido {
		margin: 4% 5% 5% 5%;
		width: 100%;
		height: 80%;
	}

	#cerrar + label {
		right: 5%;
		top: 7.5%;
	}
}
/*************************
*******Header******
**************************/
.navbar-fixed-top .navbar-toggle .icon-bar {
	background-color: #fff;
}

.navbar > .container .navbar-brand {
	margin-left: 0;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.navbar-header a.navbar-brand {
	color: #fff;
	font-family: 'Roboto';
}

	.navbar-header a.navbar-brand:hover {
		color: #fff;
	}

.navbar {
	border-radius: 0;
	margin-bottom: 0;
	background: #213967;
	/*background: #2bb8ff;*/
	padding: 21px 0;
	padding-bottom: 0;
}

.navbar-nav {
	margin-top: 14px;
}

	.navbar-nav > li {
		margin-left: 10px;
		padding-bottom: 8px;
	}

.navbar-fixed-top .navbar-nav > li > a {
	padding: 5px 12px;
	margin: 0;
	border-radius: 3px;
	color: #fff;
	line-height: 24px;
	display: inline-block;
	font-weight: 500;
	font-size: 18px;
	font-family: 'Roboto';
}

@media (max-width: 1366px) {
	.navbar-fixed-top .navbar-nav > li > a {
		font-size: 12px;
	}
}


.navbar-fixed-top .navbar-nav > li > a:hover {
	background: #213967;
	color: #fff;
}

.navbar-fixed-top {
	border: none;
	background: #213967;
	opacity: 0.90;
}

	.navbar-fixed-top .navbar-brand {
		font-size: 36px;
		line-height: 50px;
		color: #fff;
	}

	.navbar-fixed-top .navbar-nav > .active > a,
	.navbar-fixed-top .navbar-nav > .active > a:hover,
	.navbar-fixed-top .navbar-nav > .active > a:focus,
	.navbar-fixed-top .navbar-nav > .open > a,
	.navbar-fixed-top .navbar-nav > .open > a:hover,
	.navbar-fixed-top .navbar-nav > .open > a:focus {
		background-color: #B38D01;
		color: #fff;
	}

.menu2 {
	margin-left: 10%;
	margin-right: 10%;
}


/******Whatsapp y Messenger****/
#app-whatsapp {
	position: fixed;
	right: 25px;
	bottom: -5px;
	width: 53px;
	z-index: 1000;
	display: none;
}

	#app-whatsapp i {
		color: #0bb340;
	}

#app-messenger {
	position: fixed;
	right: 25px;
	bottom: 25px;
	width: 51px;
	z-index: 1000;
	display: block;
	display: none;
}

#app-whatsapp {
	bottom: 95px;
	display: block;
}

	#app-messenger i, #app-whatsapp i {
		font-size: 63px;
	}

#app-messenger i {
	color: #0084ff;
}

@media screen and (max-width: 766px) {
	#fb-root {
		display: none;
	}

	#app-messenger, #app-messenger2 {
		display: block;
	}
}







/*************************
*******Slider******
**************************/
.slider {
	position: relative;
	padding-top: 0px;
}

@media (max-width: 800px) {
	.slider {
		margin-top: 70px;
	}

	.pruebas {
		font-size: 200px;
	}
}

.slider img {
	width: 100%;
}

#carousel-slider {
	position: relative;
}

	#carousel-slider .carousel-indicators {
		bottom: -25px;
	}

		#carousel-slider .carousel-indicators li {
			border: 1px solid #ffbd20;
		}

	#carousel-slider a i {
		border: 1px solid #213967;
		border-radius: 50%;
		font-size: 30px;
		height: 50px;
		padding: 8px;
		position: absolute;
		top: 50%;
		width: 50px;
		background: #213967;
	}

		#carousel-slider a i:hover {
			background: #B38D01;
			color: #fff;
			border: 1px solid #B38D01;
		}

	#carousel-slider
	.carousel-control {
		width: inherit;
	}

		#carousel-slider .carousel-control.left i {
			left: 40px;
			top: calc(50% - 25px);
		}

		#carousel-slider .carousel-control.right i {
			right: 40px;
			top: calc(50% - 25px);
		}

		#carousel-slider
		.carousel-control.left,
		#carousel-slider
		.carousel-control.right {
			background: none;
		}

.carousel-caption {
	position: absolute;
	right: 5%;
	top: 15%;
	font-size: 40px;
	left: 5%;
	z-index: 10;
	padding-bottom: 0px;
	color: #fff;
	text-align: center;
}

.carousel-caption2 {
	position: absolute;
	right: 0%;
	top: 40%;
	font-size: 40px;
	left: 5%;
	z-index: 10;
	padding-bottom: 0px;
	color: #fff;
	text-align: center;
}

.carousel-caption h2 {
	font-size: 100px;
	margin-left: 65%;
	text-align: justify;
	font-weight: bold;
	color: #003a84;
	margin-top: 5%;
	line-height: 1em;
	text-shadow: 10px;
	font-style: italic;
}

	.carousel-caption h2 span {
		font-size: 60px;
		color: #fff;
	}

.carousel-caption2 img {
	width: 20%;
	height: 20%;
	margin-left: 50%;
	-moz-box-shadow: 0px 0px 30px #ffffff;
	-webkit-box-shadow: 0px 0px 30px #ffffff;
	box-shadow: 0px 0px 30px #ffffff;
}

.carousel-caption2 h2 {
	font-size: 148%;
	margin-left: 33%;
	text-align: left;
	font-weight: bold;
	color: white;
	margin-top: 8%;
	line-height: 1em;
	text-shadow: 10px 5px 5px black;
	font-style: italic;
}

	.carousel-caption2 h2 span {
		font-size: 60px;
		color: #fff;
	}

.carousel-caption p {
	font-size: 50px;
	text-align: left;
	margin-left: 65%;
	margin-top: 2%;
	font-weight: bold;
	color: #003a84;
}
/*.carousel-caption  p {
  font-size:30px;
  margin-top:30px;
  color:#fff;
}*/

.carousel-inner .form-inline .form-group button[type="livedemo"] {
	padding: 20px 60px;
	font-size: 25px;
	background: #B38D01;
	color: #fff;
}

	.carousel-inner .form-inline .form-group button[type="livedemo"]:hover {
		color: #B38D01;
		background: #fff;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}

.carousel-inner .form-inline .form-group .livedemo a {
	padding: 20px 80px;
	font-size: 25px;
	background: #B38D01;
	color: #fff;
	border-radius: 5px 5px 5px 5px;
}

	.carousel-inner .form-inline .form-group .livedemo a:hover {
		color: #fff;
		background: #213967;
		text-shadow: none;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}



.carousel-inner .form-inline .form-group button[type="livedemo2"] {
	margin-top: -50%;
	padding: 20px 60px;
	font-size: 25px;
	background: #B38D01;
	color: #fff;
}

	.carousel-inner .form-inline .form-group button[type="livedemo2"]:hover {
		color: #B38D01;
		background: #fff;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}

.carousel-inner .form-inline .form-group .livedemo2 a {
	padding: 20px 80px;
	font-size: 25px;
	background: #B38D01;
	color: #fff;
	border-radius: 5px 5px 5px 5px;
}

	.carousel-inner .form-inline .form-group .livedemo2 a:hover {
		color: #fff;
		background: #213967;
		text-shadow: none;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}

.carousel-inner .form-inline .form-group button[type="livedemo33"] {
	padding: 20px 60px;
	font-size: 25px;
	background: #B38D01;
	color: #fff;
}

	.carousel-inner .form-inline .form-group button[type="livedemo33"]:hover {
		color: #B38D01;
		background: #fff;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}

.carousel-inner .form-inline .form-group .livedemo33 a {
	padding: 20px 80px;
	font-size: 25px;
	background: #B38D01;
	color: #fff;
	text-shadow: none;
	border-radius: 5px 5px 5px 5px;
	margin-top: 120%;
	font-weight: 900;
}

	.carousel-inner .form-inline .form-group .livedemo33 a:hover {
		color: #fff;
		background: #213967;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}


.carousel-inner .form-inline .form-group button[type="livedemo4"] {
	padding: 20px 60px;
	font-size: 25px;
	background: #B38D01;
	color: #fff;
	margin-left: 30%;
}

	.carousel-inner .form-inline .form-group button[type="livedemo4"]:hover {
		color: #B38D01;
		background: #fff;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}

.carousel-inner .form-inline .form-group .livedemo4 a {
	padding: 20px 80px;
	font-size: 25px;
	background: #B38D01;
	color: #fff;
	margin-top: 30%;
	text-align: center;
	border-radius: 5px 5px 5px 5px;
}

	.carousel-inner .form-inline .form-group .livedemo4 a:hover {
		color: #fff;
		background: #213967;
		text-shadow: none;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}


.carousel-inner .form-inline .form-group button[type="livedemo5"] {
	padding: 20px 60px;
	font-size: 25px;
	background: #213967;
	color: #fff;
	margin-top: -150%;
}

	.carousel-inner .form-inline .form-group button[type="livedemo5"]:hover {
		color: #B38D01;
		background: #fff;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}

.carousel-inner .form-inline .form-group .livedemo5 a {
	padding: 20px 80px;
	font-size: 25px;
	background: #213967;
	color: #fff;
	border-radius: 5px 5px 5px 5px;
}

	.carousel-inner .form-inline .form-group .livedemo5 a:hover {
		color: #B38D01;
		background: #fff;
		text-shadow: none;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}

.carousel-inner .form-inline .form-group button[type="livedemo55"] {
	padding: 20px 60px;
	font-size: 25px;
	background: #213967;
	color: #fff;
	margin-top: -150%;
}

	.carousel-inner .form-inline .form-group button[type="livedemo55"]:hover {
		color: #B38D01;
		background: #fff;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}

.carousel-inner .form-inline .form-group .livedemo55 a {
	padding: 20px 80px;
	font-size: 25px;
	background: #213967;
	color: #fff;
	border-radius: 5px 5px 5px 5px;
}

	.carousel-inner .form-inline .form-group .livedemo55 a:hover {
		color: #B38D01;
		background: #fff;
		text-shadow: none;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}

.carousel-inner .form-inline .form-group button[type="livedemo6"] {
	padding: 20px 60px;
	font-size: 25px;
	background: #B38D01;
	color: #fff;
	margin-top: -150%;
}

	.carousel-inner .form-inline .form-group button[type="livedemo6"]:hover {
		color: #B38D01;
		background: #fff;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}

.carousel-inner .form-inline .form-group .livedemo6 a {
	padding: 20px 80px;
	font-size: 25px;
	background: #B38D01;
	color: #fff;
	border-radius: 5px 5px 5px 5px;
}

	.carousel-inner .form-inline .form-group .livedemo6 a:hover {
		color: #fff;
		background: #213967;
		text-shadow: none;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}

.carousel-inner .form-inline .form-group button[type="livedemo7"] {
	padding: 20px 60px;
	font-size: 25px;
	background: #B38D01;
	color: #fff;
	margin-top: -150%;
}

	.carousel-inner .form-inline .form-group button[type="livedemo7"]:hover {
		color: #B38D01;
		background: #fff;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}

.carousel-inner .form-inline .form-group .livedemo7 a {
	padding: 20px 80px;
	font-size: 25px;
	background: #fff;
	color: #B38D01;
	text-shadow: none;
	border-radius: 5px 5px 5px 5px;
}

	.carousel-inner .form-inline .form-group .livedemo7 a:hover {
		color: #fff;
		background: #213967;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}


@media (max-width: 500px) {

	#btnBienvenidos {
		display: none;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo2"] {
		padding: 7px 20px;
		margin-left: 65%;
	}

	.carousel-inner .form-inline .form-group .livedemo2 a {
		padding: 6px 22px;
		font-size: 12px;
		margin-top: 63%;
		margin-right: -210%;
	}

	.carousel-caption2 {
		right: 15%;
		top: 90%;
		font-size: 50px;
		left: 5%;
	}

		.carousel-caption2 h2 {
			font-size: 46%;
			margin-left: 35%;
			margin-top: 60%;
		}

	.carousel-inner .form-inline .form-group button[type="livedemo"] {
		margin-top: 40%;
		padding: 5px 20px;
	}

	.carousel-inner .form-inline .form-group .livedemo a {
		padding: 5px 25px;
		margin-top: 30%;
		font-size: 30%;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo6"] {
		margin-top: 170%;
		padding: 5px 8px;
	}

	.carousel-inner .form-inline .form-group .livedemo6 a {
		padding: 5px 8px;
		margin-top: 70%;
		font-size: 28%;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo33"] {
		margin-top: 40%;
		padding: 5px 20px;
	}

	.carousel-inner .form-inline .form-group .livedemo33 a {
		padding: 5px 25px;
		margin-top: 30%;
		font-size: 30%;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo7"] {
		margin-top: 170%;
		padding: 5px 8px;
	}

	.carousel-inner .form-inline .form-group .livedemo7 a {
		padding: 5px 8px;
		margin-top: 150%;
		font-size: 28%;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo5"] {
		margin-top: 170%;
		padding: 5px 8px;
	}

	.carousel-inner .form-inline .form-group .livedemo5 a {
		padding: 5px 8px;
		margin-top: 170%;
		font-size: 28%;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo55"] {
		margin-top: 170%;
		padding: 5px 8px;
	}

	.carousel-inner .form-inline .form-group .livedemo55 a {
		padding: 5px 8px;
		margin-top: 80%;
		font-size: 28%;
	}
}

@media screen and (min-width:501px) and (max-width: 600px) {

	#btnBienvenidos {
		display: none;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo2"] {
		padding: 7px 20px;
		margin-left: 65%;
	}

	.carousel-inner .form-inline .form-group .livedemo2 a {
		padding: 6px 22px;
		font-size: 12px;
		margin-top: 140%;
		margin-right: -375%;
	}

	.carousel-caption2 {
		right: 15%;
		top: 90%;
		font-size: 50px;
		left: 5%;
	}

		.carousel-caption2 h2 {
			font-size: 46%;
			margin-left: 35%;
			margin-top: 60%;
		}

	.carousel-inner .form-inline .form-group button[type="livedemo"] {
		margin-top: 50%;
		padding: 5px 20px;
	}

	.carousel-inner .form-inline .form-group .livedemo a {
		padding: 5px 25px;
		margin-top: 50%;
		font-size: 30%;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo6"] {
		margin-top: 150%;
		padding: 5px 10px;
	}

	.carousel-inner .form-inline .form-group .livedemo6 a {
		padding: 5px 10px;
		margin-top: 150%;
		font-size: 35%;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo7"] {
		margin-top: 150%;
		padding: 5px 10px;
	}

	.carousel-inner .form-inline .form-group .livedemo7 a {
		padding: 5px 10px;
		margin-top: 150%;
		font-size: 35%;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo33"] {
		margin-top: 50%;
		padding: 5px 20px;
	}

	.carousel-inner .form-inline .form-group .livedemo33 a {
		padding: 5px 25px;
		margin-top: 50%;
		font-size: 30%;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo5"] {
		margin-top: 150%;
		padding: 5px 10px;
	}

	.carousel-inner .form-inline .form-group .livedemo5 a {
		padding: 5px 10px;
		margin-top: 150%;
		font-size: 35%;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo55"] {
		margin-top: 150%;
		padding: 5px 10px;
	}

	.carousel-inner .form-inline .form-group .livedemo55 a {
		padding: 5px 10px;
		margin-top: 150%;
		font-size: 35%;
	}
}

@media screen and (min-width:601px) and (max-width:1365px) {

	.carousel-inner .form-inline .form-group button[type="livedemo2"] {
		padding: 20px 20px;
		margin-left: 80%;
	}

	.carousel-inner .form-inline .form-group .livedemo2 a {
		padding: 15px 40px;
		font-size: 20px;
		margin-top: 120%;
		margin-right: -340%;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo"] {
		margin-top: 50%;
		padding: 25px 60px;
	}

	.carousel-inner .form-inline .form-group .livedemo a {
		padding: 15px 55px;
		margin-top: 45%;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo6"] {
		margin-top: 105%;
		padding: 25px 50px;
	}

	.carousel-inner .form-inline .form-group .livedemo6 a {
		padding: 15px 35px;
		margin-top: 105%;
		font-size: 50%;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo7"] {
		margin-top: 105%;
		padding: 25px 50px;
	}

	.carousel-inner .form-inline .form-group .livedemo7 a {
		padding: 15px 35px;
		margin-top: 105%;
		font-size: 50%;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo33"] {
		margin-top: 50%;
		padding: 25px 60px;
	}

	.carousel-inner .form-inline .form-group .livedemo33 a {
		padding: 15px 55px;
		margin-top: 45%;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo5"] {
		margin-top: 105%;
		padding: 25px 50px;
	}

	.carousel-inner .form-inline .form-group .livedemo5 a {
		padding: 15px 35px;
		margin-top: 105%;
		font-size: 50%;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo55"] {
		margin-top: 105%;
		padding: 25px 50px;
	}

	.carousel-inner .form-inline .form-group .livedemo55 a {
		padding: 15px 25px;
		margin-top: 110%;
		font-size: 50%;
	}


	.carousel-caption {
		top: 22%;
	}

		.carousel-caption h2 {
			font-size: 120%;
			margin-left: 65%;
			text-align: left;
			margin-top: 3%;
			line-height: 1em;
		}

		.carousel-caption p {
			font-size: 20px;
			text-align: left;
			margin-left: 65%;
			margin-top: .2%;
		}

	.carousel-caption2 {
		right: 15%;
		top: 60%;
		font-size: 100px;
		left: 5%;
	}

		.carousel-caption2 h2 {
			font-size: 80%;
			margin-left: 35%;
			margin-top: 20%;
		}

	.carousel-inner .form-inline .form-group button[type="livedemo4"] {
		padding: 20px 60px;
		font-size: 25px;
		margin-left: 15%;
		margin-top: 65%;
	}

	.carousel-inner .form-inline .form-group .livedemo4 a {
		padding: 15px 55px;
		font-size: 25px;
		margin-top: 45%;
		margin-left: -85%;
	}

	#btnBienvenidos {
		display: none;
	}
}

@media screen and (min-width:1366px) and (max-width:1500px) {

	.carousel-inner .form-inline .form-group .livedemo a {
		padding: 10px 40px;
		font-size: 20px;
		margin-top: 93%;
	}

	.carousel-inner .form-inline .form-group .livedemo6 a {
		padding: 10px 55px;
		font-size: 20px;
		margin-top: 90%;
	}

	.carousel-inner .form-inline .form-group .livedemo2 a {
		padding: 10px 30px;
		font-size: 20px;
		margin-top: 74%;
		margin-right: -260%;
		font-weight: bold;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo2"] {
		margin-top: 60%;
		padding: 20px 50px;
		font-size: 25px;
		margin-left: 65%;
	}

	.carousel-inner .form-inline .form-group .livedemo33 a {
		padding: 10px 55px;
		font-size: 20px;
		margin-top: 93%;
	}

	.carousel-inner .form-inline .form-group .livedemo5 a {
		padding: 10px 55px;
		font-size: 20px;
		margin-top: 90%;
	}

	.carousel-inner .form-inline .form-group .livedemo55 a {
		padding: 10px 40px;
		font-size: 20px;
		margin-top: 172%;
	}

	.carousel-inner .form-inline .form-group .livedemo7 a {
		padding: 10px 55px;
		font-size: 20px;
		margin-top: 90%;
	}

	.carousel-caption2 {
		right: 15%;
		top: 45%;
		font-size: 130px;
		left: 5%;
	}

		.carousel-caption2 h2 {
			font-size: 100%;
			margin-left: 33%;
			margin-top: 11%;
		}

	.carousel-caption {
		top: 17%;
	}

		.carousel-caption h2 {
			font-size: 180%;
			margin-left: 65%;
			text-align: left;
			margin-top: 4%;
			line-height: 1em;
		}

			.carousel-caption h2 span {
				font-size: 60px;
				color: #fff;
			}

		.carousel-caption p {
			font-size: 30px;
			text-align: left;
			margin-left: 65%;
			margin-top: .5%;
		}

	.carousel-inner .form-inline .form-group button[type="livedemo4"] {
		padding: 20px 60px;
		font-size: 25px;
		margin-left: 30%;
	}

	.carousel-inner .form-inline .form-group .livedemo4 a {
		padding: 10px 55px;
		font-size: 25px;
		margin-top: 10%;
		margin-left: -32%;
	}
}

@media (min-width: 1501px) {
	.carousel-inner .form-inline .form-group .livedemo a {
		padding: 20px 60px;
		font-size: 25px;
		margin-top: 120%;
	}

	.carousel-inner .form-inline .form-group .livedemo6 a {
		padding: 20px 60px;
		font-size: 25px;
		margin-top: 90%;
	}

	.carousel-inner .form-inline .form-group .livedemo5 a {
		padding: 20px 60px;
		font-size: 25px;
		margin-top: 90%;
	}

	.carousel-inner .form-inline .form-group .livedemo55 a {
		padding: 20px 60px;
		font-size: 25px;
		margin-top: 190%;
	}

	.carousel-inner .form-inline .form-group .livedemo7 a {
		padding: 20px 60px;
		font-size: 25px;
		margin-top: 90%;
	}

	.carousel-inner .form-inline .form-group button[type="livedemo2"] {
		padding: 20px 20px;
		margin-left: 65%;
	}

	.carousel-inner .form-inline .form-group .livedemo2 a {
		padding: 20px 50px;
		font-size: 25px;
		margin-top: 90%;
		margin-right: -278%;
		font-weight: bold;
	}
}

.carousel-inner .form-inline .form-group button[type="getnow"] {
	padding: 20px 60px;
	font-size: 25px;
	background: #fff;
	color: #B38D01;
}

	.carousel-inner .form-inline .form-group button[type="getnow"]:hover {
		color: #fff;
		background: #213967;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}


/* --- menu --- */

.navigation {
	margin: 0 0 0;
	padding: 0;
}

#navigation .navbar {
	padding: 0;
	margin: 0;
}

.navbar.navbar-inverse { /* franja del menu*/
	padding: 1px 0;
	margin: 0;
}

.navbar-brand {
	float: left;
	height: auto;
	padding: 0;
	font-size: 20px;
	line-height: 1em;
}

.navbar-brandLogo {
	float: left;
	height: auto;
	padding: 0;
	font-size: 20px;
	line-height: 1em;
	margin-left: 10%;
}

.navbar-collapse {
	max-height: 100%;
	overflow-x: hidden;
	overflow-y: hidden;
	margin-left: 5%
}

@media (min-width: 1366px) {
	.navbar-brandLogo {
		margin-left: 70%;
	}
}

.navbar .navbar-brand {
	font-weight: 900;
	color: #fff;
	margin: 5px 0 0;
	font-size: 28px;
}

	.navbar .navbar-brand:focus {
		outline: 0;
	}

.navbar-nav {
	margin-top: 5 !important;
	padding: 0;
}

	.navbar-nav > li > a {
		padding-top: 0;
		padding-bottom: 0;
		line-height: 1em;
	}

.navbar .nav > li > a,
.navbar .nav > li > a:visited {
	padding: 2px 10px 8px;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 400;
	text-transform: uppercase;
	color: #fff;
	-webkit-box-shadow: 0 none;
	box-shadow: 0 none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

@media (max-width: 1366px) {
	.navbar .nav > li > a,
	.navbar .nav > li > a:visited {
		font-size: 10px;
	}
}

.navbar1 .nav1 > li > a,
.navbar1 .nav1 > li > a:visited {
	padding: 28px 13px 27px;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	color: #d8c520;
	-webkit-box-shadow: 0 none;
	box-shadow: 0 none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

@media (max-width: 1366px) {
	.navbar1 .nav1 > li > a,
	.navbar1 .nav1 > li > a:visited {
		font-size: 8px;
	}
}

.navbar .nav > li > a:hover,
.navbar .nav > li > a:focus,
.navbar .nav > li > a:active,
.navbar .nav > li.active > a {
	text-decoration: none;
	background-color: #B38D01;
	color: #fff;
	outline: 0 none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.default {
	background: #233e66;
	border-bottom: 1px solid transparent;
	opacity: 0.9;
}

.fixed {
	position: fixed;
	background: #2a2a2a;
	border: none;
	top: 0;
	left: 0;
	width: 100%;
	box-shadow: 0 0 10px #666;
	-webkit-box-shadow: 0 0 10px #666;
	-moz-box-shadow: 0 0 10px #666;
}

/**************************/

/*************************
*******Comunidad Salvatierra******
**************************/
#ComunidadSalvatierra {
	padding-top: 20px;
	background: #fff;
	padding-bottom: 100px;
}

/***Titulos de Sección*****/
.text-centerFilo {
	font-family: 'Futura-Bold', arial;
	font-size: 450%;
	margin-top: 6%;
	margin-bottom: 2%;
	color: #010187;
	line-height: 90%;
	text-align: center;
	font-weight: bold;
}

.text-center-mision h2 {
	color: #315aa8;
	font-size: 240%;
	text-align: left;
	/**font-weight: bold;**/
	margin-top: 15%;
	margin-bottom: 5%;
}

.text-center-vision h2 {
	color: #315aa8;
	font-size: 240%;
	text-align: left;
	margin-left: 0;
	/**width:24px;
    word-wrap: break-word;
    line-height:30px;**/
	/**font-weight: bold;**/
	margin-top: 17%;
	margin-bottom: 7%;
}

.text-center-valores h2 {
	color: #315aa8;
	font-size: 240%;
	margin-left: 0;
	text-align: left;
	/**font-weight: bold;**/
	margin-top: 27%;
	margin-bottom: 15%;
}

.fundador h2 {
	color: #315aa8;
	font-size: 240%;
	text-align: center;
	/**font-weight: bold;**/
	margin-right: 9%;
	margin-left: 0;
	margin-top: 15%;
	margin-bottom: 10%;
}

.text-center-mision p {
	font-size: 150%;
	margin-top: 5%;
	margin-right: 5%;
	margin-bottom: 5%;
	text-align: justify;
	text-indent: 1em;
}

.text-center-vision p {
	font-size: 150%;
	margin-top: 5%;
	margin-right: 5%;
	margin-bottom: 5%;
	text-align: justify;
	text-indent: 1em;
}

.valores2 {
	margin-left: 0;
	padding-bottom: 0;
	margin-top: 4%;
}
/**.valores p:before {
    content:url(file:///C|/Users/Dennis/Desktop/PaginaWebSalvaPagooo/img/checked.png);
	padding-right:9px;
	padding-left:2px;
	padding-bottom:0;
}**/
.valores p {
	font-size: 150%;
	margin-top: 5%;
	margin-left: 8%;
	padding-bottom: 0;
	display: list-item;
}

.imagen {
	margin-top: 8%;
	margin-right: 0;
	margin-bottom: 5%;
	padding: 0px;
	width: 100%;
	height: 90%;
	text-align: center;
	border-radius: 150px;
}
/*******************Tablet***********************************/
.text-center-misionTablet h2 {
	color: #315aa8;
	font-size: 240%;
	margin-top: 5%;
	margin-bottom: 4%;
	font-family: 'Roboto', arial;
	text-align: center;
}

.text-center-visionTablet h2 {
	color: #315aa8;
	font-size: 240%;
	margin-top: 3%;
	margin-bottom: 4%;
	font-family: 'Roboto', arial;
	text-align: center;
}

.text-center-valoresTablet h2 {
	color: #315aa8;
	font-size: 240%;
	margin-top: 3%;
	margin-bottom: 4%;
	font-family: 'Roboto', arial;
	text-align: center;
}

.text-center-misionTablet p {
	font-size: 150%;
	font-family: 'Roboto', arial;
	margin-top: 3%;
	margin-left: 5%;
	margin-right: 5%;
	margin-bottom: 2%;
	text-align: justify;
	text-indent: 1em;
}

.text-center-visionTablet p {
	font-family: 'Roboto', arial;
	font-size: 150%;
	margin-top: 3%;
	margin-left: 5%;
	margin-right: 5%;
	margin-bottom: 2%;
	text-align: justify;
	text-indent: 1em;
}

.valores2Tablet {
	font-family: 'Roboto', arial;
	margin-left: 5%;
	padding-bottom: 0;
	margin-top: 4%;
	margin-bottom: 2%;
}

.valoresTablet p:before {
	content: url(file:///C|/Users/Dennis/Desktop/PaginaWebSalvaPagooo/img/checked.png);
	padding-right: 9px;
	padding-left: 2px;
	padding-bottom: 0;
}

.valoresTablet p {
	font-size: 150%;
	margin-top: 2%;
	padding-bottom: 0;
}

@media (max-width: 1000px) {
	.text-centerFilo {
		font-family: 'Roboto', arial;
		font-size: 300%;
		line-height: 80%;
		margin-top: 13%;
	}

	.text-center-mision h2, .text-center-vision h2 {
		font-family: 'Roboto', arial;
		margin-top: 10%;
		text-align: center;
	}

	.text-center-valores h2 {
		font-family: 'Roboto', arial;
		margin-top: 10%;
		margin-bottom: 6%;
		text-align: center;
	}

	.text-center-mision p, .text-center-vision p {
		font-family: 'Roboto', arial;
		margin-left: 5%;
		font-size: 130%;
	}

	.valores p {
		font-family: 'Roboto', arial;
		margin-top: 3%;
		margin-left: 15%;
		font-size: 130%;
	}

	.fundador h2 {
		display: none;
	}

	.effect-chicoSem, .imagen {
		display: none;
	}

	.text-center-misionTablet h2, .text-center-visionTablet h2, .text-center-valoresTablet h2, .text-center-misionTablet p, .text-center-visionTablet p, .valoresTablet p {
		display: none;
	}
}

@media (orientation: landscape) and (min-width:1001px) and (max-width:1024px) {
	.text-centerFilo {
		font-size: 350%;
		line-height: 90%;
		margin-top: 10%;
	}

	.text-center-mision h2, .text-center-vision h2, .text-center-valores h2, .text-center-mision p, .text-center-vision p, .valores p, .fundador h2, .effect-chicoSem, .imagen {
		display: none;
	}

	.valoresTablet p {
		display: inline-block;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	.text-centerFilo {
		font-size: 330%;
		margin-top: 6%;
		margin-bottom: 2%;
	}

	.text-center-mision h2 {
		font-size: 175%;
		margin-top: 14%;
		margin-bottom: 5%;
	}

	.text-center-vision h2 {
		font-size: 175%;
		margin-top: 16%;
		margin-bottom: 7%;
	}

	.text-center-valores h2 {
		font-size: 175%;
		margin-top: 28%;
		margin-bottom: 15%;
	}

	.fundador h2 {
		font-size: 175%;
		margin-right: 0%;
		margin-left: 0;
		margin-top: 16%;
		margin-bottom: 10%;
	}

	.text-center-mision p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 5.3%;
		margin-right: 5%;
		margin-bottom: 5%;
	}

	.text-center-vision p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 5%;
		margin-right: 5%;
		margin-bottom: 5%;
	}

	.valores p {
		font-size: 100%;
		line-height: 120%;
		margin-top: 4%;
		margin-left: 9%;
		padding-bottom: 0;
		display: list-item;
	}

		.valores p:before {
			display: none;
		}

	.imagen {
		margin-top: 12%;
	}

	.text-center-misionTablet h2, .text-center-visionTablet h2, .text-center-valoresTablet h2, .text-center-misionTablet p, .text-center-visionTablet p, .valores2Tablet, .valoresTablet p, .valoresTablet p:before {
		display: none;
	}
}

@media (min-width:1367px) {

	.text-center-misionTablet h2, .text-center-visionTablet h2, .text-center-valoresTablet h2, .text-center-misionTablet p, .text-center-visionTablet p, .valoresTablet p {
		display: none;
	}
}


/*************************
*******parallax******
**************************/

.parallax-windowSec {
	min-height: 500px;
	background: transparent;
}

	.parallax-windowSec .text-Insc {
		font-family: 'Futura-Bold', arial;
		font-weight: bold;
		font-size: 700%;
		margin-top: 80px;
		margin-bottom: 0;
		padding-top: 60px;
		padding-bottom: 8px;
		color: #fff;
		text-align: center;
		text-shadow: -4px 3px 0 #213967, -8px 2px 0 #0a0e27;
	}

	.parallax-windowSec .nivel {
		font-family: 'Futura-Bold', arial;
		font-weight: bold;
		color: #deaf04;
		text-shadow: -2px 5px 0 #213967, -8px 2px 0 #0a0e27;
		font-size: 500%;
		margin-top: 4%;
		margin-bottom: 2%;
		text-align: center
	}

.livedemoInsc a {
	padding: 20px 70px;
	margin-top: 5%;
	font-size: 25px;
	color: #fff;
	background: #213967;
	border-radius: 5px 5px 5px 5px;
}

	.livedemoInsc a:hover {
		color: #315aa8;
		background: #fff;
		border: #315aa8 1px solid;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}


@media (max-width: 500px) {

	.parallax-windowSec {
		min-height: 250px;
		margin-bottom: -7%;
		margin-top: -6%;
	}

		.parallax-windowSec .text-Insc {
			font-size: 250%;
			padding-top: 60px;
			margin-top: -5%;
		}

		.parallax-windowSec .nivel {
			font-size: 200%;
			margin-top: 5%;
		}

	.livedemoInsc a {
		padding: 10px 40px;
		margin-top: 5%;
		font-size: 15px;
	}
}

@media screen and (min-width:501px) and (max-width: 600px) {
	.parallax-windowSec {
		min-height: 250px;
		margin-bottom: -7%;
		margin-top: -5%;
	}

		.parallax-windowSec .text-Insc {
			font-size: 250%;
			padding-top: 40px;
			margin-top: -7%;
		}

		.parallax-windowSec .nivel {
			font-size: 200%;
			margin-top: 3%;
		}

	.livedemoInsc a {
		padding: 10px 40px;
		margin-top: 3%;
		font-size: 15px;
	}
}

@media (orientation: landscape) and (min-width:601px) and (max-width:1024px) {

	.parallax-windowSec .nivel {
		margin-top: 8%;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	.parallax-windowSec {
		min-height: 400px;
	}

		.parallax-windowSec .text-Insc {
			font-size: 550%;
			margin-top: 50px;
			margin-bottom: 0;
			padding-top: 60px;
			padding-bottom: 8px;
			text-shadow: -2px 2px 0 #213967, -4px 1px 0 #0a0e27;
		}

		.parallax-windowSec .nivel {
			text-shadow: -1px 3px 0 #213967, -4px 1px 0 #0a0e27;
			font-size: 350%;
			margin-top: 4%;
			margin-bottom: 2%;
			text-align: center
		}

	.livedemoInsc a {
		padding: 10px 40px;
		margin-top: 2%;
		font-size: 25px;
		color: #fff;
	}
}
/*********************************** Parallax Prepa**************************/
.parallax-windowPrepa {
	min-height: 500px;
	background: transparent;
}

	.parallax-windowPrepa .text-Insc {
		font-family: 'Futura-Bold', arial;
		font-weight: bold;
		font-size: 700%;
		margin-top: 80px;
		margin-bottom: 0;
		padding-top: 60px;
		padding-bottom: 8px;
		color: #fff;
		text-align: center;
		text-shadow: -4px 3px 0 #213967, -8px 2px 0 #0a0e27;
	}

	.parallax-windowPrepa .nivel {
		font-family: 'Futura-Bold', arial;
		font-weight: bold;
		color: #deaf04;
		text-shadow: -2px 5px 0 #213967, -8px 2px 0 #0a0e27;
		font-size: 500%;
		margin-top: 4%;
		margin-bottom: 2%;
		text-align: center
	}

.livedemoInsc a {
	padding: 20px 70px;
	margin-top: 5%;
	font-size: 25px;
	color: #fff;
	background: #213967;
}

	.livedemoInsc a:hover {
		color: #315aa8;
		background: #fff;
		border: #315aa8 1px solid;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}

@media (max-width: 1000px) {
	.parallax-windowPrepa {
		min-height: 250px;
		margin-bottom: -5%;
		margin-top: -7%;
	}

		.parallax-windowPrepa .text-Insc {
			font-size: 250%;
			padding-top: 60px;
			margin-top: -6%;
		}

		.parallax-windowPrepa .nivel {
			font-size: 200%;
			margin-top: 6%;
		}

	.livedemoInsc a {
		padding: 10px 40px;
		margin-top: 5%;
		font-size: 15px;
	}
}

@media (orientation: landscape) and (min-width:1001px) and (max-width:1024px) {
	.parallax-windowPrepa .nivel {
		margin-top: 8%;
	}

	.parallax-windowPrepa {
		margin-top: -2%;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	.parallax-windowPrepa {
		min-height: 400px;
		background: transparent;
	}

		.parallax-windowPrepa .text-Insc {
			font-size: 550%;
			margin-top: 50px;
			margin-bottom: 0;
			padding-top: 60px;
			padding-bottom: 8px;
			text-shadow: -2px 2px 0 #213967, -4px 1px 0 #0a0e27;
		}

		.parallax-windowPrepa .nivel {
			text-shadow: -1px 3px 0 #213967, -4px 1px 0 #0a0e27;
			font-size: 350%;
			margin-top: 4%;
			margin-bottom: 2%;
			text-align: center
		}

	.livedemoInsc a {
		padding: 10px 40px;
		margin-top: 2%;
		font-size: 25px;
		color: #fff;
	}
}
/*************************
*******Inscripciones******
**************************/
#Inscripciones {
	padding-top: 90px;
	background: #f4f4f4;
	;
	padding-bottom: 50px;
}


.text-center-sec p {
	font-size: 150%;
	margin-top: 5%;
	margin-bottom: 5%;
	text-align: justify;
	text-indent: 1em;
}


.text-center-sec-prep-nivel h2 {
	color: #315aa8;
	font-size: 240%;
	margin-top: 0;
	margin-bottom: 0;
	text-align: center;
}

.text-center-sec-prep-nivelPrepa h2 {
	color: #315aa8;
	font-size: 240%;
	margin-top: 15%;
	margin-bottom: 0;
	text-align: center;
}

.text-center-sec-prep h2 {
	color: #315aa8;
	font-size: 240%;
	margin-top: 0;
	margin-left: 16%;
	margin-bottom: 0;
	text-align: center;
}

.text-center-sec-prepPrepa h2 {
	color: #315aa8;
	font-size: 240%;
	margin-top: 19%;
	margin-left: 16%;
	margin-bottom: 5%;
	text-align: center;
}

.text-center-sec-prep2 h2 {
	color: #315aa8;
	font-size: 240%;
	margin-top: 0;
	margin-bottom: 0;
	text-align: center;
}

.text-center-sec-prep2Prepa h2 {
	color: #315aa8;
	font-size: 240%;
	margin-top: 19%;
	margin-bottom: 5%;
	text-align: center;
}

.ImagenCole {
	margin-top: 0;
	margin-left: 29%;
	margin-right: 29%;
	width: 58%;
	height: 58%;
	text-align: center;
}

.ImagenCole2 {
	margin-top: 0;
	margin-left: 22%;
	width: 58%;
	height: 58%;
	text-align: center;
}

.videoPromo {
	margin-top: 2%;
}

#VideoPromoIlumina {
	margin-top: 0%;
}

#VideoPromoSalvaSeguro {
	margin-top: 0%;
}

.ImaIndex {
	min-height: 350%;
	margin-top: -10%;
	margin-bottom: -3%;
}

@media (max-width: 500px) {

	.text-center-sec-prep-nivel h2 {
		font-family: 'Roboto', arial;
		margin-top: -10%;
		margin-bottom: 5%;
		text-align: center;
	}

	.text-center-sec-prep-nivelPrepa h2 {
		font-family: 'Roboto', arial;
		margin-top: 20%;
		margin-bottom: 5%;
		text-align: center;
	}

	.text-center-sec p {
		font-family: 'Roboto', arial;
		margin-left: 5%;
		margin-right: 5%;
		font-size: 130%;
	}

	.text-center-sec-prep h2 {
		font-family: 'Roboto', arial;
		margin-left: 0;
		margin-right: 0;
		margin-top: 0;
		margin-bottom: 0;
		text-align: center;
	}

	.text-center-sec-prepPrepa h2 {
		font-family: 'Roboto', arial;
		margin-left: 0;
		margin-right: 0;
		margin-top: 0;
		margin-bottom: 0;
		text-align: center;
	}

	.text-center-sec-prep2 h2 {
		font-family: 'Roboto', arial;
		color: #315aa8;
		margin-top: 0;
		margin-bottom: 0;
		text-align: center;
	}

	.text-center-sec-prep2Prepa h2 {
		font-family: 'Roboto', arial;
		color: #315aa8;
		margin-top: 0;
		margin-bottom: 0;
		text-align: center;
	}

	.ImagenCole {
		margin-top: 0;
		margin-bottom: 10%;
		margin-left: 22%;
		width: 58%;
		height: 58%;
		text-align: center;
	}

	.ImagenCole2 {
		margin-bottom: -2%;
	}

	.videoPromo {
		display: none;
	}

	.ImaIndex {
		margin-top: 4%;
	}

	#ImaServicios {
		margin-top: -13%;
	}

	#ImaCuerpo {
		margin-top: -22%;
	}
}

@media screen and (min-width:501px) and (max-width: 600px) {

	.text-center-sec-prep-nivel h2 {
		font-family: 'Roboto', arial;
		margin-top: -10%;
		margin-bottom: 5%;
		text-align: center;
	}

	.text-center-sec-prep-nivelPrepa h2 {
		font-family: 'Roboto', arial;
		margin-top: 13%;
		margin-bottom: 5%;
		text-align: center;
	}

	.text-center-sec p {
		font-family: 'Roboto', arial;
		margin-left: 5%;
		margin-right: 5%;
		font-size: 130%;
	}

	.text-center-sec-prep h2 {
		font-family: 'Roboto', arial;
		margin-left: 0;
		margin-right: 0;
		margin-top: 0;
		margin-bottom: 0;
		text-align: center;
	}

	.text-center-sec-prepPrepa h2 {
		font-family: 'Roboto', arial;
		margin-left: 0;
		margin-right: 0;
		margin-top: 0;
		margin-bottom: 0;
		text-align: center;
	}

	.text-center-sec-prep2 h2 {
		font-family: 'Roboto', arial;
		color: #315aa8;
		margin-top: 0;
		margin-bottom: 0;
		text-align: center;
	}

	.text-center-sec-prep2Prepa h2 {
		font-family: 'Roboto', arial;
		color: #315aa8;
		margin-top: 0;
		margin-bottom: 0;
		text-align: center;
	}

	.ImagenCole {
		margin-top: 0;
		margin-bottom: 10%;
		margin-left: 22%;
		width: 58%;
		height: 58%;
		text-align: center;
	}

	.ImagenCole2 {
		margin-bottom: -2%;
	}

	.videoPromo {
		display: none;
	}

	.ImaIndex {
		margin-top: 4%;
	}

	#ImaServicios {
		margin-top: -13%;
	}

	#ImaCuerpo {
		margin-top: -22%;
	}
}

@media (orientation: landscape) and (min-width:601px) and (max-width:1024px) {
	.text-center-sec-prep-nivel h2 {
		font-family: 'Roboto', arial;
		margin-top: -10%;
		margin-bottom: 5%;
		text-align: center;
	}

	.text-center-sec-prep-nivelPrepa h2 {
		font-family: 'Roboto', arial;
		margin-top: 15%;
		margin-bottom: 2%;
		text-align: center;
	}

	.text-center-sec p {
		font-family: 'Roboto', arial;
		margin-left: 5%;
		margin-right: 5%;
		font-size: 130%;
		margin-bottom: -5%;
	}

	.text-center-sec-prep h2 {
		font-family: 'Roboto', arial;
		margin-left: 0;
		margin-right: 0;
		margin-top: 50%;
		margin-bottom: 0;
		text-align: center;
		font-size: 140%;
	}

	.text-center-sec-prepPrepa h2 {
		font-family: 'Roboto', arial;
		margin-left: 0;
		margin-right: 0;
		margin-top: 80%;
		margin-bottom: 0;
		text-align: center;
		font-size: 140%;
	}

	.text-center-sec-prep2 h2 {
		font-family: 'Roboto', arial;
		color: #315aa8;
		margin-top: 50%;
		margin-bottom: 0;
		text-align: center;
		font-size: 140%;
	}

	.text-center-sec-prep2Prepa h2 {
		font-family: 'Roboto', arial;
		color: #315aa8;
		margin-top: 80%;
		margin-bottom: 0;
		text-align: center;
		font-size: 140%;
	}

	.ImagenCole {
		margin-top: 20%;
		margin-bottom: 0%;
		margin-left: 22%;
		width: 58%;
		height: 58%;
		text-align: center;
	}

	.ImagenCole2 {
		margin-top: 20%;
		margin-left: 22%;
		margin-bottom: 0%;
		width: 58%;
		height: 58%;
		text-align: center;
	}

	.videoPromo {
		margin-top: 5%;
		margin-bottom: -3%;
	}

	#videoPromoIndex {
		margin-top: 5%;
	}

	#videoPromoServicio {
		margin-top: -3%;
	}

	#videoPromoMente {
		margin-top: -3%;
		margin-bottom: 4%;
	}

	#VideoPromoCuerpo, #VideoPromoIlumina {
		margin-top: -5%;
	}

	#VideoPromoIlumina {
		margin-top: -5%;
		margin-bottom: 5%;
	}

	.ImaIndex {
		display: none;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	.text-center-sec-prep-nivel h2 {
		font-family: 'Roboto', arial;
		margin-top: 0%;
		margin-bottom: 10%;
		text-align: center;
		font-size: 175%;
	}

	.text-center-sec-prep-nivelPrepa h2 {
		font-family: 'Roboto', arial;
		margin-top: 20%;
		margin-bottom: 10%;
		text-align: center;
		font-size: 175%;
	}


	.text-center-sec p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 5%;
		margin-bottom: 5%;
	}

	.text-center-sec-prep h2 {
		font-size: 175%;
		margin-top: 0;
		margin-left: 16%;
		margin-bottom: 5%;
	}

	.text-center-sec-prepPrepa h2 {
		font-size: 175%;
		margin-top: 25%;
		margin-left: 16%;
		margin-bottom: 18%;
	}

	.text-center-sec-prep2 h2 {
		font-size: 175%;
		margin-top: 0;
		margin-bottom: 0;
	}

	.text-center-sec-prep2Prepa h2 {
		font-size: 175%;
		margin-top: 25%;
		margin-bottom: 18%;
	}

	.ImagenCole {
		margin-top: 13%;
		margin-left: 29%;
		margin-right: 29%;
	}

	.ImagenCole2 {
		margin-top: 13%;
		margin-left: 22%;
	}

	.ImaIndex {
		display: none;
	}

	.videoPromo {
		margin-top: 3%;
	}

	#VideoPromoCuerpo {
		margin-top: -2%;
		margin-bottom: -2%;
	}

	#VideoPromoIlumina {
		margin-top: -3%;
	}

	#videoPromoServicio {
		margin-top: 0%;
		margin-bottom: -1%;
	}

	#videoPromoAdmisionesSec {
		margin-top: -1%;
	}
}

@media (min-width:1367px) {
	.ImaIndex {
		display: none;
	}

	#videoPromoAdmisionesSec {
		margin-top: -1%;
	}
}
/*************************
*******services******
**************************/
#gallery {
	padding-top: 70px;
	padding-bottom: 70px;
	background: #f4f4f4;
}

	#gallery img {
		border-radius: 8px;
	}

.gallery {
	margin-top: 10%;
	margin-bottom: 30px;
}

#gallery .text-center {
	padding-top: 20px;
	margin-bottom: 50px;
	padding-bottom: 20px;
}

figure.effect-chico img {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.12);
	transform: scale(1.12);
	margin-top: 5%;
}

figure.effect-chicoSem img {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.12);
	transform: scale(1.12);
	margin-top: 5%;
}

figure.effect-chico2 img {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.12);
	transform: scale(1.12);
}

figure.effect-chico:hover img {
	opacity: 0.5;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.effect-chicoSem:hover img {
	opacity: 0.5;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.effect-chico2:hover img {
	opacity: 0.5;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.galleryMSSTablet {
	margin-top: 50%;
	margin-bottom: 30px;
	margin-right: 2%;
}


figure.effect-chicoMSSTablet img {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.12);
	transform: scale(1.12);
	margin-top: 5%;
}

figure.effect-chicoMSSTablet:hover img {
	opacity: 0.5;
	-webkit-transform: scale(1);
	transform: scale(1);
}


/*************************
*******Instalaciones******
**************************/

section.gray {
	background-color: #f5f5f5;
}

.container {
	padding-top: 90px;
	padding-bottom: 40px;
}

.text-centerExp h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	color: #010187;
	line-height: 90%;
	font-size: 450%;
	margin-top: 4%;
	margin-bottom: 3%;
	text-align: center;
}

@media (max-width: 1000px) {
	.text-centerExp h3 {
		font-family: 'Roboto', arial;
		font-size: 300%;
		line-height: 90%;
		margin-top: 0%;
		margin-bottom: 1%;
	}
}

@media (orientation: landscape) and (min-width:1001px) and (max-width:1024px) {
	.text-centerExp h3 {
		font-size: 350%;
		line-height: 90%;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	.text-centerExp h3 {
		font-size: 330%;
		margin-top: 2%;
		margin-bottom: 2%;
	}
}

.grid {
	max-width: 75em;
	list-style: none;
	margin: 40px auto;
	padding: 0;
}

	.grid li {
		display: block;
		float: left;
		padding: 7px;
		width: 33%;
		opacity: 0;
	}

		.grid li.shown,
		.no-js .grid li,
		.no-cssanimations .grid li {
			opacity: 1;
		}

		.grid li a,
		.grid li img {
			padding: 0px;
			outline: none;
			border: none;
			display: block;
			max-width: 100%;
			cursor: url(../img/cursor.png),pointer;
			background-color: #fff;
			-webkit-transition: all 0.3s;
			-moz-transition: all 0.3s;
			transition: all 0.3s;
		}

	/* Appearing effect */
	.grid.effect li.animate {
		-webkit-transform: translateY(200px);
		-moz-transform: translateY(200px);
		transform: translateY(200px);
		-webkit-animation: moveUp 0.65s ease forwards;
		-moz-animation: moveUp 0.65s ease forwards;
		animation: moveUp 0.65s ease forwards;
	}

@-webkit-keyframes moveUp {
	to {
		-webkit-transform: translateY(0);
		opacity: 1;
	}
}

@-moz-keyframes moveUp {
	to {
		-moz-transform: translateY(0);
		opacity: 1;
	}
}

@keyframes moveUp {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.grid li img:hover {
	opacity: 0.2
}




/* Fortalecimos
--------------------------------*/
#Fortalecimos {
	margin-top: 10px;
	background: #fff;
	padding-bottom: 10px;
}

section.fondo {
	background-image: url(../img/fondo2.png);
}

section.fondo2 {
	background-image: url(../img/fondoClaro.png);
}

.container {
	padding-top: 10px;
	padding-bottom: 10px;
}

.text-center-fort-Index h3 {
	font-size: 430%;
	line-height: 100%;
	margin-top: 10%;
	margin-bottom: 0%;
	color: #fff;
	font-weight: bold;
	text-align: center;
}

.text-center-fort2-Index h3 {
	font-size: 430%;
	line-height: 100%;
	margin-top: 0%;
	margin-bottom: 2%;
	color: #e0b207;
	font-weight: bold;
	text-align: center;
}

.text-center-fort-Index h2 {
	font-weight: 300;
	margin-top: 5.5%;
	margin-bottom: 2%;
	font-size: 180%;
	color: #fff;
	margin-left: 10%;
	margin-right: 10%;
	text-align: justify;
	text-indent: 1em;
}

.text-center-fort h3 {
	font-size: 350%;
	line-height: 100%;
	margin-top: 7%;
	margin-bottom: 0%;
	color: #fff;
	font-weight: bold;
	text-align: center;
}

.text-center-fort2 h3 {
	font-size: 350%;
	line-height: 100%;
	margin-top: 0%;
	margin-bottom: 2%;
	color: #e0b207;
	font-weight: bold;
	text-align: center;
}

.text-center-fortHistoria h3 {
	font-size: 430%;
	line-height: 100%;
	margin-top: 13%;
	margin-bottom: 0%;
	color: #fff;
	font-weight: bold;
	text-align: center;
}

.text-center-fortHistoria2 h3 {
	font-size: 430%;
	line-height: 100%;
	margin-top: 0%;
	margin-bottom: 2%;
	color: #e0b207;
	font-weight: bold;
	text-align: center;
}

.text-center-fortHistoria h2 {
	font-weight: 300;
	margin-top: 10%;
	margin-bottom: 4%;
	font-size: 230%;
	color: #fff;
	margin-left: 10%;
	margin-right: 10%;
	text-align: center;
}

.text-center-fort-Instalaciones h3 {
	font-size: 430%;
	line-height: 100%;
	margin-top: 12%;
	margin-bottom: 0%;
	color: #fff;
	font-weight: bold;
	text-align: center;
}

.text-center-fort2-Instalaciones h3 {
	font-size: 430%;
	line-height: 100%;
	margin-top: 0%;
	margin-bottom: 2%;
	color: #e0b207;
	font-weight: bold;
	text-align: center;
}

.text-center-fort-Instalaciones h2 {
	font-weight: 300;
	margin-top: 10%;
	margin-bottom: 4%;
	font-size: 230%;
	color: #fff;
	margin-left: 10%;
	margin-right: 10%;
	text-align: center;
}

.text-center-fort h2 {
	font-weight: 300;
	margin-top: 10%;
	margin-bottom: 4%;
	font-size: 230%;
	color: #fff;
	margin-left: 10%;
	margin-right: 10%;
	text-align: center;
}

.galleryEdificio {
	margin-top: 2%;
	margin-bottom: 2%;
}

.ImagenEdificio {
	margin-top: 0;
	margin-left: 10%;
	margin-right: 10%;
	width: 80%;
	height: 40%;
	text-align: center;
}

.text-center-fort-IndexCale1 p {
	font-weight: 200;
	margin-top: 5.5%;
	margin-bottom: 3%;
	font-size: 160%;
	margin-left: 10%;
	margin-right: 10%;
	text-align: justify;
	text-indent: 1em;
}

.text-centerHorario {
	text-align: center;
	margin-left: 10%;
	margin-right: 10%;
}

.livedemoHorario a {
	padding: 10px 30px;
	margin-top: 20%;
	margin-bottom: 33%;
	font-size: 20px;
	color: #fff;
	background: #213967;
}

	.livedemoHorario a:hover {
		color: #fff;
		background: #B38D01;
		border: #B38D01 1px solid;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}

.videoSomosSalva {
	text-align: center;
	margin-top: 3.5%;
}


@media (max-width: 1000px) {
	section.fondo {
		margin-top: -16%;
	}

	.text-center-fort h3 {
		font-size: 210%;
		line-height: 120%;
		margin-top: 4%;
		margin-bottom: 5%;
	}

	.text-center-fort-IndexCale3 p {
		font-family: 'Roboto', arial;
		font-weight: 200;
		margin-top: 6%;
		margin-bottom: 1%;
		font-size: 130%;
		margin-left: 5%;
		margin-right: 5%;
		text-align: justify;
		text-indent: 1em;
	}

	.text-center-fort-Index h2, .text-center-fort-IndexCale p, .text-center-fort-IndexCale1 p, #VideoSomosSalva1, #VideoSomosSalva2 {
		display: none;
	}

	.text-center-fort-Index h3, .text-center-fortHistoria h3, .text-center-fort-Instalaciones h3 {
		font-size: 210%;
		line-height: 120%;
		margin-top: 5%;
		margin-bottom: -2%;
	}

	.text-center-fort2 h3, .text-center-fort2-Index h3, .text-center-fortHistoria2 h3, .text-center-fort2-Instalaciones h3 {
		font-size: 210%;
		line-height: 120%;
		margin-top: 2%;
		margin-bottom: 4%;
	}

	.text-center-fort h2 {
		font-family: 'Roboto', arial;
		font-size: 150%;
		font-weight: 300;
		margin-top: 10%;
		margin-bottom: 10%;
	}

	.text-center-fort-Index h2, .text-center-fortHistoria h2, .text-center-fort-Instalaciones h2 {
		font-family: 'Roboto', arial;
		font-size: 150%;
		font-weight: 300;
		margin-top: 10%;
		margin-bottom: 10%;
	}

	.livedemoHorario a {
		margin-bottom: 1%;
		margin-top: 8%;
	}

	.videoSomosSalva {
		width: 100%;
		text-align: center;
		margin-top: -6%;
	}
}

@media (orientation: landscape) and (min-width:1001px) and (max-width:1024px) {
	.text-center-fort-Index h3 {
		font-size: 200%;
		line-height: 100%;
		margin-top: 6%;
		margin-bottom: 0%;
	}

	.text-center-fortHistoria h3 {
		font-size: 200%;
		line-height: 100%;
		margin-top: 10%;
		margin-bottom: 0%;
	}

	.text-center-fort h3 {
		font-size: 200%;
		line-height: 100%;
		margin-top: 8%;
		margin-bottom: 0%;
	}

	.text-center-fort-Instalaciones h3 {
		font-size: 200%;
		line-height: 100%;
		margin-top: 12%;
		margin-bottom: 0%;
	}

	.text-center-fort2-Index h3, .text-center-fortHistoria2 h3, .text-center-fort2-Instalaciones h3, .text-center-fort2 h3 {
		font-size: 200%;
		line-height: 100%;
		margin-top: 0%;
		margin-bottom: 2%;
	}

	.text-center-fort-IndexCale3 p {
		font-family: 'Roboto', arial;
		font-weight: 300;
		margin-top: 6%;
		margin-bottom: 1%;
		font-size: 150%;
		margin-left: 5%;
		margin-right: 5%;
		text-align: justify;
		text-indent: 1em;
	}

	.text-center-fort-Index h2, .text-center-fort-IndexCale p, .text-center-fort-IndexCale1 p, #VideoSomosSalva1, #VideoSomosSalva2 {
		display: none;
	}

	.text-center-fortHistoria h2, .text-center-fort-Instalaciones h2, .text-center-fort h2 {
		font-family: 'Roboto', arial;
		font-size: 150%;
		font-weight: 300;
		margin-top: 10%;
		margin-bottom: 4%;
		margin-left: 10%;
		margin-right: 10%;
	}

	.ImagenEdificio {
		margin-top: 7%;
	}

	.livedemoHorario a {
		margin-bottom: 10%;
	}

	.videoSomosSalva {
		margin-left: 0%;
		margin-right: 0%;
		margin-bottom: 4%;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	.text-center-fort-Index h3 {
		font-size: 330%;
		line-height: 100%;
		margin-top: 9%;
		margin-bottom: 0%;
		color: #fff;
		font-weight: bold;
		text-align: center;
	}

	.text-center-fort2-Index h3 {
		font-size: 330%;
		line-height: 100%;
		margin-top: 0%;
		margin-bottom: 2%;
		color: #e0b207;
		font-weight: bold;
		text-align: center;
	}

	.text-center-fort-Index h2, .text-center-fort-IndexCale3 p, .text-center-fort-IndexCale1 p {
		display: none;
		/*font-weight: 300;
	  margin-top: 10%;
	  margin-bottom: 4%;
	  font-size:180%;*/
	}

	.text-center-fort-IndexCale p {
		font-weight: 155%;
		margin-top: 9%;
		margin-bottom: -2%;
		font-size: 100%;
		margin-left: 10%;
		margin-right: 0%;
		text-align: justify;
		text-indent: 1em;
	}

	.text-center-fort-Instalaciones h3 {
		font-size: 330%;
		line-height: 100%;
		margin-top: 12%;
		margin-bottom: 0%;
	}

	.text-center-fort2-Instalaciones h3 {
		font-size: 330%;
		line-height: 100%;
		margin-top: 0%;
		margin-bottom: 2%;
	}

	.text-center-fort-Instalaciones h2 {
		font-weight: 300;
		margin-top: 10%;
		margin-bottom: 4%;
		font-size: 180%;
		margin-left: 10%;
		margin-right: 10%;
	}

	.text-center-fort h3 {
		font-size: 230%;
		line-height: 100%;
		margin-top: 7%;
		margin-bottom: 0%;
	}

	.text-center-fort2 h3 {
		font-size: 230%;
		line-height: 100%;
		margin-top: 0%;
		margin-bottom: 2%;
	}

	.text-center-fort h2 {
		font-weight: 155;
		margin-top: 10%;
		margin-bottom: 4%;
		font-size: 150%;
		margin-left: 10%;
		margin-right: 10%;
	}

	.text-centerHorario {
		margin-right: 0%;
	}

	#VideoSomosSalva1, #VideoSomosSalva3 {
		display: none;
	}
}

@media (min-width:1367px) {
	.text-center-fort-IndexCale p, #VideoSomosSalva2, #VideoSomosSalva3 {
		display: none;
	}
}


/* Gallery Section
--------------------------------*/
#gallery2 {
	background: #fff;
	padding: 60px 0 0 0;
}

	#gallery2 .container-fluid {
		padding: 0px;
	}

	#gallery2 .gallery2-overlay {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 1;
		-webkit-transition: all ease-in-out 0.4s;
		transition: all ease-in-out 0.4s;
	}

	#gallery2 .gallery2-item {
		overflow: hidden;
		position: relative;
		padding: 0;
		vertical-align: middle;
		text-align: center;
	}

		#gallery2 .gallery2-item img {
			-webkit-transition: all ease-in-out 0.4s;
			transition: all ease-in-out 0.4s;
			width: 100%;
		}

		#gallery2 .gallery2-item:hover img {
			-webkit-transform: scale(1.1);
			transform: scale(1.1);
		}

		#gallery2 .gallery2-item:hover .gallery2-overlay {
			opacity: 1;
			background: rgba(0, 0, 0, 0.7);
		}


/*************************
*******footer******
**************************/
footer {
	background: #f4f4f4;
	height: 4%;
}

#contact {
	background: #fafafa;
	padding-top: 70px;
	padding-bottom: 15px;
}

#contactSalvaSeguro {
	background: #fafafa;
	padding-top: 70px;
	padding-bottom: 15px;
}

#contactoEspiritu {
	background: #fafafa;
	padding-top: 70px;
	padding-bottom: 15px;
}

.social-network {
	margin-bottom: -20px;
	text-align: center;
}

.text-centerContac h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	font-size: 450%;
	margin-top: 8%;
	margin-bottom: 4%;
	color: #010187;
	text-align: center;
}

.text-centerContac p {
	font-family: 'Futura-Bold', arial;
	font-size: 180%;
	margin-top: 2%;
	margin-bottom: 4%;
	text-align: center;
}

.text-center-contacto h2 {
	font-family: 'Futura-Bold', arial;
	color: #315aa8;
	font-size: 190%;
	text-align: center;
}

.text-center-contactoMSS h2 {
	font-family: 'Futura-Bold', arial;
	color: #315aa8;
	font-size: 190%;
	text-align: center;
}

.text-center-contactoMSS2 h2 {
	font-family: 'Futura-Bold', arial;
	color: #315aa8;
	font-size: 190%;
	text-align: center;
}

.mapa {
	margin-bottom: -80%;
}

.mapaOtras {
	margin-bottom: -80%;
}

.IframeContacto {
	text-align: center;
	margin-left: -5%;
	width: 100%;
	height: 450px;
	margin-top: 10%;
	margin-bottom: -80%;
}

#contact ul {
	list-style: none;
	margin-top: 15%;
	margin-left: -5%;
	margin-right: 5%;
	font-size: 20px;
}

#contactoEspiritu ul {
	list-style: none;
	margin-top: 15%;
	margin-left: -5%;
	margin-right: 5%;
	font-size: 20px;
}


.form-inline {
	margin-top: 15px;
	margin-bottom: 15px;
}

.prueba5 ul {
	list-style: none;
	margin-top: 15%;
	margin-left: -5%;
	margin-right: 5%;
	margin-bottom: -70%;
}

.prueba5 li {
	font-size: 20px;
}


/*******************Tablet***********************/
.text-center-contactoTablet h2 {
	font-family: 'Roboto', arial;
	color: #315aa8;
	font-size: 150%;
	margin-left: 5%;
	text-align: center;
	margin-top: -20%;
}

.text-center-contactoTabletModeloSS h2 {
	font-family: 'Roboto', arial;
	color: #315aa8;
	font-size: 150%;
	margin-left: 5%;
	text-align: center;
	margin-top: -10%;
}

.text-center-contactoTabletModeloSS2 h2 {
	font-family: 'Roboto', arial;
	color: #315aa8;
	font-size: 150%;
	margin-left: 5%;
	text-align: center;
	margin-top: -5%;
}

.IframeContactoTablet {
	font-family: 'Roboto', arial;
	text-align: center;
	border: none;
	width: 100%;
	height: 470px;
	margin-right: 5%;
	margin-bottom: 2%;
}

.prueba5Tablet ul {
	font-family: 'Roboto', arial;
	list-style: none;
	margin-top: 35%;
	margin-left: 5%;
	margin-right: 5%;
	margin-bottom: 2%;
}

.prueba5Tablet li {
	font-family: 'Roboto', arial;
	font-size: 15px;
	margin-left: 5%;
	margin-right: 5%;
}

.mapaTablet {
	width: 100%;
	margin-top: 0%;
	text-align: center;
}

.hrTablet {
}

@media (max-width: 1000px) {
	#contact {
		margin-top: -25%;
	}

	.text-centerContac h3 {
		font-family: 'Roboto', arial;
		font-size: 300%;
		margin-top: 0%;
		margin-bottom: 10%;
	}

	.text-centerContac p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 5%;
		margin-bottom: 4%;
		margin-left: 5%;
		margin-right: 5%;
		text-align: center;
		text-indent: 0em;
	}

	.IframeContacto {
		font-family: 'Roboto', arial;
		text-align: left;
		border: none;
		margin-right: 25%;
		width: 100%;
		height: 470px;
		margin-top: 12%;
	}

	.prueba5 ul {
		margin-top: -100%;
		margin-right: 0%;
		margin-bottom: -70%;
		text-align: center;
	}

	.prueba5 li {
		font-family: 'Roboto', arial;
		font-size: 15px;
		margin-left: 10%;
		margin-right: 0%;
		text-align: center;
	}

	.text-center-contacto h2 {
		font-family: 'Roboto', arial;
		font-size: 190%;
		text-align: center;
		margin-bottom: -8%;
	}

	#section-map {
		margin-top: 15%;
	}

	.text-center-contactoMSS h2 {
		font-family: 'Roboto', arial;
		font-size: 190%;
		text-align: center;
		margin-bottom: -10%;
	}

	.text-center-contactoMSS2 h2 {
		font-family: 'Roboto', arial;
		font-size: 190%;
		text-align: center;
		margin-bottom: 5%;
		margin-top: 12%;
	}

	#contactoEspiritu {
		margin-top: -20%;
	}

	.text-center-contactoTablet h2, .text-center-contactoTabletModeloSS h2, .text-center-contactoTabletModeloSS2 h2, .IframeContactoTablet, .prueba5Tablet li, .mapaTablet, .prueba5Tablet ul, .hrTablet {
		display: none;
	}
	/*************************
*******footer******
**************************/
	.footer {
		height: 5%;
	}

	.mapa, .mapaOtras {
		margin-bottom: -15%;
	}

	#contact {
		padding-top: 70px;
		margin-bottom: -30px;
	}

	.social-network {
		margin-bottom: 0%;
		text-align: center;
	}

	ul.social-network {
		list-style: none;
		padding-top: 40%;
		margin-bottom: 2px;
		text-align: center;
	}


		ul.social-network li {
			display: inline;
			margin: 0 18px 0 0;
			font-size: 20px;
			padding-top: 20px;
			padding-bottom: 0%;
			text-align: center;
		}

			ul.social-network li a {
				color: #d0d0d0;
				text-align: center;
				margin-top: 5px;
				margin-bottom: 0%;
			}

	.social-network li .fa-facebook {
		margin-top: 9%;
	}
}

@media (orientation: landscape) and (min-width:1001px) and (max-width:1024px) {
	#contact {
		margin-top: -6%;
	}

	.text-centerContac h3 {
		font-size: 350%;
		margin-top: 1%;
		margin-bottom: 4%;
	}

	.text-centerContac p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 5%;
		margin-bottom: 2%;
		margin-left: 5%;
		margin-right: 5%;
		text-align: center;
		text-indent: 0em;
	}

	#contactoEspiritu {
		margin-top: -5%;
	}

	.text-center-contacto h2, .text-center-contactoMSS h2, .text-center-contactoMSS2 h2, .IframeContacto, .prueba5 li, .mapa, .hr {
		display: none;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	#contactoEspiritu, #contactoIndex {
		margin-top: -5%;
	}

	#contact {
		padding-top: 70px;
		margin-bottom: -30px;
		margin-top: -2.5%;
	}

	.text-centerContac h3 {
		font-size: 330%;
		margin-top: 2%;
		margin-bottom: 4%;
	}

	.text-centerContac p {
		font-size: 130%;
		margin-top: 2%;
		margin-bottom: 4%;
	}

	.text-center-contacto h2 {
		font-size: 150%;
	}

	.text-center-contactoMSS h2 {
		font-size: 150%;
	}

	.text-center-contactoMSS2 h2 {
		font-size: 150%;
	}

	.prueba5 ul {
		list-style: none;
		margin-top: 15%;
		margin-left: -5%;
		margin-right: 5%;
		margin-bottom: -70%;
	}

	.prueba5 li {
		font-size: 15px;
	}

	.IframeContacto {
		text-align: center;
		margin-left: -5%;
		width: 100%;
		height: 450px;
		margin-top: 0%;
		margin-bottom: -80%;
	}

	.text-center-contactoTablet h2, .text-center-contactoTabletModeloSS h2, .text-center-contactoTabletModeloSS2 h2, .IframeContactoTablet, .prueba5Tablet li, .mapaTablet, .prueba5Tablet ul, .hrTablet {
		display: none;
	}
	/*************************
*******footer******
**************************/
	.footer {
		height: -22%;
	}

	.mapa, .mapaOtras {
		margin-bottom: -30%;
	}

	#contact {
		padding-top: 70px;
		margin-bottom: 0px;
	}

	.social-network {
		margin-bottom: -20px;
		text-align: center;
	}

	ul.social-network {
		list-style: none;
		padding-top: 10%;
		margin-bottom: 2px;
		text-align: center;
	}


		ul.social-network li {
			display: inline;
			margin: 0 18px 0 0;
			font-size: 20px;
			padding-top: 5px;
			padding-bottom: 0%;
		}

			ul.social-network li a {
				color: #d0d0d0;
				text-align: center;
				margin-top: 0px;
				margin-bottom: 0%;
			}

	.social-network li .fa-facebook {
		margin-top: 0%;
	}
}

@media (min-width:1367px) {
	.text-centerContac h3 {
		margin-top: 4%;
	}

	.text-center-contactoTablet h2, .text-center-contactoTabletModeloSS h2, .text-center-contactoTabletModeloSS2 h2, .IframeContactoTablet, .prueba5Tablet li, .mapaTablet, .prueba5Tablet ul, .hrTablet {
		display: none;
	}
}

.final {
	margin-bottom: 0px;
	margin-top: 2%;
}
/**.sub-footer form {
	margin-top:-50px;
	margin-bottom:0px;
}**/

.social-network p {
	text-align: center;
	font-size: 85%;
	margin-bottom: -2%;
}

ul.social-network {
	list-style: none;
	margin-top: 2%;
	margin-bottom: 0%;
	padding: 0px;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	width: 100%;
	text-align: center;
}

.social-icon {
	text-align: center;
	/**padding-top:70px;*/
}

ul.social-network li {
	display: inline;
	margin: 0 18px 0 0;
	font-size: 20px;
	margin-bottom: 0%;
	padding-bottom: 0%;
}

	ul.social-network li a {
		color: #d0d0d0;
		text-align: center;
		margin-top: 0px;
		margin-bottom: -50%;
	}

.social-network li:hover .fa-twitter {
	color: #00abf0;
}

.social-network li:hover .fa-facebook {
	color: #39579a;
}

.social-network li:hover .fa-instagram {
	color: #bf04a9;
}

.social-network li:hover .fa-google-plus {
	color: #eb8984;
}

.social-network li:hover .fa-pinterest {
	color: #c9171e;
}

.social-network li:hover .fa-linkedin {
	color: #0077b5;
}

.social-network li:hover .fa-youtube-play {
	color: #C84941;
}

.social-network li:hover .fa-dribbble {
	color: #EA4C89;
}

.social-network li:hover .fa-pinterest-square {
	color: #EA4B49;
}

/*------------------------Historia Salva--------------------------*/
#ComoNacio {
	padding-top: 20px;
	background: #fff;
	padding-bottom: 100px;
}

#HistoriaSalva {
	padding-top: 20px;
	background: #fff;
	padding-bottom: 0px;
	margin-bottom: -2%;
}

.ImaHistoria {
	min-height: 350%;
	margin-top: -28%;
	margin-bottom: -5%;
}
/***Titulos Historia*****/
.text-centerNacio h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	line-height: 90%;
	font-size: 450%;
	margin-top: 6%;
	margin-bottom: 5%;
	color: #010187;
	text-align: center;
}

.text-center-Historia p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-top: 2%;
	margin-right: 5%;
	margin-bottom: 5%;
	text-align: justify;
	text-indent: 1em;
}

.text-center-Historia2 p {
	font-family: 'Futura-Bold', arial;
	font-size: 160%;
	line-height: 140%;
	font-weight: bold;
	color: #b38d01;
	margin-top: -2%;
	margin-right: 5%;
	margin-bottom: 3%;
	text-align: justify;
	text-indent: 0em;
}

.text-center-Historia3 p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-top: 0%;
	margin-bottom: 5%;
	text-align: justify;
	text-indent: 1em;
}

.text-center-Historia4 p {
	font-family: 'Futura-Bold', arial;
	font-size: 200%;
	font-weight: bold;
	margin-top: 10%;
	margin-bottom: 5%;
	text-align: center;
	text-indent: 0em;
}

.imagenHistoria {
	margin-top: 10%;
	margin-right: 0;
	margin-left: 10%;
	margin-bottom: 5%;
	padding: 0px;
	width: 90%;
	height: 100%;
	text-align: center;
}

.text-centerHis h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	line-height: 90%;
	font-size: 450%;
	margin-top: 3%;
	margin-bottom: 0%;
	color: white;
	text-align: center;
}

.text-centerHis2 h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	line-height: 90%;
	font-size: 450%;
	margin-top: 3%;
	margin-bottom: 0%;
	color: #010187;
	text-align: center;
}

.text-center-Historia2Tablet p {
	color: #b38d01;
	font-family: 'Roboto', arial;
	font-size: 130%;
	margin-top: 0%;
	margin-right: 5%;
	margin-left: 5%;
	margin-bottom: 2%;
	text-align: justify;
	text-indent: 0em;
}

.text-centerContactanos h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	line-height: 90%;
	font-size: 450%;
	margin-top: 3%;
	margin-bottom: 2%;
	color: #010187;
	text-align: center;
}

.text-centerContactoSalvaSeguro h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	line-height: 90%;
	font-size: 450%;
	margin-top: 1.5%;
	margin-bottom: 2%;
	color: #010187;
	text-align: center;
}

.text-centerContactanos p {
	font-family: 'Futura-Bold', arial;
	font-size: 180%;
	margin-top: 3%;
	margin-bottom: 4%;
	text-align: center;
}

.text-centerContactoSalvaSeguro p {
	font-family: 'Futura-Bold', arial;
	font-size: 180%;
	margin-top: 3%;
	margin-bottom: 4%;
	text-align: center;
}

.embed-container {
	position: relative;
	padding-bottom: 39%;
	height: 0;
	overflow: hidden;
}

	.embed-container iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

/*-----Imagen----*/

.parallax-windowHistoria {
	min-height: 500px;
	background: transparent;
}

.parallax-windowHistoria2 {
	min-height: 500px;
	background: transparent;
}

@media (max-width: 1000px) {
	.text-centerNacio h3 {
		font-family: 'Roboto', arial;
		font-size: 300%;
		line-height: 90%;
		margin-top: 13%;
		margin-bottom: 10%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-center-Historia p, .text-center-Historia2 p, .text-center-Historia3 p, .text-center-Historia4 p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 3%;
		margin-right: 5%;
		margin-left: 5%;
		margin-bottom: 5%;
	}

	.imagenHistoria {
		margin-top: 15%;
		margin-right: 0%;
		margin-left: 0%;
		margin-bottom: 10%;
		padding: 0px;
		width: 100%;
		text-align: center;
	}

	.parallax-windowHistoria {
		min-height: 350px;
		margin-top: -5%;
	}

	.parallax-windowHistoria2 {
		min-height: 350px;
		margin-top: -5%;
	}

	.text-centerHis2 h3 {
		font-family: 'Roboto', arial;
		font-size: 300%;
		line-height: 90%;
		margin-top: -2%;
		margin-bottom: 2%;
	}

	#ExperienciaSalva {
		margin-top: -25%;
	}

	.text-center-Historia2Tablet p, .text-centerHis h3, #HistoriaSalva, .embed-container, .embed-container iframe {
		display: none;
	}
}

@media (orientation: landscape) and (min-width:1001px) and (max-width:1024px) {
	.text-centerNacio h3 {
		font-size: 350%;
	}

	.text-center-Historia p, .text-center-Historia2 p, .text-center-Historia3 p, .text-center-Historia4 p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 3%;
		margin-right: 5%;
		margin-left: 5%;
		margin-bottom: 5%;
	}

	.text-center-Historia2 p {
		display: none;
	}

	.imagenHistoria {
		margin-top: 20%;
		margin-bottom: 2%;
	}

	.text-centerHis2 h3 {
		font-size: 350%;
	}

	#ExperienciaSalva {
		margin-top: -5%;
	}

	.text-centerContactanos h3 {
		font-family: 'Roboto', arial;
		font-size: 450%;
		margin-top: 4%;
		margin-bottom: 4%;
	}

	.text-centerContactanos p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 5%;
		margin-bottom: 2%;
		margin-left: 5%;
		margin-right: 5%;
		text-align: center;
		text-indent: 0em;
	}

	.hr, .mapaOtras, .ImaHistoria, .text-centerHis h3, #HistoriaSalva, .embed-container, .embed-container iframe {
		display: none;
	}
	/*	.parallax-windowHistoria{
		display:none;
	}	*/
	#ContactanosEspirituTitulo {
		margin-top: -3%;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	.text-centerNacio h3 {
		font-size: 330%;
		margin-top: 5%;
		margin-bottom: 3%;
	}

	.text-center-Historia p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 2%;
		margin-right: 5%;
		margin-bottom: 5%;
	}

	.text-center-Historia2 p {
		font-size: 120%;
		line-height: 155%;
		margin-top: -2%;
		margin-right: 5%;
		margin-bottom: 3%;
	}

	.text-center-Historia3 p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 0%;
		margin-bottom: 5%;
	}

	.text-center-Historia4 p {
		font-size: 150%;
		margin-top: 10%;
		margin-bottom: 5%;
	}

	.imagenHistoria {
		margin-top: 17%;
		margin-right: 0;
		margin-left: 10%;
		margin-bottom: 5%;
	}

	.text-center-Historia2Tablet p, .ImaHistoria {
		display: none;
	}

	.parallax-windowHistoria2 {
		min-height: 400px;
		background: transparent;
	}

	.parallax-windowHistoria, .text-centerHis2 h3, #ExperienciaSalva {
		display: none;
	}

	.text-centerHis h3 {
		font-size: 330%;
		margin-top: 2%;
		margin-bottom: 2%;
	}

	.text-centerContactanos h3 {
		font-size: 330%;
		margin-top: 4%;
		margin-bottom: 2%;
	}

	#ContactanosEspirituTitulo {
		margin-top: -2%;
	}

	.text-centerContactanos p {
		font-size: 130%;
		margin-top: 3%;
		margin-bottom: 4%;
	}

	.text-centerContactoSalvaSeguro h3 {
		font-size: 330%;
		margin-top: 0%;
		margin-bottom: 2%;
	}

	.text-centerContactoSalvaSeguro p {
		font-size: 130%;
		margin-top: 3%;
		margin-bottom: 4%;
	}

	.embed-container {
		position: relative;
		padding-bottom: 41.5%;
		height: 0;
		overflow: hidden;
	}

		.embed-container iframe {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}

	#HistoriaSalva {
		margin-top: -6%;
		padding-top: 0px;
		background: #fff;
		padding-bottom: 0px;
		margin-bottom: -3%;
	}

	.text-centerHis h3 {
		font-size: 330%;
		margin-top: 4%;
		margin-bottom: 0%;
	}
}

@media (min-width:1367px) {
	.text-center-Historia2Tablet p, .parallax-windowHistoria, .ImaHistoria, .text-centerHis2 h3, #ExperienciaSalva {
		display: none;
	}

	#HistoriaSalva {
		margin-top: -2%;
		padding-top: 0px;
		background: #fff;
		padding-bottom: 0px;
		margin-bottom: -2%;
	}

	.embed-container {
		position: relative;
		padding-bottom: 35%;
		height: 0;
		overflow: hidden;
	}

		.embed-container iframe {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}
}
/*-----------------------------Cuerpo-----------------------
*/
/*************************
*******Slider******
**************************/
.slider2 {
	position: relative;
	padding-top: 0px;
}

@media (max-width: 1000px) {
	.slider2 {
		margin-top: 88px;
	}
}

.slider2 img {
	width: 100%;
}

#carousel-slider2 {
	position: relative;
}

	#carousel-slider2 .carousel-indicators {
		bottom: -25px;
	}

		#carousel-slider2 .carousel-indicators li {
			border: 1px solid #ffbd20;
		}

	#carousel-slider2 a i {
		border: 1px solid #213967;
		border-radius: 50%;
		font-size: 30px;
		height: 50px;
		padding: 8px;
		position: absolute;
		top: 50%;
		width: 50px;
		background: #213967;
	}

		#carousel-slider2 a i:hover {
			background: #B38D01;
			color: #fff;
			border: 1px solid #B38D01;
		}

	#carousel-slider2
	.carousel-control {
		width: inherit;
	}

		#carousel-slider2 .carousel-control.left i {
			left: 40px;
			top: calc(50% - 25px);
		}

		#carousel-slider2 .carousel-control.right i {
			right: 40px;
			top: calc(50% - 25px);
		}

		#carousel-slider2
		.carousel-control.left,
		#carousel-slider2
		.carousel-control.right {
			background: none;
		}

.carousel-caption2 {
	position: absolute;
	right: 15%;
	top: calc(50% - 150px);
	font-size: 40px;
	left: 15%;
	z-index: 10;
	padding-bottom: 0px;
	color: #fff;
	text-align: center;
}
/******************************************************/
.galeria {
	height: calc( var(--h) + 3em);
	width: var(--w);
	margin: 1em;
	border: 0px;
	position: relative;
	display: inline-block;
}

	.galeria img {
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		transition: opacity 3s;
	}

	.galeria input[type=radio] {
		position: relative;
		bottom: calc(-1 * var(--h) - 1.5em);
		left: .5em;
	}

		.galeria input[type=radio]:nth-of-type(1):checked ~ img:nth-of-type(1) {
			opacity: 1;
		}

		.galeria input[type=radio]:nth-of-type(2):checked ~ img:nth-of-type(2) {
			opacity: 1;
		}

		.galeria input[type=radio]:nth-of-type(3):checked ~ img:nth-of-type(3) {
			opacity: 1;
		}

		.galeria input[type=radio]:nth-of-type(4):checked ~ img:nth-of-type(4) {
			opacity: 1;
		}
/**********************************************************/

.parallax-windowCuerpoBanner {
	min-height: 500px;
	background: transparent;
}

.ImaBannerCuerpo {
	height: 500%;
	margin-top: 10%;
}

.text-centerParaEscolar h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	line-height: 90%;
	font-size: 450%;
	margin-top: 3%;
	margin-bottom: 5%;
	color: #010187;
	text-align: center;
}

.text-centerParaEscolar p {
	font-family: 'Futura-Bold', arial;
	font-size: 180%;
	line-height: 120%;
	margin-top: 0%;
	margin-bottom: 3%;
	margin-right: 1%;
	text-align: justify;
	text-indent: 1em;
}

.text-centerDeportivas h2 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	margin-top: 1%;
	margin-bottom: 2%;
}

.text-centerCulturales h2 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	margin-top: 2%;
	padding-top: 19%;
	margin-bottom: 2%;
}

.text-centerTec h2 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	margin-top: 3%;
	margin-bottom: 0%;
}

.text-centerSoc2 h2 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	margin-top: 3%;
	margin-bottom: 0%;
}

.text-centerSoc3 h2 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	margin-top: 3%;
	margin-bottom: 0%;
}

.text-centerVida h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	line-height: 90%;
	font-size: 450%;
	margin-top: 5%;
	margin-bottom: 3%;
	color: #010187;
	text-align: center;
}

.text-centerVida p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-top: 3%;
	margin-bottom: 0%;
	text-align: justify;
	text-indent: 1em;
}

.text-centerVida2 p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-top: 3%;
	margin-bottom: 0%;
	text-align: justify;
	text-indent: 1em;
}

video {
	position: block;
	top: 0;
	left: 0;
	width: 100vw;
	height: 83vh;
	object-fit: cover;
	margin-bottom: -1%;
}

@media (max-width: 1000px) {
	.parallax-windowCuerpoBanner {
		display: none;
	}

	.text-centerParaEscolar h3 {
		font-family: 'Roboto', arial;
		font-size: 270%;
		line-height: 90%;
		margin-top: -8%;
		margin-bottom: 8%;
	}

	.text-centerVida h3 {
		font-family: 'Roboto', arial;
		font-size: 300%;
		line-height: 90%;
		margin-top: -4%;
		margin-bottom: 8%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerParaEscolar p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		text-align: justify;
		text-indent: 1em;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerDeportivas h2 {
		font-family: 'Roboto', arial;
		font-size: 200%;
		text-align: center;
		font-weight: bold;
		margin-top: 5%;
	}

	.text-centerCulturales h2 {
		font-family: 'Roboto', arial;
		font-size: 200%;
		text-align: center;
		font-weight: bold;
		margin-top: 5%;
		padding-top: 0%;
	}

	.text-centerTec h2 {
		font-family: 'Roboto', arial;
		font-size: 200%;
		text-align: center;
		font-weight: bold;
		margin-top: 2%;
		margin-bottom: -23%;
		padding-bottom: -20%;
	}

	.text-centerSoc3 h2 {
		font-family: 'Roboto', arial;
		font-size: 200%;
		text-align: center;
		font-weight: bold;
		margin-top: 5%;
		margin-bottom: 2%;
		padding-bottom: -5%;
	}

	.text-centerSoc2 h2, .text-centerSoc4 h2 {
		display: none;
	}

	.text-centerVida p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		text-align: justify;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerVida2 p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		text-align: justify;
		margin-bottom: -20%;
		padding-bottom: -20%;
		margin-left: 5%;
		margin-right: 5%;
	}
}

@media (orientation: landscape) and (min-width:1001px) and (max-width:1024px) {
	.text-centerParaEscolar h3 {
		font-size: 300%;
		line-height: 90%;
		margin-top: 0%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerVida h3 {
		font-size: 300%;
		line-height: 90%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerParaEscolar p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		text-align: justify;
		text-indent: 1em;
		margin-left: 5%;
		margin-right: 5%;
		margin-bottom: 3%;
	}

	.text-centerDeportivas h2 {
		font-family: 'Roboto', arial;
		font-size: 240%;
		text-align: left;
		margin-left: 1%;
		font-weight: bold;
		margin-top: 2%;
	}

	.text-centerCulturales h2 {
		font-family: 'Roboto', arial;
		font-size: 240%;
		text-align: left;
		font-weight: bold;
		margin-top: 5%;
		margin-left: 1%;
		padding-top: 0%;
	}

	.text-centerTec h2 {
		font-family: 'Roboto', arial;
		font-size: 240%;
		text-align: left;
		font-weight: bold;
		margin-top: 2%;
		margin-left: 3%;
		margin-bottom: -5%;
		padding-bottom: -20%;
	}

	.text-centerSoc4 h2 {
		font-family: 'Roboto', arial;
		color: #315aa8;
		font-size: 240%;
		text-align: left;
		font-weight: bold;
		margin-top: 3%;
		margin-bottom: 4%;
		margin-left: -101%;
	}

	.text-centerSoc2 h2, .text-centerSoc3 h2, .ImaBannerCuerpo {
		display: none;
	}

	.text-centerVida p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		text-align: justify;
		margin-left: 5%;
		margin-bottom: -15%;
	}

	.text-centerVida2 p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		text-align: justify;
		margin-bottom: -15%;
		margin-right: 5%;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	.ImaBannerCuerpo, .text-centerSoc3, .text-centerSoc4 {
		display: none;
	}

	.text-centerParaEscolar h3 {
		line-height: 90%;
		font-size: 330%;
		margin-top: 0%;
		margin-bottom: 5%;
	}

	.text-centerParaEscolar p {
		font-size: 150%;
		line-height: 120%;
		margin-top: 0%;
		margin-bottom: 3%;
	}

	.text-centerDeportivas h2 {
		font-size: 170%;
		margin-top: 1%;
		margin-bottom: 2%;
		margin-left: 2%;
	}

	.text-centerCulturales h2 {
		font-size: 170%;
		margin-top: 4%;
		padding-top: 24%;
		margin-bottom: 2%;
		margin-left: 2%;
	}

	.text-centerTec h2 {
		font-size: 170%;
		margin-top: 1%;
		padding-top: -2%;
		padding-bottom: 2%;
		margin-bottom: -5%;
		margin-left: 4%;
	}

	.text-centerSoc2 h2 {
		font-size: 170%;
		margin-top: 1%;
		padding-top: -2%;
		padding-bottom: 2%;
		margin-bottom: -5%;
		margin-left: 3%;
	}

	.text-centerVida h3 {
		font-size: 330%;
		margin-top: 4%;
		margin-bottom: 3%;
	}

	.text-centerVida p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 3%;
		margin-bottom: -4%;
	}

	.text-centerVida2 p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 3%;
		margin-bottom: -4%;
	}
}

@media (min-width:1367px) {
	.text-centerSoc3 h2, .text-centerSoc4 h2, .ImaBannerCuerpo {
		display: none;
	}
}
/* Portfolio Section
--------------------------------*/
#portfolio {
	background: #fff;
	padding: 80px 0;
}

	#portfolio #portfolio-wrapper {
		padding-right: 20px;
	}

	#portfolio .portfolio-item {
		position: relative;
		height: 300px;
		overflow: hidden !important;
		margin-bottom: 15px;
		transition: all 350ms ease;
		transform: scale(1);
	}

		#portfolio .portfolio-item a {
			display: block;
			margin-right: 15px;
		}

		#portfolio .portfolio-item img {
			position: relative;
			top: 0;
			transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
		}

		#portfolio .portfolio-item .details {
			height: 50px;
			background: #213967;
			position: absolute;
			width: 100%;
			bottom: -50px;
			transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
		}

			#portfolio .portfolio-item .details h4 {
				font-size: 25px;
				font-weight: 700;
				color: #fff;
				padding: 10px 0 2px 10px;
				margin: 0;
			}

			#portfolio .portfolio-item .details span {
				display: block;
				color: #fff;
				font-size: 13px;
				padding-left: 8px;
			}

		#portfolio .portfolio-item:hover .details {
			bottom: 0;
		}

		#portfolio .portfolio-item:hover img {
			top: -30px;
		}

@media (max-width: 1000px) {
	#portfolio #portfolio-wrapper {
		padding-right: 5px;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	#portfolio .portfolio-item .details h4 {
		font-size: 15px;
		margin-top: 3%;
		font-weight: 700;
	}
}
/**********************Instalaciones***************/
.videoInstalaciones {
	margin-top: 0%;
}

.parallax-windowInstalaciones {
	min-height: 500px;
	background: transparent;
}

.text-centerInstalaciones h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	line-height: 90%;
	font-size: 450%;
	margin-top: 2%;
	margin-bottom: 2%;
	color: #010187;
	text-align: center;
}

.text-centerInstalaciones p {
	font-family: 'Futura-Bold', arial;
	font-size: 180%;
	line-height: 150%;
	margin-top: 4%;
	margin-bottom: 0%;
	margin-left: 9%;
	margin-right: 10%;
	text-align: justify;
	text-indent: 1em;
}

@media (max-width: 1000px) {
	.parallax-windowInstalaciones {
		min-height: 350px;
		margin-top: -5%;
	}

	.text-centerInstalaciones h3 {
		font-family: 'Roboto', arial;
		font-size: 300%;
		margin-top: -7%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerInstalaciones p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		line-height: normal;
		margin-top: 10%;
		margin-bottom: -10%;
		margin-left: 12%;
		margin-right: 12%;
		text-align: justify;
		text-indent: 1em;
	}

	.videoInstalaciones {
		display: none;
	}
}

@media (orientation: landscape) and (min-width:1001px) and (max-width:1024px) {
	.text-centerInstalaciones h3 {
		margin-top: 0%;
		font-size: 350%;
	}

	.text-centerInstalaciones p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		line-height: normal;
		margin-top: 5%;
		margin-bottom: -2%;
		margin-left: 5%;
		margin-right: 5%;
		text-align: justify;
		text-indent: 1em;
	}

	.videoInstalaciones {
		/*	margin-top: 0%;*/
		display: none;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	.text-centerInstalaciones h3 {
		font-size: 330%;
		margin-top: 2%;
		margin-bottom: 2%;
	}

	.text-centerInstalaciones p {
		font-family: 'Futura-Bold', arial;
		font-size: 140%;
		line-height: 150%;
		margin-top: 4%;
		margin-bottom: -2%;
		margin-left: 4%;
		margin-right: 6%;
	}

	.parallax-windowInstalaciones {
		display: none;
	}
}

@media (min-width: 1367px) {
	.parallax-windowInstalaciones {
		display: none;
	}
}
/*****************************************Espiritu*****************************************************/
.parallax-windowBannerEspiritu {
	min-height: 500px;
	background: transparent;
}

.ImaBannerEspiritu {
	height: 500%;
	margin-top: 10%;
}

#Espiritu {
	padding-top: 20px;
	background: #fff;
	padding-bottom: 25px;
}

.text-centerEspiritu h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	line-height: 90%;
	font-size: 450%;
	margin-top: 5%;
	margin-bottom: 2%;
	color: #010187;
	text-align: center;
}

.text-centerEspiritu h2 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	line-height: 90%;
	color: #315aa8;
	font-size: 270%;
	text-align: left;
	/**font-weight: bold;**/
	margin-top: 0%;
	margin-bottom: 2%;
}

.text-centerEspiritu5 h2 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	line-height: 90%;
	color: #315aa8;
	font-size: 270%;
	text-align: left;
	/**font-weight: bold;**/
	margin-top: -1%;
	margin-bottom: 2%;
}

.text-centerEspirituPro h2 {
	font-family: 'Futura-Bold', arial;
	line-height: 90%;
	color: #315aa8;
	font-size: 260%;
	text-align: left;
	/**font-weight: bold;**/
	margin-top: 5%;
	margin-bottom: 6%;
}

.text-centerEspirituPro2 h2 {
	font-family: 'Futura-Bold', arial;
	line-height: 90%;
	color: #315aa8;
	font-size: 260%;
	text-align: left;
	/**font-weight: bold;**/
	margin-top: -105%;
	margin-bottom: 4%;
}

.text-centerEspirituPastoral h2 {
	font-family: 'Futura-Bold', arial;
	line-height: 90%;
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	font-weight: bold;
	margin-top: 3%;
	margin-bottom: 2%;
}

.text-centerEspirituPastoral2 h2 {
	font-family: 'Futura-Bold', arial;
	line-height: 90%;
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	font-weight: bold;
	/**margin-top:-205%;**/
	margin-bottom: 2%;
	margin-top: 4%;
}

.text-centerEspirituPastoral3 h2 {
	font-family: 'Futura-Bold', arial;
	line-height: 90%;
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	font-weight: bold;
	margin-top: 3%;
	margin-bottom: 4%;
}

.text-centerEspirituPastoral4 h2 {
	font-family: 'Futura-Bold', arial;
	line-height: 90%;
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	font-weight: bold;
	margin-top: -.5%;
	margin-bottom: 4%;
}

.imagenEspiritu {
	margin-top: -1%;
	margin-bottom: -7%;
	padding: 10px;
	text-align: center;
}

.text-centerEspiritu p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-top: 1%;
	margin-bottom: 0%;
	text-align: justify;
	text-indent: 1em;
}

.text-centerEspiritu2 p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-top: 5%;
	margin-bottom: 1%;
	text-align: justify;
	text-indent: 1em;
}

.text-centerLiturgicas p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	color: #FFF;
	margin-top: 5%;
	margin-bottom: 1%;
	text-align: justify;
	text-indent: 1em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50% );
}

.text-centerProgramas p {
	font-family: 'Futura-Bold', arial;
	font-size: 170%;
	margin-top: 0%;
	margin-bottom: 5%;
	text-align: justify;
	font-weight: bold;
}

.text-centerActLit p {
	font-family: 'Futura-Bold', arial;
	font-size: 170%;
	margin-top: 0%;
	margin-bottom: 5%;
	text-align: center;
	font-weight: bold;
}

.text-centerViveValores h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	line-height: 90%;
	font-size: 450%;
	margin-top: 2%;
	margin-bottom: 2%;
	color: #010187;
	text-align: center;
}

/*-----Imagen Parallax----*/
.parallax-windowEspiritu {
	min-height: 750px;
	background: transparent;
	margin-top: -20%;
	margin-bottom: 1.5%;
}

.parallax-windowEspiritu2 {
	min-height: 750px;
	background: transparent;
	margin-top: -20%;
}

.ImaIndexEspiritu {
	min-height: 350%;
	margin-top: -25%;
	margin-bottom: -4%;
}

.ImaIluminaVideo {
	min-height: 350%;
	margin-top: -25%;
	margin-bottom: -4%;
}

.ImaIluminaVideo2 {
	min-height: 350%;
	margin-top: -25%;
	margin-bottom: 20%;
}
/************************************Tablet*********************/
.text-centerEspirituPro2Tablet h2 {
	font-family: 'Roboto', arial;
	font-weight: bold;
	line-height: 90%;
	color: #315aa8;
	font-size: 260%;
	text-align: center;
	/**font-weight: bold;**/
	margin-top: 0%;
	margin-bottom: 3%;
}

.text-centerEspirituPastoral2Tablet h2 {
	font-family: 'Roboto', arial;
	font-size: 150%;
	color: #315aa8;
	text-align: center;
	font-weight: bold;
	margin-bottom: 2%;
	margin-top: 2%;
}

.text-centerProgramasTablet p {
	font-family: 'Roboto', arial;
	font-size: 130%;
	margin-top: 2%;
	margin-bottom: 3%;
	margin-left: 5%;
	margin-right: 5%;
	text-align: center;
	font-weight: bold;
}

.text-centerProgramasTablet2 p {
	font-family: 'Roboto', arial;
	font-size: 130%;
	margin-top: 2%;
	margin-bottom: 11%;
	margin-left: 5%;
	margin-right: 5%;
	text-align: center;
	font-weight: bold;
}

.text-centerEspiritu2Tablet22 p {
	font-family: 'Roboto', arial;
	font-size: 130%;
	margin-top: 2%;
	margin-bottom: 2%;
	margin-left: 5%;
	margin-right: 5%;
	text-align: justify;
	text-indent: 1em;
}

.imagenEspirituTablet {
	margin-top: 2%;
	margin-bottom: 5%;
	width: 100%;
	text-align: center;
}

@media (max-width: 1000px) {

	.parallax-windowBannerEspiritu, .imagenEspiritu {
		display: none;
	}

	.text-centerEspiritu h3 {
		font-family: 'Roboto', arial;
		font-size: 300%;
		line-height: 90%;
		margin-top: 9%;
		margin-bottom: 10%;
	}

	.text-centerViveValores h3 {
		font-family: 'Roboto', arial;
		font-size: 300%;
		line-height: 90%;
		margin-top: -4%;
		margin-bottom: 2%;
		margin-right: 5%;
		margin-left: 5%;
	}

	.text-centerEspiritu5 h2 {
		font-family: 'Roboto', arial;
		text-align: center;
		margin-top: 10%;
		margin-bottom: 10%;
	}

	.text-centerEspiritu h2 {
		font-family: 'Roboto', arial;
		text-align: center;
		margin-top: 5%;
		margin-bottom: 5%;
	}

	.text-centerEspiritu p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		text-align: justify;
		text-indent: 1em;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerEspirituPro h2, .text-centerEspiritu2Tablet2, .text-centerEspirituPro2Tablet h2, .text-centerEspirituPastoral2Tablet h2, .text-centerProgramasTablet p, .text-centerEspiritu2Tablet22 p, .imagenEspirituTablet, .text-centerProgramasTablet2 p {
		display: none;
	}

	.text-centerEspirituPro2 h2 {
		font-family: 'Roboto', arial;
		font-size: 260%;
		text-align: center;
		margin-top: 5%;
		margin-bottom: 8%;
	}

	.text-centerEspirituPastoral h2 {
		font-family: 'Roboto', arial;
		font-size: 150%;
		color: #315aa8;
		text-align: center;
		font-weight: bold;
		margin-top: 1%;
		margin-bottom: 6%;
	}

	.text-centerEspirituPastoral2 h2 {
		font-family: 'Roboto', arial;
		font-size: 150%;
		text-align: center;
		font-weight: bold;
		margin-bottom: 4%;
		margin-top: 5%;
	}

	.text-centerEspirituPastoral3 h2 {
		font-family: 'Roboto', arial;
		font-size: 150%;
		text-align: center;
		font-weight: bold;
		margin-bottom: 4%;
		margin-top: 8%;
	}

	.text-centerEspirituPastoral4 h2 {
		font-family: 'Roboto', arial;
		font-size: 150%;
		text-align: center;
		font-weight: bold;
		margin-top: -19%;
		margin-bottom: 5%;
	}

	.text-centerProgramas p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 2%;
		margin-bottom: 5%;
		margin-left: 5%;
		margin-right: 5%;
		text-align: center;
		font-weight: bold;
	}

	.text-centerEspiritu2 p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 5%;
		margin-bottom: 5%;
		margin-left: 5%;
		margin-right: 5%;
		text-align: justify;
		text-indent: 1em;
	}

	.parallax-windowEspiritu {
		min-height: 250px;
		margin-top: -11%;
	}

	.parallax-windowEspiritu2 {
		min-height: 250px;
		margin-top: -13%;
		margin-bottom: 10%;
	}

	.text-centerActLit p {
		font-family: 'Futura-Bold', arial;
		font-size: 120%;
		margin-top: 8%;
	}
}

@media (orientation: landscape) and (min-width:1001px) and (max-width:1024px) {
	.ImaIluminaVideo, .ImaIluminaVideo2, .ImaIndexEspiritu, .text-centerEspirituPro h2, .text-centerEspirituPro2 h2, .text-centerEspirituPastoral2 h2, .text-centerProgramas p, .text-centerEspiritu2 p, .ImaBannerEspiritu {
		display: none;
	}

	.text-centerEspiritu h3 {
		font-size: 350%;
		line-height: 110%;
		margin-top: 6%;
		margin-bottom: 5%;
	}

	.text-centerEspiritu h2 {
		font-family: 'Roboto', arial;
		color: #315aa8;
		font-size: 260%;
		text-align: left;
		/**font-weight: bold;**/
		margin-top: 0%;
		margin-bottom: 3%;
	}

	.text-centerEspiritu p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 1%;
		margin-bottom: 0%;
		text-align: justify;
		text-indent: 1em;
	}

	.text-centerEspiritu5 h2 {
		font-family: 'Roboto', arial;
		color: #315aa8;
		font-size: 260%;
		text-align: left;
		/**font-weight: bold;**/
		margin-top: 4%;
		margin-bottom: 2%;
	}

	.text-centerEspirituPastoral h2 {
		font-family: 'Roboto', arial;
		line-height: 90%;
		color: #315aa8;
		font-size: 150%;
		text-align: center;
		font-weight: bold;
		margin-top: 3%;
		margin-bottom: 2%;
	}

	.text-centerViveValores h3 {
		font-size: 350%;
		line-height: 110%;
		margin-top: 1%;
		margin-right: 5%;
		margin-left: 5%;
	}

	.text-centerEspiritu2Tablet2 p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 5%;
		margin-bottom: 5%;
		margin-left: 5%;
		margin-right: 5%;
		text-align: justify;
		text-indent: 1em;
	}

	.text-centerEspirituPastoral3 h2 {
		font-family: 'Roboto', arial;
		font-size: 150%;
		text-align: center;
		font-weight: bold;
		margin-bottom: 4%;
		margin-top: 4%;
	}

	.text-centerEspirituPastoral4 h2 {
		font-family: 'Roboto', arial;
		font-size: 150%;
		text-align: center;
		font-weight: bold;
		margin-top: -5%;
		margin-bottom: 4%;
	}

	.parallax-windowEspiritu {
		min-height: 250px;
		margin-top: -4%;
	}

	.parallax-windowEspiritu2 {
		min-height: 250px;
		margin-top: -2%;
	}

	.text-centerActLit p {
		font-family: 'Futura-Bold', arial;
		font-size: 120%;
		margin-top: 2%;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	.ImaBannerEspiritu, .text-centerProgramasTablet, .text-centerEspiritu2Tablet22, .text-centerProgramasTablet2, .ImaIndexEspiritu {
		display: none;
	}

	.text-centerEspiritu h3 {
		line-height: 100%;
		font-size: 330%;
		margin-top: 5%;
		margin-bottom: 2%;
	}

	.text-centerEspiritu h2 {
		font-size: 200%;
		margin-top: 0%;
		margin-bottom: 2%;
	}

	.text-centerEspiritu p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 1%;
		margin-bottom: 0%;
	}

	.text-centerEspiritu5 h2 {
		font-size: 200%;
		text-align: left;
		margin-top: -1%;
		margin-bottom: 2%;
	}

	.text-centerEspirituPastoral h2 {
		font-size: 150%;
		margin-top: 3%;
		margin-bottom: 2%;
	}

	.text-centerProgramas p {
		font-size: 120%;
		margin-top: 0%;
		margin-bottom: 5%;
		text-align: center;
	}

	.text-centerEspiritu2 p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 5%;
		margin-bottom: 1%;
	}

	.parallax-windowEspiritu {
		min-height: 650px;
	}

	.text-centerEspirituPastoral3 h2 {
		font-size: 150%;
		margin-top: 5%;
		margin-bottom: 4%;
	}

	.text-centerEspirituPastoral4 h2 {
		font-size: 150%;
		margin-top: -2%;
		margin-bottom: 4%;
	}

	.text-centerActLit p {
		font-size: 120%;
		margin-top: 0%;
		margin-bottom: 5%;
	}

	.text-centerViveValores h3 {
		line-height: 90%;
		font-size: 330%;
		margin-top: 2%;
		margin-bottom: 2%;
	}
}

@media (min-width: 1367px) {
	.ImaIluminaVideo, .ImaIluminaVideo2, .text-centerEspirituPro2 h2, .text-centerEspirituPastoral2 h2, .ImaIndexEspiritu, .text-centerEspiritu2Tablet2, .text-centerEspirituPro2Tablet h2, .text-centerEspirituPastoral2Tablet h2, .text-centerProgramasTablet p, .text-centerEspiritu2Tablet22 p, .imagenEspirituTablet, .text-centerProgramasTablet2 p, .ImaBannerEspiritu {
		display: none;
	}
}
/************************Servicios*****************************/
.parallax-windowServiciosBanner {
	min-height: 500px;
	background: transparent;
}

.ImaServicios {
	height: 500%;
	margin-top: 10%;
}

.text-centerEjes p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-top: 2%;
	margin-bottom: 0%;
	text-align: justify;
	margin-left: .5%;
	padding-top: 1%;
	font-weight: bold;
}

.text-centerServicio h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	font-size: 450%;
	margin-top: 6%;
	margin-bottom: 2%;
	color: #010187;
	text-align: center;
}

.text-centerCajaOrien {
	width: 100%;
	height: 100px;
	/*background-image:url(../img/fondoClaro2.png);*/
	box-shadow: 3px 0px 0px #213967;
	margin-top: 2%;
	margin-bottom: 5%;
	margin-left: 1%;
}

.text-centerServicioOrien2 p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-top: 2%;
	margin-bottom: 1%;
	text-align: justify;
	text-indent: 1em;
	margin-right: 1.5%;
	padding-top: 1%;
}

.text-centerServicioOrien p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-top: 2%;
	margin-bottom: 1%;
	text-align: justify;
	text-indent: 1em;
}

.text-centerOrientacion p {
	font-family: 'Futura-Bold', arial;
	font-size: 140%;
	margin-top: 0%;
	margin-bottom: 0%;
	margin-left: 3%;
	margin-right: 4%;
	text-align: justify;
	display: inline-block;
}

.text-centerOrientacion h2 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	margin-top: 2%;
	margin-bottom: 2%;
}

.imagenServiciosOrientacion {
	margin-top: 2%;
	margin-bottom: 2%;
	margin-left: 5%;
	margin-right: -10%;
	text-align: center;
}

.text-centerTutorias h2 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	margin-top: 6%;
	margin-bottom: 4%;
}

.text-centerOrientacionObjetivo p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-top: 5%;
	margin-bottom: 1%;
	text-align: justify;
	text-indent: 1em;
}

.parallax-windowServicios {
	min-height: 350px;
	background: transparent;
}

.parallax-windowServicios2 {
	min-height: 350px;
	background: transparent;
}

.text-centerEnfermeria p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-top: 0%;
	margin-bottom: 1%;
	text-align: justify;
	text-indent: 1em;
}

.text-centerCafeteria p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-top: 0%;
	margin-bottom: 1%;
	text-align: justify;
	text-indent: 1em;
}

.text-centerEnfermeria h2 {
	font-family: 'Futura-Bold', arial;
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	font-weight: bold;
	margin-top: 8%;
	margin-bottom: 5%;
}

.text-centerSeguro h2 {
	font-family: 'Futura-Bold', arial;
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	font-weight: bold;
	margin-top: 6%;
	margin-bottom: 5%;
}

.text-centerCafeteria h2 {
	font-family: 'Futura-Bold', arial;
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	font-weight: bold;
	margin-top: 8%;
	margin-bottom: 5%;
}

.text-centerEnfermeriaSub p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-top: 5%;
	margin-bottom: 5%;
	text-align: justify;
	font-weight: bold;
}

.imagenCafeteria {
	margin-top: 1%;
	margin-bottom: 2%;
	padding: 10px;
	text-align: center;
}


.imagenServiciosOrientacionTablet {
	display: inline-block;
	margin-top: 20%;
	margin-bottom: 2%;
	padding: 10px;
	text-align: center;
	width: 50%;
}

.text-centerEnfermeriaTablet2 h2 {
	font-family: 'Roboto', arial;
	font-size: 250%;
	line-height: 100%;
	font-weight: bold;
	color: #315aa8;
	text-align: center;
	margin-top: 6.5%;
	margin-bottom: 2.3%;
	margin-left: 5%;
	margin-right: 5%;
	;
}

.text-centerEnfermeriaTablet2 p {
	font-family: 'Roboto', arial;
	font-size: 130%;
	margin-top: 0%;
	margin-bottom: 1%;
	margin-left: 5%;
	margin-right: 5%;
	text-align: justify;
	text-indent: 1em;
}

.text-centerOrientacionTablet h2 {
	font-family: 'Roboto', arial;
	font-size: 200%;
	line-height: 100%;
	font-weight: bold;
	color: #315aa8;
	text-align: center;
	margin-top: -2%;
	margin-bottom: 5%;
	margin-left: 5%;
	margin-right: 5%;
	;
}

@media (max-width: 1000px) {

	.text-centerServicio h3 {
		font-family: 'Roboto', arial;
		font-size: 300%;
		line-height: 90%;
		margin-top: 14%;
		margin-bottom: 7%;
	}

	.text-centerCafeteria h2, .text-centerTutorias h2 {
		font-family: 'Roboto', arial;
		font-size: 200%;
		line-height: 190%;
		text-align: center;
		margin-top: 3%;
		margin-bottom: 7%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerOrientacion h2 {
		font-family: 'Roboto', arial;
		font-size: 200%;
		line-height: 190%;
		text-align: center;
		margin-top: 3%;
		margin-bottom: 5%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerEnfermeria h2 {
		font-family: 'Roboto', arial;
		font-size: 200%;
		line-height: 190%;
		text-align: center;
		margin-top: 5%;
		margin-bottom: 7%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerSeguro h2 {
		font-family: 'Roboto', arial;
		font-size: 200%;
		line-height: 190%;
		text-align: center;
		margin-top: 7%;
		margin-bottom: 7%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerCafeteria h2 {
		font-family: 'Roboto', arial;
		font-size: 200%;
		line-height: 190%;
		text-align: center;
		margin-top: 8%;
		margin-bottom: 8%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerEspiritu2 p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 5%;
		margin-bottom: 5%;
		margin-left: 5%;
		margin-right: 5%;
		text-align: justify;
		text-indent: 1em;
	}

	.text-centerEjes p {
		font-family: 'Roboto', arial;
		font-size: 150%;
		margin-top: 35%;
		margin-bottom: 4%;
		text-align: center;
		font-weight: bold;
	}

	.text-centerOrientacionObjetivo p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 5%;
		margin-bottom: 1%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerServicioOrien p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 5%;
		margin-bottom: 5%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerServicioOrien2 p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 3%;
		margin-bottom: 30%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.parallax-windowServicios {
		font-family: 'Roboto', arial;
		font-size: 130%;
		min-height: 250px;
		margin-top: 2%;
		margin-bottom: 7%;
	}

	.parallax-windowServicios2 {
		font-family: 'Roboto', arial;
		font-size: 130%;
		min-height: 250px;
		margin-top: -1%;
		margin-bottom: 7%;
	}

	.text-centerEnfermeria p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 0%;
		margin-bottom: 1%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerCafeteria p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 0%;
		margin-bottom: 1%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerEnfermeriaSub p {
		font-family: 'Roboto', arial;
		font-size: 140%;
		margin-top: 5%;
		margin-bottom: 5%;
		text-align: justify;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerOrientacion p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		line-height: 90%;
		margin-top: 1%;
		margin-bottom: 2%;
		margin-left: 5%;
		margin-right: 5%;
		text-align: justify;
		display: inline-block;
	}

	.imagenCafeteria {
		margin-top: -5%;
		margin-bottom: 18%;
		text-align: center;
	}

	.text-centerCajaOrien {
		box-shadow: 0px 0px 0px;
		margin-top: 0%;
		margin-bottom: 0%;
		margin-left: 0%;
	}

	.text-centerOrientacionTablet h2, .text-centerEspiritu2Tablet p, .text-centerEjesTablet p, .text-centerOrientacionTablet p, .imagenServiciosOrientacionTablet, .text-centerEnfermeriaTablet2 h2, .text-centerEnfermeriaTablet2 p, .parallax-windowServiciosBanner {
		display: none;
	}
}

@media (orientation: landscape) and (min-width:1001px) and (max-width:1024px) {
	.text-centerServicio h3 {
		font-size: 350%;
		margin-top: 11%;
		margin-bottom: 8%;
	}

	.text-centerOrientacion h2 {
		font-family: 'Roboto', arial;
		font-size: 250%;
		line-height: 100%;
		font-weight: bold;
		color: #315aa8;
		text-align: center;
		margin-top: -2%;
		margin-bottom: 5%;
		margin-left: 5%;
		margin-right: 5%;
		;
	}

	.text-centerCajaOrien {
		box-shadow: 0px 0px 0px;
		margin-top: 0%;
		margin-bottom: 0%;
		margin-left: 0%;
	}

	.text-centerTutorias h2, .text-centerEnfermeria h2 {
		font-family: 'Roboto', arial;
		font-size: 250%;
		line-height: 100%;
		font-weight: bold;
		color: #315aa8;
		text-align: center;
		margin-top: 13%;
		margin-bottom: 5%;
		margin-left: 5%;
		margin-right: 5%;
		;
	}

	.text-centerSeguro h2 {
		font-family: 'Roboto', arial;
		font-size: 250%;
		line-height: 100%;
		font-weight: bold;
		color: #315aa8;
		text-align: center;
		margin-top: 5%;
		margin-bottom: 5%;
		margin-left: 5%;
		margin-right: 5%;
		;
	}

	.text-centerServicioOrien p, .text-centerServicioOrien2 p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 1%;
		margin-bottom: 5%;
		text-align: justify;
		text-indent: 1em;
	}

	.text-centerEjes p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 1%;
		margin-bottom: 0%;
		text-align: justify;
		font-weight: bold;
	}

	.text-centerOrientacion p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 0%;
		margin-bottom: 0%;
		text-align: left;
		margin-left: 10%;
		display: list-item;
	}

	.parallax-windowServicios2 {
		margin-top: -1%;
		margin-bottom: 1%;
	}

	.text-centerOrientacionObjetivo p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 5%;
		margin-bottom: 1%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerEnfermeria p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 0%;
		margin-bottom: 1%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerEnfermeriaSub p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 5%;
		margin-bottom: 5%;
		text-align: left;
		margin-left: 5%;
		margin-right: 5%;
	}

	.imagenCafeteria {
		display: inline-block;
		margin-top: 4%;
		margin-bottom: 13%;
		margin-right: 5%;
		text-align: center;
		width: 45%;
		padding: 0%;
	}

	.text-centerEspiritu2 p, .text-centerCafeteria h2, .text-centerCafeteria p, .ImaServicios {
		display: none;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	.ImaServicios, .text-centerEnfermeriaTablet2, .text-centerEnfermeriaTablet2 {
		display: none;
	}

	.text-centerServicio h3 {
		font-size: 330%;
		margin-top: 7%;
		margin-bottom: 2%;
	}

	.text-centerOrientacion h2 {
		font-size: 200%;
		margin-top: 2%;
		margin-bottom: 2%;
	}

	.text-centerCajaOrien {
		width: 100%;
		height: 80px;
		/*background-image:url(../img/fondoClaro2.png);*/
		box-shadow: 2px 0px 0px #213967;
		margin-top: 2%;
		margin-bottom: 3%;
		margin-left: 1%;
	}

	.text-centerServicioOrien p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 2%;
		margin-bottom: 4%;
	}

	.text-centerServicioOrien2 p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 2%;
		margin-bottom: 1%;
		margin-right: 1.5%;
		padding-top: 1.5%;
	}

	.text-centerEjes p {
		font-size: 100%;
		font-weight: bold;
		line-height: 175%;
		margin-top: 1.5%;
		margin-bottom: -.5%;
		margin-left: -.5%;
		padding-top: 1.7%;
	}

	.text-centerOrientacion p {
		font-size: 100%;
		line-height: 50%;
		margin-top: 0%;
		margin-bottom: 0%;
		margin-left: 1%;
		margin-right: 3%;
	}

	.parallax-windowServicios {
		min-height: 300px;
	}

	.parallax-windowServicios2 {
		min-height: 300px;
	}

	.text-centerTutorias h2 {
		font-size: 200%;
		text-align: left;
		margin-top: 10%;
		margin-bottom: 6%;
	}

	.text-centerEnfermeria h2 {
		font-size: 200%;
		margin-top: 11%;
		margin-bottom: 5%;
	}

	.text-centerEnfermeria p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 0%;
		margin-bottom: 1%;
	}

	.text-centerEnfermeriaSub p {
		font-size: 120%;
		margin-top: 5%;
		margin-bottom: 5%;
	}

	.text-centerSeguro h2 {
		font-size: 200%;
		text-align: left;
		margin-top: 6%;
		margin-bottom: 5%;
	}

	.text-centerCafeteria h2 {
		font-size: 200%;
		text-align: left;
		margin-top: 11%;
		margin-bottom: 5%;
	}

	.text-centerCafeteria p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 0%;
		margin-bottom: 1%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.imagenCafeteria {
		margin-bottom: 8%;
		margin-top: 3%;
	}
}

@media (min-width:1367px) {
	.text-centerEspiritu2Tablet p, .text-centerEnfermeriaTablet2 h2, .text-centerEnfermeriaTablet2 p, .ImaServicios {
		display: none;
	}
}
/***************************Mente***************************/
.parallax-windowMenteBanner {
	min-height: 500px;
	background: transparent;
}

.parallax-windowSalvaModeloSeguro {
	min-height: 500px;
	background: transparent;
}

.text-centerMente h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	font-size: 450%;
	margin-top: 6%;
	margin-bottom: 4%;
	color: #010187;
	text-align: center;
}

.text-centerManual h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	font-size: 300%;
	margin-top: -5%;
	margin-bottom: 0%;
	margin-left: 0%;
	margin-right: 0%;
	color: #010187;
	text-align: CENTER;
}


.text-centerMente p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-top: 0%;
	margin-bottom: 1%;
	text-align: justify;
	text-indent: 1em;
}

.text-centerMenteSub p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-top: 8%;
	margin-bottom: 5%;
	text-align: justify;
	font-weight: bold;
}

.text-centerCaja {
	width: 100%;
	height: 400px;
	/*background-image:url(../img/fondoClaro2.png);*/
	box-shadow: 10px 5px 5px #213967;
	margin-top: 4%;
}

.text-centerCaja2 {
	width: 100%;
	height: 336px;
	/*background-image:url(../img/fondoClaro2.png);*/
	box-shadow: 10px 5px 5px #213967;
	margin-top: 4%;
}

.text-centerCaja2Bachilleratos {
	width: 100%;
	height: 500px;
	/*background-image:url(../img/fondoClaro2.png);*/
	box-shadow: 10px 5px 5px #213967;
	margin-top: 4%;
	margin-bottom: 10%;
}

.text-centerCajaModeloSalvaSeguro {
	width: 102%;
	height: 280px;
	/*background-image:url(../img/fondoClaro2.png);*/
	box-shadow: 10px 5px 5px #213967;
	margin-top: 6%;
	margin-bottom: 7%;
	margin-left: -10%;
}

.text-centerSalvaSeguro p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-bottom: 1%;
	margin-left: 5%;
	margin-right: 5%;
	padding-top: 3%;
	text-align: justify;
	text-indent: 1em;
}

.text-centerMente2 p {
	font-size: 150%;
	margin-top: 2%;
	margin-bottom: 0%;
	padding: 5%;
	padding-top: 7%;
	text-align: justify;
	text-indent: 1em;
}

.text-centerMente2 li:before {
	content: url(file:///C|/Users/Dennis/Desktop/Bikin/img/checked.png);
	padding-right: 9px;
	padding-left: 2px;
	padding-bottom: 0;
}

.text-centerMente2 li {
	display: block;
	font-size: 150%;
	margin-top: 0%;
	margin-bottom: 1%;
	padding-left: 3%;
	padding-right: 3%;
	text-align: justify;
	font-weight: bold;
}

.text-centerMenteProg h2 {
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	font-weight: bold;
	margin-top: 5%;
	margin-bottom: 4%;
}

.text-centerMenteMapas h2 {
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	font-weight: bold;
	margin-top: 58%;
	margin-bottom: 0%;
}

.text-centerMentePrepaLograrloCS h2 {
	font-size: 180%;
	margin-top: 0%;
	margin-bottom: 2%;
	text-align: justify;
	color: #b38d01;
	font-weight: bold;
}

.text-centerMentePrepaLograrloCSMapa h2 {
	font-size: 180%;
	margin-top: 2%;
	margin-bottom: 2%;
	text-align: justify;
	color: #b38d01;
	font-weight: bold;
}

.text-centerMenteProg2 h2 {
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	font-weight: bold;
	margin-top: 7%;
	margin-bottom: 4%;
}

.text-centerMenteProg3 h2 {
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	font-weight: bold;
	margin-top: 7%;
	margin-bottom: 4%;
}

.text-centerMenteProg p {
	font-size: 150%;
	margin-top: 5%;
	margin-bottom: 1%;
	text-align: justify;
	text-indent: 1em;
	padding: 16% 12% 12% 12%;
}

.text-centerMenteProgBachillerato p {
	font-size: 140%;
	margin-top: 4%;
	margin-bottom: 0%;
	text-align: justify;
	text-indent: 1em;
	padding-left: 7%;
	padding-right: 7%;
	padding-top: 5%;
}

.text-centerMenteProgBachillerato2 p {
	font-size: 140%;
	margin-top: -3%;
	margin-bottom: 0%;
	text-align: justify;
	text-indent: 1em;
	padding-left: 7%;
	padding-right: 7%;
	padding-bottom: 5%;
}

.text-centerMente3 li {
	display: block;
	font-size: 150%;
	margin-top: 0%;
	margin-bottom: 1%;
	padding-left: 3%;
	padding-right: 3%;
	text-align: justify;
	font-weight: bold;
}

.text-centerMente3 p {
	font-size: 150%;
	margin-top: 2%;
	margin-bottom: 1%;
	padding: 5%;
	text-align: justify;
	text-indent: 1em;
}

.text-centerMenteFrase p {
	font-size: 280%;
	margin-top: 1%;
	margin-bottom: 0%;
	text-align: center;
	color: #315aa8;
	font-weight: bold;
}

.text-centerMenteFrase article {
	font-size: 260%;
	line-height: 300%;
	margin-top: -1%;
	margin-bottom: -2%;
	text-align: right;
	color: #606060;
	font-weight: bold;
}

.text-centerMentePrepa p {
	font-size: 150%;
	margin-top: 0%;
	margin-bottom: 2%;
	padding-top: 3%;
	padding-right: 0%;
	padding-left: 0%;
	text-align: justify;
	text-indent: 1em;
}

.text-centerMentePrepaLograrlo p {
	font-size: 180%;
	margin-top: 3%;
	margin-bottom: 1%;
	text-align: justify;
	color: #b38d01;
	font-weight: bold;
	text-indent: 1em;
}

#MentePrepa ol {
	font-size: 150%;
	margin-top: 1%;
	margin-bottom: 1%;
	margin-left: 2%;
	padding-right: 3%;
	text-align: justify;
}

	#MentePrepa ol li {
		margin-bottom: 5px;
	}

#MentePrepa ul {
	font-size: 90%;
	margin-top: 1%;
	margin-bottom: 1%;
	margin-left: -3%;
	text-align: justify;
	font-weight: 100;
	list-style: disc;
}

	#MentePrepa ul li {
		margin-bottom: 5px;
	}

#ProgramaCS ul {
	margin-bottom: 5px;
	margin-top: -2%;
	margin-left: 26%;
}

.PuntosCS ul {
	font-size: 90%;
	margin-top: 1%;
	margin-bottom: 1%;
	margin-left: 2%;
	text-align: justify;
	font-weight: 100;
	list-style: disc;
}

	.PuntosCS ul li {
		margin-bottom: 5px;
	}

.text-centerMentePrepa h2 {
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	font-weight: bold;
	margin-top: 2%;
	margin-bottom: 5%;
}

.text-centerMentePrepa2 h2 {
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	font-weight: bold;
	margin-top: 6%;
	margin-bottom: 4%;
}

.text-centerMentePrepa2 p {
	font-size: 150%;
	margin-top: 0%;
	margin-bottom: 1%;
	text-align: justify;
	text-indent: 1em;
}

.text-centerMenteProgBachilleratoCel p {
	font-size: 150%;
	margin-top: 0%;
	margin-bottom: 1%;
	text-align: justify;
	text-indent: 1em;
}

.text-centerBI p:before {
	content: url(file:///C|/Users/Dennis/Desktop/Bikin/img/checked.png);
	padding-right: 9px;
	padding-left: 2px;
	padding-bottom: 0;
}

.text-centerBI p {
	font-size: 150%;
	margin-top: 3%;
	margin-bottom: 2%;
	font-weight: bold;
	text-align: justify;
	padding-left: 7%;
	padding-right: 7%;
}

.ImagenCole3 {
	margin-top: -2%;
	margin-left: 17%;
	margin-right: 15%;
	margin-bottom: 8%;
	width: 68%;
	height: 68%;
	text-align: center;
}

.ImagenCole3Bachilleratos {
	margin-top: 15%;
	margin-left: 8%;
	margin-right: 0%;
	margin-bottom: 8%;
	width: 87%;
	height: 87%;
	text-align: center;
}

.ImagenCole3BachilleratosCS {
	margin-top: -5%;
	margin-left: 10%;
	margin-bottom: 7%;
	width: 85.5%;
}

.ImagenMSS {
	margin-top: 0%;
	margin-left: 5%;
	margin-right: 0%;
	margin-bottom: 8%;
	width: 68%;
	height: 68%;
	text-align: center;
}

.imagenMentePrepa {
	margin-top: 2%;
	margin-bottom: 2%;
	padding: 10px;
	text-align: center;
}

.imagenBachilleratoGeneral {
	margin-top: 2%;
	margin-bottom: 2%;
	padding: 10px;
	text-align: center;
}

.parallax-windowMente {
	min-height: 350px;
	background: transparent;
}

.parallax-windowMente2 {
	min-height: 350px;
	background: transparent;
}

.parallax-windowMenteCS {
	min-height: 350px;
	background: transparent;
}

.ImaMente {
	min-height: 350%;
	margin-top: -10%;
	margin-bottom: -3%;
}

.ImaMenteMSS {
	min-height: 350%;
	margin-top: -10%;
	margin-bottom: -3%;
}

.text-centerManualSupervivencia h2 {
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	font-weight: bold;
	margin-top: -3%;
	margin-bottom: 4%;
}

.text-centerManualSupervivenciaAcademica h2 {
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	font-weight: bold;
	margin-top: -3%;
	margin-bottom: 4%;
}

.text-centerManualSupervivenciaContactos h2 {
	color: #315aa8;
	font-size: 250%;
	text-align: left;
	font-weight: bold;
	margin-top: -3%;
	margin-bottom: 4%;
}

.ImagenMSSCelular {
	margin-top: 50%;
	margin-bottom: 8%;
	margin-left: 0%;
	margin-right: 0%;
	width: 178%;
	height: 178%;
	text-align: center;
}

.ImagenLogoMSSCelular {
	margin-top: -40%;
	margin-bottom: 7%;
	margin-left: 25%;
	margin-right: 20%;
	width: 50%;
	height: 50%;
	text-align: center;
}

@media (max-width: 1000px) {
	.parallax-windowMenteBanner {
		min-height: 350px;
		margin-top: -5%;
	}

	.parallax-windowSalvaModeloSeguro {
		min-height: 350px;
		margin-top: -5%;
	}

	.text-centerMente h3 {
		font-family: 'Roboto', arial;
		font-size: 300%;
		line-height: 80%;
		margin-top: -9%;
		margin-bottom: 10%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerManual h3 {
		font-family: 'Roboto', arial;
		font-size: 270%;
		line-height: 90%;
		margin-top: 0%;
		margin-bottom: -5%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerMente p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 8%;
		margin-bottom: 4%;
		margin-left: 5%;
		margin-right: 5%;
		text-indent: 1em;
		text-align: justify;
	}

	.text-centerCaja {
		margin-top: 10%;
		box-shadow: 5px 1px 3px 3px #213967;
	}

	.text-centerCaja2 {
		margin-top: -8%;
		box-shadow: 0px 0px 0px 0px;
		margin-left: 5%;
		margin-right: 5%;
		height: 0%;
		padding-right: 5%;
		margin-bottom: -13%;
	}

	.text-centerCaja2Bachilleratos {
		margin-top: -8%;
		box-shadow: 0px 0px 0px 0px;
		margin-left: -5%;
		margin-right: -10%;
		height: 0%;
		padding-right: 0%;
		margin-bottom: -13%;
	}

	.text-centerMentePrepaLograrloCS h2 {
		font-size: 140%;
		margin-top: 10%;
		margin-bottom: 5%;
		margin-left: 5%;
		margin-right: 5%;
		text-align: center;
		color: #b38d01;
		font-weight: bold;
	}

	.text-centerMente2 p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 2%;
		margin-left: 3%;
		margin-right: 3%;
	}

	.text-centerMente2 li:before {
		font-family: 'Roboto', arial;
		padding-right: 1px;
		padding-left: 1px;
	}

	.text-centerMente2 li {
		font-family: 'Roboto', arial;
		font-size: 100%;
		margin-top: 0%;
		margin-bottom: 1%;
		padding-left: 3%;
		padding-right: 3%;
	}

	.text-centerMenteProg h2 {
		font-family: 'Roboto', arial;
		font-size: 200%;
		line-height: 90%;
		text-align: center;
		margin-top: 10%;
		margin-bottom: 4%;
	}

	.text-centerMenteMapas h2 {
		font-family: 'Roboto', arial;
		font-size: 200%;
		line-height: 90%;
		text-align: center;
		margin-top: 10%;
		margin-bottom: 4%;
	}

	.text-centerMenteProg2 h2 {
		font-family: 'Roboto', arial;
		font-size: 200%;
		text-align: center;
		margin-top: 10%;
		margin-bottom: 2%;
	}

	.text-centerManualSupervivencia h2 {
		color: #315aa8;
		font-size: 200%;
		text-align: left;
		font-weight: bold;
		margin-top: -3%;
		margin-bottom: 4%;
	}

	.text-centerManualSupervivenciaAcademica h2 {
		color: #315aa8;
		font-size: 200%;
		text-align: left;
		font-weight: bold;
		margin-top: -3%;
		margin-bottom: 4%;
	}

	.text-centerManualSupervivenciaContactos h2 {
		color: #315aa8;
		font-size: 200%;
		text-align: left;
		font-weight: bold;
		margin-top: -3%;
		margin-bottom: 4%;
	}

	.ImagenCole3 {
		margin-top: -2%;
		margin-left: 17%;
		margin-right: 15%;
		margin-bottom: 14%;
		width: 68%;
		height: 68%;
		text-align: center;
	}

	.text-centerMenteProg3 h2 {
		font-family: 'Roboto', arial;
		font-size: 200%;
		text-align: center;
		margin-top: 8%;
		margin-bottom: 4%;
	}

	.text-centerMenteProg p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 1%;
		margin-bottom: 1%;
		margin-left: 0%;
		margin-right: 0%;
		padding-left: 0%;
		padding-right: 5%;
	}

	.text-centerMenteProgBachilleratoCel p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 23%;
		margin-bottom: 0%;
		margin-left: 5%;
		margin-right: 5%;
		text-align: justify;
		text-indent: 1em;
	}

	.text-centerMenteProgBachilleratoCel2 p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 4%;
		margin-bottom: 10%;
		margin-left: 5%;
		margin-right: 5%;
		text-align: justify;
		text-indent: 1em;
	}

	.parallax-windowMente {
		min-height: 250px;
		margin-top: -9%;
	}

	.parallax-windowMente2 {
		min-height: 250px;
		margin-top: -11%;
		margin-bottom: 22%;
	}

	.parallax-windowMenteCS {
		min-height: 250px;
		margin-top: -3%;
		margin-bottom: 4%;
	}

	.text-centerMenteFrase p {
		font-family: 'Roboto', arial;
		font-size: 180%;
		margin-top: 0%;
		margin-bottom: 0%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerMenteFrase article {
		font-family: 'Roboto', arial;
		font-size: 180%;
		line-height: 300%;
		margin-top: 1%;
		margin-bottom: 8%;
		text-align: right;
		margin-right: 5%;
	}

	.text-centerMentePrepa p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		padding-top: 1%;
		margin-top: 0%;
		margin-bottom: 2%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerMentePrepaLograrlo p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 6%;
		margin-bottom: 5%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerBI p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-left: 5%;
		margin-right: 5%;
		margin-top: 15%;
		text-align: justify;
		text-indent: 0em;
		padding-left: 0%;
		padding-right: 0%;
	}

	#BiCheck li {
		font-family: 'Roboto', arial;
		font-size: 90%;
		margin-left: 5%;
		margin-right: 5%;
		margin-top: 3%;
		text-align: justify;
		text-indent: 0em;
		padding-left: 0%;
		padding-right: 0%;
		list-style: disc;
	}

	#CSCheck li {
		font-family: 'Roboto', arial;
		font-size: 90%;
		margin-left: -10%;
		margin-right: 5%;
		margin-top: 2%;
		text-align: justify;
		text-indent: 0em;
		padding-left: 0%;
		padding-right: 0%;
		list-style: disc;
	}

	#LograrloCheck li {
		font-family: 'Roboto', arial;
		font-size: 90%;
		margin-left: 1%;
		margin-right: 5%;
		margin-top: 3%;
		text-align: justify;
		text-indent: 0em;
		padding-left: 0%;
		padding-right: 0%;
	}

	#EgresarCheck li {
		font-family: 'Roboto', arial;
		font-size: 90%;
		margin-left: -10%;
		margin-right: 5%;
		margin-top: 3%;
		text-align: justify;
		text-indent: 0em;
		padding-left: 0%;
		padding-right: 0%;
		list-style: disc;
	}

	.text-centerMentePrepa2 h2 {
		font-family: 'Roboto', arial;
		line-height: 90%;
		font-size: 200%;
		text-align: center;
		margin-top: 9%;
		margin-bottom: 5%;
	}

	.text-centerMentePrepa2 p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 0%;
		margin-bottom: 16%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.imagenBachilleratoGeneral {
		margin-bottom: -5%;
	}

	.ImaMente {
		margin-top: -1%;
		margin-bottom: 20%;
	}

	.ImaMenteMSS {
		margin-top: 2%;
		margin-bottom: 5%;
	}

	.ImagenCole3BachilleratosCS {
		margin-top: -1%;
		margin-left: 9%;
		margin-right: 5%;
		margin-bottom: 5%;
		text-align: center;
		width: 80%;
	}

	.parallax-windowMenteBanner, .parallax-windowSalvaModeloSeguro, .text-centerMenteProg22 p, .text-centerMenteProg222 p, .text-centerMenteProgBachillerato p, .ImagenMSS, .textcenterCajaModeloSalvaSeguro, .text-centerSalvaSeguro p, .text-centerBI, #ProgramaCS, #MssWeb, #MssWebCelTablet, #LograrloTablet, #EgresarTablet {
		display: none;
	}
}

@media (orientation: landscape) and (min-width:1001px) and (max-width:1024px) { /*tablet*/
	.text-centerMente h3 {
		font-size: 350%;
		margin-top: 10%;
		margin-bottom: 6%;
	}

	.text-centerManual h3 {
		font-size: 330%;
		margin-top: -0%;
		margin-bottom: -10%;
		line-height: 100%;
	}

	.text-centerMente p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 2%;
		margin-bottom: 4%;
		margin-left: 5%;
		margin-right: 5%;
		text-indent: 1em;
		text-align: justify;
	}

	.text-centerCaja {
		margin-top: 40%;
		margin-bottom: 3%;
		box-shadow: 5px 1px 3px 3px #213967;
	}

	.text-centerMente2 p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 1%;
		margin-left: 3%;
		margin-right: 3%;
		padding-top: 6%;
	}

	.text-centerMente2 li:before {
		font-family: 'Roboto', arial;
		padding-right: 1px;
		padding-left: 1px;
	}

	.text-centerMente2 li {
		font-family: 'Roboto', arial;
		font-size: 100%;
		margin-top: 0%;
		margin-bottom: 1%;
		padding-left: 3%;
		padding-right: 3%;
	}

	.text-centerMenteProg2 h2 {
		font-family: 'Roboto', arial;
		color: #315aa8;
		font-size: 230%;
		text-align: center;
		margin-top: 10%;
		margin-bottom: 8%;
	}

	.text-centerMenteProg3 h2 {
		font-family: 'Roboto', arial;
		color: #315aa8;
		font-size: 230%;
		text-align: center;
		margin-top: 7%;
		margin-bottom: 4%;
	}

	.text-centerMenteProg h2 {
		font-family: 'Roboto', arial;
		font-size: 230%;
		line-height: 90%;
		text-align: center;
		margin-top: 6%;
		margin-bottom: 6%;
	}

	.text-centerMenteMapas h2 {
		font-family: 'Roboto', arial;
		font-size: 230%;
		line-height: 90%;
		text-align: center;
		margin-top: 6%;
		margin-bottom: 4%;
	}

	.text-centerMenteProg22 p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: -10%;
		margin-bottom: -3%;
		margin-left: 0%;
		margin-right: 0%;
		text-align: justify;
		text-indent: 1em;
	}

	.text-centerMenteProg222 p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: -2%;
		margin-bottom: -5%;
		margin-left: 5%;
		margin-right: 5%;
		text-align: justify;
		text-indent: 1em;
	}

	.text-centerMenteProgBachilleratoCel p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: -2%;
		margin-bottom: 2%;
		margin-left: 5%;
		margin-right: 5%;
		text-align: justify;
		text-indent: 1em;
	}

	.text-centerMenteProgBachilleratoCel2 p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 2%;
		margin-bottom: -4%;
		margin-left: 5%;
		margin-right: 5%;
		text-align: justify;
		text-indent: 1em;
	}

	.text-centerManualSupervivencia h2 {
		color: #315aa8;
		font-size: 230%;
		text-align: left;
		font-weight: bold;
		margin-top: -3%;
		margin-bottom: 4%;
	}

	.text-centerManualSupervivenciaAcademica h2 {
		color: #315aa8;
		font-size: 230%;
		text-align: left;
		font-weight: bold;
		margin-top: -3%;
		margin-bottom: 4%;
	}

	.text-centerManualSupervivenciaContactos h2 {
		color: #315aa8;
		font-size: 230%;
		text-align: left;
		font-weight: bold;
		margin-top: -3%;
		margin-bottom: 4%;
	}

	.parallax-windowMente {
		min-height: 250px;
		margin-top: -9%;
	}

	.parallax-windowMente2 {
		min-height: 250px;
		margin-top: -1%;
	}

	.parallax-windowMenteCS {
		min-height: 250px;
		margin-top: -1%;
		margin-bottom: 2%;
	}

	.text-centerMenteFrase p {
		font-family: 'Roboto', arial;
		font-size: 180%;
		margin-top: 2%;
		margin-bottom: 0%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerMenteFrase article {
		font-family: 'Roboto', arial;
		font-size: 180%;
		line-height: 300%;
		margin-top: 0%;
		margin-bottom: -1%;
		text-align: right;
		margin-right: 5%;
	}

	.text-centerMentePrepa p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 0%;
		margin-bottom: 1%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerMentePrepaLograrlo p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 0%;
		margin-bottom: 8%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerBI p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.imagenBachilleratoGeneral {
		margin-bottom: -2%;
	}

	.text-centerMentePrepa2 h2 {
		font-family: 'Roboto', arial;
		line-height: 90%;
		font-size: 200%;
		text-align: center;
		margin-top: 10%;
		margin-bottom: 5%;
	}

	.text-centerMentePrepa2 p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 0%;
		margin-bottom: 8%;
		margin-left: 5%;
		margin-right: 5%;
	}

	#MentePrepa ol {
		margin-bottom: -3%;
	}

	#BiCheck li {
		font-family: 'Roboto', arial;
		font-size: 90%;
		margin-left: 5%;
		margin-right: 5%;
		margin-top: 2%;
		margin-bottom: 2%;
		text-align: justify;
		text-indent: 0em;
		padding-left: 0%;
		padding-right: 0%;
		list-style: disc;
	}

	.ImagenCole3Bachilleratos {
		margin-top: 12%;
		margin-bottom: 10%;
	}

	.text-centerMentePrepaLograrloCS h2 {
		font-size: 180%;
		margin-top: 0%;
		margin-bottom: 2%;
		text-align: center;
		color: #b38d01;
		font-weight: bold;
	}

	#MentePrepa ul {
		margin-bottom: 9%;
		margin-left: 10%;
		padding-left: 10%;
	}

		#MentePrepa ul li {
			margin-left: 20%;
			text-align: justify;
			margin-right: 5%;
		}

	#CSCheck li {
		font-family: 'Roboto', arial;
		font-size: 90%;
		margin-left: 0%;
		margin-right: 0%;
		margin-top: -1%;
		margin-bottom: 2%;
		text-align: justify;
		text-indent: 0em;
		padding-left: 0%;
		padding-right: 0%;
		list-style: disc;
	}

	#LograrloTablet {
		margin-bottom: 5%;
		text-align: left;
	}

	#LograrloCheck ul {
		margin-bottom: 1%;
	}

	#LograrloCheck li {
		font-family: 'Roboto', arial;
		font-size: 90%;
		margin-left: 0%;
		margin-right: 5%;
		margin-top: 1%;
		margin-bottom: 0%;
		text-align: justify;
		text-indent: 0em;
		padding-left: 0%;
		padding-right: 0%;
		list-style: disc;
	}

	#EgresarTablet {
		margin-bottom: 5%;
		margin-top: 8%;
		text-align: center;
	}

	#EgresarCheck ul {
		margin-left: -5%;
	}

	#EgresarCheck li {
		font-family: 'Roboto', arial;
		font-size: 90%;
		margin-left: 0%;
		margin-right: 0%;
		margin-top: -1%;
		margin-bottom: 2%;
		text-align: justify;
		text-indent: 0em;
		padding-left: 0%;
		padding-right: 0%;
		list-style: disc;
	}

	.text-centerMentePrepaLograrloCSMapa h2 {
		margin-top: 2%;
		margin-bottom: 13%;
	}

	.ImagenCole3BachilleratosCS {
		margin-top: -5%;
		margin-left: 7%;
		margin-bottom: 9%;
		width: 85.5%;
	}

	.ImaMente, .ImaMenteMSS, .text-centerMenteProg p, .text-centerMenteProgBachillerato p, .text-centerMenteProgBachillerato2 p, .text-centerCaja2, .text-centerCaja2Bachilleratos, #ModeloSalvaSeguroLogo, #MssWeb, #ProgramaCS, #MssWebCelCel, #LograrloTodo, #EgresarTodos {
		display: none;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	.text-centerMente h3 {
		font-size: 330%;
		margin-top: 7%;
		margin-bottom: 4%;
	}

	.text-centerManual h3 {
		font-size: 300%;
		margin-top: -2%;
		margin-bottom: 0%;
	}

	.text-centerCajaModeloSalvaSeguro {
		width: 100%;
		height: 210px;
		/*background-image:url(../img/fondoClaro2.png);*/
		box-shadow: 5px 3px 3px #213967;
		margin-top: 7%;
		margin-bottom: 5%;
	}

	.text-centerSalvaSeguro p {
		font-size: 110%;
		line-height: 120%;
		margin-top: -2%;
		margin-bottom: 0%;
		margin-left: 5%;
		margin-right: 5%;
		padding-top: 4%;
	}

	.text-centerMente p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 0%;
		margin-bottom: 1%;
	}

	.text-centerMente2 p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 2%;
		margin-bottom: 0%;
		padding: 5%;
		padding-top: 7%;
	}

	.text-centerMente2 li {
		display: block;
		font-size: 100%;
		line-height: 155%;
		margin-top: 0%;
		margin-bottom: 1%;
		padding-left: 3%;
		padding-right: 3%;
	}

	.text-centerCaja, .text-centerCaja2 {
		width: 100%;
		height: 239px;
		/*background-image:url(../img/fondoClaro2.png);*/
		box-shadow: 5px 3px 3px #213967;
		margin-top: 4%;
	}

	.text-centerCaja2Bachilleratos {
		width: 100%;
		height: 450px;
		/*background-image:url(../img/fondoClaro2.png);*/
		box-shadow: 5px 3px 3px #213967;
		margin-top: 4%;
		margin-bottom: 10%;
	}

	.text-centerMente3 li {
		display: block;
		font-size: 100%;
		line-height: 155%;
		margin-top: 0%;
		margin-bottom: 1%;
		padding-left: 3%;
		padding-right: 3%;
	}

	.text-centerMenteProg2 h2 {
		font-size: 200%;
		margin-top: 7%;
		margin-bottom: 4%;
	}

	.text-centerMenteProg p {
		font-size: 100%;
		line-height: 155%;
		padding: 12%;
		margin-bottom: 1%;
	}

	.text-centerMenteProgBachillerato p {
		font-size: 100%;
		line-height: 140%;
		padding-top: 10%;
		padding-left: 12%;
		padding-right: 12%;
		margin-bottom: 0%;
	}

	.text-centerMenteProgBachillerato2 p {
		font-size: 100%;
		margin-top: -7%;
		margin-bottom: 0%;
		text-align: justify;
		line-height: 140%;
		text-indent: 1em;
		padding-left: 12%;
		padding-right: 12%;
		padding-bottom: 10%;
	}

	.text-centerMenteProg3 h2 {
		font-size: 200%;
		margin-top: 7%;
		margin-bottom: 4%;
	}

	.text-centerMenteFrase p {
		font-size: 200%;
		margin-top: 1%;
		margin-bottom: 0%;
	}

	.text-centerMenteFrase article {
		font-size: 180%;
		line-height: 300%;
		margin-top: -1%;
		margin-bottom: 1%;
		text-align: right;
	}

	.text-centerMenteProg h2 {
		font-size: 200%;
		margin-top: 5%;
		margin-bottom: 5%;
	}

	.text-centerMenteMapas h2 {
		font-size: 200%;
		margin-top: 4%;
		margin-bottom: 4%;
	}

	.text-centerManualSupervivencia h2 {
		color: #315aa8;
		font-size: 200%;
		text-align: left;
		font-weight: bold;
		margin-top: -3%;
		margin-bottom: 4%;
	}

	.text-centerManualSupervivenciaAcademica h2 {
		color: #315aa8;
		font-size: 200%;
		text-align: left;
		font-weight: bold;
		margin-top: -8%;
		margin-bottom: 0%;
	}

	.text-centerManualSupervivenciaContactos h2 {
		color: #315aa8;
		font-size: 200%;
		text-align: left;
		font-weight: bold;
		margin-top: -10%;
		margin-bottom: 0%;
	}

	.text-centerMentePrepa p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 0%;
		margin-bottom: 0%;
	}

	.text-centerMentePrepaLograrlo p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 0%;
		margin-bottom: 3%;
	}

	.text-centerMentePrepa2 h2 {
		font-size: 200%;
		margin-top: 6%;
		margin-bottom: 4%;
	}

	.text-centerBI p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 4.5%;
		margin-bottom: 1.7%;
		margin-left: 2%;
	}

	.parallax-windowMente2 {
		margin-bottom: -.5%;
	}

	.parallax-windowMenteCS {
		margin-bottom: -.5%;
	}

	.imagenBachilleratoGeneral {
		margin-bottom: 5%;
	}

	.ImagenCole3 {
		margin-top: -2%;
		margin-left: 17%;
		margin-right: 15%;
		margin-bottom: 9%;
		width: 68%;
		height: 68%;
		text-align: center;
	}

	.ImagenCole3Bachilleratos {
		margin-top: 25%;
	}

	.text-centerMentePrepaLograrloCS h2 {
		font-size: 130%;
		margin-top: -2%;
		margin-bottom: 2%;
		text-align: justify;
		color: #b38d01;
		font-weight: bold;
	}

	#MentePrepa ol {
		font-size: 100%;
		margin-top: 0%;
		margin-right: 0%;
		line-height: 120%;
		margin-bottom: 0%;
	}

	#MentePrepa ul {
		margin-bottom: 0%;
		margin-left: 20%;
		margin-top: 1%;
		margin-right: -3%;
	}

		#MentePrepa ul li {
			font-size: 100%;
			text-align: justify;
			line-height: 150%;
			margin-top: 0%;
			margin-right: 0%;
		}

	#LograrloCheck ul li {
		margin-left: 0%;
		margin-right: 5%;
		margin-top: 2%;
		margin-bottom: 0%;
		margin-left: -30%;
		text-align: justify;
		text-indent: 0em;
		padding-left: 0%;
		padding-right: 0%;
		list-style: disc;
	}

	#EgresarCheck li {
		margin-left: -45%;
	}

	.text-centerMentePrepaLograrloCSMapa h2 {
		margin-top: 3%;
		margin-bottom: 3%;
	}

	.ImagenCole3BachilleratosCS {
		margin-top: -5%;
		margin-left: 7%;
		margin-bottom: -10%;
		width: 85.5%;
	}

	.ImaMente, .ImaMenteMSS, .text-centerMenteProg22 p, .text-centerMenteProg222 p, .text-centerMenteProgBachilleratoCel p, .text-centerMenteProgBachilleratoCel2 p, #BiCheck, #CSCheck, #MssWebCelTablet, #MssWebCelCel, #LograrloTablet, #EgresarTablet {
		display: none;
	}
}

@media (min-width:1367px) {
	.ImaMente, .ImaMenteMSS, .text-centerMenteProg22 p, .text-centerMenteProg222 p, .text-centerMenteProgBachilleratoCel p, .text-centerMenteProgBachilleratoCel2 p, #BiCheck, #CSCheck, #MssWebCelTablet, #MssWebCelCel, #LograrloTablet, #EgresarTablet {
		display: none;
	}
}
/****************************************/

/* Portfolio Section
--------------------------------*/
#portfolioActLit {
	background: #fff;
	padding: 20px 0;
}

	#portfolioActLit .portfolioActLit-item {
		background-position: center center;
		background-size: cover;
		background-repeat: no-repeat;
		position: relative;
		height: 260px;
		width: 100%;
		display: table;
		overflow: hidden;
		margin-bottom: 30px;
	}

		#portfolioActLit .portfolioActLit-item .detailsActLit {
			height: 260px;
			background: #fff;
			display: table-cell;
			vertical-align: middle;
			opacity: 0;
			transition: 0.3s;
			text-align: center;
		}

			#portfolioActLit .portfolioActLit-item .detailsActLit h4 {
				font-size: 170%;
				transition: opacity 0.3s, -webkit-transform 0.3s;
				transition: transform 0.3s, opacity 0.3s;
				transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
				-webkit-transform: translate3d(0, -15px, 0);
				transform: translate3d(0, -15px, 0);
				text-align: justify;
				text-indent: 1em;
				color: #213967;
				margin: 5%;
			}

		#portfolioActLit .portfolioActLit-item:hover .detailsActLit {
			opacity: 0.9;
		}

			#portfolioActLit .portfolioActLit-item:hover .detailsActLit h4 {
				-webkit-transform: translate3d(0, 0, 0);
				transform: translate3d(0, 0, 0);
			}

@media (max-width: 1000px) {
	#portfolioActLit .portfolioActLit-item .detailsActLit h4 {
		font-family: 'Roboto', arial;
		font-size: 120%;
	}

	#portfolioActLit .portfolioActLit-item {
		margin-bottom: 10px;
		margin-top: 20px;
	}
}

@media (orientation: landscape) and (min-width:1001px) and (max-width:1024px) {
	#portfolioActLit .portfolioActLit-item .detailsActLit h4 {
		font-family: 'Roboto', arial;
		font-size: 120%;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	#portfolioActLit .portfolioActLit-item .detailsActLit h4 {
		font-size: 130%;
		line-height: 120%;
		margin: 5%;
	}
}
/*********************************Ilumina*************************/
.text-centerIlumina h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	line-height: 90%;
	font-size: 450%;
	margin-top: 6%;
	margin-bottom: 2%;
	color: #010187;
	text-align: center;
}

.text-centerCajaIlumina {
	width: 100%;
	height: 200px;
	/*background-image:url(../img/fondoClaro2.png);*/
	box-shadow: 10px 5px 5px #213967;
	margin-top: 4%;
	margin-bottom: 7%;
}

.text-centerIlumina p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-top: 10%;
	margin-bottom: 10%;
	text-align: justify;
	text-indent: 1em;
}

.text-centerIlumina2 p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-top: 5%;
	margin-bottom: 1%;
	margin-left: 5%;
	margin-right: 5%;
	padding-top: 5%;
	text-align: justify;
	text-indent: 1em;
}

.text-centerIluminaBoleto p {
	font-family: 'Futura-Bold', arial;
	font-size: 150%;
	margin-top: 0%;
	margin-bottom: 1%;
	margin-left: 5%;
	margin-right: 5%;
	padding-top: 3%;
	text-align: justify;
	text-indent: 1em;
}

.imagenIlumina {
	margin-top: 2%;
	margin-bottom: 2%;
	padding: 10px;
	text-align: center;
}

.video2 {
	margin-top: 5%;
	margin-bottom: -4%;
	text-align: center;
}

.text-centerIluminaDonar h2 {
	font-family: 'Futura-Bold', arial;
	font-size: 600%;
	margin-top: 80px;
	margin-bottom: 3%;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
	color: #fff;
}

.text-center-Donar h3 {
	font-family: 'Futura-Bold', arial;
	font-size: 400%;
	margin-top: 4.5%;
	margin-bottom: 2%;
	color: #fff;
	font-weight: bold;
	text-align: center;
}

.text-center-Donar2 h3 {
	font-family: 'Futura-Bold', arial;
	font-size: 400%;
	margin-bottom: 3%;
	color: #e0b207;
	font-weight: bold;
	text-align: center;
}

.text-center-Donar p {
	font-family: 'Futura-Bold', arial;
	font-weight: 300;
	margin-top: 2%;
	margin-bottom: 2%;
	font-size: 230%;
	color: #fff;
	text-align: center;
}

.IluminaBotonDonar a {
	margin-top: 1%;
	padding: 10px 30px;
	width: 20%;
	font-size: 35px;
	background: #B38D01;
	color: #fff;
	text-align: center;
}

	.IluminaBotonDonar a:hover {
		color: #fff;
		background: #213967;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}


.parallax-windowIlumina {
	min-height: 500px;
	background: transparent;
}



.text-centerIluminaVideo h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	line-height: 90%;
	font-size: 450%;
	margin-top: 3%;
	margin-bottom: 0%;
	color: #010187;
	text-align: center;
}

.text-centerIluminaImagen h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	line-height: 90%;
	font-size: 450%;
	margin-top: 6%;
	margin-bottom: 3%;
	color: #010187;
	text-align: center;
}

.text-centerIluminaTablet p {
	font-family: 'Roboto', arial;
	font-size: 130%;
	text-align: justify;
	text-indent: 1em;
	margin-top: 5%;
	margin-bottom: 2%;
	margin-left: 12%;
	margin-right: 4%;
}

.text-centerIlumina2Tablet p {
	font-family: 'Roboto', arial;
	font-size: 130%;
	text-align: justify;
	text-indent: 1em;
	margin-top: 0%;
	margin-bottom: 3%;
	margin-left: 5%;
	margin-right: 5%;
}

.imagenIluminaTablet {
	margin-top: 2%;
	margin-bottom: 2%;
	padding: 10px;
	text-align: center;
}

.mi-iframe {
	width: 100%;
	height: 50%;
	margin-bottom: 5%;
}

.videoGracias {
	margin-top: 0%;
	margin-bottom: -5%;
}

.containerEduquemos {
	margin-top: 3%;
	padding-bottom: 10px;
	margin-bottom: 2%;
	margin-left: 5%;
	margin-right: 5%;
}

.containerEduquemosPago {
	margin-top: 5%;
	padding-bottom: 10px;
	margin-left: 15%;
	margin-right: 15%;
}

.text-centerParrafoEduquemos p {
	font-family: 'Roboto', arial;
	font-size: 160%;
	margin-top: 2%;
	margin-bottom: 6%;
	margin-left: 2%;
	margin-right: 2%;
	text-align: justify;
	text-indent: 2em;
}

.text-centerParrafoEduquemos h2 {
	font-family: 'Futura-Bold', arial;
	line-height: 90%;
	/*color:  #315aa8;*/
	color: #000059;
	font-size: 220%;
	text-align: center;
	font-weight: bold;
	margin-top: 2%;
	margin-bottom: 1.5%;
}

.EduquemosJuntos {
	margin-top: 1%;
}

.FrameRealizarDonativo {
	width: 100%;
	height: 530px;
}

.IluminaBotonDonarEduquemosJuntos a {
	margin-top: -20%;
	padding: 10px 50px;
	font-size: 35px;
	background: #B38D01;
	color: #fff;
	text-align: center;
	border-radius: 10px 10px 10px 10px;
}

	.IluminaBotonDonarEduquemosJuntos a:hover {
		color: #fff;
		background: #213967;
		-webkit-transition: color 300ms, background-color 300ms;
		-moz-transition: color 300ms, background-color 300ms;
		-o-transition: color 300ms, background-color 300ms;
		transition: color 300ms, background-color 300ms;
	}

.resp-container {
	position: relative;
	overflow: hidden;
	padding-top: 56.25%;
	margin-bottom: -37%;
}

.resp-iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 310px;
	border: 0;
}


@media (max-width: 1000px) {
	.container {
		padding-top: 0px;
		padding-bottom: 10px;
	}

	.resp-container {
		margin-bottom: 0%;
		height: 330px;
	}

	.EduquemosJuntos {
		margin-top: -4%;
	}

	.IluminaBotonDonarEduquemosJuntos a {
		margin-top: 10%;
		margin-bottom: 2%;
		padding: 10px 25px;
		width: 90%;
		font-size: 18px;
		background: #B38D01;
		color: #fff;
		text-align: center;
	}

	.text-centerIlumina h3 {
		font-family: 'Roboto', arial;
		font-size: 300%;
		line-height: 80%;
		margin-top: 15%;
		margin-bottom: 5%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerParrafoEduquemos p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 4%;
		margin-bottom: 3%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerParrafoEduquemos h2 {
		font-family: 'Roboto', arial;
		line-height: 90%;
		font-size: 150%;
		margin-top: 4%;
		margin-bottom: 0%;
	}

	.text-centerIlumina p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 8%;
		margin-bottom: 2%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerIluminaTablet p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 4%;
		margin-bottom: 3%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-centerIlumina2Tablet p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 0%;
		margin-bottom: 3%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.imagenIlumina {
		margin-bottom: 0%;
	}

	.parallax-windowIlumina {
		min-height: 300px;
		margin-top: -9%;
	}

	.text-center-Donar h3 {
		font-size: 200%;
		line-height: 90%;
		padding-top: 15%;
		margin-bottom: 2%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-center-Donar2 h3 {
		font-size: 200%;
		line-height: 90%;
		margin-bottom: 3%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-center-Donar p {
		font-size: 150%;
		font-weight: 100;
		line-height: 90%;
		margin-top: 5%;
		margin-bottom: 3%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.IluminaBotonDonar a {
		font-family: 'Roboto', arial;
		font-weight: bold;
		margin-top: 15%;
		margin-bottom: 15%;
		padding-left: 10%;
		padding-right: 10%;
		padding-top: 3%;
		padding-bottom: 3%;
		width: 50%;
		font-size: 25px;
		text-align: center;
	}

	.text-centerIluminaVideo h3 {
		font-family: 'Roboto', arial;
		font-size: 300%;
		margin-top: 10%;
	}

	.text-centerIluminaImagen h3 {
		font-family: 'Roboto', arial;
		font-size: 300%;
		line-height: 83%;
		margin-top: -5%;
		margin-bottom: 1%;
		margin-left: 8%;
		margin-right: 8%;
	}

	.text-centerCajaIlumina, .text-centerIlumina2 p, .videoGracias, #EducamosJuntosCompu {
		display: none;
	}
}

@media (orientation: landscape) and (min-width:1001px) and (max-width:1080px) {
	/*.resp-container {
		margin-bottom: -8%;
	}*/
	.resp-container {
		margin-bottom: -19%;
		height: 310px;
	}

	.text-centerIlumina h3 {
		font-family: 'Roboto', arial;
		font-size: 350%;
		line-height: 80%;
		margin-top: 8%;
		margin-bottom: 0%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.IluminaBotonDonarEduquemosJuntos a {
		margin-top: -20%;
		padding: 7px 15px;
		width: 35%;
		font-size: 20px;
		border-radius: 10px 10px 10px 10px;
	}

	.text-centerParrafoEduquemos p {
		font-size: 130%;
		margin-left: 5%;
		margin-right: 5%;
		margin-bottom: 1%;
	}

	.text-centerParrafoEduquemos h2 {
		line-height: 90%;
		font-size: 150%;
		margin-top: 3%;
		margin-bottom: 0%;
	}

	.text-center-Donar h3 {
		font-size: 250%;
		line-height: 90%;
		padding-top: 8%;
		margin-bottom: 2%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-center-Donar2 h3 {
		font-size: 250%;
		line-height: 90%;
		margin-bottom: 3%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.text-center-Donar p {
		font-size: 200%;
		font-weight: 100;
		line-height: 90%;
		margin-top: 5%;
		margin-bottom: 3%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.IluminaBotonDonar a {
		font-family: 'Roboto', arial;
		font-weight: bold;
		margin-top: 1%;
		padding-left: 5%;
		padding-right: 5%;
		padding-top: 1%;
		padding-bottom: 1%;
		width: 20%;
		font-size: 25px;
		text-align: center;
	}

	.text-centerIluminaVideo h3 {
		font-family: 'Roboto', arial;
		font-size: 350%;
		margin-top: 10%;
	}

	.text-centerIluminaImagen h3 {
		font-family: 'Roboto', arial;
		font-size: 350%;
		line-height: 83%;
		margin-top: 2%;
		margin-bottom: 2%;
		margin-left: 8%;
		margin-right: 8%;
	}

	.mi-iframe {
		width: 1920px;
		height: 500px;
	}

	.ImaIluminaVideo2 {
		margin-bottom: -5%;
	}

	.text-centerIlumina p, .text-centerIlumina2 p, .text-centerCajaIlumina, .mi-iframe, #EducamosJuntosCompu, #btnDonarJuntosEducamos, #VideoPromoIlumina {
		display: none;
	}
}

@media screen and (min-width:1081px) and (max-width:1366px) {

	.text-centerIlumina h3 {
		font-size: 330%;
		margin-top: 6%;
		margin-bottom: 2%;
	}

	.text-centerCajaIlumina {
		width: 100%;
		height: 140px;
		/*background-image:url(../img/fondoClaro2.png);*/
		box-shadow: 5px 3px 3px #213967;
		margin-top: 4%;
		margin-bottom: 7%;
	}

	.text-centerIlumina p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 10%;
		margin-bottom: 10%;
	}

	.text-centerIlumina2 p {
		font-size: 100%;
		line-height: 155%;
		margin-top: 5%;
		margin-bottom: 1%;
		margin-left: 5%;
		margin-right: 5%;
		padding-top: 5%;
	}

	.parallax-windowIlumina {
		min-height: 350px;
	}

	.EduquemosJuntos {
		margin-top: 1%;
	}

	.IluminaBotonDonarEduquemosJuntos a {
		margin-top: -20%;
		padding: 7px 15px;
		width: 28%;
		font-size: 25px;
		border-radius: 10px 10px 10px 10px;
	}

	.text-centerParrafoEduquemos p {
		font-size: 100%;
		line-height: 155%;
		margin-bottom: 6%;
	}

	.text-centerParrafoEduquemos h2 {
		margin-top: 2%;
		margin-bottom: 0%;
	}

	.text-center-Donar h3 {
		font-size: 300%;
		margin-top: 5.5%;
		margin-bottom: 2%;
	}

	.text-center-Donar2 h3 {
		font-size: 300%;
		margin-bottom: 2%;
	}

	.text-center-Donar p {
		font-weight: 300;
		margin-top: 1%;
		margin-bottom: 2%;
		font-size: 230%;
	}

	.IluminaBotonDonar a {
		margin-top: 1%;
		padding: 5px 15px;
		width: 10%;
		font-size: 25px;
	}

	.containerEduquemos {
		margin-top: -2%;
	}

	.resp-container {
		margin-bottom: -31%;
	}

	.text-centerIluminaVideo h3 {
		font-size: 330%;
		margin-top: 3%;
		margin-bottom: 0%;
	}

	.text-centerIluminaImagen h3 {
		line-height: 90%;
		font-size: 330%;
		margin-top: 6%;
		margin-bottom: 2%;
	}

	#IluminaGaleria {
		margin-top: -2%;
	}

	.text-centerIluminaTablet p, .text-centerIlumina2Tablet p, .mi-iframe, .ImaIluminaVideo, .ImaIluminaVideo2, #EducamosJuntosCelular, #btnDonarJuntosEducamos, #GraciasTitulo {
		display: none;
	}

	.FrameRealizarDonativo {
		width: 100%;
		height: 535px;
	}
}

@media (min-width: 1367px) {

	.text-centerIluminaTablet p, .text-centerIlumina2Tablet p, .mi-iframe, #EducamosJuntosCelular, #btnDonarJuntosEducamos, #GraciasTitulo {
		display: none;
	}
}
/*******************************Medias Contacto*******************/
@media (max-width: 1000px) {
	.text-centerContactanos h3 {
		font-family: 'Roboto', arial;
		font-size: 300%;
		margin-top: 2%;
		margin-bottom: 10%;
	}

	.text-centerContactoSalvaSeguro h3 {
		font-family: 'Roboto', arial;
		font-size: 300%;
		margin-top: 20%;
		margin-bottom: 10%;
	}

	.text-centerContactanos p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 5%;
		margin-bottom: 4%;
		margin-left: 5%;
		margin-right: 5%;
		text-indent: 0em;
		text-align: center;
	}

	.text-centerContactoSalvaSeguro p {
		font-family: 'Roboto', arial;
		font-size: 130%;
		margin-top: 5%;
		margin-bottom: 4%;
		margin-left: 5%;
		margin-right: 5%;
		text-indent: 0em;
		text-align: center;
	}

	.IframeContacto {
		font-family: 'Roboto', arial;
		text-align: left;
		border: none;
		padding-left: -18%;
		padding-right: 0%;
		width: 100%;
		height: 470px;
		margin-bottom: -8%;
	}

	.prueba5 li {
		font-family: 'Roboto', arial;
		font-size: 15px;
	}
}

@media (orientation: landscape) and (min-width:1001px) and (max-width:1024px) {
	.text-centerContactanos h3 {
		font-size: 350%;
	}

	.text-centerContactoSalvaSeguro h3 {
		font-size: 330%;
	}

	.text-centerContactoSalvaSeguro p {
		font-family: 'Roboto', arial;
		font-size: 150%;
		margin-bottom: 2%;
		margin-top: 7%;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	.text-centerContactanos h3 {
		font-family: 'Roboto', arial;
		font-size: 330%;
		margin-top: 3%;
		margin-bottom: 4%;
	}

	.text-centerIlumina h3 {
		font-family: 'Roboto', arial;
		font-size: 330%;
		margin-top: 5%;
		margin-bottom: 2%;
	}

	.mapa, .mapaOtras {
		margin-bottom: -55%;
		margin-top: 12%;
	}

	.IframeContacto {
		margin-bottom: -120%;
	}

	.prueba5 li {
		margin-bottom: 0%;
	}
}

@media (min-width:1367px) {
	.mapa, .mapaOtras {
		margin-bottom: -55%;
		margin-top: 12%;
	}
}

.ir-arriba {
	display: none;
	padding: 17px;
	border-radius: 40px;
	background: #213967;
	font-size: 20px;
	color: #fff;
	cursor: pointer;
	position: fixed;
	bottom: 170px;
	right: 25px;
	z-index: 5;
}

@media screen and (max-width: 1024px) {
	#BotonArriba {
		display: none;
	}
}

/*********************Calendario********************************/
.text-centerCale h3 {
	font-family: 'Futura-Bold', arial;
	font-weight: bold;
	color: #010187;
	line-height: 90%;
	font-size: 450%;
	margin-top: 3%;
	margin-bottom: 2%;
	text-align: center;
}

.ch-item {
	width: 80%;
	height: 80%;
	border-radius: 50%;
	position: relative;
	cursor: default;
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.ch-thumb {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	box-shadow: inset 0 0 0 15px rgba(255,255,255, 0.5);
	-webkit-transform-origin: 95% 40%;
	-moz-transform-origin: 95% 40%;
	-o-transform-origin: 95% 40%;
	-ms-transform-origin: 95% 40%;
	transform-origin: 95% 40%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

	.ch-thumb:after {
		content: '';
		width: 8px;
		height: 8px;
		position: absolute;
		border-radius: 50%;
		top: 50%;
		left: 95%;
		margin: -4px 0 0 -4px;
		background: rgb(14,14,14);
		background: -moz-radial-gradient(center, ellipse cover, rgba(14,14,14,1) 0%, rgba(125,126,125,1) 100%);
		background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(14,14,14,1)), color-stop(100%,rgba(125,126,125,1)));
		background: -webkit-radial-gradient(center, ellipse cover, rgba(14,14,14,1) 0%,rgba(125,126,125,1) 100%);
		background: -o-radial-gradient(center, ellipse cover, rgba(14,14,14,1) 0%,rgba(125,126,125,1) 100%);
		background: -ms-radial-gradient(center, ellipse cover, rgba(14,14,14,1) 0%,rgba(125,126,125,1) 100%);
		background: radial-gradient(ellipse at center, rgba(14,14,14,1) 0%,rgba(125,126,125,1) 100%);
		box-shadow: 0 0 1px rgba(255,255,255,0.9);
	}

.ch-img-1 {
	background-image: url( "../img/Index/71.jpg");
	z-index: 12;
}

.ch-img-2 {
	background-image: url( "../img/Index/81.jpg");
	z-index: 11;
}

/*.ch-img-3 { 
	background-image: url(../images/9.jpg);
	z-index: 10;
}*/

.ch-info {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
	background: #b38d01 url(../images/noise.png);
	box-shadow: inset 0 0 0 5px rgba(0,0,0,0.05);
}

	.ch-info h3 {
		color: #fff;
		text-transform: uppercase;
		position: relative;
		letter-spacing: 2px;
		font-size: 18px;
		margin: 0px 40px;
		padding: 50px 0 0 0;
		height: 85px;
		font-family: 'Open Sans', Arial, sans-serif;
		text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0,0,0,0.3);
	}

	.ch-info p {
		color: #fff;
		padding: 10px 5px;
		font-style: italic;
		margin: 0 30px;
		font-size: 12px;
		border-top: 1px solid rgba(255,255,255,0.5);
	}

.ch-info2 p {
	color: #fff;
	font-style: italic;
	margin-top: 75%;
	margin-bottom: 0%;
	font-size: 16px;
	font-weight: bold;
}

.ch-info p a {
	display: block;
	width: 80px;
	height: 80px;
	background: rgba(255,255,255,0.3);
	border-radius: 50%;
	color: #fff;
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	padding-top: 24px;
	margin: 7px auto 0;
	font-family: 'Open Sans', Arial, sans-serif;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s ease-in-out 0.2s, opacity 0.3s ease-in-out 0.2s, background 0.2s linear 0s;
	-moz-transition: -moz-transform 0.3s ease-in-out 0.2s, opacity 0.3s ease-in-out 0.2s, background 0.2s linear 0s;
	-o-transition: -o-transform 0.3s ease-in-out 0.2s, opacity 0.3s ease-in-out 0.2s, background 0.2s linear 0s;
	-ms-transition: -ms-transform 0.3s ease-in-out 0.2s, opacity 0.3s ease-in-out 0.2s, background 0.2s linear 0s;
	transition: transform 0.3s ease-in-out 0.2s, opacity 0.3s ease-in-out 0.2s, background 0.2s linear 0s;
	-webkit-transform: translateX(60px) rotate(90deg);
	-moz-transform: translateX(60px) rotate(90deg);
	-o-transform: translateX(60px) rotate(90deg);
	-ms-transform: translateX(60px) rotate(90deg);
	transform: translateX(60px) rotate(90deg);
	-webkit-backface-visibility: hidden;
}

	.ch-info p a:hover {
		background: rgba(255,255,255,0.5);
	}

.ch-item:hover .ch-thumb {
	box-shadow: inset 0 0 0 15px rgba(255,255,255, 0.5), 0 1px 3px rgba(0,0,0,0.2);
	-webkit-transform: rotate(-110deg);
	-moz-transform: rotate(-110deg);
	-o-transform: rotate(-110deg);
	-ms-transform: rotate(-110deg);
	transform: rotate(-110deg);
}

.ch-item:hover .ch-info p a {
	opacity: 1;
	-webkit-transform: translateX(0px) rotate(0deg);
	-moz-transform: translateX(0px) rotate(0deg);
	-o-transform: translateX(0px) rotate(0deg);
	-ms-transform: translateX(0px) rotate(0deg);
	transform: translateX(0px) rotate(0deg);
}

@media (max-width: 1000px) {
	.text-centerCale h3 {
		font-family: 'Roboto', arial;
		line-height: 100%;
		font-size: 300%;
		margin-left: 5%;
		margin-right: 5%;
		margin-bottom: 8%;
		margin-top: 21%;
	}

	#calendario {
		margin-top: -20%;
	}

	.cale, .cale2, .calebtn, .calebtn2 {
		display: none;
	}
}

@media (orientation: landscape) and (min-width:1001px) and (max-width:1024px) {
	.text-centerCale h3 {
		font-size: 330%;
		margin-top: 5%;
	}

	#calendario {
		margin-top: -3%;
	}

	.cale, .cale2, .calebtn, .calebtn2 {
		display: none;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	.text-centerCale h3 {
		font-size: 330%;
		line-height: 90%;
		margin-top: 1%;
	}

	#calendario {
		margin-top: 0%;
		margin-bottom: -2%;
	}

	.cale, .calebtn, .cale3, .calebtn3 {
		display: none;
	}
}

@media (min-width:1367px) {
	#calendario {
		margin-top: 0%;
	}

	.cale2, .calebtn2, .cale3, .calebtn3 {
		display: none;
	}
}



/*********************************************/
.wrap {
	max-width: 1500px;
	width: 100%;
	margin: auto;
	margin-top: 5%;
	margin-bottom: -2%;
}

	.wrap > h1 {
		color: #494B4D;
		font-weight: 400;
		display: inline-block;
		text-align: center;
		margin: 15px 0px;
	}

		.wrap > h1:after {
			content: '';
			width: 100%;
			height: 1px;
			background: #C7C7C7;
			margin: 20px 0;
		}

.store-wrapper {
	display: inline-block;
	flex-wrap: wrap;
}

.category_list {
	display: inline-block;
	width: 100%;
	margin-top: 0%;
}

	.category_list .category_item {
		display: inline-block;
		width: 19%;
		padding: 15px 5px;
		margin-bottom: 0px;
		margin-left: .5%;
		background: none repeat scroll 0 0 #B38D01;
		text-align: center;
		text-decoration: none;
		color: #fff;
		font-weight: 400;
		font-size: 110%;
		text-transform: uppercase;
		transition: all 0.9s ease 0s;
		-moz-transition: all 0.9s ease 0s;
		-webkit-transition: all 0.9s ease 0s;
		-o-transition: all 0.9s ease 0s;
		border: 1.5px solid #F2F2F2;
		outline: none;
		border-radius: 0;
	}

		.category_list .category_item:hover {
			color: #6b6d6e;
			background: #fff;
			border: 1px solid #6b6d6e;
			box-shadow: none;
			-webkit-box-shadow: none;
		}


	.category_list .ct_item-active {
		/*background: #B38D01;*/
		background: #213967;
		color: #fff;
	}

	.category_list .category_item2 {
		display: inline-block;
		width: 19%;
		padding: 15px 5px;
		margin-bottom: 0px;
		margin-left: .5%;
		background: none repeat scroll 0 0 #E74C3C;
		text-align: center;
		text-decoration: none;
		color: #fff;
		font-weight: 400;
		font-size: 110%;
		text-transform: uppercase;
		transition: all 0.9s ease 0s;
		-moz-transition: all 0.9s ease 0s;
		-webkit-transition: all 0.9s ease 0s;
		-o-transition: all 0.9s ease 0s;
		border: 1.5px solid #E74C3C;
		outline: none;
		border-radius: 0;
	}

		.category_list .category_item2:hover {
			color: #fff;
			background: #28B463;
			border: 1px solid #28B463;
			box-shadow: none;
			-webkit-box-shadow: none;
		}



/* PRODUCTOS ============*/

.products-list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

	.products-list .product-item {
		width: 22%;
		margin-left: 1.5%;
		margin-right: 1.5%;
		margin-top: -3%;
		box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.22);
		display: inline-block;
		flex-direction: column;
		align-items: center;
		align-self: flex-start;
		transition: all .4s;
		margin-bottom: 5%;
	}

.img-evento img {
	width: 99%;
	align-items: center;
	margin-top: 3%;
	margin-bottom: 3%;
	padding: 0px;
}

.img-evento2 img {
	width: 99%;
	align-items: center;
	margin-top: 0%;
	margin-bottom: 0%;
	padding: 0px;
}

.products-list .product-item img {
	width: 90%;
	text-align: center;
}

.products-list .product-item a {
	display: inline-block;
	width: 100%;
	padding: 0px;
	background: #213967;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size: 120%;
}

	.products-list .product-item a:hover {
		transform: scale(1.2);
		-webkit-transform: scale(1.2);
		margin-bottom: 10%;
		/*transform: rotate(360deg);
-webkit-transform: rotate(360deg);*/
	}

.iframeBoleto-container {
	position: relative;
	padding-bottom: 15%;
	height: 0;
	overflow: hidden;
	width: 100%;
	margin-top: 1%;
	margin-bottom: 0%;
}

	.iframeBoleto-container iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border: none;
	}

.video-container {
	top: 0%;
	left: 0%;
	height: 600px;
	width: 1500px;
	overflow: hidden;
	margin-bottom: -4%;
	margin-top: 1%;
}

video.fillWidth {
	margin-top: 2%;
	width: 100%;
	height: 550px;
}

.video-containerEvento {
	top: 0%;
	left: 0%;
	height: 600px;
	width: 1500px;
	overflow: hidden;
	margin-bottom: 6%;
	margin-top: -6%;
}

#VideoTestimonioCel {
	text-align: center;
}

.videoEventoIlumina {
	width: 105vw;
	margin-left: -3%;
	margin-right: 0%;
	margin-top: 8%;
	text-align: center;
	margin-bottom: -10%;
}

	.videoEventoIlumina table {
		width: 100%;
		text-align: center;
	}

	.videoEventoIlumina iframe {
		margin: 0 auto;
		width: 105vw;
	}

.videoEventoIlumina2 {
	width: 105vw;
	margin-left: -1.5%;
	margin-right: 0%;
	margin-top: -38%;
	text-align: center;
	margin-bottom: 3%;
	/*border: 5px solid red;*/
}

	.videoEventoIlumina2 table {
		width: 100%;
		text-align: center;
	}

	.videoEventoIlumina2 iframe {
		margin: 0 auto;
		width: 105vw;
	}

/*Artistas*/
#EventoCompu2 {
	max-width: 1500px;
	height: 100%;
	overflow: hidden;
	margin-top: -5%;
	margin-bottom: 4%;
	padding: 20px 0;
}


	#EventoCompu2 .portfolioActLit-item2 {
		background-position: center center;
		background-size: cover;
		background-repeat: no-repeat;
		position: relative;
		height: 260px;
		width: 100%;
		display: table;
		overflow: hidden;
		margin-bottom: 30px;
	}

		#EventoCompu2 .portfolioActLit-item2 .detailsActLit2 {
			height: 260px;
			background: #fff;
			display: table-cell;
			vertical-align: middle;
			opacity: 0;
			transition: 0.3s;
			text-align: center;
		}

.text-centerActLit2 p {
	font-family: Arial;
	font-size: 130%;
	margin-top: 0%;
	margin-bottom: 1%;
	text-align: left;
	font-weight: lighter;
}

#EventoCompu2 .portfolioActLit-item2 .detailsActLit2 h4 {
	font-family: Arial;
	font-size: 120%;
	transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	-webkit-transform: translate3d(0, -15px, 0);
	transform: translate3d(0, -15px, 0);
	text-align: justify;
	text-indent: 1em;
	color: #213967;
	margin: 5%;
}

#EventoCompu2 .portfolioActLit-item2:hover .detailsActLit2 {
	opacity: 0.9;
}

	#EventoCompu2 .portfolioActLit-item2:hover .detailsActLit2 h4 {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

@media (max-width: 1000px) {
	#EventoCompu2 {
		margin-top: -3%;
		margin-bottom: 10%;
	}

	.text-centerActLit2 p {
		font-family: Arial;
		font-size: 120%;
		margin-top: 6%;
		margin-bottom: 1%;
		text-align: center;
	}

	#EventoCompu2 .portfolioActLit-item2 .detailsActLit2 h4 {
		font-family: arial;
		font-size: 110%;
	}

	#EventoCompu2 .portfolioActLit-item2 {
		margin-bottom: 10px;
		margin-top: 20px;
	}
}

@media (orientation: landscape) and (min-width:1001px) and (max-width:1080px) {
	#EventoCompu2 {
		margin-top: -1%;
		margin-bottom: 4%;
	}

		#EventoCompu2 .portfolioActLit-item2 .detailsActLit2 h4 {
			font-family: 'Roboto', arial;
			font-size: 120%;
		}
}

@media screen and (min-width:1081px) and (max-width:1366px) {
	#EventoCompu2 {
		margin-top: -6%;
		margin-bottom: 3%;
	}

	.text-centerActLit2 p {
		font-family: Arial;
		font-size: 110%;
	}

	#EventoCompu2 .portfolioActLit-item2 .detailsActLit2 h4 {
		font-size: 110%;
		line-height: 110%;
		margin: 5%;
	}
}


/* RESPONSIVE */
@media screen and (max-width: 359px) {
	.wrap {
		max-width: 1200px;
		width: 90%;
		margin: auto;
		margin-top: 5%;
	}

	.store-wrapper {
		display: flex;
		flex-wrap: wrap;
	}

	.category_list {
		display: block;
		width: 100%;
		margin-top: 0%;
	}

		.category_list .category_item {
			font-family: Arial;
			width: 90%;
			padding: 15px 5px;
			margin-bottom: 2px;
			margin-left: 5%;
			margin-right: 5%;
			font-weight: lighter;
			font-size: 110%;
			text-transform: uppercase;
		}

	.products-list {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		text-align: center;
	}

		.products-list .product-item {
			width: 100%;
			margin-bottom: 25px;
			margin-top: 2.5%;
			box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.22);
			display: flex;
			flex-direction: column;
			align-items: center;
			align-self: flex-start;
			transition: all .4s;
			margin-left: 0%;
			margin-right: 0%;
		}

			.products-list .product-item img {
				width: 100%;
			}

			.products-list .product-item a {
				display: block;
				width: 100%;
				padding: 0px 0px 0px;
				background: #213967;
				color: #fff;
				text-align: center;
				text-decoration: none;
			}

	.img-evento img {
		margin-top: 11%;
		margin-bottom: -13%;
	}

	.videoEventoIlumina {
		margin-bottom: -15%;
	}
	/*.videoEventoIlumina2 {
		margin-top: -37.5%;
		margin-bottom: 3%;
		margin-left:-1%;
	}*/

	.img-evento2 img {
		width: 99%;
		align-items: center;
		margin-top: 11%;
		margin-bottom: 20%;
		padding: 0px;
	}

	#EventoCompu, #videoTestimonio {
		display: none;
	}
}

@media screen and (min-width:360px) and (max-width:760px) {

	.wrap {
		max-width: 1200px;
		width: 90%;
		margin: auto;
		margin-top: 5%;
	}

	.store-wrapper {
		display: flex;
		flex-wrap: wrap;
	}

	.category_list {
		display: block;
		width: 100%;
		margin-top: 0%;
	}

		.category_list .category_item {
			font-family: Arial;
			width: 90%;
			padding: 15px 5px;
			margin-bottom: 2px;
			margin-left: 5%;
			margin-right: 5%;
			font-weight: lighter;
			font-size: 110%;
			text-transform: uppercase;
		}

	.products-list {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		text-align: center;
	}

		.products-list .product-item {
			width: 100%;
			margin-bottom: 25px;
			margin-top: 2.5%;
			box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.22);
			display: flex;
			flex-direction: column;
			align-items: center;
			align-self: flex-start;
			transition: all .4s;
			margin-left: 0%;
			margin-right: 0%;
		}

			.products-list .product-item img {
				width: 100%;
			}

			.products-list .product-item a {
				display: block;
				width: 100%;
				padding: 0px 0px 0px;
				background: #213967;
				color: #fff;
				text-align: center;
				text-decoration: none;
			}

	.img-evento img {
		margin-top: 11%;
		margin-bottom: 12%;
	}

	.videoEventoIlumina {
		margin-bottom: -13%;
	}

	/*.videoEventoIlumina2 {
		margin-left: -2%;
		margin-right: 0%;
		margin-top: -31%;
		text-align: center;
		margin-bottom: 1%;
	}*/

	.img-evento2 img {
		width: 99%;
		align-items: center;
		margin-top: 12%;
		margin-bottom: 20%;
		padding: 0px;
	}

	#EventoCompu, #videoTestimonio {
		display: none;
	}
}

@media screen and (min-width:375px) and (max-width:812px) {
	/*.videoEventoIlumina2 {
		margin-left: -2%;
		margin-right: 0%;
		margin-top: -30%;
		text-align: center;
		margin-bottom: 2%;
	}*/

	.wrap {
		max-width: 1200px;
		width: 90%;
		margin: auto;
		margin-top: 5%;
	}

	.store-wrapper {
		display: flex;
		flex-wrap: wrap;
	}

	.category_list {
		display: block;
		width: 100%;
		margin-top: 0%;
	}

		.category_list .category_item {
			font-family: Arial;
			width: 90%;
			padding: 15px 5px;
			margin-bottom: 2px;
			margin-left: 5%;
			margin-right: 5%;
			font-weight: lighter;
			font-size: 110%;
			text-transform: uppercase;
		}

	.products-list {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		text-align: center;
	}

		.products-list .product-item {
			width: 100%;
			margin-bottom: 25px;
			margin-top: 2.5%;
			box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.22);
			display: flex;
			flex-direction: column;
			align-items: center;
			align-self: flex-start;
			transition: all .4s;
			margin-left: 0%;
			margin-right: 0%;
		}

			.products-list .product-item img {
				width: 100%;
			}

			.products-list .product-item a {
				display: block;
				width: 100%;
				padding: 0px 0px 0px;
				background: #213967;
				color: #fff;
				text-align: center;
				text-decoration: none;
			}

				.products-list .product-item a:hover {
					transform: scale(1.2);
					-webkit-transform: scale(1.2);
					margin-bottom: 0%;
				}

	.img-evento {
		margin-top: 1%;
		margin-bottom: -22%;
	}

	#EventoCompu, #videoTestimonio {
		display: none;
	}
}

@media screen and (min-width:384px) and (max-width:854px) {
	/*	.videoEventoIlumina2 {
		width: 105vw;
		margin-left: -2%;
		margin-right: 0%;
		margin-top: -31%;
		text-align: center;
		margin-bottom: 1%;
	}*/

	.wrap {
		max-width: 1200px;
		width: 90%;
		margin: auto;
		margin-top: 5%;
	}

	.store-wrapper {
		display: flex;
		flex-wrap: wrap;
	}

	.category_list {
		display: block;
		width: 100%;
		margin-top: 0%;
	}

		.category_list .category_item {
			font-family: Arial;
			width: 90%;
			padding: 15px 5px;
			margin-bottom: 2px;
			margin-left: 5%;
			margin-right: 5%;
			font-weight: lighter;
			font-size: 110%;
			text-transform: uppercase;
		}

	.products-list {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		text-align: center;
	}

		.products-list .product-item {
			width: 100%;
			margin-bottom: 25px;
			margin-top: 2.5%;
			box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.22);
			display: flex;
			flex-direction: column;
			align-items: center;
			align-self: flex-start;
			transition: all .4s;
			margin-left: 0%;
			margin-right: 0%;
		}

			.products-list .product-item img {
				width: 100%;
			}

			.products-list .product-item a {
				display: block;
				width: 100%;
				padding: 0px 0px 0px;
				background: #213967;
				color: #fff;
				text-align: center;
				text-decoration: none;
			}

				.products-list .product-item a:hover {
					transform: scale(1.2);
					-webkit-transform: scale(1.2);
					margin-bottom: 0%;
				}

	.img-evento {
		margin-top: 2%;
		margin-bottom: -20%;
	}

	#EventoCompu, #videoTestimonio {
		display: none;
	}
}

@media screen and (min-width:390px) and (max-width:844px) {
	.videoEventoIlumina iframe {
		margin-bottom: 1%;
		/*border: 5px solid red;*/
	}

	.wrap {
		max-width: 1200px;
		width: 90%;
		margin: auto;
		margin-top: 5%;
	}

	.store-wrapper {
		display: flex;
		flex-wrap: wrap;
	}

	.category_list {
		display: block;
		width: 100%;
		margin-top: 0%;
	}

		.category_list .category_item {
			font-family: Arial;
			width: 90%;
			padding: 15px 5px;
			margin-bottom: 2px;
			margin-left: 5%;
			margin-right: 5%;
			font-weight: lighter;
			font-size: 110%;
			text-transform: uppercase;
		}

	.products-list {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		text-align: center;
	}

		.products-list .product-item {
			width: 100%;
			margin-bottom: 25px;
			margin-top: 2.5%;
			box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.22);
			display: flex;
			flex-direction: column;
			align-items: center;
			align-self: flex-start;
			transition: all .4s;
			margin-left: 0%;
			margin-right: 0%;
		}

			.products-list .product-item img {
				width: 100%;
			}

			.products-list .product-item a {
				display: block;
				width: 100%;
				padding: 0px 0px 0px;
				background: #213967;
				color: #fff;
				text-align: center;
				text-decoration: none;
			}

				.products-list .product-item a:hover {
					transform: scale(1.2);
					-webkit-transform: scale(1.2);
					margin-bottom: 0%;
				}

	.img-evento img {
		margin-top: 6%;
		margin-bottom: 8%;
	}

	#EventoCompu, #videoTestimonio {
		display: none;
	}
}

@media screen and (min-width:412px) and (max-width:915px) {
	.videoEventoIlumina2 {
		margin-left: -3%;
		margin-right: 0%;
		margin-top: 4%;
		text-align: center;
		margin-bottom: 6%;
	}

	.wrap {
		max-width: 1200px;
		width: 90%;
		margin: auto;
		margin-top: 5%;
	}

	.store-wrapper {
		display: flex;
		flex-wrap: wrap;
	}

	.category_list {
		display: block;
		width: 100%;
		margin-top: 0%;
	}

		.category_list .category_item {
			font-family: Arial;
			width: 90%;
			padding: 15px 5px;
			margin-bottom: 2px;
			margin-left: 5%;
			margin-right: 5%;
			font-weight: lighter;
			font-size: 110%;
			text-transform: uppercase;
		}

	.products-list {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		text-align: center;
	}

		.products-list .product-item {
			width: 100%;
			margin-bottom: 25px;
			margin-top: 2.5%;
			box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.22);
			display: flex;
			flex-direction: column;
			align-items: center;
			align-self: flex-start;
			transition: all .4s;
			margin-left: 0%;
			margin-right: 0%;
		}

			.products-list .product-item img {
				width: 100%;
			}

			.products-list .product-item a {
				display: block;
				width: 100%;
				padding: 0px 0px 0px;
				background: #213967;
				color: #fff;
				text-align: center;
				text-decoration: none;
			}

				.products-list .product-item a:hover {
					transform: scale(1.2);
					-webkit-transform: scale(1.2);
					margin-bottom: 0%;
				}

	.img-evento {
		margin-top: 3%;
		margin-bottom: -15%;
	}

	.img-evento2 {
		width: 99%;
		align-items: center;
		margin-top: -3%;
		margin-bottom: -4%;
		padding: 0px;
	}

	#EventoCompu, #videoTestimonio, .video-containerEvento {
		display: none;
	}
}

@media screen and (min-width:414px) and (max-width:896px) {


	.wrap {
		max-width: 1200px;
		width: 90%;
		margin: auto;
		margin-top: 5%;
	}

	.store-wrapper {
		display: flex;
		flex-wrap: wrap;
	}

	.category_list {
		display: block;
		width: 100%;
		margin-top: 0%;
	}

		.category_list .category_item {
			font-family: Arial;
			width: 90%;
			padding: 15px 5px;
			margin-bottom: 2px;
			margin-left: 5%;
			margin-right: 5%;
			font-weight: lighter;
			font-size: 110%;
			text-transform: uppercase;
		}

	.products-list {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		text-align: center;
	}

		.products-list .product-item {
			width: 100%;
			margin-bottom: 25px;
			margin-top: 2.5%;
			box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.22);
			display: flex;
			flex-direction: column;
			align-items: center;
			align-self: flex-start;
			transition: all .4s;
			margin-left: 0%;
			margin-right: 0%;
		}

			.products-list .product-item img {
				width: 100%;
			}

			.products-list .product-item a {
				display: block;
				width: 100%;
				padding: 0px 0px 0px;
				background: #213967;
				color: #fff;
				text-align: center;
				text-decoration: none;
			}

				.products-list .product-item a:hover {
					transform: scale(1.2);
					-webkit-transform: scale(1.2);
					margin-bottom: 0%;
				}

	.img-evento {
		margin-top: 5%;
		margin-bottom: -15%;
	}

	#EventoCompu, #videoTestimonio {
		display: none;
	}
}

@media screen and (min-width:428px) and (max-width:926px) {

	.videoEventoIlumina iframe {
		margin-bottom: 4%;
	}

	.wrap {
		max-width: 1200px;
		width: 90%;
		margin: auto;
		margin-top: 5%;
	}

	.store-wrapper {
		display: flex;
		flex-wrap: wrap;
	}

	.category_list {
		display: block;
		width: 100%;
		margin-top: 0%;
	}

		.category_list .category_item {
			font-family: Arial;
			width: 90%;
			padding: 15px 5px;
			margin-bottom: 2px;
			margin-left: 5%;
			margin-right: 5%;
			font-weight: lighter;
			font-size: 110%;
			text-transform: uppercase;
		}

	.products-list {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		text-align: center;
	}

		.products-list .product-item {
			width: 100%;
			margin-bottom: 25px;
			margin-top: 2.5%;
			box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.22);
			display: flex;
			flex-direction: column;
			align-items: center;
			align-self: flex-start;
			transition: all .4s;
			margin-left: 0%;
			margin-right: 0%;
		}

			.products-list .product-item img {
				width: 100%;
			}

			.products-list .product-item a {
				display: block;
				width: 100%;
				padding: 0px 0px 0px;
				background: #213967;
				color: #fff;
				text-align: center;
				text-decoration: none;
			}

				.products-list .product-item a:hover {
					transform: scale(1.2);
					-webkit-transform: scale(1.2);
					margin-bottom: 0%;
				}

	.img-evento {
		margin-top: 4%;
		margin-bottom: -15%;
	}

	#EventoCompu, #videoTestimonio, #video-containerEvento {
		display: none;
	}
}


@media (orientation: landscape) and (min-width:1001px) and (max-width:1080px) {
	.wrap {
		max-width: 1000px;
		width: 100%;
		margin: auto;
		margin-top: 5%;
	}

	.store-wrapper {
		display: block;
		/*	flex-wrap: wrap;*/
	}

	.category_list {
		display: block;
		width: 100%;
		margin-top: 0%;
	}

		.category_list .category_item {
			display: block;
			width: 90%;
			padding: 15px 5px;
			margin-bottom: 2px;
			margin-left: 5%;
			margin-right: 5%;
			font-weight: 300;
			font-size: 100%;
		}
	/* PRODUCTOS ============*/
	.products-list {
		width: 100%;
		display: none;
		flex-wrap: nowrap;
	}

		.products-list .product-item {
			width: 80%;
			margin-left: 10%;
			margin-right: 10%;
			margin-bottom: 25px;
			margin-top: 1%;
			box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.22);
			display: none;
			flex-direction: column;
			align-items: center;
			align-self: none;
			transition: all .4s;
		}

			.products-list .product-item img {
				width: 100%;
			}

			.products-list .product-item a {
				display: none;
				width: 100%;
				padding: 0px;
				background: #213967;
				color: #fff;
				text-align: center;
				text-decoration: none;
				font-size: 120%;
			}

				.products-list .product-item a:hover {
					transform: scale(1.2);
					-webkit-transform: scale(1.2);
					margin-bottom: 0%;
				}

	.videoEventoIlumina {
		margin-top: 5%;
		height: 400px;
		margin-bottom: 0%;
	}

		.videoEventoIlumina table {
			margin-bottom: -10%;
		}

	.img-evento img {
		margin-top: 4%;
		margin-bottom: 0%;
	}

	.videoEventoIlumina2 {
		margin-top: 2%;
		width: 100%;
		height: 400px;
		margin-bottom: 8%;
	}

		.videoEventoIlumina2 table {
			width: 100%;
			margin-bottom: 25%;
			margin-left: -3%;
		}

	#EventoCel, #EventoCel2, #videoTestimonio, #videoBandaArte {
		display: none;
	}
}

@media screen and (min-width:1081px) and (max-width:1366px) {
	.wrap {
		max-width: 1200px;
		width: 100%;
		margin: auto;
		margin-top: 5%;
		margin-bottom: -2%;
	}

		.wrap > h1 {
			color: #494B4D;
			font-weight: 400;
			display: inline-block;
			text-align: center;
			margin: 15px 0px;
		}

	.category_list {
		display: inline-block;
		width: 100%;
		margin-top: 0%;
	}

		.category_list .category_item {
			font-weight: 400;
			font-size: 90%;
		}

		.category_list .category_item2 {
			font-weight: 400;
			font-size: 90%;
		}

	/* PRODUCTOS ============*/

	.products-list {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}

		.products-list .product-item {
			width: 100%;
			margin-left: 1.5%;
			margin-right: 1.5%;
			margin-top: -3%;
			margin-bottom: 5%;
		}

	.img-evento img {
		width: 100%;
		align-items: center;
		margin-top: 3%;
		margin-bottom: -1%;
		padding: 0px;
	}

	.img-evento2 img {
		width: 100%;
		align-items: center;
		margin-top: -15%;
		margin-bottom: 15%;
		padding: 0px;
	}

	.products-list .product-item img {
		width: 100%;
		text-align: center;
	}

	.products-list .product-item a {
		font-size: 100%;
	}

	.iframeBoleto-container {
		padding-bottom: 15%;
		height: 0;
		overflow: hidden;
		width: 100%;
		margin-top: 1%;
		margin-bottom: 0%;
	}

		.iframeBoleto-container iframe {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			border: none;
		}

	.video-container {
		top: 0%;
		left: 0%;
		height: 410px;
		width: 1200px;
		overflow: hidden;
		margin-bottom: -5%;
		margin-top: 1%;
	}

	video.fillWidth {
		margin-top: 2%;
		width: 100%;
		height: 390px;
	}

	.video-containerEvento {
		top: 0%;
		left: 0%;
		height: 420px;
		width: 1200px;
		overflow: hidden;
		margin-bottom: 6%;
		margin-top: -6%;
	}

	#VideoTestimonioCel {
		text-align: center;
	}

	.videoEventoIlumina {
		width: 105vw;
		margin-left: -3%;
		margin-right: 0%;
		margin-top: 8%;
		text-align: center;
		margin-bottom: -10%;
	}

		.videoEventoIlumina table {
			width: 100%;
			text-align: center;
		}

		.videoEventoIlumina iframe {
			margin: 0 auto;
			width: 105vw;
		}

	.videoEventoIlumina2 {
		width: 105vw;
		margin-left: -3%;
		margin-right: 0%;
		margin-top: -14%;
		text-align: center;
		margin-bottom: 11%;
	}

		.videoEventoIlumina2 table {
			width: 100%;
			text-align: center;
		}

		.videoEventoIlumina2 iframe {
			margin: 0 auto;
			width: 105vw;
		}

		#EventoCel, #EventoCel2, #VideoTestimonioCel, .videoEventoIlumina, .videoEventoIlumina table, .videoEventoIlumina iframe, .videoEventoIlumina2, .videoEventoIlumina2 table, .videoEventoIlumina2 iframe {
			display: none;
		}
}

@media (min-width:1367px) {
	#EventoCel, #EventoCel2, #VideoTestimonioCel, .videoEventoIlumina, .videoEventoIlumina table, .videoEventoIlumina iframe, .videoEventoIlumina2, .videoEventoIlumina2 table, .videoEventoIlumina2 iframe {
		display: none;
	}
}
/***************************Preguntas Frecuentes********************************************/
#PreguntasFrecuentes {
	margin-bottom: -1%;
	margin-top: 0%;
}

.panel-default {
	border-color: transparent;
}

	.panel-default > .panel-heading,
	.panel {
		background-color: #e6e6e6;
		border: 0 none;
		box-shadow: none;
	}

		.panel-default > .panel-heading + .panel-collapse .panel-body {
			background: #fff;
			color: #858586;
			text-align: justify;
		}

.panel-body {
	padding: 20px 20px 5px;
}

.panel-group .panel + .panel {
	border-top: 1px solid #fff;
}

.panel-group .panel {
	border-radius: 0;
}

.panel-heading {
	border-radius: 0;
}

.panel-title > a {
	color: #4e4e4e;
}

.accordion-inner img {
	border-radius: 4px;
}


.panel-heading.active {
	background: #213967;
}

	.panel-heading.active .panel-title > a {
		color: #fff;
	}

a.accordion-toggle i {
	width: 40px;
	line-height: 38px;
	font-size: 20px;
	margin-top: -10px;
	text-align: center;
	margin-right: -15px;
	background: #b38d01;
	color: #fff;
}

.panel-heading.active a.accordion-toggle i {
	background: #b38d01;
	color: #fff;
}

.panel-heading.active a.accordion-toggle.collapsed i {
	background: #b38d01;
	color: #fff;
}


.PreguntasFrecuentes h2 {
	color: #315aa8;
	font-size: 175%;
	margin-top: 2%;
	margin-bottom: 1%;
	text-align: center;
}

.PreguntasFrecuentes2 h2 {
	color: #315aa8;
	font-size: 175%;
	margin-top: -2%;
	margin-bottom: 1%;
	text-align: center;
}
/* Portfolio Section
--------------------------------*/
.text-centerTitulosInfoNuevoCiclo h3 {
	font-family: 'Futura-Bold', arial;
	/*font-weight:bold;*/
	color: #939496;
	line-height: 90%;
	font-size: 300%;
	margin-top: 0%;
	margin-bottom: 2%;
	text-align: center;
}

#InformacionNuevoCiclo {
	background: #f7f7f7;
	padding: 80px 0 50px;
}


@media (max-width: 1000px) {
	.text-centerTitulosInfoNuevoCiclo h3 {
		font-family: 'Roboto', arial;
		line-height: 150%;
		font-weight: bold;
		font-size: 150%;
		margin-left: 5%;
		margin-right: 5%;
		margin-bottom: 8%;
		margin-top: -20%;
	}

	.PreguntasFrecuentes h2 {
		font-size: 130%;
		line-height: normal;
		margin-top: 2%;
		margin-bottom: 5%;
	}

	.PreguntasFrecuentes2 h2 {
		font-size: 130%;
		line-height: normal;
		margin-top: -12%;
		margin-bottom: 5%;
	}

	#PreguntasClineaDispositivo {
		margin-bottom: 5%;
		margin-top: 0%;
	}

	#PreguntasAdmin, #PreguntasClinea {
		display: none;
	}


	a.accordion-toggle i {
		width: 20px;
		line-height: 38px;
		font-size: 20px;
		text-align: center;
		vertical-align: middle;
		margin-right: -15px;
		background: #b38d01;
		color: #fff;
	}



	.panel-heading.active .panel-title > a {
		font-family: 'Roboto', arial;
		font-size: 14px;
		line-height: normal;
		font-weight: 12px;
	}

	.panel-title > a {
		font-family: 'Roboto', arial;
		font-size: 14px;
		line-height: normal;
		font-weight: 12px;
	}

	.panel-default > .panel-heading + .panel-collapse .panel-body {
		font-family: 'Roboto', arial;
		background: #fff;
		color: #858586;
		text-align: justify;
		font-size: 14px;
		line-height: normal;
		font-weight: lighter;
	}
}

@media (orientation: landscape) and (min-width:1001px) and (max-width:1024px) {
	.text-centerTitulosInfoNuevoCiclo h3 {
		font-size: 230%;
		margin-top: -2%;
	}

	.panel-heading.active .panel-title > a {
		font-family: 'Roboto', arial;
		font-size: 12px;
		line-height: normal;
		font-weight: 12px;
	}

	.panel-title > a {
		font-family: 'Roboto', arial;
		font-size: 12px;
		line-height: normal;
		font-weight: 12px;
	}

	.panel-default > .panel-heading + .panel-collapse .panel-body {
		font-family: 'Roboto', arial;
		background: #fff;
		color: #858586;
		text-align: justify;
		font-size: 14px;
		line-height: normal;
		font-weight: lighter;
	}

	#PreguntasAdminDispositivo, #PreguntasClineaDispositivo {
		display: none;
	}
}

@media screen and (min-width:1025px) and (max-width:1366px) {
	.text-centerTitulosInfoNuevoCiclo h3 {
		font-size: 250%;
		line-height: 90%;
	}

	#PreguntasFrecuentes {
		margin-bottom: -4%;
		margin-top: 0%;
	}

	#PreguntasAdminDispositivo, #PreguntasClineaDispositivo {
		display: none;
	}
}

@media (min-width:1367px) {
	#PreguntasAdminDispositivo, #PreguntasClineaDispositivo {
		display: none;
	}
}
