@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');
* {
	padding: 0;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	color: #2e2e2e;
}

html {
	/* scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch; */
}

html::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

html::-webkit-scrollbar
{
	width: 12px;
	background-color: #F5F5F5;
}

html::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #2e2e2e;
}

:root {
	--primaryColor: #8772C0;
}

header {
	display: flex!important;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
    left: -1px;
	width: calc(100% + 5px);
	height: 80px;
	z-index: 1;
	background: transparent;
	transition: all .3s;
}

header .containerLogo {
	width: 110px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-left: 50px;
}

header .containerLogo .logo {
	width: 100%;
	max-width: 110px;
	transition: all .3s;
}

.headerActiveOnScroll {
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(55,79,140,1) 0%, rgba(0,185,182,1) 100%);
	height: 56px;
	transition: all .4s;
}

.headerActiveOnScroll .containerLogo a {
	height: 22px;
}

.headerActiveOnScroll .containerLogo .logo {
	width: 110px;
	transition: all .3s;
}

header nav {
	width: 70%;
	background: transparent!important;
	box-shadow: none;
	margin-right: 50px;
}

header nav ul {
	display: flex;
	justify-content: space-evenly;
	height: 100%;
}

header nav ul li {
	list-style: none;
	display: flex;
	align-items: center;
}

header nav ul li a {
	text-decoration: none;
	color: #ffffff;
	height: 65px;
	font-size: 12px;
}

header nav  li a i {
	color: #fff;
	font-size: 12px;
}

header nav ul li a:hover {
	background: transparent;
}

header nav  li ul {
	display:none;
	position:absolute;
	min-width:110px;
}

header nav  li:hover > ul {
	/* display:block; */
	display: flex;
	flex-direction: column;
	margin-top: 240px;
	/* background-color: #209CAA; */
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(30,154,170,1) 0%, rgba(38,165,174,1) 100%);
	height: auto;
	padding-top: 10px;
}

header nav  li ul li {
	/* position:relative; */
	height: 30px;
}

header nav  li ul li:hover {
	background-color: #26a5ae;
	/* filter: brightness(50%); */
	z-index: 10;
}

header nav  li ul li a {
	width: 100%;
}

header nav ul li .changeLang {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 25px;
	background: #808080;
	padding: 0;
	margin: 0;
}

header nav ul li .changeLang:hover {
	background: #A1A1A1;
}

.containerHero {
	overflow-x: hidden;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.containerHero section {
	width: calc(100% + 2px);
	height: auto;
	perspective: 2px;
}

.modalNewsletter {
	display: none;
	flex-direction: column;
	background-image: url("../img/banners/barra_colores.png");
	background-size: 20px 100%;
	background-repeat: no-repeat;
	background-position-x: left;
	border-radius: 10px;
	padding-left: 20px;
	min-height: 350px;
}

.modalNewsletter .modal-header-newsletter {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.modalNewsletter .modal-header-newsletter .containerCerrarNewsletter {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.modalNewsletter .modal-header-newsletter img {
	width: 90px;
	margin: -20px 0 20px 0;
}

.modalNewsletter .modal-header-newsletter h4 {
	margin: 0;
	width: 100%;
	text-align: center;
}

.modalNewsletter .modal-header-newsletter button {
	background-color: transparent;
	border: none;
	padding: 10px;
	cursor: pointer;
}

.modalNewsletter .modal-header-newsletter button i {
	font-size: 24px;
	color: #2e2e2e;
}

.modalNewsletter .modal-footer {
	background-color: transparent;
	text-align: center;
}

.modalNewsletter .modal-footer .containerInputNewsletter {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 50%;
	padding: 0;
	height: 40px;
	margin: 5px auto;
	border: solid 1px #CACACA;
	border-radius: 10px;
	background-color: #fff;
	overflow: hidden;
}

.modalNewsletter .modal-footer .containerInputNewsletter input {
	padding: 10px 15px;
	border: none;
}

.modalNewsletter .modal-footer .containerInputNewsletter input:focus, .newsletter-footer .containerInputNewsletter input:focus {
	outline: none;
}

.modalNewsletter .modal-footer .containerInputNewsletter button, .newsletter-footer .containerInputNewsletter button {
	border-left: solid 1px #cacaca;
	background-color: var(--primaryColor);
	height: 100%;
	margin: 0;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	padding: 10px 20px;
	border: none;
	cursor: pointer;
}

#result {
	text-align: center;
	width: 70%;
	margin: 10px auto 20px auto;
	padding-top: 20px;
}

.suscripcionExitosa {
	text-align: center;
	font-weight: 500;
	color: var(--primaryColor);
	font-size: 20px;
}

.newsletter-footer {
	/* background-color: red; */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
	max-width: 300px;
}

.newsletter-footer  p {
	color: #fff;
	text-align: center;
}

.newsletter-footer .containerInputNewsletter {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90%;
	border: solid 1px var(--primaryColor);
	border-radius: 10px;
	height: 40px;
	overflow: hidden;
	background-color: transparent;
	margin: 10px 0;
}

.newsletter-footer .containerInputNewsletter input {
	border: none;
	margin: 0;
	padding: 0 10px;
	color: #fff;
	transition: all .2s;
}

.newsletter-footer .containerInputNewsletter input:focus {
	background-color: #fff;
	transition: all .2s;
	color: #2e2e2e;
}

.newsletter-footer .containerInputNewsletter input:placeholder {
	color: #f1f2f3;
}


@media screen and (max-width: 768px) {
	.modalNewsletter {
		height: 400px;
	}

	.modalNewsletter .modal-header-newsletter h4 {
		font-size: 25px;
	}

	.modalNewsletter .modal-footer .containerInputNewsletter {
		width: 90%;
	}

	.modalNewsletter .modal-footer .containerInputNewsletter input {
		width: 80%;
	}

	#result {
		width: 90%;
		padding-bottom: 20px;
	}

	.newsletter-footer {
		border-top: solid 1px #f1f2f3;
		border-bottom: solid 1px #f1f2f3;
	}
}

@media screen and (max-width: 856px){
	header nav {
		display: none;
	}

	header .containerLogo {
		margin-left: 22px;
	}

	.boton-menu-mobile {
		display: flex;
	}

	.menuMobile {
		display: flex;
	}

	.main-nav {
		display: inline-block;
	}

	header .logo {
		width: 120px!important;
	}

}

@media screen and (min-width: 856px) {
	.boton-menu-mobile {
		display: none!important;	
	}

	.menuMobile {
		display: none!important;
	}
	header nav {
		width: 750px!important;
	}
}

/* Wsp Button */
.wsp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 30px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,.5));
    z-index: 1231231;    
}

