/* RESET*/

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, img, ins, kbd, q, s, samp,small, strike, sub, sup, tt, var,u, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,caption, thead, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

*{box-sizing:border-box;}


/*ESTILOS GENERALES
****************************************/

body {
	font-family: 'Raleway', sans-serif;
	}
	
::-webkit-scrollbar {
	width: 10px;
	}
	
::-webkit-scrollbar-track { /*fondo-barra-scroll*/
	background-color: #E9E9E9;
	}

::-webkit-scrollbar-thumb { /*barra-scroll*/
	background-color: #FFB09B;
	}
	
::-moz-selection {
	background-color:#E9E9E9;
	}
	
::selection {
	background-color:#00CAD5;
	color: #FF1830;
	}
	
a {
	text-decoration:none;	
		
	transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	}

#menuToggle {
	display: none;
}

#menu-pc {
	width: 55%;
	margin-left: 45%;
	height: 80px;	
	background-color: rgba(250,250,250,0.95);
	position: fixed;
	border-bottom: 1px solid #FFB09B;
	z-index: 10;
	box-shadow: 9px 8px 24px -16px rgba(0,0,0,0.75);
	color: #FFB09B;
	font-size: 13px;
	padding-top: 30px;
	padding-right: 50px;
	text-align: right;		
}

#menu-pc figure {
	position: absolute;
	top: 0;
	left: 40px;
	width: 100px;
	height: 80px;
	background-image: url(../img/logo-menu.png);	
}

#menu-pc li {
	display: inline-block;
	margin: 0 10px;	
	text-align: right;
}

#menu-pc li a {
	color: #00CAD5;
	font-weight: 600;
	letter-spacing: 0.5px;
  padding-bottom: 30px;
  border-bottom: 5px solid rgba(255, 255, 255, 0.0);
}

#menu-pc li a:hover {
	color: #FFB09B;
  padding-bottom: 30px;
  border-bottom: 5px solid #FFB09B
}

#menu-pc li a span {
	color: #FF1830;
  padding-bottom: 30px;
  border-bottom: 5px solid #FFB09B;  
}
#redes {
	width: 50px;
	height: 200px;
	position: fixed;
	top: 40%;
	right: 5%;
	z-index: 10;
	text-align: center;
	border: 1px solid rgba(250,250,250,0.5);
	padding-top: 20px;
	border-radius: 30px;
}

#redes li a img {
	width: 70%;
	margin-bottom: 5px;
}

#redes li a:hover {
	opacity: 0.5;
}

/*páginas internas**/

.wrapper {	
	height: 100vh;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	position: relative;
  }

.clientes {
	background-color: #00CAD5;
	padding-top: 400px;
}

.ellas {
	background-color: #FFB09B;
	padding-top: 400px;
}

.clientes section {
	background-image: url(../img/clientes-koi.png);
}

.ellas section {
	background-image: url(../img/ellas-koi.png);
}

.wrapper section {
	width: 1024px;
	height: auto;
	margin: auto;	
	background-position: top left;
	background-repeat: no-repeat;
	padding-left: 180px;
	padding-bottom: 50px;
	text-align: left;
  }
  
  .wrapper section h5 {
	font-size: 60px;
	font-weight: 900;
	color: white;
	margin-bottom: 50px;
  }
  
  .wrapper section p {
	font-size: 30px;
	line-height: 40px;
	font-weight: 500;
	color: white;
	font-weight: 300;  
  }

  /*particulas*/
  .background {
	position: absolute;
	height: 90vh;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: auto;
  }
  
  .background {
	position: absolute;
	height: 100vh;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 0;
  }
  
  /* -------------------------------------------------------------------------
	 begin Scroll Down Button
   * ------------------------------------------------------------------------- */
    button.scroll_down {
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	height: 50px;
	width: 30px;
	bottom: 60px;
	background-color: transparent;
	border: 2px solid white;
	border-radius: 20px;
	cursor: pointer;
	outline: none;
  }
  
  button.scroll_down:before {
	position: absolute;
	top: 10px;
	left: 50%;
	content: "";
	width: 6px;
	height: 6px;
	margin-left: -3px;
	background-color: #fff;
	border-radius: 100%;
	-webkit-animation: scroll_down_btn-animation 2s infinite;
	animation: scroll_down_btn-animation 2s infinite;
	box-sizing: border-box;
  }
  
  @keyframes scroll_down_btn-animation {
	0% {
	  transform: translate(0, 0);
	  opacity: 0;
	}
	40% {
	  opacity: 1;
	}
	80% {
	  transform: translate(0, 20px);
	  opacity: 0;
	}
	100% {
	  opacity: 0;
	}
  }
  @-webkit-keyframes scroll_down_btn-animation {
	0% {
	  transform: translate(0, 0);
	  opacity: 0;
	}
	40% {
	  opacity: 1;
	}
	80% {
	  transform: translate(0, 20px);
	  opacity: 0;
	}
	100% {
	  opacity: 0;
	}
  }

  /* -------------------------------------------------------------------------
	 end Scroll Down Button 
   * ------------------------------------------------------------------------- */
  /* ## Test ## */
  .block { }  /*contenedor contenido scroll down*/

/*PROYECTOS PAGINA PRINCIPAL*/

.contenedor-proyectos {
	height: auto;
	width: 1600px;
	margin: auto;
	margin-top: 150px;
}

