/*
Theme Name: Desmex
Theme URI: lyseon.com
Author: Lyseon Marketing Digital
Author URI: https://lyseon.com/
Description: Tema desarrollado para Desmex
Version: 2019.1
License: GNU General Public License
License URI: https://www.gnu.org/licenses/gpl.html
Tags: one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Text Domain: desmex

Desmex WordPress Theme © 2011-2019 Lyseon
Desmex is distributed under the terms of the GNU GPL
*/


/*A la hora de hacer float, indicar al padre contenedor, overflor: hidden*/

/* Agregar una tipografía propia
@font-face{
	font-family: ;
	src: url(.woff),
		format('woff'),
		url(.ttf),
		format('truetype);
	font-weight: ;
	font-style: ;
}

*/
:root{
	--rojo: #E10600;
	--rojosec: #A8192C; 
	--gris: #97938B;
}
/* Teléfonos Portrait ----------*/

	/* General ++++++++++*/
*{
	box-sizing: border-box;
	text-decoration: none;
	list-style-type: none;
}

html, body{
	font-family: 'Roboto', sans-serif;
	width: 100%;
}

.clear{
	clear: both;
}

.no-scroll{
	overflow: hidden;
}

	/* Estilos tipográficos ++++++++++*/
html{
	font-size: 10px;
}

body{
	font-size: 1.6rem;
	line-height: 1.5;
}

h1{
	font-size: 2.5rem;
}

h2{
	font-size: 2.3rem;
	line-height: 1.5;
	font-weight: 700;
	color: var(--rojo);
}

h3{
	font-size: 2.2rem;
	line-height: 1.5;
	font-weight: 700;
}

h4{
	font-size: 2.1rem;
	line-height: 1.5;
	font-weight: 700;
}

h5{
	font-size: 2rem;
	line-height: 1.5;
	font-weight: 700;
}

h6{
	font-size: 1.8rem;
	line-height: 1.5;
	font-weight: 700;
}

a,
a:visited {
	color: var(--rojo);
}

a:hover {
	color: var(--rojo);
}

a:active {
	color: var(--rojo);
}

a:focus {
	color: var(--rojo);
}

footer a,
footer a:visited {
	color: white;
    font-size: 1.3rem;
}

footer a:hover {
	color: white;
}

footer a:active {
	color: white;
}

footer a:focus {
	color: white;
}


	/*Cabecera ++++++++++*/
header{
	width: 100%;
	height: 12.4vh;
	background: white;
	-webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.75);
	position: fixed;
	z-index: 10;
}

.logo{
	width: 35%;
	margin-top: 16px;
	margin-left: 10px;
}

.hamburger-menu{
	display: block;
}

.hamburger-menu {
	position: absolute;
	top: 16px;
	right: 15px;
	margin: auto;
	width: 40px;
	height: 34px;
	cursor: pointer;
	z-index:12;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.bar,
.bar:after,
.bar:before {
	width: 40px;
	height: 3px;
}

.bar {
	position: relative;
	transform: translateY(15px);
	background: var(--rojo);
	transition: all 0ms 300ms;
}

.bar.animate {
	background: rgba(255, 255, 255, 0);
	transition-duration: 0.3s;
}

.bar:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 8px;
	background: var(--rojo);
	transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar:after {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	background: var(--rojo);
	transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:after {
	top: 0;
	transform: rotate(45deg);
	background: var(--rojo);
	transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:before {
	bottom: 0;
	transform: rotate(-45deg);
	background: var(--rojo);
	transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

#menu{
	width: 100%;
	height: 87.6vh;
	position: fixed;
	top: 12.4vh;
	left: -100%;
	padding-top: 7%;
	background: var(--rojo);
	overflow-y: scroll;
	transition-duration: 0.3s;
}

#menu ul{
	opacity: 0;
	transition: 0.8s opacity 0.3s;
}

#menu .show{
	opacity: 1;
}
.left{
	left: 0 !important;
}

#menu li{
	margin-bottom: 20px;
	margin-left: 10px;
}

#menu ul li:last-child,
#menu ol li:last-child{
	margin-bottom: 0;
}

#menu li a,
#menu li a:visited,
#menu li a:hover,
#menu li a:active,
#menu li a:focus,
#menu li p {
	color: white;
	display: inline-block;
	vertical-align: middle;
	font-size: 1.4rem;
}

.submenu{
	display: none;
	margin-top: 30px;
}

.plus-to-minus {
	width: 20px;
	height: 20px;
	cursor: pointer;
	-webkit-transition: -webkit-transform ease 400ms;
	transition: -webkit-transform ease 400ms;
	transition: transform ease 400ms;
	transition: transform ease 400ms, -webkit-transform ease 400ms;
	display: inline-block;
	float: right;
	margin-right: 10px;
}

.plus-to-minus:before, .plus-to-minus:after {
	content: '';
	position: absolute;
	background-color: #FFF;
	border-radius: 10px;
}

.plus-to-minus:before {
	margin-left: 2.5%;
	width: 4px;
	height: 20px;
	transition-duration: 0.3s;
}

.plus-to-minus:after {
	margin-top: 2.5%;
	height: 4px;
	width: 20px;
	-webkit-transition: -webkit-transform ease 400ms;
	transition: -webkit-transform ease 400ms;
	transition: transform ease 400ms;
	transition: transform ease 400ms, -webkit-transform ease 400ms;
}

.plus-to-minus.minus:before {
	background-color: rgba(255,255,255,0);
}

#menu ol{
	opacity: 0;
	transition: 1.5s opacity 0.3s;
}

.menu-contacto{
	width: 80%;
	margin: 0 auto;
	margin-top: 30px;
}

#menu .menu-contacto li a{
	font-size: 1.3rem;
}

.menu-icon{
	vertical-align: middle;
	margin-right: 10px;
}

.menu-social-media{
	width: 80%;
	margin: 0 auto;
	margin-top: 20px;
	text-align: center;
}

.menu-social-media li{
	display: inline-block;
}

.menu-social-media li:last-child .menu-icon{
	width: 100%;
}


	/*Estructura ++++++++++*/

.spacer{
	width: 100%;
	height: 12.4vh;
}

section{
	margin-bottom: 40px;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main p,
main a,
main span,
main li{
	width: 92%;
    margin: 0 auto;
}

main h2{
	margin-top: 40px;
	margin-bottom: 15px;
}

main p{
	margin-bottom: 20px;
}


.bt-fill-red{
	display: block;
	width: 80%;
	padding: 15px 0;
	background-color: var(--rojo);
	color: white !important;
	text-align: center;
}

#bt-portafolio{
    width: 40%;
    position: absolute;
    bottom: 18px;
    right: 10px;
    z-index: 3;
}

.descanso{
    width: 100%;
    height: 50vh;
}

	/*Pie ++++++++++*/