.wsp-icon a .logoWsp {
	display: none;
    width: 60px;
    height: 60px;
    z-index: 1231231;
}

    /* ondas al icono wsp */
.wsp-icon span {
    position: relative;
    font-size: 72px;
    border: none;
    top: 40px;
    left: -5px;
    color: transparent;
}

.wsp-icon::after {
    opacity: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -8px;
    left: -8px;
    right: 0;
    bottom: 0;
    content: '';
    height: 100%;
    width: 100%;
    border: 8px solid rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    animation-name: ripple;
    animation-duration: 3s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    z-index: -1;
}

.wsp-icon::before {
    opacity: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -8px;
    left: -8px;
    right: 0;
    bottom: 0;
    content: '';
    height: 100%;
    width: 100%;
    border: 8px solid rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    animation-name: ripple;
    animation-duration: 3s;
    animation-delay: 0.5s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    z-index: -1;
}

footer {
	width: 100%;
	min-height: 120px;
	background: #2e2e2e;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	padding: 30px 0;
}

footer a {
	color: #ffffff;
	font-size: 16px;
}

footer hr {
	display: none;
}

footer a:hover {
	text-decoration: underline;
}

footer .logo img{
	width: 120px;
}

footer .logo p {
	color: #ffffff;
	font-weight: 600;
}

footer .serviciosFooter {
	color: #fff;
}

footer .serviciosFooter p {
	color: #fff;
	font-size: 16px;
}

footer .serviciosFooter ul li a {
	font-size: 14px;
}

footer .serviciosFooter ul li a:hover {
	text-decoration: underline;
}

footer .redes {
	display: flex;
	justify-content: space-evenly;
	width: 120px;
}

footer .redes a i{
	color: #ffffff;
	font-size: 15px;
}

@media screen and (max-width: 768px) {

	footer {
		flex-direction: column;
		align-items: center;
	}

	footer hr {
		display: block;
		width: 50px;
		margin-top: 10px;
	}

	footer .logo {
		display: flex;
		justify-content: center;
		flex-direction: column;
	}

	footer .logo img{
		width: 120px;
		margin: 10px auto;
	}

	footer .logo p{
		font-size: 12px;
	}
	
	footer .serviciosFooter {
		margin: 12px 0;
	}

	footer .serviciosFooter p {
		text-align: center;
	}
}

@media screen and (min-width: 768px) {
	footer a {
		text-align: center;
	}

}

/* ESTILOS GENERALES  */

.containerButtonsBienvenida {
	display: flex;
	z-index: 1000;
	align-items: center;
	flex-wrap: wrap;
	margin: 20px 10px 0 0;
	padding-left: 30px;

}

.containerButtonsBienvenida a {
	margin: 10px 10px;
	height: 33px;
}

.buttonVerMas {
	text-align: center;
	border-radius: 18px;
	border: solid 2px var(--primaryColor);
	background-color: var(--primaryColor);
	color: white;
	padding: 4px 24px!important;
	font-weight: 600;
	margin-top: 20px;
	text-decoration: none;
	transition: all .2s;
}

.buttonVerMas:hover {
	filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.3));
	transition: all .2s;
}

.noselect {
	-webkit-touch-callout: none;
	  -webkit-user-select: none;
	   -khtml-user-select: none;
		 -moz-user-select: none;
		  -ms-user-select: none;
			  user-select: none;
		  -webkit-tap-highlight-color: transparent;
  }
  
.noselect {
	width: 170px;
	padding: 4px 0!important;
	height: 100%;
	cursor: pointer;
	display: flex;
	align-items: center;
	border: none;
	border-radius: 16px;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.15);
	border: solid 2px var(--primaryColor);
	background-color: var(--primaryColor);
	z-index: 1000;
	/* position: absolute;
	left: 45%;
	top: 80%; */
}

.noselect, .noselect span {
	transition: 200ms;
}