.contenedor-proyectos a {
	position: relative;
	float: left;
	height: 400px;
	text-align: center;
	color: rgba(250,250,250,0.0);
	font-size: 27px;
	line-height: 50px;
	font-weight: 600;
	letter-spacing: 1px;
	padding-top: 270px;
	background-position: center center;
	background-repeat: no-repeat;	
}

.contenedor-proyectos a:hover {
	background-position: top center;
	padding-top: 180px;	
}

.contenedor-proyectos .PrevBewell {
	width: 60%;
	background-color: #F10530;
	background-image: url(../clientes/be-well-icon.png);
}

.contenedor-proyectos .PrevBewell:hover {
	color: #FFF;
	background-image: url(../clientes/nada.png);
}

.contenedor-proyectos .PrevKyber  {
	width: 40%;
	background-color: rgb(248, 248, 248);
	background-image: url(../clientes/kyber-icon.png);
}

.contenedor-proyectos .PrevKyber:hover {
	color: #6A00FF;
	background-image: url(../clientes/nada.png);
}

.contenedor-proyectos .PrevCube  {
	width: 30%;
	background-color: black;
	background-image: url(../clientes/cube-icon.png);
}

.contenedor-proyectos .PrevCube:hover {
	color: #FBC009;
	background-image: url(../clientes/nada.png);
}

.contenedor-proyectos .PrevSecurus  {
	width: 30%;
	background-color: white;
	background-image: url(../clientes/securus-icon.png);
}

.contenedor-proyectos .PrevSecurus:hover {
	color: #FF2A6B;
	background-image: url(../clientes/nada.png);	
}

.contenedor-proyectos .PrevFrutro  {
	width: 40%;
	background-color: #FF6606;
	background-image: url(../clientes/Frutro-icon.png);
}

.contenedor-proyectos .PrevFrutro:hover {
	color: white;
	background-image: url(../clientes/nada.png);	
}

.contenedor-proyectos .PrevGiro {
	width: 60%;	
	background-color: #10BF10;	
	background-image: url(../clientes/giro-icon.png);
	
}

.contenedor-proyectos .PrevGiro:hover {
	background-image: url(../clientes/nada.png);			
	background-color: #0B700B;	
	color: #fff;	
}

.contenedor-proyectos .PrevVased {
	width: 40%;	
	background-color: rgb(248, 248, 248);
	background-image: url(../clientes/vased.png);
}

.contenedor-proyectos .PrevVased:hover {
	background-image: url(../clientes/NADA-VASED.png);			
	background-color: #FFF;	
	color: #48C5F1;	
}

.contenedor-proyectos .PrevNiwn {
	width: 40%;	
	background-color: #9D00FF;
	background-image: url(../clientes/niwn-icon.png);	
}

.contenedor-proyectos .PrevNiwn:hover {
	background-image: url(../clientes/nada.png);
	color: #00F700;
}

.contenedor-proyectos .PrevSecuriti {
	width: 30%;
	background-image: url(../clientes/securiti-icon.png);
}

.contenedor-proyectos .PrevSecuriti:hover {
	background-image: url(../clientes/nada.png);		
	color: #04dc29;	
}

.contenedor-proyectos .PrevNaturalCooling {
	width: 30%;
	background-color: #01aacd;	
	background-image: url(../clientes/natural-cooling.png);
}

.contenedor-proyectos .PrevNaturalCooling:hover {
	background-image: url(../clientes/nada-sas.png);
	color: #FFF;		
}

.contenedor-proyectos .PrevSas {
	width: 40%;
	background-color: rgb(248, 248, 248);
	background-image: url(../clientes/sas.png);
}

.contenedor-proyectos .PrevSas:hover {
	background-image: url(../clientes/nada-sas.png);		
	color: #005FB9;	
}

.contenedor-proyectos .PrevKurku {
	width: 60%;
	background-color: #FF370D;
	background-image: url(../clientes/kurku-icon.png);
}

.contenedor-proyectos .PrevKurku:hover {
	background-image: url(../clientes/nada.png);
	color: #fff;	
}

.contenedor-proyectos .PrevTresHilos {
	width: 30%;	
	background-color: #000F26;
	background-image: url(../clientes/3hilos-icon.png);
}

.contenedor-proyectos .PrevTresHilos:hover {
	background-image: url(../clientes/nada.png);
	color: #fff;	
}

.contenedor-proyectos .PrevAliceBoutique {
	width: 40%;
	background-color: #FFD502;		
	background-image: url(../clientes/alice-icon.png);
}

.contenedor-proyectos .PrevAliceBoutique:hover {
	background-image: url(../clientes/nada.png);
	background-color: #0468BF;	
	color: #fff;	
}

.contenedor-proyectos .PrevBision {
	width: 30%;
	background-color: rgb(248, 248, 248);
	background-image: url(../clientes/bision.png);
}

.contenedor-proyectos .PrevBision:hover {
	background-image: url(../clientes/nada.png);			
	background-color: #FD4600;
	color: #fff;
}

.contenedor-proyectos .PrevRing {
	width: 50%;
	background-color: rgb(248, 248, 248);	
	background-image: url(../clientes/ring-icon.png);
}

.contenedor-proyectos .PrevRing:hover {
	background-image: url(../clientes/nada.png);
	background-color: #EFBF9E;	
	color: #fff;	
}

.contenedor-proyectos .PrevFunsolidaria {
	width: 50%;
	background-color: #0096FF;
	background-image: url(../clientes/creer-icon.png);
}

.contenedor-proyectos .PrevFunsolidaria:hover {
	background-image: url(../clientes/nada.png);			
	color: #fff;
}