footer{
    width: 100%;
    background: var(--rojo);
    text-align: center;
    padding: 10% 5%;
    color: white;
}

.footer-logo{
    width: 50%;
    object-fit: contain;
    max-width: 50%;
    margin-bottom: 20%;
}

.iso{
    width: 50%;
    margin-bottom: 20%;
}

.info-footer{
    width: 100%;
    text-align: left;
}

.info-footer h4{
    text-align: center;
    margin-bottom: 10%;
}

.info-footer p{
    margin-bottom: 10%;
    font-size: 1.2rem;
}

footer ul li{
    margin-bottom: 9%;
}

footer ul li a{
    display: block;
    color: white;
    vertical-align: top;
}

footer ul li a img{
    display: inline-block;
    margin-right: 5%;
    vertical-align: middle;
}

footer .margen li{
    margin-left: 10%;
}

footer .menu-social-media{
    width: 100%;
    text-align: left;
    margin-top: 20%;
    margin-bottom: 20%;
}
footer .copyright{
    text-align: left;
    font-size: 1.2rem;
}

	/*Páginas ++++++++++*/

		/*Inicio.php ++++++++++*/

			/*Seccion Inicio ----------*/

#fondo{
	overflow: hidden;
	position: relative;
	text-align: center;
	width: 100%;
	height: 45vh;
}

#fondo:before{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	z-index: -1;
	display: block;
	background-size:cover;
	width: 100%;
	height: 45vh;
	-webkit-filter: blur(1.5px);
	-moz-filter: blur(1.5px);
	-o-filter: blur(1.5px);
	-ms-filter: blur(1.5px);
	filter: blur(1.5px);
	-webkit-filter: brightness(60%);
	-moz-filter: brightness(60%);
	-o-filter: brightness(60%);
	-ms-filter: brightness(60%);
	filter: brightness(60%);
}

#fondo img{
	margin-top: 12%;
}

#fondo p{
	color: white;
	text-align: center;
	margin-top: 6%;
}

	/*Sección Servicios ----------*/

.servicio-inicio{
	width: 100%;
	padding: 2% 0;
	position: relative;
	text-align: left;
	margin-bottom: 40px;
}

.servicio-inicio h2{
	color: white;
	text-align: center;
}

.servicio-inicio p{
	color: white;
}

.fondo{
	position: absolute;
	z-index: -3;
	top: 0;
	left: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	-webkit-filter: brightness(60%);
	-moz-filter: brightness(60%);
	-o-filter: brightness(60%);
	-ms-filter: brightness(60%);
	filter: brightness(60%);
}

.iso-fondo{
	position: absolute;
	z-index: -2;
	top: 0;
	left: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
}

.servicio-inicio a{
	width: 40%;
	margin-left: 50%;
	padding: 10px 0;
	margin-bottom: 5%;
}

		/*portafolio ----------*/

.portafolio-inicio{
	width: 100%;
	height: 50vh;
    position: relative;
}

.carusel,
.empresa,
.carusel2,{
  width: 100%;
  height: 70vh;
  margin: 0 auto;
}

.slick-list, .slick-track{
  height: 100%;
}

.slick-slider{
    width: 100%;
    height: 50vh;
}

.slick-slide{
  height: 100%;
  margin: 0 10px;
  object-fit: contain;
}

.slick-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slick-prev,
.slick-next{
	display: none !important;
}

.portafolio-inicio .slick-dots,
.carrusel-servicios . slick-dots{
    width: 50%;
	bottom: 35px;
}

.portafolio-inicio .slick-dots li,{
    margin: 0 3px;
}

.carrusel .slick-dots li.slick-active button:before,
.carrusel2 .slick-dots li.slick-active button:before{
	color: var(--rojo);
}

.carrusel .slick-dots li button:before,
.carrusel2 .slick-dots li button:before{
	color: var(--rojo);
}

    /*contacto ----------*/


.contacto{
    width: 100%;
    height: 60vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tarjeta-contacto{
    width: 90%;
    height: 90%;
    background: white;
    position: absolute;
    top: 5%;
    left: 5%;
}

.tarjeta-contacto .bt-fill-red{
    width: 40%;
    display: inline-block;
    margin: 40px 0;
    margin-left: 30px;
}

.iso-fondo-contacto{
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	object-fit: contain;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
}

.tarjeta-contacto h2{
    margin-bottom: 7%;
}

	/*solutions.php ++++++++++*/

        /*inicio-solutions ----------*/

#fondo-cleantech,
#fondo-industrial-engineering{
	overflow: hidden;
	position: relative;
	text-align: center;
	width: 100%;
	height: 45vh;
}

#fondo-cleantech:before{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	z-index: -1;
	display: block;
	background-size:cover;
	width: 100%;
	height: 45vh;
}

#fondo-industrial-engineering:before{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	z-index: -1;
	display: block;
	background-size:cover;
	width: 100%;
	height: 45vh;
}

#fondo img{
	margin-top: 12%;
}

#inicio #fondo p{
	width: 90% !important;
	display: block !important;
	color: white !important;
	text-align: center !important;
	margin: 0 auto !important;
	margin-top: 6% !important;
}

#carrusel-servicios-uno{
    width: 100%;
    height: 40vh;
    margin: 0 auto;
    margin-bottom: 30px;
}

#carrusel-servicios-dos{
    width: 100%;
    height: 70vh;
    margin: 0 auto;
}

#carrusel-servicios-uno .slick-slider,
#carrusel-servicios-dos .slick-slider{
    width: 100%;
    height: 70vh;
}

#carrusel-servicios-uno .slick-slide,
#carrusel-servicios-dos .slick-slide{
    margin: 0;
}

.tarjeta-roja{
    background: var(--rojo);
    color:white;
}

.tarjeta-roja h4{
    margin-top: 20px;
    margin-bottom: 20px;
}

.bt-fill-white{
    display: block;
    width: 40%;
    padding: 5px 0;
    background-color: white;
    text-align: center;
    margin-left: 50%;
}

    /*solucion-abierta.php ++++++++++*/

.logo-partner{
    width: 70%;
    height: auto;
    margin: 20px auto;
    display: block;
    object-fit: contain;
}

.solucion-abierta span{
    color: var(--rojo);
    font-weight: 700;
}

.solucion-abierta ul li{
    margin-bottom: 25px;
}

.letrero-rojo{
    width: 70%;
    background: var(--rojo);
    position: absolute;
    z-index: 3;
    color: white;
    font-weight: 700;
    top: 8px;
    left: 14.5%;
}

.letrero-rojo p{
    text-align: center;
    margin: 2% auto;
}

    /*Nosotros.php ++++++++++*/

        /*Inicio*/

#portada-nosotros{
	width: 100%;
	height: 50vh;
    position: relative;
}

.acerca h3{
    color: var(--rojo);
    margin-bottom: 15px;
}

.empresas{
    width: 100%;
    height: 115vh;
    position: relative;
}