.noselect .text {
	transform: translateX(20px);
	color: white;
	font-weight: bold;
}

.noselect .icon {
	position: absolute;
	border-left: 1px solid #f1f2f3;
	transform: translateX(125px);
	height: 25px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.noselect i {
	font-size: 15px;
	color: #eee;
}

.noselect:hover {
	border: solid 2px var(--primaryColor);
	background-color: var(--primaryColor);
	filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.3));
	transition: all .2s;
}

.noselect:hover .text {
	color: transparent;
}

.noselect:hover .icon {
	width: 170px;
	border-left: none;
	transform: translateX(0);
}

.noselect:focus {
	outline: none;
}


.noselectDemo {
	-webkit-touch-callout: none;
	  -webkit-user-select: none;
	   -khtml-user-select: none;
		 -moz-user-select: none;
		  -ms-user-select: none;
			  user-select: none;
		  -webkit-tap-highlight-color: transparent;
  }
  
.noselectDemo {
	width: 200px;
	padding: 4px 0!important;
	height: 100%;
	cursor: pointer;
	display: flex;
	align-items: center;
	border: none;
	border-radius: 16px;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.15);
	border: solid 2px var(--primaryColor);
	background-color: var(--primaryColor);
	z-index: 1000;
	/* margin-top: -60px!important; */
	/* margin-bottom: 30px!important; */
	/* position: absolute;
	left: 45%;
	top: 80%; */
}

.noselectDemo, .noselectDemo span {
	transition: 200ms;
}

.noselectDemo .text {
	transform: translateX(20px);
	color: white;
	font-weight: bold;
}

.noselectDemo .icon {
	position: absolute;
	border-left: 1px solid #f1f2f3;
	transform: translateX(150px);
	height: 25px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.noselectDemo i {
	font-size: 15px;
	color: #eee;
}

.noselectDemo:hover {
	border: solid 2px var(--primaryColor);
	background-color: var(--primaryColor);
	filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.3));
	transition: all .2s;
}

.noselectDemo:hover .text {
	color: transparent;
}

.noselectDemo:hover .icon {
	width: 170px;
	border-left: none;
	transform: translateX(20px);
}

.noselectDemo:focus {
	outline: none;
}

@media screen and (max-width: 360px){
	.containerButtonsBienvenida {
		width: 100%;
		flex-wrap: wrap;
		justify-content: flex-start;
		height: 100px;
	}

	.containerButtonsBienvenida .buttonVerMas {
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 12px;
		padding: 0!important;
		width: 100px;
		height: 35px;
		margin-right: 4px;
		margin-left: 0!important;
	}

	.containerButtonsBienvenida .noselect {
		font-size: 12px;
		padding: 10px 0;
		height: 35px;
		margin-left: 4px;
	}
}


/* FINISH ESTILOS GENERALES */

/* Article Bienvenida */