.contenedor-proyectos .PrevFerreutil {
	width: 45%;
	background-color: #0035bf;
	background-image: url(../clientes/ferreutil-icon.png);
}

.contenedor-proyectos .PrevFerreutil:hover {
	background-image: url(../clientes/nada.png);
	background-color: #FFBE00;	
	color: #fff;	
}

.contenedor-proyectos .PrevRedLad {
	width: 55%;
	background-color: rgba(250,250,250,0.95);
	background-image: url(../clientes/amaluk.png);
}

.contenedor-proyectos .PrevRedLad:hover {
	background-image: url(../clientes/nada-sas.png);		
	color: red;	
}

/*PROYECTOS PÁGINAS INTERNAS*/

.presentacion-cliente {	
	background-position: center center;
	background-repeat: repeat-x;
}

.kyber {
	background-image: url(../clientes/portada-Kyber.jpg);

}

.bewellmeal {
	background-image: url(../clientes/portada-bewellmeal.jpg);
}

.cube {
	background-image: url(../clientes/portada-CUBE.jpg);
}

.securus {
	background-image: url(../clientes/portada-SECURUS.jpg);
}

.FRUTRO {
	background-image: url(../clientes/portada-FRUTRO.jpg);
}

.giro {
	background-image: url(../clientes/portada-GIRO.jpg);
}

.vased {
	background-image: url(../clientes/portada-VASED.jpg);
}

.niwn {
	background-image: url(../clientes/portada-NIWN.jpg);
}

.natural-cooling {
	background-image: url(../clientes/portada-NATURALCOOLING.jpg);
}

.securiti {
	background-image: url(../clientes/portada-SECURITI.jpg);
}

.SAS {
	background-image: url(../clientes/portada-SAS.jpg);
}

.kurku {
	background-image: url(../clientes/portada-KURKU.jpg);
}

.treshilos{
	background-image: url(../clientes/portada-TRESHILOS.jpg);
}

.alice-boutique {
	background-image: url(../clientes/portada-ALICE.jpg);
}

.bision {
	background-image: url(../clientes/portada-BISION.jpg);
}

.ring {
	background-image: url(../clientes/portada-RING.jpg);
}

.ferreutil {
	background-image: url(../clientes/portada-FERREUTIL.jpg);
}

.presentacion-cliente article {
	width: 40%;
	height: 900px;
	color: white;
	text-align: left;
	padding-left: 10%;
	padding-top: 250px;
}

.presentacion-cliente article h1 {
	font-size: 50px;
	line-height: 60px;
	letter-spacing: 2px;
	font-weight: 900;
}