.empresas .slick-slider{
    width: 100%;
    height: 115vh;
}

.empresas .slick-slide{
    background: var(--gris);
    margin: 0;
    width: 320px;
}

.empresas .slick-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.descanso-esc,
.descanso{
    display: none;
}

.logo-empresa{
    width: 20% !important;
    height: 20% !important;
    display: block;
    margin: 5px auto;
}

.empresas .slick-slide h3,
.empresas .slick-slide p{
    color: white;
    text-align: center;
    margin-bottom: 15px;
    width: 100%;
}

#wpcf7-f19-o1{
    width: 92%;
    margin: 0 auto;
    color: white;
}

#contacto form{
    width: 100%;
}

#contacto form p{
    margin-bottom: 0;
}

#contacto form label{
    width: 40%;
    height: 40px;
    padding: 11px;
    display: inline-block;
    background: var(--gris);
    font-size: 1rem;
    font-weight: 700;
    float: left;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}

#contacto form input,
#contacto form select{
    width: 60%;
    height: 40px;
    float: left;
    margin-bottom: 20px;
    display: inline-block;
    padding-left: 10px;
    border: 1px solid var(--gris)
}

#contacto form .area-texto{
    margin-bottom: 0;
}

#contacto form textarea{
    width: 100%;
    height: 100px;
    resize: none;
    font-family: 'Roboto', sans-serif;
    padding-top: 10px;
    padding-left: 10px;
    border: 1px solid var(--gris);
}


#contacto form input[type=button],
#contacto form input[type=submit],
#contacto form input[type=reset]{
    width: 40%;
    color: white;
    font-size: 700;
    background: var(--gris);
}

#contacto .menu-contacto{
    width: 100%;
    clear: both;
}

#contacto .menu-contacto li{
    height: 30px;
    margin: 30px auto;
}

#contacto .menu-contacto li .menu-icon{
    float: left;
    margin-right: 10px;
}

#contacto .menu-contacto li p{
    width: 75%;
    float: left;
    color: var(--gris);
}

#contacto .menu-contacto li a{
    color: var(--gris);
}

#contacto iframe{
    width: 100%;
    height: 60vh;
}

/* Teléfonos Landscape ----------*/

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

    header{
        height: 15vh;
    }
    
    .logo{
        width: 12%;
        margin-top: 12px;
    }
    
    .hamburger-menu{
        top: 4px;
    }
    
    .bar,
    .bar:after,
    .bar:before{
        width: 33px;
    }
    
    #menu{
        padding-top: 2%;
        top: 15.4vh;
    }
    
    #menu li{
        margin-bottom: 15px;
    }
    
    .plus-to-minus:before{
        margin-left: 1.5%;
    }
    
    .plus-to-minus:after{
        margin-top: 1.5%;
    }
    
    .spacer{
        height: 20vh;
    }
    
    #fondo{
        height: 60vh;
    }
    
    #fondo:before{
        height: 80vh;
    }
    
    #fondo img{
        margin-top: 5%;
    }
    
    .contacto{
        height: 100vh;
    }
    
    .empresas{
        height: 175vh;
    }
    
    .empresas .slick-slider{
        height: 175vh;
    }
    
    .footer-logo,
    .iso{
        width: 25%;
        vertical-align: top;
        margin-bottom: 10%;
    }
    
    .footer-logo{
        margin-right: 5%;
    }
    
    .info-footer ul{
        text-align: center;
    }
    
    footer ul li{
        margin-bottom: 5%;
        display: inline-block;
        width: 45%;
    }
	
    .margen{
        width: 40%;
        margin-right: 1%;
        display: inline-block;
        margin-bottom: 40px;
        vertical-align: top;
    }
    
    footer .menu-social-media{
        text-align: center;
        margin: 10% 0;
    }
    
    footer .copyright{
        text-align: center;
    }
    
}

/* Teléfonos tipo Iphone X Portrait ----------*/

@media (min-width: 320px) and (max-width: 480px) and (orientation: portrait) and (-webkit-device-pixel-ratio : 3){


    #fondo{
        height: 45vh;
    }
    
    #inicio #fondo p{
        width: 80% !important;
    }
    
    #carrusel-servicios-dos{
        height: 41vh;
    }
    
    .contacto{
        height: 45vh;
    }
    
    .empresas{
        height: 75vh;
    }
    
    .empresas .slick-slider{
        height: 75vh;
    }

}

/* Teléfonos tipo iPhone X Landscape ----------*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio : 3){

     header{
        height: 15vh;
    }
    
    .logo{
        width: 12%;
        margin-top: 12px;
    }
    
    .hamburger-menu{
        top: 10px;
    }
    
    .bar,
    .bar:after,
    .bar:before{
        width: 33px;
    }
    
    #menu{
        padding: 2% 0;
        top: 15.4vh;
    }
    
    #menu li{
        margin-bottom: 15px;
    }
    
    .submenu{
        margin-top: 15px;
    }
    
    .plus-to-minus:before{
        margin-left: 1%;
    }
    
    .plus-to-minus:after{
        margin-top: 1%;
    }
    
    .spacer{
        height: 20vh;
    }
    
    #carrusel-servicios-uno,
    #carrusel-servicios-uno .slick-slider{
        height: 43vh;
    }
    
    .empresas{
        height: 175vh;
    }
    
    .empresas .slick-slider{
        height: 175vh;
    }
    
    .empresas .slick-slide{
        width: 812px;
    }
    
    .footer-logo,
    .iso{
        width: 25%;
        vertical-align: top;
        margin-bottom: 10%;
    }
    
    .footer-logo{
        margin-right: 5%;
    }
    
    .info-footer ul{
        text-align: center;
    }
    
    footer ul li{
        margin-bottom: 5%;
        display: inline-block;
        width: 45%;
    }
	
    .margen{
        width: 47.5%;
        margin-right: 1%;
        display: inline-block;
        margin-bottom: 40px;
        vertical-align: top;
    }
    
    footer .menu-social-media{
        text-align: center;
        margin: 10% 0;
    }
    
    footer .copyright{
        text-align: center;
    }
    
    #carrusel-servicios-uno .slick-slide,
    #carrusel-servicios-dos .slick-slide{
        margin: 0 40px;
    }
    

}

/*TABLETAS PORTRAIT*/

