* {
	padding:0;
	margin:0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

p {
	color: #4b4b4b;
}

main {
	flex: 1;
	width: 100%;
	max-width: 1800px;
	margin: auto;
}

header {
	width: 100%;
	max-width: 1800px;
	align-self: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	position: fixed;
	top: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: #ffffff;
	z-index: 5;
	border-bottom: 1px solid #F05423;

/*	-webkit-box-shadow: rgb(50 50 93 / 25%) 0px 7px 36px -7px, rgb(0 0 0 / 30%) 0px 6px 5px -8px;
	        box-shadow: rgb(50 50 93 / 25%) 0px 7px 36px -7px, rgb(0 0 0 / 30%) 0px 6px 5px -8px;*/
}

header a {
	text-decoration: none;
}

header a p {
	font-size: 0;
	background-image: url(../img/logo/logo.png);
	background-size: cover;
	height: 60px;
	margin: 4px 0;
	width: 102px;
}

/**/

nav {
	position: absolute;
	top: 67px;
	left: 0px;
	width: 100%;
	background-color: #DCDCDC;
	z-index: 1;
	-webkit-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	        transform: translateX(-100%);
	-webkit-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
}
/*nav ul li a:target #pepe {
	flex-direction: row;
}*/

nav ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

nav ul li {
	width: 100%;
	display: flex;
	align-items: center;
}

nav ul li span {
	background-image: url(../img/icons/pista.png);
	background-size: cover;
	height: 23px;
	width: 34px;
	margin-right: 7px;
}

nav ul li a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #F05423;
	font-weight: 500;
	font-size: 18px;
	width: 100%;
	padding: 12px 20px 12px 0;
}

nav ul li:nth-of-type(1) a {
	padding-top: 24px;
}

nav ul li:last-of-type a {
	padding-bottom: 24px;
}

/*nav ul li:nth-of-type(2) a {
	padding-bottom: 0;
}*/

#btn-menu{
	display: none;
}

#btn-menu:checked ~ nav {
	-webkit-transform: translateX(0%);
	    -ms-transform: translateX(0%);
	        transform: translateX(0%);
}

.icon-bars2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: 15px;
	position: absolute;
	left: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

/* burger */

#nav-icon2 {
	width: 30px;
	height: 20px;
	position: relative;
	/*margin: 50px auto;*/
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	    transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

#nav-icon2 span {
	display: block;
	position: absolute;
	height: 4px;
	width: 50%;

	background: #F05423;
	border-radius: 9px;

	opacity: 1;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	    transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}


#nav-icon2 span:nth-child(even) {
	left: 50%;
	border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
	left:0px;
	border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
	top: 0px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
	top: 8px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
	top: 16px;
}

#nav-icon2.open span:nth-child(1),#nav-icon2.open span:nth-child(6) {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	    transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),#nav-icon2.open span:nth-child(5) {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	    transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
	left: 3px;
	top: 3px;
}

#nav-icon2.open span:nth-child(2) {
	left: calc(50% - 3px);
	top: 3px;
	}

#nav-icon2.open span:nth-child(3) {
	left: -50%;
	opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
	left: 100%;
	opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
	left: 3px;
	top: 14px;
}

#nav-icon2.open span:nth-child(6) {
	left: calc(50% - 3px);
	top: 14px;
}

/*---END BURGER------*/




.imagen {
	width: 100vw;
	height: calc(100vw * 0.8);
	max-width: 500px;
	max-height: 400px;
	background-size: cover;
	margin-top: 67px;
	position: relative;
}

.imagen-home {
	background-image: url("../img/background/mobile/background-mobile-1.jpg");
}

.imagen-productos {
	background-image: url("../img/background/mobile/background-mobile-19.jpg");
}

.imagen-empresa {
	background-image: url("../img/background/mobile/background-mobile-2.jpg");
}

.imagen-servicios {
	background-image: url("../img/background/mobile/background-mobile-5.jpg");
}

.imagen-desarrollos {
	background-image: url("../img/background/mobile/background-mobile-6.jpg");
}

.imagen-contacto {
	background-image: url("../img/background/mobile/background-mobile-7.jpg");
}

#slider {
	max-width: 1800px;
}

#slider > h1 {
	display: none;
}