.presentacion-cliente article P {
	font-size: 20px;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.presentacion-cliente article h2 {
	font-size: 25px;
	line-height: 35px;
	font-weight: 300;
}

.presentacion-cliente article h2 span {
	color: rgba(250,250,250,0.8);

}

.presentacion-cliente article h3 {
	font-size: 30px;
	font-weight: 700;
	line-height: 60px;
	border-top: 2px solid rgba(250,250,250,0.4);
	border-bottom: 2px solid rgba(250,250,250,0.4);
	margin-bottom: 40px;
	margin-top: 30px;
	letter-spacing: 1px;
}

.presentacion-cliente article h4 {
	font-size: 20px;
	font-weight: 300;
	line-height: 40px;
}


.contenedor-imagenes-proyectos {
	text-align: center;
	max-width: 1600px;
	margin: auto;
	padding-bottom: 100px;
}

.contenedor-imagenes-proyectos section {
	width: 1600px;
	height: auto;
	margin: auto;
	margin-top: 200px;	
	text-align: left;
	padding: 150px;
	background-color: rgba(211, 211, 211, 0.1);
}

.contenedor-imagenes-proyectos section h3 {
	font-size: 32px;
	line-height: 60px;
	font-weight: 900;	
	color: #00CAD5;
	border-bottom: 1px dotted #00CAD5;
	margin-bottom: 20px;
}


.contenedor-imagenes-proyectos section h3 span {
	font-weight: 300;	
}

.contenedor-imagenes-proyectos section h4 {
	font-size: 30px;
	line-height: 36px;
	color: #FF1830;
	font-weight: 900;	
}

.contenedor-imagenes-proyectos section h5 {
	font-weight: 400;
	font-size: 26px;
	line-height: 34px;
	color: #FF1830;
	border-bottom: 1px dotted #FFB09B;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.contenedor-imagenes-proyectos section p {
	font-size: 16px;
	line-height: 30px;	
	margin-top: 10px;
	margin-bottom: 10px;
	color: #FF1830;
	font-weight: 500;
}

.contenedor-imagenes-proyectos section p span {
	font-weight: 800;
}

.contenedor-imagenes-proyectos img {
	width: 100%;
}

.contenedor-imagenes-proyectos article {
	width: 1600px;
	height: 400px;	
}

.contenedor-imagenes-proyectos article figure {
	width: 1000px;
	height: 400px;
	position: relative;
	float: left;
}

.contenedor-imagenes-proyectos article a {
	width: 600px;
	height: 200px;
	position: relative;
	float: left;
	padding-top: 70px;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 1px;
	font-weight: 300;
	border-bottom: 1px solid white;
	border-left: 1px solid white;
}

.contenedor-imagenes-proyectos article a span {
	font-weight: 600;
}

.contenedor-imagenes-proyectos article a:hover {
	letter-spacing: normal;
}


.contenedor-imagenes-proyectos article .boton-solo-link {
	height: 400px;	
	padding-top: 160px;
}


.siguiente-cliente {
	position: relative;
	float: left;
	width: 100%;
	height: 200px;
	border-top: 1px solid #FFB09B;	
	background-position: bottom center;
	background-repeat: no-repeat;
	transition: 0.3s ease;
}

.next-vased {
	background-image: url(../clientes/portada-VASED.jpg);
}

.next-niwn {
	background-image: url(../clientes/portada-NIWN.jpg);
}

.next-securiti {
	background-image: url(../clientes/portada-SECURITI.jpg);
}

.next-natural-cooling {
	background-image: url(../clientes/portada-NATURALCOOLING.jpg);
}

.next-SAS {
	background-image: url(../clientes/portada-SAS.jpg);
}

.next-kurku {
	background-image: url(../clientes/portada-KURKU.jpg);
}

.next-tres-hilos {
	background-image: url(../clientes/portada-TRESHILOS.jpg);
}

.next-alice {
	background-image: url(../clientes/portada-ALICE.jpg);
}

.next-bision {
	background-image: url(../clientes/portada-BISION.jpg);
}

.next-ring {
	background-image: url(../clientes/portada-RING.jpg);
}

.next-funsocreer {
	background-image: url(../clientes/portada-FUNSOCREER.jpg);
}

.next-amaluk {
	background-image: url(../clientes/portada-AMALUK.jpg);
}

.next-giro {
	background-image: url(../clientes/portada-GIRO.jpg);
}


.siguiente-cliente a {
	position: absolute;
	width: 100%;
	height: 200px;
	top: 0;
	left: 0;
	color: #00CAD5;
	font-size: 20px;
	line-height: 40px;
	font-weight: 800;	
	padding-top: 50px;
	padding-left: 60%;
}

.siguiente-cliente a span {
	font-size: 36px;
	font-weight: 200;
}

.siguiente-cliente a:hover {
	padding-left: 65%;
	color: #FFF;
}

.siguiente-cliente:hover {
	border-top: 1px solid #FF1830;
	background-position: center center;
}





/*ellas*/

.contenedor-equipo {
	width: 1024px;
	height: 1700px;	
	margin: auto;
	padding-top: 300px;
}

.contenedor-equipo p {
	font-size: 30px;
	line-height: 50px;
	color: #FF1830;
	font-weight: 400;
	text-align: center;
	margin-bottom: 50px;
}

.contenedor-equipo span {
	color: #00CAD5;
	font-weight: 700;
}

.contenedor-equipo h2 {
	text-align: center;
	font-size: 60px;
	font-weight: 900;
	color: #00CAD5;
}

.contenedor-equipo h2 span {
	color: #FF1830;
	font-weight: 900;
}

.contenedor-equipo section {
	width: 100%;
	height: 700px;
	margin-top: 80px;
	margin-bottom: 80px;
}

.contenedor-equipo section a {
	width: 48%;
	height: 700px;
	position: relative;
	float: left;
	text-align: center;
	color: #fff;
	padding-top: 100px;	
	background-color: #FF1830;	
}

.contenedor-equipo section a:hover {
	background-color: rgba(255,24,48,0.0);
}

.contenedor-equipo section a p {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 700px;	
	opacity: 0;


	transition: 0.3s ease;	
}

.contenedor-equipo section a p:hover {
	opacity: 1;
}

.contenedor-equipo section a:nth-child(1) {
	margin-right: 4%;
}

.contenedor-equipo section a:nth-child(1) p {	
	background-image: url(../img/yuddy.jpg);		
}

.contenedor-equipo section a:nth-child(2) {
	background-color: #FFB09B;
}

.contenedor-equipo section a:nth-child(2) p {
	background-image: url(../img/maffe.jpg);	
}

.contenedor-equipo section a figure {
	margin-bottom: 30px;
}

.contenedor-equipo section a h3 {
	font-weight: 900;
	font-size: 80px;
}

.contenedor-equipo section a h4 {
	font-weight: 300;
	font-size: 26px;
	line-height: 80px;	
	letter-spacing: 2px;
}

.contenedor-equipo section a h5 {
	font-weight: 800;
	font-size: 30px;
	line-height: 80px;
	letter-spacing: 1px;
}

.contenedor-equipo section a h6 {
	font-weight: 300;
	font-size: 24px;
	line-height: 34px;
}

.boton-historia-peces {
	width: 100%;
	height: 300px;
	background-color: #00CAD5;
	position: relative;
	float: left;
	margin-top: 150px;
	text-align: center;
	color: white;
	font-size: 30px;
	line-height: 300px;
	font-weight: 400;
	letter-spacing: 2px;
	background-image: url(../img/koi-fish.png);
	background-position: left center;
	background-repeat: no-repeat;
}

.boton-historia-peces:hover {
	background-color: #FFB09B;
	letter-spacing: 1px;
}

/**/

footer {
	width: 100%;
	height: 1400px;
	position: relative;
	float: left;
}

footer aside {
	width: 100%;
	height: 1px;
	position: relative;	
	float: left;
	margin-bottom: 100px;
}

footer aside span {
	position: relative;
	float: left;
	height: 1px;
}

footer aside span:nth-child(1) {
	width: 50%;
	background-color: #FFB09B;
}


footer aside span:nth-child(2) {
	width: 25%;	
	background-color: #00CAD5;
}

footer aside span:nth-child(3) {
	width: 25%;
	background-color: #FF1830;
}

footer section {
	width: 900px;
	height: 250px;
	margin: auto;
}

footer section a {
	position: relative;
	float: left;  
	width: 100%;
	height: 200px;
	margin: auto;
	background-color: #FF1830;
	color: #fff;
	font-size: 28px;
	letter-spacing: 1px;
	line-height: 200px;
	font-weight: 500;
	text-align: center;
	box-shadow: 9px 13px 41px -10px rgba(0,0,0,0.22);	
  }
  
  footer section a::after {
	content: url(../img/flecha9.png);
	display:block;
	width: 210px;
	height:72px;
	position:absolute;
	left: 120px;
	top: 140px;
  }
  
  footer section a span {
	font-weight: 800;  
  
  }
  
  footer section a:hover {
	box-shadow: 9px 13px 41px -10px rgba(0,0,0,0.33);
	padding-left: 22%;
	color: #FF1830;
  }


footer h2 {
	text-align: center;
	color: #00CAD5;
	font-size: 22px;
	margin-top: 200px;
	margin-bottom: 50px;
	width: 100%;
	height: 50px;
}

footer h2 a {
	color: #FF1830;
}

footer h2 a:hover {
	color: #00CAD5;
}

footer article {
	width: 300px;
	height: 250px;
	margin: auto;
	text-align: center;
	color: #FF1830;
	font-size: 16px;
	line-height: 40px;
	letter-spacing: 1px;
	margin-top: 100px;	
}

/*LANDING MARCA************************************/

#logo-landing {
	width: 20%;
	height: 115px;
	position: fixed;
	left: 40%;		
	background-image: url(../img/logo-landing.png);
	background-position: center;
	background-position: top center;
	background-repeat: no-repeat;
	z-index: 10;
}