@media (min-width: 768px) and (max-width: 1024px){
    html {
		font-size: 62.5%,
	}

	body {
		font-size: 1.6em;
	}

	h1 {
		font-size: 2.6em;
	}

	h2 {
		font-size: 2.4em;
	}

	h3 {
		font-size: 2.2em;
	}

	h4 {
		font-size: 2em;
	}

	h5 {
		font-size: 1.8em;
	}

	h6 {
		font-size: 1.6em;
	}
    
    header,
    .spacer{
        height: 8.5vh;
    }
    
    #menu{
        height: 91.6vh;
        top: 8.5vh;
    }
    
    #fondo,
    #fondo:before{
        height: 45vh;
    }
    
    #fondo img{
        margin-top: 4%;
    }
    
    #inicio #fondo p{
        margin-top: 4% !important;
    }
    
    .hamburger-menu{
        top: 24px;
    }
    
    #menu li a,
    #menu li a:visited,
    #menu li a:hover,
    #menu li a:active,
    #menu li a:focus,
    #menu li p {
        font-size: 2rem;
    }
    
    #menu .menu-contacto li a{
        font-size: 1.8rem;
    }
    
    #menu .menu-contacto .menu-icon {
        width: 30px;
    }
    
    .logo{
        width: 20%;
    }
    
    .plus-to-minus:before{
        margin-left: 1.1%;
    }
    
    .plus-to-minus:after{
        margin-top: 1.1%;
    }
    
    #carrusel-servicios-dos{
        width: 90%;
        height: 40vh;
    }
    
    #carrusel-servicios-dos .slick-track{
        width: 100%;
    }
    
    #carrusel-servicios-dos .slick-slide,
    #carrusel-servicios-uno .slick-slide{
        width: 600px;
        margin: 0 40px;
    }
    
     .empresas{
        height: 40vh;
    }
    
    .empresas .slick-slider{
        height: 40vh;
    }
    
    .empresas .slick-slide{
        width: 768px;
        margin: 0 20px;
    }
    
    .logo-empresa {
        width: 30% !important;
        height: 30% !important;
        display: block;
        margin: 5px auto;
    }
    
    .contacto{
        height: 70vh;
    }
    
    .footer-logo,
    .iso{
        width: 30%;
        margin-right: 10%;
        vertical-align: top;
        margin-bottom: 10%;
    }
    
    footer a,
    footer a:visited{
        font-size: 2rem;
    }
    
    footer ul li{
        margin-bottom: 5%;
    }
    
    .info-footer{
        margin-bottom: 20px;
    }
    
    .info-footer p{
        font-size: 2rem;
        margin-bottom: 3%;
    }
    
    .margen{
        width: 46%;
        margin-right: 2%;
        display: inline-block;
        vertical-align: top;
    }
    
    footer .menu-social-media{
        margin: 6% 0;
    }
    
    footer .copyright{
        font-size: 2rem;
    }

}

/*TALETAS LANDSCAPE*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape){
    html {
		font-size: 62.5%,
	}

	body {
		font-size: 1.6em;
	}

	h1 {
		font-size: 2.6em;
	}

	h2 {
		font-size: 2.4em;
	}

	h3 {
		font-size: 2.2em;
	}

	h4 {
		font-size: 2em;
	}

	h5 {
		font-size: 1.8em;
	}

	h6 {
		font-size: 1.6em;
	}
    
    .hamburger-menu{
        top: 14px;
    }
    
    .logo{
        width: 14%;
        margin-top: 8px;
    }
    
    .plus-to-minus:before{
        margin-left: 0.8%;
    }
    
    .plus-to-minus:after{
        margin-top: 0.8%;
    }
    
    #carrusel-servicios-dos{
        width: 100%;
        height: 40vh;
    }
    
    #carrusel-servicios-dos .slick-slider{
        width: 100%;
    }
    
    .empresas{
        height: 45vh;
    }
    
    .empresas .slick-slider{
        height: 45vh;
    }
    
    .empresas .slick-slide{
        width: 768px;
        margin: 0 40px;
    }
    
    .logo-empresa {
        width: 30% !important;
        height: 30% !important;
        display: block;
        margin: 5px auto;
    }
    
    .footer-logo,
    .iso{
        width: 30%;
        margin-right: 10%;
        vertical-align: top;
        margin-bottom: 10%;
    }
    
    footer a,
    footer a:visited{
        font-size: 1.8rem;
    }
    
    footer ul li{
        margin-bottom: 3%;
    }
    
    .info-footer{
        margin-bottom: 15px;
    }
    
    .info-footer p{
        font-size: 1.8rem;
        margin-bottom: 3%;
    }
    
    .margen{
        width: 46%;
        margin-right: 2%;
        display: inline-block;
        vertical-align: top;
    }
    
    footer .menu-social-media{
        margin: 6% 0;
    }
    
    footer .copyright{
        font-size: 2rem;
    }
}

/* Tabletas Landscape ----------*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio : 2){

    html {
		font-size: 62.5%,
	}

	body {
		font-size: 1.6em;
	}

	h1 {
		font-size: 2.6em;
	}

	h2 {
		font-size: 2.4em;
	}

	h3 {
		font-size: 2.2em;
	}

	h4 {
		font-size: 2em;
	}

	h5 {
		font-size: 1.8em;
	}

	h6 {
		font-size: 1.6em;
	}
    
    .hamburger-menu{
        top: 14px;
    }
    
    .logo{
        width: 14%;
        margin-top: 8px;
    }
    
    .plus-to-minus:before{
        margin-left: 0.8%;
    }
    
    .plus-to-minus:after{
        margin-top: 0.8%;
    }
    
    #carrusel-servicios-dos{
        width: 100%;
        height: 40vh;
    }
    
    #carrusel-servicios-dos .slick-slider{
        width: 100%;
    }
    
    .empresas{
        height: 45vh;
    }
    
    .empresas .slick-slider{
        height: 45vh;
    }
    
    .empresas .slick-slide{
        width: 768px;
        margin: 0 40px;
    }
    
    .logo-empresa {
        width: 30% !important;
        height: 30% !important;
        display: block;
        margin: 5px auto;
    }
    
    .footer-logo,
    .iso{
        width: 30%;
        margin-right: 10%;
        vertical-align: top;
        margin-bottom: 10%;
    }
    
    footer a,
    footer a:visited{
        font-size: 1.8rem;
    }
    
    footer ul li{
        margin-bottom: 3%;
    }
    
    .info-footer{
        margin-bottom: 15px;
    }
    
    .info-footer p{
        font-size: 1.8rem;
        margin-bottom: 3%;
    }
    
    .margen{
        width: 46%;
        margin-right: 2%;
        display: inline-block;
        vertical-align: top;
    }
    
    footer .menu-social-media{
        margin: 6% 0;
    }
    
    footer .copyright{
        font-size: 2rem;
    }

}

/* Tabletas Portrait ----------*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio : 2) {

    html {
		font-size: 62.5%,
	}

	body {
		font-size: 1.6em;
	}

	h1 {
		font-size: 2.6em;
	}

	h2 {
		font-size: 2.4em;
	}

	h3 {
		font-size: 2.2em;
	}

	h4 {
		font-size: 2em;
	}

	h5 {
		font-size: 1.8em;
	}

	h6 {
		font-size: 1.6em;
	}
    
    header,
    .spacer{
        height: 8.5vh;
    }
    
    #menu{
        height: 91.6vh;
        top: 8.5vh;
    }
    
    #fondo,
    #fondo:before{
        height: 30vh;
    }
    
    #fondo img{
        margin-top: 4%;
    }
    
    .hamburger-menu{
        top: 24px;
    }
    
    #menu li a,
    #menu li a:visited,
    #menu li a:hover,
    #menu li a:active,
    #menu li a:focus,
    #menu li p {
        font-size: 2rem;
    }
    
    #menu .menu-contacto li a{
        font-size: 1.8rem;
    }
    
    #menu .menu-contacto .menu-icon {
        width: 30px;
    }
    
    .logo{
        width: 20%;
    }
    
    .plus-to-minus:before{
        margin-left: 1.1%;
    }
    
    .plus-to-minus:after{
        margin-top: 1.1%;
    }
    
    #carrusel-servicios-dos{
        width: 90%;
        height: 40vh;
    }
    
    #carrusel-servicios-dos .slick-track{
        width: 100%;
    }
    
    #carrusel-servicios-dos .slick-slide,
    #carrusel-servicios-uno .slick-slide{
        width: 600px;
        margin: 0 40px;
    }
    
     .empresas{
        height: 40vh;
    }
    
    .empresas .slick-slider{
        height: 40vh;
    }
    
    .empresas .slick-slide{
        width: 768px;
        margin: 0 20px;
    }
    
    .logo-empresa {
        width: 30% !important;
        height: 30% !important;
        display: block;
        margin: 5px auto;
    }
    
    .contacto{
        height: 45vh;
    }
    
    .footer-logo,
    .iso{
        width: 30%;
        margin-right: 10%;
        vertical-align: top;
        margin-bottom: 10%;
    }
    
    footer a,
    footer a:visited{
        font-size: 2rem;
    }
    
    footer ul li{
        margin-bottom: 5%;
    }
    
    .info-footer{
        margin-bottom: 20px;
    }
    
    .info-footer p{
        font-size: 2rem;
        margin-bottom: 3%;
    }
    
    .margen{
        width: 46%;
        margin-right: 2%;
        display: inline-block;
        vertical-align: top;
    }
    
    footer .menu-social-media{
        margin: 6% 0;
    }
    
    footer .copyright{
        font-size: 2rem;
    }
}

/* Laptops 12" ----------*/