.containerHero section .bienvenida {
	width: 100%;
	min-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.bgParallaxSurf {
	position: absolute;
	width: 100%;
	height: 90vh;
	background: #00000030;
	top: 0;
	left: 0;
	z-index: 1;
}

.containerHero section .bienvenida b {
	z-index: 10;
}

.containerHero section .bienvenida b h1 {
	font-size: 40px;
	padding-top: 100px;
	font-weight: 700;
	padding-left: 50px;
	color: white;
	margin-bottom: 15px!important;
}

.containerHero section .bienvenida p {
	width: 90%;
	max-width: 700px;
	font-size: 18px;
	font-weight: 600!important;
    line-height: 1.7;	
	padding-left: 50px;
	color: white;
	z-index: 5;
}

.containerHero section .bienvenida p b {
	font-weight: 800!important;
	color: white;
	z-index: 5;
}

.containerHero section .bienvenida .buttonVerMas {
	/* margin-left: 50px; */
	z-index: 2;
}

.containerHero .svg-wave-absolute-bottom {
	width: 100%;
	/* background: red;	 */
	position: absolute;
	bottom: -30px;
	padding: 0;
}

.containerHero section .bienvenida .gotaBienvenida {
	position: absolute;
	right: 0;
	/* top: 22%; */
	padding-top: 150px;
	width: 250px;
	z-index: 2;
}

	/* PARALLAX  */
	.block{
	  width: 100%;
	  height: 100%;
	  position: relative;
	  overflow: hidden;
	  font-size: 16px;
	  color: white;
	}
	 
	.img-parallax {
	  filter: brightness(90%);
	}

	/* FINISH PARALLAX */
	
	/* MEDIAQUERIES Bienvenida */

	@media screen and (max-width: 360px) {
		.containerHero section .bienvenida{
			height: 100vh;
		}

		.bgParallaxSurf  {
			height: 100vh;
		}
	}

	@media screen and (max-width: 768px) {

		.containerHero section .bienvenida .gotaBienvenida{
			display: none;
		}

		.containerHero section .bienvenida b h1 {
			font-size: 32px;
			padding-top: 70px;
			font-weight: 700;
			padding-left: 30px;
			color: white;
			margin-bottom: 15px!important;
		}

		.containerHero section .bienvenida p {
			width: 90%;
			max-width: 700px;
			font-weight:400!important;
			font-size: 20px;
			line-height: 1.3;	
			padding-left: 30px;
			color: white;
		}
		
		.containerHero section .bienvenida p b {
			font-weight:600!important;

		}

		.containerHero section .bienvenida .buttonVerMas {
		}

		.containerHero section .bienvenida .img-parallax {
			height: auto;
		}

	}

	/* FINISH MEDIAQUERIES Bienvenida */

/* FINISH Article Bienvenida */



/* Article Filosofia */

.containerHero section .filosofia {
	width: 100%;
	min-height: 10vh;
	padding-top: 20px;
}

.containerHero section .filosofia .containerFilosofia {
	display: flex;
	width: 100%;
	/* justify-content: flex-end!important; */
	align-items: center;
	text-align: center;
	padding-bottom: 100px;
	height: 450px;
}

.containerHero section .filosofia .queEsCentric {
	justify-content: center!important;
	height: 300px!important;
}

.containerHero section .filosofia .containerFilosofia img {
	width: 250px;
	height: auto;
	z-index: 3;
}

.containerHero section .filosofia .containerFilosofia .containerTextoFilosofia {
	width: 50%;
	font-size: 17px;
	height: 150px;
	text-align: start;
	margin: 100px 100px 0 100px;
	margin-right: 100px;
	line-height: 2;
}

.queEsCentric {
	padding-bottom: 180px!Important;
}

.queEsCentric .globoLeft {
	position: absolute;
	top: 85vh;
	left: 0;
}

.containerHero section .filosofia .containerFilosofia .containerTextoFilosofia  .actualizacionesQueEs {
	width: 100%;
	color: #616161;
	text-align: center;
}

.containerHero section .filosofia .containerFilosofia .containerTextoFilosofia  h2 {
	color: var(--primaryColor);
	font-weight: 700;
	font-size: 36px;
}

.containerHero section .filosofia .containerFilosofia .containerTextoFilosofia p {
	font-weight: 500;
}

.containerHero section .filosofia .queEsCentric .containerTextoFilosofia {
	text-align: center;
	/* margin-right: 0; */
	margin: 10px auto 0 auto;
	width: 60%;
}

.flex-start {
	justify-content: flex-start!important;
}

.flex-start .containerTextoFilosofia {
	text-align: start!important;
	margin-left: 100px!important;
}

.containerHero section .filosofia .containerFilosofiaSlide {
	background: #f1f2f3;
	justify-content: flex-start!important;
}
.containerHero section .filosofia .containerFilosofia .right {
	text-align: right;
	margin: 0 100px 0 0!important;
}

.containerHero section .filosofia .filosofiaHeightMobile .containerTextoFilosofia .color {
	color: var(--primaryColor)!important;
}

/* .gotaBienvenida {
	position: absolute;
	left: 0;
	top: -100vh;
} */

	/* MEDIAQUERIES Filosofia */


	@media screen and (max-width: 767px) {

		.containerFilosofia {
			padding-bottom: 0!important;
		}

		.containerTextoFilosofia {
			width: 90%!important;
			height: auto!important;
			margin: 0!important;
			text-align: center;
		}

		.flex-start {
			justify-content: center!important;
		}

		.flex-start .containerTextoFilosofia {
			margin: 0!important;
			text-align: center!important;
			display: flex;
			align-items: center!important;
		}

		.containerHero section .filosofia {
			padding-top: 200px;
		}

		
		.containerHero section .filosofia .containerFilosofia {
			min-height: 300px!important;
			height: auto!important;
			max-height: 500px!important;
			padding: 30px 0!important;
		}
		
		
		.containerHero section .filosofia .containerFilosofia .containerGota {
			width: 100%;
		}

		.containerGota .globoLeft {
			width: 60%!important;
			max-width: 250px;
		}
		
		.containerHero section .filosofia .queEsCentric {
			flex-direction: column;
			justify-content: flex-start!important;
			align-items: center!important;
			height: auto!important;
			padding-bottom: 40px!important;
		}


		/* texto con bg gris */
		
		.containerHero section .filosofia .containerFilosofiaSlide {
			/* padding-top: 30px; */
			justify-content: center!important;
			align-items: center!important;

		}

		.containerHero section .filosofia .containerFilosofiaSlide .containerTextoFilosofia {
			margin: 0!important;
			width: 85%;
			text-align: center;
			height: auto!important;
		}

		/* container gris con boton solicitar DEMO */
		.containerHero section .filosofia .filosofiaHeightMobile {
			padding-bottom: 80px!important;
		}

		/* gotas generales */
		.containerHero section .filosofia .containerGota {
			width: 100%!important;
			height: auto;
			margin: 0!important;
		}
		
		
		/* gota derecha */
		.containerHero section .filosofia  .gotaRight {
			
		}
		.containerHero section .filosofia .containerGota .globoRightSecundario {
			width: 100%!important;
			/* max-width: 1000px; */
		}

		/* gota izquierda */

		.containerHero section .filosofia .containerGota {
		}

		.containerHero section .filosofia .containerGota .globoLeftSecundario {
			width: 100%!important;
			/* max-width: 1000px; */
		}

	}

	@media screen and (max-width: 360px) {

		.containerHero section .filosofia .queEsCentric {
			min-height: 600px!important;
			height: auto!important;
		}

		.containerHero section .filosofia .filosofiaHeightMobile {
			min-height: 450px!important;
		}

		.containerHero section .filosofia {
			padding-top: 50px!important;
		}

	}



	@media screen and (max-width: 500px) {
		
	}
	


	@media screen and (min-width: 768px){


	}

	@media screen and (max-width: 1280px) {

	}

	
	@media screen and (min-width: 768px) and (max-width: 1279px) {		
		.containerHero section .filosofia .containerFilosofia {
			min-height: 300px!important;
			height: auto!important;
			max-height: 500px!important;
			padding: 30px 0!important;
		}

		.containerHero section .filosofia .containerFilosofia .containerTextoFilosofia {
			margin: 0!important;
			width: 90%;
			text-align: center;
		}

		.containerHero section .filosofia .flex-start {
			justify-content: center!important;
		}

		.containerHero section .filosofia .flex-start .containerTextoFilosofia {
			margin: 0!important;
			width: 90%;
			text-align: center!important;
		}

		.containerHero section .filosofia .queEsCentric {
			flex-direction: column;
			align-items: center!important;
			justify-content: flex-start!important;
			padding-bottom: 40px!important;
			min-height: 350px!important;
			padding-bottom: 0!important;
			margin-bottom: 0!important;
			margin-top: 100px!important;
		}

		.containerHero section .filosofia .containerFilosofiaSlide {
			justify-content: center!important;
		}

		/* gotas generales */
		.containerHero section .filosofia .containerGota img{
			width: 80%!important;
			height: auto;
			margin: 0!important;
		}

		.containerHero section .filosofia .containerGota .globoLeft {
			width: 250px!important;
			height: auto;
			margin: 0!important;
		}
		
		
		/* gota derecha */
		.containerHero section .filosofia  .gotaRight {
			width: 100%!important;
			display: flex;
			justify-content: flex-end!important;
			
		}
		.containerHero section .filosofia .containerGota .globoRightSecundario {
			/* width: 100%!important; */
			/* max-width: 1000px; */
		}

		/* gota izquierda */

		.containerHero section .filosofia .containerGota {
		}

		.containerHero section .filosofia .containerGota .globoLeftSecundario {
			/* width: 100%!important; */
			/* max-width: 1000px; */
		}
	}
	
	@media screen and (min-width: 1280px) {
		
		.containerHero section .filosofia .queEsCentric {
			flex-direction: column;
			align-items: center!important;
			justify-content: flex-start!important;
			padding-bottom: 40px!important;
			min-height: 350px!important;
			padding-bottom: 0!important;
			margin-bottom: 0!important;
			margin-top: 0!important;
		}

		.containerHero section .filosofia .containerFilosofia {
			min-height: 530px;
		}

		.containerHero section .filosofia .flex-start {
			justify-content: flex-end!important;
		}

		.containerHero section .filosofia .containerFilosofiaSlide {
			min-height: 400px;
			padding-bottom: 0!important;
		}

		.containerHero section .filosofia .containerFilosofiaSlide .containerTextoFilosofia {
			width: 45%;
			margin-top: 0!important;
			margin-right: 0!important;
			height: auto!important;
			text-align: right;
		}

		.containerHero section .filosofia .flex-start {
			padding-bottom: 0!important;
		}

		.containerHero section .filosofia .flex-start .containerTextoFilosofia {
			width: 50%;
			margin-top: 0!important;
			height: auto!important;
			margin-right: 0!important;
		}

		.containerHero section .filosofia .containerGota {
		}

		.containerHero section .filosofia .containerGota .globoRightSecundario {
			position: absolute;
			right: 0;
			width: 60%!important;
			max-width: 550px;
			margin-top: -30px;
		}

		/* gota izquierda */


		.containerHero section .filosofia .containerGota .globoLeftSecundario {
			position: absolute;
			left: 0;
			width: 60%!important;
			max-width: 550px;
			margin: 30px 0;
		}
	}

	@media screen and (min-width: 1440px){
		
		.containerHero section .filosofia .containerFilosofia {
			min-height: 620px;
			padding-bottom: 0!important;
		}
		
		.containerHero section .filosofia .containerFilosofiaSlide {
			min-height: 550px;
			padding-bottom: 0!important;
		}		

		.containerHero section .filosofia .filosofiaHeightMobile {
			min-height: 500px;
		}

		.containerHero section .filosofia .queEsCentric {
			min-height: 350px!important;
			padding-bottom: 0!important;
			margin-bottom: 0!important;
			align-items: flex-start!important;
		}

		.containerHero section .filosofia .containerGota .globoRightSecundario {
			position: absolute;
			right: 0;
			width: 60%!important;
			max-width: 650px;
		}

		/* gota izquierda */


		.containerHero section .filosofia .containerGota .globoLeftSecundario {
			position: absolute;
			left: 0;
			width: 60%!important;
			max-width: 650px;
		}
	}

	/* FINISH MEDIAQUERIES Filosofia */

/* FINISH Article Filosofia */


/* Article Darwin */
.containerHero section .darwin {
	width: 100%;
	padding: 40px 0 0 80px;
	height: 300px;
}

.containerHero section .darwin p {
	font-size: 28px;
	color: white;
	font-weight: 500;
	z-index: 5;
}

.containerHero section .darwin p b {
	color: white;
}

.containerHero section .darwin .author {
	font-size: 18px;
	margin-top: 40px;
	font-weight: 500;
}


	/* MEDIAQUERIES Darwin */
	
	@media screen and (max-width: 768px) {

		.containerHero section .darwin {
			height: 400px;
			padding-left: 30px;
		}

		.containerHero section .darwin p {
			font-size: 24px;
		}
	}

	/* FINISH MEDIAQUERIES Darwin */

/* FINISH Article Darwin */


/* Article Servicios */
.containerHero section .servicios {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding-top: 20px;
}

.containerHero section .servicios h2 {
	text-align: center;
	font-size: 36px;
	color: var(--primaryColor);
	font-weight: 700;
	margin-top: 40px;
}

.containerHero section .servicios h3 {
	width: 70%;
	font-size: 16px;
	font-weight: 400;
    margin: 0 0 50px 0;
	line-height: 1.8;
}

.containerHero section .servicios .containerBackgroundServicios {
	width: 100%;
	background: #f1f2f3;
}

.containerHero section .servicios .containerBackgroundServicios .containerServicios {
	display: flex;
	width: 100%;
	min-height: 60vh;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
}

.containerHero section .servicios .containerBackgroundServicios .containerServicios .servicio {
	width: 250px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	text-align: center;
	background: #ffffff;
	border-radius: 6px;
    padding: 20px;
	margin: 30px 0;
}

.containerHero section .servicios .containerBackgroundServicios .containerServicios .servicio h3 {
	margin: 10px auto!important;
	font-size: 24px;
	font-weight: 600;
}

.containerHero section .servicios .containerBackgroundServicios .containerServicios .servicio p {
	margin: 0px 0;
	height: 110px;
}

.containerHero section .servicios .containerBackgroundServicios .containerServicios .servicio .buttonVerMas {
	margin-top: 40px;
	border: none;
	color: white;
}

.containerHero section .servicios .containerBackgroundServicios .containerServicios .servicio .button1 {
	background-color: #F6A13C;
}

.containerHero section .servicios .containerBackgroundServicios .containerServicios .servicio .button2 {
	background-color: #524C95;
}

.containerHero section .servicios .containerBackgroundServicios .containerServicios .servicio .button3 {
	background-color: #5DB627;
}

.containerHero section .servicios .containerBackgroundServicios .containerServicios .servicio .button4 {
	background-color: #3493EA;
}

.containerHero section .servicios .containerBackgroundServicios .containerServicios .servicio img {
	width: 35%;
	margin-bottom: 10px;
}

	/* MEDIAQUERIES Servicios */
	
	@media screen and (max-width: 768px) {

		.containerHero section .servicios h2 {
			font-size: 26px;
		}

		.containerHero section .servicios .containerBackgroundServicios .containerServicios .servicio {
			margin: 30px auto;
		}

		.containerHero section .servicios .containerBackgroundServicios .containerServicios .servicio img {
			width: 25%;
		}
	}

	/* FINISH MEDIAQUERIES Servicios */

/* FINISH Article Servicios */


/* Article Experiencias */
.containerHero section .experiencia {
	width: 100%;
	padding: 40px 0 0 80px;
	height: 225px;
}

.containerHero section .experiencia img {
	width: 100%;
}

.containerHero section .experiencia p {
	font-size: 28px;
	color: white;
}

.containerHero section .experiencia p b {
	color: white;
	font-weight: 800;
}

	/* MEDIAQUERIES Experiencia */
		
	@media screen and (max-width: 768px) {

		.containerHero section .experiencia {
			max-height: 250px;
			padding-left: 30px;
		}

		.containerHero section .experiencia p {
			font-size: 24px;
		}
	}

	/* FINISH MEDIAQUERIES Experiencia */

	/*=======================
		Nav Border Animate
	=========================*/

	.project-nav .nav-link {
		margin: 0 15px;
		padding: 5px 0;
		cursor: pointer;
		color: #333;
		font-weight: 300;
	}

	.navAnimateBorder .nav-link {
		position: relative;
	}

	.navAnimateBorder .nav-link::before {
		content: "";
		-webkit-transition: all 0.4s ease;
		-o-transition: all 0.4s ease;
		transition: all 0.4s ease;
		width: 0;
		height: 2px;
		position: absolute;
		bottom: 0;
		left: 0;
		background: #29b6f6;
		opacity: 0;
	}

	.navAnimateBorder .nav-link:hover::before,
	.navAnimateBorder .active .nav-link::before {
		width: 100%;
		opacity: 1;
	}

	/*=======================
		End Nav Border Animate
	=========================*/

/* FINISH Article Servicios */

/* ARTICLE Clientes */

.containerHero section .clientes {
	display: flex;
	align-items: center;
	flex-direction: column;
	padding-bottom: 30px;
	padding-top: 30px;
	width: 100%;
	min-height: 50vh;
}

.containerHero section .clientes h2 {
	text-align: center;
	font-size: 36px;
	color: var(--primaryColor);
	font-weight: 700;
	margin-top: 40px;
}

.containerHero section .clientes h3 {
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	margin: 20px 0;
}

.containerHero section .clientes .project-nav .navAnimateBorder {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	min-height: 40px;
	margin-bottom: 30px;
}

.clientes-destacados{
	display:none;
}

ul:not(.browser-default)>li {
	margin: 10px;
}

.containerHero section .clientes .masonry { 
	display: flex;
	width: 100%;
}

.containerHero section .clientes .masonry .isotop-active {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding-left: 15px;
}

.containerHero section .clientes .masonry .isotop-active .masonry-item {
	margin: 10px;
}

.containerHero section .clientes .masonry .isotop-active .masonry-item img{
	max-width: 200px;
}

	/* MEDIAQUERIES Servicios */
	
	@media screen and (max-width: 768px) {
		.containerHero section .clientes h2 {
			font-size: 26px;
		}
	}

	/* FINISH MEDIAQUERIES Servicios */

/* FINISH ARTICLE Clientes */



/*=======================
    Testimonial
=========================*/

.testimonial {
	width: 100%!important;
	min-height: 45vh!important;
}

.testimonial.section-image {
    background-image: url("../img/bg-testimonial.jpg");
    background-repeat: repeat-x; 
	background-position: center;
	background-size: cover;
}

.single-testimonial {
    font-size: 1.125rem;
	z-index: 1000;
}

.testimonial-name {
    font-weight: 700;
	text-align: center;
	font-size: 21px;
}

.single-testimonial__site a {
    font-size: 1rem;
}

.testimonial-comment, .testimonial-person {
	font-weight: 500;
	font-style: italic;
	font-size: 16px;
	text-align: center;
	margin-top: 20px;
}

.testimonial-person small{
	font-weight: 400;
	color: #ffffff;
}

.testimonial-comment {
	margin: 0 20px;
}
/*----- Slider -----*/

#testimonial .owl-dot span {
    border: 1px solid #444444;
}