.landing-marca {
	background-color: #FFB09B;
	padding-top: 200px;
}

.landing-marca article {
	margin: auto;
	width: 1200px;
	height: 500px;
}

.landing-marca article section {
	width: 50%;
	height: 500px;
	position: relative;
	float: left;
	padding: 0;
}

.landing-marca article section h1,
.landing-marca article section h3 {
	text-align: center;
	color: white;
}

.landing-marca article section h1 {
	font-size: 60px;
	line-height: 50px;
	font-weight: 800;
	width: 300px;
	margin: auto;
	margin-bottom: 30px;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.15);
}

.landing-marca article section h3 {
	font-size: 24px;
	line-height: 40px;
	width: 450px;
	margin: auto;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.15);
}

.landing-marca article section h4 {
	text-align: center;	
	margin: auto;
	margin-top: 30px;
}

.landing-marca article section h4 a {
	color: white;
	border: 1px solid rgba(250,250,250,0.5);
	font-size: 17px;
	font-weight: 600;
	padding: 15px 60px;
	
	background-position: left;
	background-repeat: no-repeat;
}


.landing-marca article section h4 a:hover {
	border: 1px solid rgba(250,250,250,9);
	color: rgba(250,250,250,0);
	background-image: url(../img/whatsapp.png);
	background-position: center;
	background-repeat: no-repeat;

}

.landing-marca article section form {
	width: 100%;
	height: 500px;
	margin: auto;
	position: relative;
	border: 1px solid white;
	padding-top: 80px;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.botones-form {
	width:80%;
	height:40px;
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	font-size:16px;
	letter-spacing: 1px;
	color:white;
	border:none;
	margin-bottom:15px;
	margin-left: 10%;
	border-bottom:1px solid white;
	background-color:transparent;
	outline:none;
	
			transition: 0.2s ease;
	-o-transition: 0.2s ease;
	-webkit-transition: 0.2s ease;
	}
	
.botones-form:hover {	
	background-color: #F10530;
	}
	
.botones-form::-webkit-input-placeholder {
	color:white;
	}
	
.botones-form::-moz-input-placeholder {
	color:white;
	}
	
.botones-form:hover::-webkit-input-placeholder {
	color:#fff;
	}
	
.botones-form:hover::-moz-input-placeholder {
	color:#fff;
	}
	
.mensaje {
	height:100px;
	}
	
#enviar {
	width:50%;
	margin-left: 10%;
	border: 1px solid white;
	background-color: #FFB09B;
	height:35px;	
	outline:none;
	color:#FFF;
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	font-size:16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor:pointer;
	text-align: center;
	margin-top: 30px;
	
				transition: 0.2s ease;
	-o-transition: 0.2s ease;
	-webkit-transition: 0.2s ease;
	}
	
#enviar:hover {
	background-color: #F10530
	}

.contenido-landing-marca {
	width: 965px;
	height: 1000px;
	margin: auto;
	margin-top: 150px;
	margin-bottom: 100px;
}

.contenido-landing-marca h5 {
	text-align: center;
	color: #FFB09B;
	font-weight: 800;
	font-size: 40px;
	text-decoration: underline;
}

.contenido-landing-marca h5 span {
	font-weight: 400;
	font-size: 26px;
	letter-spacing: 1px;
}

.contenido-landing-marca article {
	width: 965px;
	height: 300px;
	margin: auto;
	margin-top: 130px;
	margin-bottom: 150px;
}

.contenido-landing-marca article section {
	position: relative;
	float: left;
	border: 1px solid #FFB09B;
	width: 300px;
	height: 300px;
	text-align: center;
	padding: 40px 30px;
	top: 0;	

	transition: 0.3s ease;
}

.contenido-landing-marca article section:hover {
	top: -20px;
	box-shadow: 1px 2px 15px rgba(231, 148, 148, 0.5);	
}

.contenido-landing-marca article section:nth-child(2) {
	margin: 0 30px;
}

.contenido-landing-marca article section h3 {
	color: #00CAD5;
	font-weight: 800;
	font-size: 25px;
	margin-bottom: 20px;	
}