@media screen and (min-width: 1025px) and (max-width: 1281px) {

	/* General ++++++++++*/
	
	body {
		width: 100%;
	}

	a,
	a:visited {

	}

	a:hover {

	}

	a:active {

	}

	a:focus {

	}

/* Estilos tipográficos ++++++++++*/

	html {
		font-size: 62.5%,
	}

	body {
		font-size: 1.6em;
	}

	h1 {
		font-size: 2.8em;
	}

	h2 {
		font-size: 2.6em;
	}

	h3 {
		font-size: 2.4em;
	}

	h4 {
		font-size: 2.2em;
	}

	h5 {
		font-size: 2em;
	}

	h6 {
		font-size: 1.8em;
	}
    
    footer a, footer a:visited{
        font-size: .9rem;
    }

    #menu li a,
    #menu li a:visited,
    #menu li a:hover,
    #menu li a:active,
    #menu li a:focus,
    #menu li p{
        font-size: 1.3rem;
    }
    
/* Cabecera ++++++++++*/
	.hamburger-menu {
		display: none;
	}
    
    header{
        width: 22%;
        height: 100%;
        background: var(--rojo);
    }
    
    .logo{
        width: 70%;
        margin: 20px auto;
        display: block;
    }
    
    .st0, .st1{
        fill: white !important;
    }
    
    #menu{
        left: 0;
        width: 100%;
        height: auto;
        position: static;
        overflow-y: auto;
    }
    
    #menu ul,
    #menu ol{
        opacity: 1;
    }


    .menu-social-media {
        width: 90%;
    }
    
    #menu li{
        margin-bottom: 15px;
    }
    
    ol li a{
        display: block;
    }
    
    .submenu{
        margin-top: 20px;
    }
    
    .plus-to-minus:before{
        margin-left: 2.9%;    
    }
    
    .plus-to-minus:after{
        margin-top: 2.9%;
    }
    
    
/* Estructura  ++++++++++*/

    .spacer{
        height: 40px;
    }
    
    main{
        width: 78%;
        margin-left: 22%;
    }
    
    section{
        width: 95%;
        margin: 0 auto;
    }
    
    /*Inicio.php*/
    
    #fondo,
    #fondo:before{
        height: 40vh;
    }
    
    #fondo img{
        margin-top: 4%;
    }
    
    #fondo p{
        width: 40%;
        font-weight: 700;
    }
    
    .ver-cincuenta{
        text-align: center;
    }
    
    .ver-cincuenta h2{
        width: 70%;
        text-align: left;
        margin-left: 0;
    }
    
    #inicio .ver-cincuenta p{
        width: 40%;
        display: inline-block;
        margin: 20px 15px;
        vertical-align: top;
        text-align: left;
    }
    
    .bt-fill-red{
        width: 30%;
        margin: 20px auto;
        margin-bottom: 80px;
    }

    
    #servicios .bt-fill-red{
        width: 30%;
        margin: 30px auto;
        display: inline-block;
        margin-right: 20px;
    }

    #servicios{
        text-align: center;
    }
    
    .servicio-inicio{
        width: 49.2%;
        padding: 20px 0;
        margin: 20px 0;
        min-height: 60vh;
        display: inline-block;
        vertical-align: top;
        text-align: right;
    }
    
    .servicio-inicio p{
        text-align: left;
    }
    
    .servicio-inicio:first-child{
        margin-right: 1%;
    }
    
    .portafolio-inicio{
        margin-bottom: 80px;
    }

    #bt-portafolio{
        width: 30%;
    }
    
    .contacto{
        height: 52vh;
    }
    
    .tarjeta-contacto{
        width: 70%;
        height: 72%;
        left: 15%;
        top: 15%;
    }
    
    .tarjeta-contacto .bt-fill-red{
        margin-bottom: 0;
    }
    