#testimonial .owl-dot.active span {
    background: transparent;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

@media screen and (min-width: 768px) {
	.testimonial.section-image {
		background-attachment: fixed;
	}
}

/*----- End Slider -----*/


/*=======================
    End Testimonial
=========================*/

/*=======================
    Overlay & Overlay Animate
=========================*/

.overlay,
.overlayAnimate {
    position: relative;
    overflow: hidden;
}

.overlay::before,
.overlayAnimate::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: "";
	background: linear-gradient(90deg, rgba(255,255,255,.5) 0%, rgba(135,114,192,.5) 0%, rgba(214,140,178,.5) 100%);}

.overlay h1,
.overlay h2,
.overlay .section-title,
.section.overlay p,
.overlay i,
.overlay .header-logo a,
.overlay .nav .nav-link {
    color: #ffffff;
}

.overlay .section-title h2::before,
.overlay .section-title h2::after {
    display: none;
}

/*----- Overlay Animate -----*/

.overlayAnimate::before {
    background: rgba(41, 182, 246, 0.8);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: hidden;
    z-index: 91;
}

.overlayAnimate:hover::before {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    visibility: visible;
}

.overlayAnimate__img {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.overlayAnimate:hover .overlayAnimate__img {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.overlayAnimate__text {
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: hidden;
    z-index: 92;
}

.overlayAnimate:hover .overlayAnimate__text {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    visibility: visible;
}

/*=======================
    End Overlay
=========================*/

/*=======================
    Extra and Gradient
=========================*/

.mfp-bg {
    background: rgba(0, 0, 0, 0.8);
    z-index: 9992;
}

.mfp-wrap {
    z-index: 9993;
}

.equal-height > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.btn-play {
    position: relative;
}

.btn-play__pulse {
    -webkit-animation: pulse 1.5s cubic-bezier(0.8, 0, 0, 1) infinite;
    animation: pulse 1.5s cubic-bezier(0.8, 0, 0, 1) infinite;
}

.btn__wobble:hover {
    -webkit-animation: wobble-vertical 0.6s ease-in-out 1;
    animation: wobble-vertical 0.6s ease-in-out 1;
}

.hero.overlay::before,
.page-overlay::before {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(34, 139, 230, 0.6)), to(rgba(66, 190, 247, 0.6)));
    background-image: -webkit-linear-gradient(bottom, rgba(34, 139, 230, 0.6) 0%, rgba(66, 190, 247, 0.6) 100%);
    background-image: -o-linear-gradient(bottom, rgba(34, 139, 230, 0.6) 0%, rgba(66, 190, 247, 0.6) 100%);
    background-image: linear-gradient(to top, rgba(34, 139, 230, 0.6) 0%, rgba(66, 190, 247, 0.6) 100%);
}