.contenido-landing-marca article section p {
	color: #F10530;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
}

.contenido-landing-marca article section p span {
	font-weight: 800;
}


.contenido-landing-marca ul {
	width: 965px;
	height: 150px;
	margin: auto;
	margin-top: 80px;
	margin-bottom: 60px;	
	text-align: center;
}

.contenido-landing-marca ul li {
	display: inline;
	margin: 0 40px;
}

.contenido-landing-marca ul li img {
	filter: grayscale(100%);

	transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
} 

.contenido-landing-marca ul li img:hover {
	filter: grayscale(0%);
}


#lapiz {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 700px;
	overflow: hidden;
	position: relative;
  }
  
  video {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 700px;
	-o-object-fit: cover;
	   object-fit: cover;
  }
  
  #lapiz h2 {
	z-index: 1;
	width: 40rem;
	text-align: center;	
	color: #F10530;
	font-size: 50px;
	font-weight: 300;
  }

  #lapiz h2 span {
	font-weight: 800;
  }
  
  .overlay {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 700px;
	background-color: rgba(255,176,155,0.3);
  }


#portafolio-de-servicios {
	width: 600px;
	height: 100px;
	text-align: center;
	
	margin: auto;
	margin-top: 100px;
	margin-bottom: 100px;
}


#portafolio-de-servicios a {
	font-size: 18px;
	line-height: 100px;
	color: #00CAD5;
	border: 1px solid #00CAD5;
	padding: 50px 70px;
	font-weight: 500;
	letter-spacing: 1px;

	background-image: url(../img/flecha7.png);
	background-position: top center;
	background-repeat: no-repeat;
}

#portafolio-de-servicios a:hover {
	font-size: 18px;
	line-height: 100px;
	color: #F10530;
	border: 1px solid #FFB09B;
	letter-spacing: 1px;

	background-image: url(../img/flecha6.png);
}


.confirma {
	background-color: #00CAD5;
	padding-top: 400px;
}

.confirma h3 {
	margin: auto;
	width: 500px;
	height: 100px;
	font-size: 40px;
	line-height: 46px;
	color: white;
	font-weight: 800;
}

.confirma h3 span {
	font-weight: 400;
}



/* M E D I A _ Q U E R Y
*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

/*1920*/
@media screen and (max-width:1920px) {

.presentacion-cliente article {
	padding-top: 320px;
}

}

/*1800*/
@media screen and (max-width:1800px) {

#menu-pc {
	width: 70%;
	margin-left: 30%;	
	padding-top: 35px;
}

#menu-pc li a,
#menu-pc li a:hover,
#menu-pc li a span  {
  padding-bottom: 25px;
}

.contenedor-equipo {
	padding-top: 200px;
	height: 1600px;	
}


}


/*1600*/
@media screen and (max-width:1600px) {

#menu-pc {
	width: 80%;
	height: 70px;
	margin-left: 20%;
	padding-top: 31px;	
    font-size: 12px;
    letter-spacing: 1px;
}

#menu-pc li a,
#menu-pc li a:hover,
#menu-pc li a span  {
  padding-bottom: 20px;
}


.wrapper section {
	width: 850px;	
	padding-left: 150px;
	padding-bottom: 50px;
	background-size: 12%;	
  }
  
.wrapper section h5 {
	font-size: 50px;
	margin-bottom: 40px;
  }
  
.wrapper section p {
	font-size: 26px;
  }

/*ellas*/

.contenedor-equipo {
	width: 800px;
	height: 1500px;
}

.contenedor-equipo p {
	font-size: 24px;
	line-height: 44px;
}

.contenedor-equipo h2 {
	font-size: 50px;
}

.contenedor-equipo section a {
	width: 49%;
	height: 650px;
}

.contenedor-equipo section a:nth-child(1) {
	margin-right: 2%;
}

.contenedor-equipo section a h3 {
	font-size: 50px;
}

.contenedor-equipo section a h4 {
	font-size: 18px;
}

.contenedor-equipo section a h5 {
	font-size: 24px;
}

.contenedor-equipo section a h6 {
	font-size: 20px;
	line-height: 24px;
}

.contenedor-equipo section a p {
	height: 650px;
	background-size: cover;
}

.boton-historia-peces {
	background-size: 27%;
	background-position: top left;
	font-size: 24px;
}


/*PROYECTOS*/

.contenedor-proyectos {
	height: 1900px;
	width: 90%;
}

.contenedor-proyectos a {
	background-size: 25%;
	height: 300px;
	font-size: 20px;
}

.contenedor-proyectos a:hover {
	padding-top: 130px;	
}

.contenedor-proyectos a:nth-child(1) {
	background-size: 12%;	
}

.contenedor-proyectos a:nth-child(3) {
	background-size: 20%;	
}

.contenedor-proyectos a:nth-child(6),
.contenedor-proyectos a:nth-child(10) {
	background-size: 40%;	
}

.contenedor-proyectos a:nth-child(7) {
	background-size: 10%;	
}

.contenedor-proyectos a:nth-child(8) {
	background-size: 20%;	
}

.contenedor-proyectos a:nth-child(11),
.contenedor-proyectos a:nth-child(12), 
.contenedor-proyectos a:nth-child(13)  {
	background-size: 15%;	
}

footer h2 {
	font-size: 18px;
}

.presentacion-cliente article {
	padding-top: 250px;
	height: 700px;	
}

.presentacion-cliente article h3 {
	font-size: 25px;
	line-height: 50px;
	margin-bottom: 20px;
}