/* Pie ++++++++++*/

    footer{
        width: 78%;
        margin-left: 22%;
        padding: 2%;
        text-align: left;
        position: relative;
    }
	
    .footer-logo{
        width: 10%;
        margin-right: 3%;
    }
    
    .iso{
        width: 10%;
        position: absolute;
        left: 2%;
        top: 30%;
        margin-bottom: 0;
    }
    
    .info-footer{
        width: 26.5%;
        margin-right: 10px;
        display: inline-block;
        vertical-align: top;
    }
    
    .info-footer h4{
        width: 30%;
        font-size: 1.3rem;
        display: inline-block;
        vertical-align: top;
        text-align: left;
    }
    
    .info-footer ul{
        width: 65%;
        display: inline-block;
        vertical-align: top;
    }
    
    .info-footer ul li a .menu-icon{
        margin-right: 5px;
    }
    .info-footer p{
        width: 100%;
        display: inline-block;
        vertical-align: top;
    }
    
    .info-footer .margen{
        width: 33%;
        display: inline-block;
    }
    
    footer .margen li{
        margin-left: 0;
    }
    
    footer .menu-social-media{
        text-align: center;
    }
    
    /*Solutions.PHP*/
    
    #fondo-cleantech, #fondo-industrial-engineering{
        height: 30vh;
    }
    
    #inicio-solutions h2{
        margin: 5% auto;
    }
    
    #inicio-solutions p{
        width: 65%;
        margin-bottom: 10%;
    }
    
    #servicios-cleantech #carrusel-servicios-uno .slick-slide,
    #servicios-cleantech #carrusel-servicios-dos .slick-slide{
        margin: 0 10px;
    }
    
    #servicios-cleantech #carrusel-servicios-dos{
        width: 80%;
        height: 400px;
        margin: 0 auto;
        margin-bottom: 20%;
    }
    
    /*Solucion abierta.PHP*/
    
    #servicios-solutions{
        height: 50vh;
        position: relative;
        margin-bottom: 80px;
    }
    
    .logo-partner{
        width: 30%;
        display: inline-block;
    }
    
    #servicios-solutions #carrusel-servicios-uno,
    #servicios-solutions #carrusel-servicios-dos{
        width: 50%;
        height: 50vh;
        margin: 0 auto;
        float: left;
    }
    
    #servicios-solutions #carrusel-servicios-uno .slick-slide,
    #servicios-solutions #carrusel-servicios-dos .slick-slide{
        margin: 0 10px;
    }
    
    .letrero-rojo{
        width: 35%;
        left: 6%;
    }
    
    .acerca{
        position: relative;
        margin-bottom: 80px;
        padding: 30px 0;
    }
    
    .acerca h2,
    .acerca h3{
        width: 40%;
        margin-left: 0;
    }
    
    .acerca p{
        width: 30%;
        display: inline-block;
        vertical-align: top;
        margin-right: 1%;
    }
    
    .acerca2{
        position: relative;
        margin-bottom: 80px;
        padding: 0;
        padding-bottom: 30%;
    }
    
    .acerca2 h2,
    .acerca2 h3{
        width: 40%;
        margin-left: 0;
    }
    
    .acerca2 p{
        width: 30%;
        display: inline-block;
        vertical-align: top;
        margin-right: 1%;
    }
    
    .descanso-esc{
        width: 30%;
        height: 100%;
        object-fit: cover;
        display: inline-block;
        position: absolute;
        bottom: 0;
    }
    .descanso{
        width: 60%;
        height: 30%;
        display: block;
    }
    
    .empresas{
        height: 55vh;
        margin-bottom: 80px;
        position: relative;
    }
    
    .empresas .slick-slider{
        width: 100%;
        height: 100%;
    }
    
    .carrusel-empresas .slick-slide{
        margin: 0 10px;
    }
    
    .empresas .slick-slide p{
        width: 90%;
    }
    
    /*NOSOTROS.PHP*/
    
    .tarjeta h2{
        font-size: 3rem;
    }
    
    
    /*Contacto.php*/
    
    #contacto{
        height: 85vh;
        margin-bottom: 80px;
        position: relative;
    }
    
    #contacto h2{
        margin-top: 0;
        margin-bottom: 25px;
    }
    
    #wpcf7-f19-o1{
        width: 30%;
        margin-left: 10%;
        display: inline-block;
    }
    
    #contacto form{
        width: 100%;
    }
    
    #contacto form label{
        height: 50px;
    }
    
    #contacto form input, #contacto form select {
        height: 50px;
    }
    
    #contacto form label, #contacto form textarea{
        margin-bottom: 45px;
    }
    
    #contacto .menu-contacto{
        width: 35%;
        display: inline-block;
        vertical-align: top;
        margin-top: 0;
        margin-left: 20%;
    } 
    
    #contacto .menu-contacto li{
        margin-top: 0;
        margin-left: 0;
    }
    
    #contacto .menu-contacto li a{
        margin-left: 0;
    }
    
    #contacto iframe{
        width: 50%;
        height: 40vh;
        position: absolute;
        right: 0;
        bottom: 0;
    }


}

/*Escritorio*/
@media screen and (min-width: 1282px) and (max-width: 1919px) {
	
	/* General ++++++++++*/
	
	body {
		width: 100%;
	}

	a,
	a:visited {

	}

	a:hover {

	}

	a:active {

	}

	a:focus {

	}

/* Estilos tipográficos ++++++++++*/

	html {
		font-size: 62.5%,
	}

	body {
		font-size: 1.6em;
	}

	h1 {
		font-size: 3.2em;
	}

	h2 {
		font-size: 3em;
	}

	h3 {
		font-size: 2.8em;
	}

	h4 {
		font-size: 2.6em;
	}

	h5 {
		font-size: 2.4em;
	}

	h6 {
		font-size: 2.2em;
	}
    
    #menu li a,
    #menu li a:visited,
    #menu li a:hover,
    #menu li a:active,
    #menu li a:focus,
    #menu li p {
        font-size: 1rem;
    }

/* Cabecera ++++++++++*/
    
	.hamburger-menu {
		display: none;
	}
    
    header{
        width: 15%;
        height: 100%;
        background: var(--rojo);
    }
    
    .logo{
        width: 70%;
        margin: 20px auto;
        display: block;
    }
    
    .st0, .st1{
        fill: white !important;
    }
    
    #menu{
        left: 0;
        width: 100%;
        height: auto;
        position: static;
        overflow-y: auto;
    }
    
    .menu-contacto{
        width: 95%;
    }
    
    .menu-social-media{
        width: 96%;
    }
    
    .menu-social-media li{
        margin-left: 5px !important;
    }
    
    
    #menu ul,
    #menu ol{
        opacity: 1;
    }


    #menu li{
        margin-bottom: 15px;
    }
    
    .submenu{
        margin-top: 20px;
    }
    
    