.overlay .btn-simple {
    color: #ffffff;
}


.about .btn-play,
.video-intro .btn-play i {
  background-image: linear-gradient(to top, rgba(34, 139, 230, 0.6) 0%, rgba(66, 190, 247, 0.6) 100%); 
color: #ffffff;
}

.overlay .btn-play,
.overlay#testimonial .owl-dot span {
    border-color: #ffffff;
}

.overlay .btn-play,
.overlay .single-testimonial__site a {
    color: #ffffff;
}

/* ARTICLE Stats */

.stats {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	min-height: 60vh!important;
	flex-wrap: wrap;
}

.stats .containerStat{
	width: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	text-align: center;
	color: #2e2e2e;
}

.stats .containerStat p {
	height: 50px;
}

.stats .containerStat .stat-icon {
	display: flex;
	justify-content: center;
}

.stats .containerStat .stat-icon img{
	height: 30px;
}

.stats .containerStat .stat-name {
	font-weight: 200;
	font-size: 34px;
}


	/* MEDIAQUERIES Stats */
	@media screen and (max-width: 768px) {
		.stats {
			margin: 50px auto;
		}

		.stats .containerStat {
			margin: 30px auto;
		}

		.stats .containerStat .stat-icon img {
			height: 40px;
		}
	}

	/* FINISH MEDIAQUERIES Stats */