.presentacion-cliente article h4 {
	font-size: 18px;
	line-height: 36px;
}

.contenedor-imagenes-proyectos section {
	width: 100%;
	margin-top: 0px;	
	padding: 150px 200px;
}

.contenedor-imagenes-proyectos section h3 {
	font-size: 30px;
	line-height: 60px;
}

.contenedor-imagenes-proyectos section h4 {
	font-size: 20px;
	line-height: 26px;
}

.contenedor-imagenes-proyectos section h5 {
	font-size: 18px;
}

.contenedor-imagenes-proyectos article {
	width: 100%;
}

.contenedor-imagenes-proyectos article figure {
	width: 60%;
}

.contenedor-imagenes-proyectos article figure img {
	height: 100%;
}

.contenedor-imagenes-proyectos article a {
	width: 40%;
}

footer {
	height: auto;
	padding-bottom: 100px;
}

/*landing marca*/


.landing-marca {
	padding-top: 150px;
}

.landing-marca article {
	width: 1100px;
	height: 400px;
}

.landing-marca article section h1 {
	font-size: 50px;
	width: 250px;	
	margin-bottom: 20px;
}

.landing-marca article section h3 {
	font-size: 20px;
	line-height: 36px;
	width: 480px;	
}

.landing-marca article section form {
	height: 400px;
	padding-top: 30px;
}

.contenido-landing-marca article {
	margin-top: 80px;
}

.confirma {
	padding-top: 270px;
}


}

/*1400*/
@media screen and (max-width:1400px) {

.wrapper section {
	width: 700px;	
	padding-left: 120px;
	padding-bottom: 40px;
  }
  
.wrapper section h5 {
	margin-bottom: 30px;
  }
  
.wrapper section p {
	font-size: 22px;
  }

.clientes,
.ellas {
	padding-top: 220px;
}

.presentacion-cliente article {
	padding-top: 150px;
	width: 50%;
	height: 550px;
}

.contenedor-imagenes-proyectos article {
	width: 100%;
	height: 300px;
}

.presentacion-cliente article h1 {
	font-size: 30px;
	line-height: 30px;
}

.presentacion-cliente article P,
.presentacion-cliente article h2,
.presentacion-cliente article h3,
.presentacion-cliente article h4 {
	font-size: 16px;
	line-height: 30px;
}

.contenedor-imagenes-proyectos article figure {
	width: 50%;
	height: 300px;
}

.contenedor-imagenes-proyectos article figure img {
	height: 100%;
}

.contenedor-imagenes-proyectos article a {
	width: 50%;
	height: 150px;
	padding-top: 50px;
	font-size: 16px;
}

.contenedor-imagenes-proyectos article .boton-solo-link {
	height: 300px;	
	padding-top: 120px;
}

/*LANDING**/

.landing-marca {
	padding-top: 100px;
}

.landing-marca article {
	width: 1000px;
}

.landing-marca article section form {
	height: 300px;
	margin-top: 50px;
}

.botones-form {
	height:30px;	
	font-size:14px;	
}

.contenido-landing-marca article {
	margin-top: 50px;
}

}

/*1200*/
@media screen and (max-width:1200px) {

#menu-pc {
	font-size: 12px;
	letter-spacing: 1px;
}
	
.logo {
	left: 5%;		
	background-size: 80%;
	background-position: center top;
	background-repeat: no-repeat;
}

#menu-pc li {
	margin: 0 5px;	
}

#redes {
	width: 40px;
	height: 180px;
	top: 70%;
	right: 0;
	z-index: 10;
	text-align: center;
	border: 1px solid rgba(250,250,250,0.5);
	padding-top: 20px;
	border-radius: 25px 0 0 25px;
}

#redes li a img {
	width: 80%;
	margin-bottom: 5px;	
	margin-left: 3px;
}

#redes li a:hover {
	opacity: 0.5;
}

/*LANDING*/

.landing-marca {
	padding-top: 220px;
	
}

.landing-marca article {
	width: 300px;
	height: 450px;	
}

.landing-marca article section {
	width: 300px;
}

.landing-marca article section:nth-child(2) {
display: none;
}

.landing-marca article section h3 {
	width: 300px;
	font-size: 22px;
	line-height: 32px;
}

.contenido-landing-marca {
	width: 300px;
	height: 2000px;
	padding-top: 0px;
}

.contenido-landing-marca h5 {
	width: 300px;
	height: 80px;
	font-size: 35px;
	line-height: 40px;	
}

.contenido-landing-marca h5 span {
	font-size: 28px;
}

.contenido-landing-marca article {
	width: 300px;
	height: 950px;
	margin-top: 30px;	
	margin-bottom: 20px;
}

.contenido-landing-marca article section:nth-child(2) {
	margin: 0;
}

.contenido-landing-marca ul {
	width: 300px;
	height: 600px;
	margin-top: 30px;
	margin-bottom: 0px;	
	
}


}


/*1000*/
@media screen and (max-width:1000px) {

#menu-pc {
	display: none;
}

.wrapper section {
	width: 380px;	
	padding-left: 0px;
	padding-bottom: 0px;
	padding-top: 160px;
	background-position: top center;
	background-size: 20%;
	text-align: center;
}

.clientes,
.ellas {
	padding-top: 200px;
}

.contenedor-equipo {
	width: 80%;
	height: auto;
	padding-top: 80px;
}

.contenedor-equipo p {
	font-size: 18px;
	line-height: 38px;
}

.contenedor-equipo h2 {
	font-size: 30px;
}