/* Estructura  ++++++++++*/

    .spacer{
        height: 40px;
    }
    
    main{
        width: 85%;
        margin-left: 15%;
    }
    
    section{
        width: 95%;
        margin: 0 auto;
    }
    
    /*Inicio.php*/
    
    #fondo,
    #fondo:before{
        height: 50vh;
    }
    
    
    #fondo img{
        margin-top: 6%;
    }
    
    #inicio #fondo p{
        width: 40% !important;
        font-weight: 700;
    }
    
    .ver-cincuenta{
        text-align: center;
    }
    
    .ver-cincuenta h2{
        width: 70%;
        text-align: left;
        margin: 0;
    }
    
    #inicio .ver-cincuenta p{
        width: 40%;
        display: inline-block;
        margin: 20px 15px;
        vertical-align: top;
        text-align: left;
    }
    
    .bt-fill-red{
        width: 30%;
        margin: 20px auto;
        margin-bottom: 80px;
    }
    
    .plus-to-minus:before {
        margin-left: 4%;
    }
    
    .plus-to-minus:after {
        margin-top: 4%;
    }
    
    #servicios .bt-fill-red{
        width: 30%;
        margin: 30px auto;
        display: inline-block;
        margin-right: 20px;
    }

    
    #servicios{
        text-align: center;
    }
    
    .servicio-inicio{
        width: 49.2%;
        min-height: 73vh;
        margin: 20px 0;
        display: inline-block;
        vertical-align: top;
        text-align: right;
    }
    
    .servicio-inicio p{
        text-align: left;
    }
    
    .servicio-inicio:first-child{
        margin-right: 1%;
    }
    
    .portafolio-inicio{
        margin-bottom: 80px;
    }

    #bt-portafolio{
        width: 30%;
    }
    
    .contacto{
        height: 80vh;
    }
    
    .tarjeta-contacto{
        width: 45%;
        height: 75%;
        left: 28%;
        top: 18%;
    }
    
/* Pie ++++++++++*/

    footer{
        width: 85%;
        margin-left: 15%;
        padding: 2%;
        text-align: left;
        position: relative;
    }
	
    .footer-logo{
        width: 15%;
        margin-right: 5%;
    }
    
    .iso{
        width: 15%;
        position: absolute;
        left: 2%;
        top: 40%;
        margin-bottom: 0;
    }
    
    .info-footer{
        width: 25%;
        margin-right: 10px;
        display: inline-block;
        vertical-align: top;
    }
    
    
    .info-footer h4{
        width: 30%;
        font-size: 1.4rem;
        display: inline-block;
        vertical-align: top;
        text-align: left;
    }
    
    .info-footer ul{
        width: 66%;
        display: inline-block;
        vertical-align: top;
        text-align: left;
    }
    
    .info-footer ul li{
        width: 100%;
    }
    
    .info-footer p{
        width: 100%;
        display: inline-block;
        vertical-align: top;
    }
    
    .info-footer .margen{
        width: 32%;
        display: inline-block;
    }
    
    footer .margen li{
        margin-left: 0;
    }
    
    footer .menu-social-media{
        text-align: center;
    }
    
    footer a, footer a:visited{
        font-size: 1.1rem;
    }
    
    /*Solutions.PHP*/
    
    #inicio-solutions h2{
        margin: 5% auto;
    }
    
    #inicio-solutions p{
        width: 50%;
        margin-bottom: 10%;
    }
        
    #servicios-cleantech #carrusel-servicios-uno .slick-slide,
    #servicios-cleantech #carrusel-servicios-dos .slick-slide{
        margin: 0 20px;
    }
    
    #servicios-cleantech #carrusel-servicios-dos{
        width: 65%;
        height: 650px;
        margin: 0 auto;
        margin-bottom: 20%;
    }
    
    /*Solucion abierta.PHP*/
    
    #servicios-solutions{
        height: 50vh;
        position: relative;
        margin-bottom: 80px;
    }
    
    .logo-partner{
        width: 30%;
        display: inline-block;
    }
    
    #servicios-solutions #carrusel-servicios-uno,
    #servicios-solutions #carrusel-servicios-dos{
        width: 50%;
        height: 50vh;
        margin: 0 auto;
        float: left;
    }
    
    #servicios-solutions #carrusel-servicios-uno .slick-slide,
    #servicios-solutions #carrusel-servicios-dos .slick-slide{
        margin: 0 10px;
    }
    
    .letrero-rojo{
        width: 35%;
        left: 6%;
    }
    
    .acerca{
        position: relative;
        margin-bottom: 80px;
    }
    
    .acerca h2,
    .acerca h3{
        width: 40%;
        margin-left: 0;
    }
    
    .acerca p{
        width: 30%;
        display: inline-block;
        vertical-align: top;
        margin-right: 1%;
    }
    
    .acerca2{
        height: 100vh;
        position: relative;
        margin-bottom: 80px;
    }
    
    .acerca2 h2,
    .acerca2 h3{
        width: 40%;
        margin-left: 0;
    }
    
    .acerca2 p{
        width: 30%;
        display: inline-block;
        vertical-align: top;
        margin-right: 1%;
        margin-bottom: 4.6%;
    }
    
    .descanso-esc{
        width: 30%;
        height: 100%;
        object-fit: cover;
        display: inline-block;
        position: absolute;
        bottom: 0;
    }
    .descanso{
        width: 60%;
        height: 35%;
        display: block;
    }
    
    .empresas{
        height: 55vh;
        margin-bottom: 80px;
        position: relative;
    }
    
    .empresas .slick-slider{
        width: 100%;
        height: 100%;
    }
    
    .carrusel-empresas .slick-slide{
        margin: 0 10px;
    }
    
    /*NOSOTROS.PHP*/
    
    .empresas .slick-slide p{
        margin: 0 auto;
        width: 90%;
    }
    
    /*Contacto.php*/
    
    #contacto{
        height: 100vh;
        margin-bottom: 80px;
        position: relative;
    }
    
    #contacto h2{
        margin-top: 0;
        margin-bottom: 25px;
    }
    
    #wpcf7-f19-o1{
        width: 30%;
        margin-left: 10%;
        display: inline-block;
    }
    
    #contacto form{
        width: 100%;
    }
    
    #contacto form label, #contacto form textarea{
        margin-bottom: 45px;
    }
    
    #contacto .menu-contacto{
        width: 22%;
        display: inline-block;
        vertical-align: top;
        margin-top: 0;
        margin-left: 20%;
    } 
    
    #contacto .menu-contacto li{
        margin-top: 0;
    }
    
    #contacto iframe{
        width: 50%;
        height: 40vh;
        position: absolute;
        right: 0;
        bottom: 0;
    }
}

@media (min-width: 1920px) {
    /* General ++++++++++*/
	
	body {
		width: 100%;
	}

	a,
	a:visited {

	}

	a:hover {

	}

	a:active {

	}

	a:focus {

	}

/* Estilos tipográficos ++++++++++*/

	html {
		font-size: 62.5%,
	}

	body {
		font-size: 1.6em;
	}

	h1 {
		font-size: 3.2em;
	}

	h2 {
		font-size: 3em;
	}

	h3 {
		font-size: 2.8em;
	}

	h4 {
		font-size: 2.6em;
	}

	h5 {
		font-size: 2.4em;
	}

	h6 {
		font-size: 2.2em;
	}

/* Cabecera ++++++++++*/
	.hamburger-menu {
		display: none;
	}
    
    header{
        width: 15%;
        height: 100%;
        background: var(--rojo);
    }
    
    .logo{
        width: 70%;
        margin: 20px auto;
        display: block;
    }
    
    .st0, .st1{
        fill: white !important;
    }
    
    #menu{
        left: 0;
        width: 100%;
        height: auto;
        position: static;
        overflow-y: auto;
    }
    
    #menu ul,
    #menu ol{
        opacity: 1;
    }


    #menu li{
        margin-bottom: 15px;
    }
    
    .submenu{
        margin-top: 20px;
    }
    
    