/* FINISH ARTICLE STATS */

/* SECTION FORM */

.containerHero .sectionForm {
	display: flex;
	align-items: center;
	width: 100%!important;
	min-height: 80vh;
	max-height: 1100px;
	padding-bottom: 60px;
	padding-top: 30px;
	/* background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(55,79,140,1) 0%, rgba(0,185,182,1) 100%); */
	background-image: url("../img/banners/barra_colores.png");
	background-size: 20px 100%;
	background-repeat: no-repeat;
	background-position-x: left;
}

.containerHero .sectionForm .sectionForm-ubication {
	width: 100%;
	min-height: 50vh;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

.containerHero .sectionForm .sectionForm-ubication h2 {
	font-weight: 700;
	font-size: 36px;
	width: 100%;
	text-align: center;
	color: var(--primaryColor);
}

.containerHero .sectionForm .sectionForm-ubication form {
	width: 40%;
}

.containerHero .sectionForm .sectionForm-ubication form h3 {
	color: #2e2e2e;
	font-weight: 500;
	font-size: 18px;
}

.containerHero .sectionForm .sectionForm-ubication form .inputForm {
	border: none;
	background: #ffffff;
	border: solid 1px #C1C1C1;
	border-radius: 6px;
	padding-left: 10px;
	width: calc(90% - 10px);
}

.containerHero .sectionForm .sectionForm-ubication form .inputForm::placeholder {
	color: #C1C1C1;
	content: "dsadsadas";
}
.containerHero .sectionForm .sectionForm-ubication form .inputForm:focus {
	/* border: none;	 */
	box-shadow: none;
}

.containerHero .sectionForm .sectionForm-ubication form .buttonForm {
	text-align: center;
	border-radius: 18px;
	border: solid 2px var(--primaryColor);
	padding: 6px 33px!important;	
	color: #fff;
	background: var(--primaryColor);
	font-weight: 600;
	margin-top: 20px;
	text-decoration: none;
	transition: all .2s;
	cursor: pointer;
	width: 115px;
    height: 33px;
}

.containerHero .sectionForm .sectionForm-ubication form .buttonForm:hover{ 
	border: solid 2px var(--primaryColor);
	background: var(--primaryColor);
	color: #ffffff;
}

.containerHero .sectionForm .sectionForm-ubication .ubication {
	width: 30%;
	
}

.containerHero .sectionForm .sectionForm-ubication .ubication label {
	font-weight: 600;
	color: #2e2e2e;
}

.containerHero .sectionForm .sectionForm-ubication .ubication p {
	color: #2e2e2e;
	font-weight: 400;
}		

	/* MEDIAQUERIES FORM */
	@media screen and (max-width: 768px) {

		.containerHero .sectionForm {
			padding-top: 40px;
			padding-bottom: 0;
		}

		.containerHero .sectionForm .sectionForm-ubication {
			flex-direction: column;
			align-items: center;
		}

		.containerHero .sectionForm .sectionForm-ubication h2 {
			font-size: 26px;
		}	

		.containerHero .sectionForm .sectionForm-ubication form h3 {
			font-size: 16px;
			color: #ffffff;
			text-align: center;
		}

		.containerHero .sectionForm .sectionForm-ubication .ubication {
			width: 90%;
			margin: 40px 0;
			text-align: center;
		}

		.containerHero .sectionForm .sectionForm-ubication .ubication label {
			font-weight: 700;
			font-size: 16px;
			color: #2e2e2e;
		}

		.containerHero .sectionForm .sectionForm-ubication .ubication p {
			font-size: 14px;
		}

		.containerHero .sectionForm .sectionForm-ubication form {
			width: 78%;
		}

		.containerHero .sectionForm .sectionForm-ubication form .inputForm {
			width: calc(100% - 10px);
		}
	}
	/* FINISH MEDIAQUIERIES FORM */

		/* loading form button */
		.lds-ring {
			display: inline-block;
			position: relative;
			width: 22px;
			height: 22px;
			margin-top: -2px;
		  }
		  .lds-ring div {
			box-sizing: border-box;
			display: block;
			position: absolute;
			position: absolute;
			width: 22px;
			height: 22px;
			border: 4px solid #fff;
			border-radius: 50%;
			animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
			border-color: #fff transparent transparent transparent;
		  }
		  .lds-ring div:nth-child(1) {
			animation-delay: -0.45s;
		  }
		  .lds-ring div:nth-child(2) {
			animation-delay: -0.3s;
		  }
		  .lds-ring div:nth-child(3) {
			animation-delay: -0.15s;
		  }
		  @keyframes lds-ring {
			0% {
			  transform: rotate(0deg);
			}
			100% {
			  transform: rotate(360deg);
			}
		  }
		/* finish loading form button */

/* FINISH SECTION FORM */