.contenedor-equipo section a {
	width: 100%;
	height: 400px;
	padding-top: 30px;
}

.contenedor-equipo section a figure {
	margin-bottom: 10px;
}

.contenedor-equipo section a img {
	width: 50px;
}

.contenedor-equipo section a h4 {
	font-size: 16px;
	line-height: 40px;
}

.contenedor-equipo section a:nth-child(1) {
	margin-right: 0;
}

.boton-historia-peces {
	background-size: 50%;
	font-size: 24px;
	line-height: 30px;
	padding: 140px 70px;
}

footer section {
	width: 80%;
}

footer article {
	height: 230px;	
	line-height: 36px;
	margin-top: 50px;	
}

.presentacion-cliente article {
	padding-top: 200px;
	width: 90%;
	height: auto;
}

.presentacion-cliente article h1 {
	font-size: 30px;
	line-height: 60px;
	letter-spacing: 2px;
	font-weight: 900;
}

.presentacion-cliente article P {
	font-size: 18px;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.presentacion-cliente article h2 {
	font-size: 16px;
	line-height: 26px;
	font-weight: 300;
}

.presentacion-cliente article h3 {
	font-size: 18px;
	line-height: 40px;
}

.presentacion-cliente article h4 {
	font-size: 15px;
	line-height: 30px;
}

.contenedor-imagenes-proyectos section {
	padding: 100px;
}

.contenedor-imagenes-proyectos article figure {
	display: none;
}

.contenedor-imagenes-proyectos article a {
	width: 100%;
}

.siguiente-cliente a {
	font-size: 16px;
	line-height: 30px;
	padding-top: 55px;
	padding-left: 20%;
}

.siguiente-cliente a span {
	font-size: 26px;
}

.siguiente-cliente a:hover {
	padding-left: 25%;
}

/*menu responsive*/
#logo-movil {
	width: 90px;
	height: 60px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	background-image: url(../img/logo-menu.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 70%;
	background-color: rgba(250,250,250,0.95);
	border-bottom: 1px solid #FFB09B;
	box-shadow: 9px 8px 24px -16px rgba(0,0,0,0.75);
} 

#menuToggle {
	display: block;
    position: absolute;
    top: 30px;
    left: 30px;


  z-index: 1;
  
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #fff;  
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: #00CAD5;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #FFF;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/*Transforma la hamburguesa en una cruz*/
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #00CAD5;
}

/*linea de en medio de la hamburguesa*/
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*linea debajo de la hamburguesa*/
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu-responsive
{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  
  background: #FF1830;
  border-bottom: 2px solid #FFF;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu-responsive li
{
  padding: 10px 0;
  font-size: 16px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul {
  transform: none; }
/*cierre menu responsive*/

.contenedor-proyectos {
	height: 1900px;
	width: 100%;
	margin-top: 0px;
}

#portafolio-de-servicios {
	width: 500px;	
}

#portafolio-de-servicios a {
	padding: 50px 20px;
}

}

/*500*/
@media screen and (max-width:500px) {

.wrapper section {
	width: 280px;	
	padding-top: 120px;	
  }

.wrapper section p {
	font-size: 20px;
	line-height: 30px;
  }

  .contenedor-proyectos a:nth-child(1),
  .contenedor-proyectos a:nth-child(3),
  .contenedor-proyectos a:nth-child(4),
  .contenedor-proyectos a:nth-child(7),
  .contenedor-proyectos a:nth-child(8), 
  .contenedor-proyectos a:nth-child(9),
  .contenedor-proyectos a:nth-child(11), 
  .contenedor-proyectos a:nth-child(12),
  .contenedor-proyectos a:nth-child(13) {
	width: 50%;
	height: 150px;
	background-size: 30%;
  }

  .contenedor-proyectos a:nth-child(2),
  .contenedor-proyectos a:nth-child(5),  
  .contenedor-proyectos a:nth-child(6),
  .contenedor-proyectos a:nth-child(10),
  .contenedor-proyectos a:nth-child(14) {
	width: 50%;
	height: 150px;
	background-size: 60%;
  }

.contenedor-imagenes-proyectos section {
	padding: 80px 50px;
}

.contenedor-imagenes-proyectos section h3 {
	font-size: 22px;
	line-height: 60px;
}

footer section a {
	font-size: 18px;
  }

footer section a img {
	width: 15%;
}

footer section a::after {
	left: 70px;
	top: 140px;
}

footer h2 {
	font-size: 16px;
	line-height: 26px;
	padding: 0 50px 0 50px;
}

  
footer article {
	font-size: 14px;
	line-height: 30px;
	margin-top: 150px;	
}


.contenedor-equipo {
	width: 320px;
}

.contenedor-equipo section a h5 {
	font-size: 18px;
}

.boton-historia-peces {
	background-size: 50%;
	font-size: 18px;
	line-height: 28px;
	padding: 140px 40px;
}

/**landing*/

#logo-landing {
	width: 100%;
	left: 0;	
}

.landing-marca {
	padding-top: 150px;
}

#lapiz h2 {
	width: 230px;
	font-size: 30px;
	line-height: 35px;
  }


#portafolio-de-servicios {
	width: 300px;	
}

#portafolio-de-servicios span {
	display: none;
}

#portafolio-de-servicios a {
	font-size: 16px;
	font-weight: 600;
	padding: 40px 20px;
}

.confirma {
	padding-top: 300px;
}

.confirma h3 {
	width: 200px;
	height: 200px;
	font-size: 30px;
	line-height: 36px;
}


}