/* Estructura  ++++++++++*/

    .spacer{
        height: 40px;
    }
    
    main{
        width: 85%;
        margin-left: 15%;
    }
    
    section{
        width: 95%;
        margin: 0 auto;
    }
    
    /*Inicio.php*/
    
    #fondo{
        height: 45vh;
    }
    
    #fondo:before{
        height: 45vh;
    }
    
    #fondo img{
        margin-top: 4%;
    }
    
    #inicio #fondo p{
        width: 40% !important;
        font-weight: 700;
        margin-top: 4% !important;
    }
    
    .ver-cincuenta{
        text-align: center;
    }
    
    .ver-cincuenta h2{
        width: 70%;
        text-align: left;
        margin: 0;
    }
    
    #inicio .ver-cincuenta p{
        width: 40%;
        display: inline-block;
        margin: 20px 15px;
        vertical-align: top;
        text-align: left;
    }
    
    .bt-fill-red{
        width: 30%;
        margin: 20px auto;
        margin-bottom: 80px;
    }
    
    .plus-to-minus:before {
        margin-left: 2.5%;
    }
    
    .plus-to-minus:after {
        margin-top: 2.5%;
    }
    
    #servicios .bt-fill-red{
        width: 30%;
        margin: 60px auto;
        display: inline-block;
        margin-right: 20px;
    }

    
    #servicios{
        text-align: center;
    }
    
    .servicio-inicio{
        width: 49.2%;
        min-height: 64vh;
        margin: 20px 0;
        display: inline-block;
        vertical-align: top;
        text-align: right;
    }
    
    .servicio-inicio p{
        text-align: left;
    }
    
    .servicio-inicio:first-child{
        margin-right: 1%;
    }
    
    .portafolio-inicio{
        margin-bottom: 80px;
    }

    #bt-portafolio{
        width: 30%;
    }
    
    .contacto{
        height: 80vh;
    }
    
    .tarjeta-contacto{
        width: 45%;
        height: 65%;
        left: 28%;
        top: 18%;
    }
    
/* Pie ++++++++++*/

    footer{
        width: 85%;
        margin-left: 15%;
        padding: 2%;
        text-align: left;
        position: relative;
    }
	
    .footer-logo{
        width: 15%;
        margin-right: 5%;
    }
    
    .iso{
        width: 15%;
        position: absolute;
        left: 2%;
        top: 40%;
        margin-bottom: 0;
    }
    
    .info-footer{
        width: 25%;
        margin-right: 10px;
        display: inline-block;
        vertical-align: top;
    }
    
    
    .info-footer h4{
        width: 30%;
        font-size: 1.6rem;
        display: inline-block;
        vertical-align: top;
        text-align: left;
    }
    
    .info-footer ul{
        width: 45%;
        display: inline-block;
        vertical-align: top;
        text-align: left;
    }
    
    .info-footer ul li{
        width: 100%;
    }
    
    .info-footer p{
        width: 100%;
        display: inline-block;
        vertical-align: top;
    }
    
    .info-footer .margen{
        width: 32%;
        display: inline-block;
    }
    
    footer .margen li{
        margin-left: 0;
    }
    
    footer .menu-social-media{
        text-align: center;
    }
    
    /*Solutions.PHP*/
    
    #inicio-solutions h2{
        margin: 5% auto;
    }
    
    #inicio-solutions p{
        width: 50%;
        margin-bottom: 10%;
    }
        
    #servicios-cleantech #carrusel-servicios-uno .slick-slide,
    #servicios-cleantech #carrusel-servicios-dos .slick-slide{
        margin: 0 20px;
    }
    
    #servicios-cleantech #carrusel-servicios-dos{
        width: 65%;
        height: 400px;
        margin: 0 auto;
        margin-bottom: 20%;
    }
    
    /*Solucion abierta.PHP*/
    
    #servicios-solutions{
        height: 50vh;
        position: relative;
        margin-bottom: 80px;
    }
    
    .logo-partner{
        width: 30%;
        display: inline-block;
    }
    
    #servicios-solutions #carrusel-servicios-uno,
    #servicios-solutions #carrusel-servicios-dos{
        width: 50%;
        height: 50vh;
        margin: 0 auto;
        float: left;
    }
    
    #servicios-solutions #carrusel-servicios-uno .slick-slide,
    #servicios-solutions #carrusel-servicios-dos .slick-slide{
        margin: 0 10px;
    }
    
    .letrero-rojo{
        width: 35%;
        left: 6%;
    }
    
    .acerca{
        position: relative;
        margin-bottom: 80px;
    }
    
    .acerca h2,
    .acerca h3{
        width: 40%;
        margin-left: 0;
    }
    
    .acerca p{
        width: 30%;
        display: inline-block;
        vertical-align: top;
        margin-right: 1%;
    }
    
    .acerca2{
        height: 70vh;
        position: relative;
        margin-bottom: 80px;
    }
    
    .acerca2 h2,
    .acerca2 h3{
        width: 40%;
        margin-left: 0;
    }
    
    .acerca2 p{
        width: 30%;
        display: inline-block;
        vertical-align: top;
        margin-right: 1%;
    }
    
    .descanso-esc{
        width: 30%;
        height: 100%;
        object-fit: cover;
        display: inline-block;
        position: absolute;
        bottom: 0;
    }
    .descanso{
        width: 60%;
        height: 50%;
        position: absolute;
        left: 0;
        bottom: 0;
        display: block;
    }
    
    .empresas{
        height: 55vh;
        margin-bottom: 80px;
        position: relative;
    }
    
    .empresas .slick-slider{
        width: 100%;
        height: 100%;
    }
    
    .carrusel-empresas .slick-slide{
        margin: 0 10px;
    }
    
    /*NOSOTROS.PHP*/
    
    
    /*Contacto.php*/
    
    #contacto{
        height: 85vh;
        margin-bottom: 80px;
        position: relative;
    }
    
    #contacto h2{
        margin-top: 0;
        margin-bottom: 25px;
    }
    
    #wpcf7-f19-o1{
        width: 30%;
        margin-left: 10%;
        display: inline-block;
    }
    
    #contacto form{
        width: 100%;
    }
    
    #contacto form label, #contacto form textarea{
        margin-bottom: 45px;
    }
    
    #contacto .menu-contacto{
        width: 22%;
        display: inline-block;
        vertical-align: top;
        margin-top: 0;
        margin-left: 20%;
    } 
    
    #contacto .menu-contacto li{
        margin-top: 0;
    }
    
    #contacto iframe{
        width: 50%;
        height: 40vh;
        position: absolute;
        right: 0;
        bottom: 0;
    }

}