.imagen h1 {
	font-size: 22px;
	width: 100%;
	color: white;
	padding: 10px;
	background-color: rgba(0, 0, 0, .4);
	position: absolute;
	bottom: 0;
	text-align: center;
	font-weight: 400;
}

.mySlides {
	position: relative;
	width: 100%;
}

.mySlides img {
	vertical-align: bottom;
	width: 100%;
}

.mySlides h2 {
	font-size: 22px;
	width: 100%;
	color: white;
	padding: 10px;
	background-color: rgba(0, 0, 0, .4);
	position: absolute;
	bottom: 0;
	text-align: center;
	font-weight: 400;
}

.titulo-home {
	margin: 20px;
	font-size: 26px;
	text-align: center;
	color: #F05423;
	font-weight: 400;
}

.lista-home {
	list-style: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
}

.lista-home li {
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}

.lista-home li figure {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.lista-home li figure > p {
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
}

.lista-home li figure:hover > p {
	visibility: initial;
	opacity: 1;
}

.lista-home li figure figcaption {
	font-size: 18px;
	color: #F05423;
}

.lista-home li figure img {
	width: 180px;
/*	min-width: 65%;*/
/*	max-width: 200px;*/
	align-self: center;
	transition: all 0.5s ease-in-out;
}

.lista-home li figure:hover img {
	width: 200px;
}

.contenedor-texto-home {
  padding: 20px;
}

.contenedor-texto-home p {
/*	font-size: 22px;*/
	margin-bottom: 15px;
/*	line-height: 30px;*/
}

.contenedor-productos {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
	padding: 30px;
	max-width: 1420px;
	margin: auto;
}

.contenedor-productos article {
	width: 100%;
	max-width: 320px;
	border-radius: 10px;
	box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
	margin: 25px;
}


.contenedor-productos article a {
	text-decoration: none;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.contenedor-productos article img {
	width: 100%;
	border-radius: 10px;
	align-self: center;
	margin-top: 20px;
}

.productos-todos  article img {
	width: 60%;
}

.productos-todos article {
	max-width: 260px;
}

.contenedor-productos article h2 {
	padding: 12px;
	text-align: center;
	font-size: 23px;
	color: #F05423;
	font-weight: 400;
	margin-bottom: 12px;
}

.contenedor-empresa {
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.contenedor-empresa a {
	background-color: #F05423;
	border: 1px solid #F05423;
    color: white;
    padding: 12px;
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: 20px;
    align-self: center;
	-webkit-transition: color .2s;
	-o-transition: color .2s;
	transition: color .2s;
	-webkit-transition: background-color .2s;
	-o-transition: background-color .2s;
	transition: background-color .2s;
}

.contenedor-empresa a:hover {
	background-color: white;
    color: #F05423;
}

.foto{
	height: 50vh;
	width: 100%;

	background-position: center top;
/*	background-attachment: scroll;*/
	
	background-repeat: no-repeat;
	
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}


.foto1{
	background-image: url("../img/background/parallax/mobile/foto-1.jpg");
}

.foto2{
	background-image: url("../img/background/parallax/mobile/foto-2.jpg");
}

.foto3{
	background-image: url("../img/background/parallax/mobile/foto-3.jpg");
}




.contenedor-producto {
	margin-top: 67px;
	
}


.contenedor-producto-1 {
	padding: 20px;
	background-color: #F5F5F5;
}

.contenedor-producto-1 p {
	max-width: 1000px;
	margin: 0 auto 11px;
	font-size: 22px;
}

.contenedor-producto-1 h1 {
	color: #F05423;
	font-size: 30px;
	text-align: center;
	font-weight: 500;
/*	margin-bottom: 15px;*/
	max-width: 1000px;
    margin: 0 auto 15px;
}

.contenedor-producto-2,
.contenedor-desarrollo {
	padding: 20px;
}

.contenedor-producto-2 img,
.contenedor-desarrollo img {
	width: 100%;
	max-width: 500px;
}

.contenedor-producto-2 figcaption,
.contenedor-desarrollo figcaption {
	color: #F05423;
	font-size: 16px;
	text-align: center;
	font-weight: 400;
	margin-bottom: 15px;
}


.contenedor-producto-2 h2,
.contenedor-desarrollo h2 {
	color: #F05423;
	font-weight: 400;
	margin: 20px 0 15px;
	font-size: 24px;
	text-align: center;
}

.contenedor-desarrollo h2 {
	text-align: left;
}

.contenedor-producto-2 ul,
.contenedor-desarrollo ul {
	list-style: none;
}

.contenedor-producto-2 ul li {
	display: flex;
	margin-bottom: 13px;
}

.contenedor-producto-2 ul li > span {
	background-image: url(../img/icons/pista.png);
	background-size: cover;
	height: 18px;
	width: 27px;
	margin-right: 7px;
}

.contenedor-producto-2 ul li p {
	flex: 1;
	font-size: 20px;
}

.salto-linea {
	display: flex;
	flex-direction: column;
}

.contenedor-desarrollo {
	padding: 20px;
}

.contenedor-desarrollo p {
	margin-bottom: 20px;
	font-size: 20px;
}

.contenedor-fotocelula ul {
	list-style: none;
}

.contenedor-fotocelula h3 {
	color: #F05423;
	font-weight: 300;
	margin: 20px 0 15px;
	font-size: 22px;
}

.contenedor-desarrollo figure {
	display: flex;
	flex-direction: column;
	margin: 15px 0;
}

.contenedor-desarrollo figure img {
	width: 80%;
	margin-bottom: 9px;
	align-self: center;
}


.contenedor-desarrollo figure figcaption {
	color: #F05423;
	font-weight: 300;
	text-align: center;
}


.contenedor-contacto {
	max-width: 1000px;
	margin: auto;
}

.contenedor-contacto p {
	padding: 20px;
	font-size: 22px;
}

.lista-contacto {
	padding: 20px;
	background-color: #DCDCDC;
}

.lista-contacto dt {
	font-size: 20px;
}

.lista-contacto dd {
	margin-bottom: 14px;
	color: #F05423;
	font-size: 20px;
	margin: 5px 0 16px 10px;
}

.lista-contacto dd:last-child {
	margin-bottom: 0;
}

.lista-contacto dd a {
	text-decoration: none;
	color: #F05423;
	-webkit-transition: color .2s;
	-o-transition: color .2s;
	transition: color .2s;
}

.lista-contacto dd a:hover {
	color: #FF8928;
}

footer {
	width: 100%;
	max-width: 1800px;
	background-color: #F05423;
	margin: auto;
}

footer div {
	background-color: #F05423;
	color: white;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

footer div p {
	text-align: center;
	order: 2;
	color: white;
}

footer div p span {
	display:block;
}

footer div a {
	color: white;
	text-decoration: none;
	order: 1;
	margin-bottom: 20px;
	-webkit-transition: color .2s;
	-o-transition: color .2s;
	transition: color .2s;
}

footer div a:hover {
	color: #FEDA6A;
}




.guion {
	display: none;
}

.whatsapp {
	background-image: url(../img/icons/whatsapp.png);
	font-size: 0;
	padding: 35px;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center;
	position: fixed;
	bottom: 0;
	right: 0;
	margin-bottom: 0;
}



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

	.imagen {
		height: calc(100vw * 0.44444444);
		max-width: 900px;
		max-height: 400px;

	}

	.imagen-empresa {
		background-image: url("../img/background/tablet/background-tablet-2.jpg");
	}

	.imagen-productos {
		background-image: url("../img/background/tablet/background-tablet-19.jpg");
	}

	.imagen-servicios {
		background-image: url("../img/background/tablet/background-tablet-5.jpg");
	}

	.imagen-desarrollos {
		background-image: url("../img/background/tablet/background-tablet-6.jpg");
	}

	.imagen-contacto {
		background-image: url("../img/background/tablet/background-tablet-7.jpg");
	}

	.foto1{
		background-image: url("../img/background/parallax/tablet/foto-1.jpg");
	}

	.foto2{
		background-image: url("../img/background/parallax/tablet/foto-2.jpg");
	}

	.foto3{
		background-image: url("../img/background/parallax/tablet/foto-3.jpg");
	}
}



@media screen and (min-width: 600px) {
	.contenedor-producto-2 {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		max-width: 1040px;
		margin: auto;
	}

	.contenedor-desarrollo {
		max-width: 1000px;
		margin: auto;
	}

	.contenedor-producto-2 img {
		width: 40%;
		max-width: 325px;
	}

	.contenedor-producto-2 div {
		flex: 1;
		margin-left: 50px;
	}

	.fotos-controladores {
		width: 50%;
		display: flex;
		flex-direction: column;
	}

	.fotos-controladores img {
		width: 90%;
		margin: auto;
	}

	.contenedor-desarrollo figure img {
    	width: 50%;
	}
}


@media screen and (min-width: 730px) {
	.icon-bars2 {
		display: none;
	}

	header {
		border-bottom: none;
	}

	nav {
		transform: none;
/*		max-width: 1200px;*/
		background-color: white;
		border-bottom: 1px solid #F05423;
	}

	nav ul {
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: space-around;
	}
	nav ul li {
		width: auto;
	}

	nav ul li span {
		background-image: none;
		width: 0;
	}

	nav ul li:nth-of-type(1) a {
		padding-top: 12px;
	}

	nav ul li:last-of-type a {
		padding-bottom: 12px;
	}

	nav ul li a {
		padding: 12px;
	}
	
	.margen-superior {
		margin-top: 113px;
	}

	.contenedor-empresa {
		padding: 60px 11vw;
	}

	.contenedor-empresa p {
		line-height: 1.7rem;
		font-size: 22px;
		margin-bottom: 12px;
	}

	.contenedor-empresa a {
		margin-top: 40px;
	}

	.contenedor-fotos-fotocelula,
	.contenedor-fotos-fuentes,
	.contenedor-fotos-magnetoterapia,
	.contenedor-fotos-paneles {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
	}

	.contenedor-fotos-fotocelula figure,
	.contenedor-fotos-magnetoterapia figure,
	.contenedor-fotos-paneles figure {
		width: 50%;
	}

	.contenedor-fotos-fuentes figure {
		width: 32%;
	}

	.contenedor-fotos-fuentes figure img,
	.contenedor-fotos-magnetoterapia figure img, 
	.contenedor-fotos-paneles figure img {
		width: 90%;
	}
}

@media screen and (min-width: 800px) {
	footer div {
		flex-direction: row;
		justify-content: space-between;
		max-width: 1300px;
		margin: auto;
	}

	footer div p {
		order: 1;
		text-align: left;
	}

	.guion, footer div p span {
		display: inline-block;
	}

	footer div a {
		margin-bottom: 0;
	}

	.whatsapp {
		bottom: 50px;
	}

	.lista-home li {
		width: 25%;
	}

	.contenedor-texto-home {
		padding: 30px 13vw;
	}

	.contenedor-texto-home p {
		font-size: 22px;
		margin-bottom: 15px;
		line-height: 30px;
	}
}


@media screen and (min-width: 900px) {
	.imagen {
		height: calc(100vw * 0.22222222);
		max-width: 1800px;
		max-height: 400px;
	}

	.imagen-empresa {
		background-image: url("../img/background/desktop/background-desktop-2.jpg");
	}

	.imagen-productos {
		background-image: url("../img/background/desktop/background-desktop-19.jpg");
	}

	.imagen-servicios {
		background-image: url("../img/background/desktop/background-desktop-5.jpg");
	}

	.imagen-desarrollos {
		background-image: url("../img/background/desktop/background-desktop-6.jpg");
	}

	.imagen-contacto {
		background-image: url("../img/background/desktop/background-desktop-7.jpg");
	}

	.foto1{
		background-image: url("../img/background/parallax/desktop/foto-1.jpg");
	}

	.foto2{
		background-image: url("../img/background/parallax/desktop/foto-2.jpg");
	}

	.foto3{
		background-image: url("../img/background/parallax/desktop/foto-3.jpg");
	}

	.foto{
		
		background-position: center center;
	
		background-attachment: fixed;
		height: 100vh;
	}
}



@media screen and (min-width: 1030px) {
	header {
		justify-content: space-around;
		border-bottom: 1px solid #F05423;
	}

	header a p {
		margin-left: 20px;
	}
	
	nav {
		position: unset;
		border-bottom: none;
	}

	nav ul {
		justify-content: flex-end;
	}

	nav ul li a {
		padding: 12px 20px;
	}

	.margen-superior {
		margin-top: 69px;
	}

	.mySlides h2, .imagen h1 {
		font-size: 36px;
		padding: 25px;
		font-weight: 500;
	}
}

