@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/*********************
 * PALETA DE COLORES *
 ********************/
:root{
   --aqua: #17adbb;
   --azul-marino: #2e3d50;
   --fondo-azul: #293e51;
   --work: "Work Sans", sans-serif;
   --poppins: "Poppins", sans-serif;;
}

/*********************
 * ESTILOS GENERALES *
 ********************/
.top{
    width: 100%;
    height: 120px;
    background-color: var(--fondo);
}
*{
    box-sizing: border-box;
    position: relative;
    margin: 0px;
}
body{
    margin: 0 auto;
    font-family: var(--work);
    -webkit-font-smoothing:antialiased;
    background-color: #FFF;
    color: var(--azul-marino);
}
section{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 4vw;
    padding-bottom: 3vw;
    padding-right: 8%;
    padding-left: 8%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
section > aside{
	display: flex;
	justify-content: center;
	align-items: center;
}
h1{
    font-size: 3vw;
    font-family: var(--work);
    font-weight: 600;
    line-height: .9;
    text-align: center;
    color: var(--azul-marino);
  	font-variation-settings: "wdth" 75;
    width: 100%;
}
h2{
    font-size: 2.2vw;
    color: var(--azul-marino);
    font-variation-settings: "wdth" 75;
    font-weight: 500;
    line-height:.9;
    width: 100%;
}
h3{
    font-size: 1.3vw;
}
p{
    font-size: 1.1vw;
    font-weight: 400;
    line-height: 1.2;
}
a{
    text-decoration: none;
    color: inherit;
}
.tope{
    position: relative;
    width: 100%;
    /*height: 90px;*/
}

/*********************
 *      HEADER       *
 ********************/
header{
    position: fixed;
    width: 100%;
    height: 90px;
    top: 0px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 16;
    /*background-color: rgba(255,255,255,1);*/
    /* box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);*/
}
header.header-general > a{
    background-image: url(images/logo_footer.png);
}
header.activo{
    background: rgba(30, 46, 60, 0.9);
}

header.activo > a{
    background-image: url(images/logo_menu.png);
}
header > p{
    position: absolute;
    width: 130px;
    right: 0px;
    bottom: 0px;
    padding-bottom: 10px;
    display: block;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    text-align: center;
    cursor: pointer;
}
header > a{
    width: 250px;
    height: 100%;
    margin-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*border-right: solid 1px #ccc;*/
    background-image: url(images/logo_menu.png);
    background-size: 90%;
    background-position: center .7vw;
    background-repeat: no-repeat;
}
header > a > img{
    width: 85%;
    margin-left: 2.5%;
    margin-right: 2.5%;
    z-index: 2;
}
header > nav{
    width:calc(100% - 480px);
    height: 55%;
    margin-right: 200px;
    margin-left: 50px;
    padding-left: 5px;
    padding-right: 5px;
    /*padding-left: 5%;
    padding-right: 5%;*/
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    background: rgba(30, 46, 60, 0.9);
}
header > nav.inactivo{
    background-color: transparent;
}
header > nav > a, header > nav > p{
    font-size: 14px;
    padding-left: 30px;
    padding-right: 30px;
    font-weight: 400;
    color: #FFF;
    height: 90%;
    line-height: 45px;
    cursor: pointer;
    border-radius: 30px;
}
header > nav > a:hover{
    background-color: var(--aqua);
    color: #FFF;
}
header > nav > a:nth-child(1){
    background-color: var(--aqua);
    color: #FFF;
}
header > nav > div{
    font-size: 14px;
    font-weight: 700;
    color: var(--azul-marino);
    height: 100%;
    line-height: 90px;
    padding-left: 20px;
    padding-right: 20px;
}
header > nav > div > article{
    background-color: var(--azul-marino);
    color: #FFF;
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 370px;
    left: -117px;
    padding: 20px;
    top: 90px;
    display: none;
}
/*header > nav > div:hover > article{
    display: flex;
}*/
/*header > nav > div:hover{
    background-color: var(--azul-marino);
    color: #FFF;
}*/
header > nav > div > article > a{
    line-height: 1.2;
    font-weight: 500;
}
header > nav > div > article > a:hover{
    font-weight: 700;
}
header > div{
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border-left: solid 1px #ccc;*/
}
header > div > a{
    margin: 1vw;
}

/*********************
 *    BOTON MENU     *
 ********************/
input[type="checkbox"], .logo-movil{
    display:none;
}
label{
    display: flex;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
    right: 5%;
    position:fixed;
    top: 25px;
    z-index: 20;
    box-sizing: content-box;
    padding: 10px;
    display: none;
}
label span{
    background: #fff;
    height:2px;
    margin: 3px 0;
    transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
label span:nth-of-type(1){
    width:50%;
}
label span:nth-of-type(2){
    width:100%;
}
label span:nth-of-type(3){
    width:75%;
}    
input[type="checkbox"]:checked ~ span:nth-of-type(1){
    transform-origin:bottom;
    transform:rotatez(45deg) translate(2px,0px)
}
input[type="checkbox"]:checked ~ span:nth-of-type(2){
    transform-origin:top;
    transform:rotatez(-45deg)
}
input[type="checkbox"]:checked ~ span:nth-of-type(3){ 
    transform-origin:bottom;
    width:50%;
    transform: translate(30px,-11px) rotatez(45deg);
    transform: translate(12px, -4px) rotatez(45deg);
}
.solo-movil{
    display: none;
}

/*********************
 *      INICIO       *
 ********************/
.inicio{
    background-image: url(images/banner-home.png);
    background-position: center center;
    background-size: cover;
    height: 50vw;
}
.inicio > h1{
    color: #FFF;
    font-size: 7vw;
    text-align: left;
    letter-spacing: -.4vw;
    padding-top: 5vw;
}
.inicio > h2{
    color: #FFF;
    font-size: 1.6vw;
    padding-top: 1vw;
}

/*********************
 *  PRODUCTOS HOME   *
 ********************/
.productos-home{
    flex-wrap: wrap;
    flex-direction: row;
}
/*.productos-home > h1{
    margin-bottom: 2vw;
}*/
.productos-home > article{
    width: 32%;
    height: 29vw;
    border-radius: 1.5vw;
    margin: 3.5vw;
    padding: 2vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-position: center center;
    background-size: cover;
}
.productos-home > article > h1{
    text-align: left;
    font-size: 2.5vw;
}
.productos-home > article > p{
    color: #FFF;
    font-size: 1.3vw;
    font-weight: 600;
    width: 100%;
    padding-right: 50%;
    line-height: .9;
    margin-top: .5vw;
}
.productos-home > article > a{
    background-color: var(--fondo-azul);
    color: #FFF;
    font-weight: 500;
    padding: 1vw;
    border-radius: 4vw;
    font-size: 1.2vw;
    display: block;
    width: 55%;
    text-align: center;
    margin-top: 4vw;
    margin-left: 45%;
}
.productos-home > article:nth-child(2){
    background-image: url(images/boton_home_1.png);
}
.productos-home > article:nth-child(3){
    background-image: url(images/boton_home_2.png);
}
.productos-home > article:nth-child(3) > h1{
    text-align: right;
}
.productos-home > article:nth-child(3) > p{
    text-align: right;
    width: 100%;
    padding-right: 0px;
}
.productos-home > article > a:hover{
    background-color: var(--aqua);
}

/*********************
 *      NOSOTROS     *
 ********************/
.nosotros{
    background-color: var(--fondo-azul);
}
.nosotros > img{
    width: 55%;
}
.nosotros > h2{
    color: #FFF;
    font-weight: 700;
    text-align: center;
    margin-top: 1.5vw;
}
.nosotros > p{
    color: #FFF;
    font-weight: 600;
    font-size: 1.8vw;
    padding-left: 10%;
    padding-right: 10%;
    text-align: center;
    margin-top: 1.5vw;
    margin-bottom: 1.5vw;
}

/*********************
 *   DESINFECTANTES  *
 ********************/
.inicio-desinfectantes{
    background-image: url(images/banner-desinfeccion.png);
}
.inicio-desinfectantes > h1{
    font-size: 7vw;
    font-weight: 900;
    padding-left: 25%;
    padding-right: 25%;
    text-align: center;
    letter-spacing: 0px;
    color: var(--azul-marino);
}
.inicio-desinfectantes > h2{
    font-weight: 500;
    font-size: 2vw;
    padding-left: 25%;
    padding-right: 25%;
    text-align: center;
    color: var(--azul-marino);
}
.desinfectantes{
    padding-right: 3%;
    padding-left: 3%;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    background-color: var(--fondo-azul);
    padding-top: 0px;
}
.desinfectantes > article{
    width: 30%;
    margin: 1vw;
}
/*.desinfectantes > article:nth-child(1) > div {
    background: #2C7399;
background: linear-gradient(0deg, rgba(44, 115, 153, 1) 0%, rgba(152, 225, 225, 1) 50%, rgba(216, 239, 238, 1) 100%);
}*/
.desinfectantes > article:nth-child(1) > div > img{
    width: 65%;
}
.desinfectantes > article > div{
    width: 100%;
    height: 28vw;
    border-radius: 1vw;
    padding: 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background-color: #FFF;
    /*background: #327C9F;*/
    /*background: linear-gradient(220deg,rgba(50, 124, 159, 1) 0%, rgba(101, 186, 199, 1) 50%, rgba(156, 227, 226, 1) 100%);*/
}
.desinfectantes > article > div > div > img{
    width: 60%;
    margin-left: 18%;
    margin-right: 22%;
}
.desinfectantes > article > div > h2{
    font-size: 4vw;
    text-align: center;
    font-weight: 600;
}
.desinfectantes > article > div > a{
    background-color: var(--fondo-azul);
    color: #FFF;
    font-weight: 500;
    padding: 1vw;
    border-radius: 4vw;
    font-size: 1.2vw;
    display: block;
    width: 50%;
    text-align: center;
    margin-top: 1vw;
    margin-left: 50%;
}
.desinfectantes > article > div > div > p{
    font-size: 7vw;
    font-weight: 600;
    line-height: .8;
}
.desinfectantes > article > div > div > h3{
    font-size: 8vw;
    font-weight: 700;
    line-height: .8;
    /*font-family: var(--poppins);*/
}
.desinfectantes > article > div > h3{
    font-size: 3vw;
    font-weight: 600;
    line-height: .8;
    font-family: var(--poppins);
}
.desinfectantes > article > div > p{
    font-size: 1.4vw;
    font-family: var(--poppins);
}
.desinfectantes > article > div > img{
    width: 35%;
}
.desinfectantes > article > div > a:hover{
    background-color: var(--aqua);
}
.desinfectantes > article:nth-child(3) > div > a{
    margin-top: 5vw;
}
.desinfectantes > article > p{
    font-size: 2vw;
    padding-right: 10%;
    padding-left: 10%;
    text-align: center;
    font-weight: 600;
    padding-top: 1vw;
    color: #FFF;
}

/*********************
 *  MICROORGANISMOS  *
 ********************/
.inicio-microorganismos{
    height: 50vw;
    background-image: url(images/banner_des.png);
}
.inicio-microorganismos > h1{
    font-size: 6.5vw;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0px;
    color: #FFF;
}
.inicio-microorganismos > h2{
    font-size: 6.5vw;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0px;
    color: var(--azul-marino);
    padding-top: 0px;
}
.inicio-microorganismos > p{
    font-size: 2vw;
    margin-top: 1vw;
    font-weight: 500;
}

/*********************
 *     DIVISIONES    *
 ********************/
.divisiones{
    padding-left: 5%;
    padding-right: 5%;
    flex-direction: row;
}
.divisiones > article{
    width: 30%;
    height: 47vw;
    border-radius: 1.5vw;
    overflow: hidden;
    background-color: var(--azul-marino);
    margin: 1.5%;
    color: #FFF;
}
.divisiones > article:nth-child(1) > div{
    background-image: url(images/des_foto1.png);
}
.divisiones > article:nth-child(2) > div{
    background-image: url(images/des_foto2.png);
}
.divisiones > article:nth-child(3) > div{
    background-image: url(images/des_foto3.png);
}
.divisiones > article > article{
    padding: 4vw;
    padding-top: 2vw;
}
.divisiones > article > div{
    width: 100%;
    height: 25vw;
    border-radius: 1.5vw;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding-bottom: 2vw;
}
.divisiones > article > div > h1{
    color: #FFF;
}
.divisiones > article > article > h2{
    font-weight: 600;
    font-size: 1.8vw;
    line-height: 1.2;
    color: #FFF;
    margin-bottom: 1vw;
}
.divisiones > article > article > h3{
    font-weight: 600;
    font-size: 1.4vw;
    line-height: 1.2;
    color: #FFF;
    margin-bottom: 1vw;
}
.divisiones > article > article > ul{
    font-weight: 500;
    list-style: circle;
    padding-left: 1.5vw;
    font-size: 1.2vw;
}

/*********************
 *      CALIDAD      *
 ********************/
.calidad{
}
.calidad > img{
    margin-bottom: 2vw;
    width: 28%;
}
.calidad > h2{
    font-weight: 700;
    text-align: center;
    margin-bottom: 1vw;
}
.calidad > p{
    font-weight: 600;
    font-size: 1.8vw;
    padding-left: 7%;
    padding-right: 7%;
    text-align: center;
    margin-bottom: 3vw;
    color: var(--azul-marino);
}

/*********************
 *     CONTACTO      *
 ********************/
.contacto{
    background-image: url(images/ubicacion_fondo.png);
    background-position: center center;
    background-size: cover;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-right: 3%;
    padding-left: 5%;
}
.contacto > h1{
    color: var(--aqua);
    font-size: 7vw;
    padding-right: 50%;
    text-align: left;
    letter-spacing: -.3vw;
    padding-left: 5%;
}
.contacto > article{
    width: 50%;
    padding-left: 5%;
}
.contacto > aside{
    width: 50%;
}
.contacto > article > p{
    color: #FFF;
    font-weight: 600;
    font-size: 1.6vw;
    margin-top: 2vw;
    /*text-align: right;*/
    line-height: 1.2;
}
.contacto > article > form{
    width: 100%;
    margin-top: 3vw;
}
.contacto > article > form > input, .contacto > article > form > textarea{
    background-color: transparent;
    border: solid 1px rgba(255,255,255,.2);
    width: 100%;
    border-radius: .5vw;
    font-size: 1.2vw;
    padding-left: 3%;
    padding-right: 3%;
    font-family: var(--work);
    margin-bottom: 1vw;
    color: #FFF;
}
.contacto > article > form > input{
    height: 2.5vw;
}
.contacto > article > form > textarea{
    padding-top: .7vw;
    padding-bottom: .7vw;
}
.contacto > article > form > input[type=submit]{
    background-color: #FFF;
    width: 30%;
    margin-left: 35%;
    margin-top: 1vw;
    color: #000;
    cursor: pointer;
}
.contacto > article > form > input[type=submit]:hover{
    background-color: var(--aqua);
    color: #fff;
}
.contacto > aside > p{
    font-size: 1.6vw;
    color: #FFF;
    font-weight: 500;
    /*text-align: right;*/
    padding-left: 40%;
    padding-top: 10vw;
}

/*********************
 *  INICIO PRODUCTO  *
 ********************/
.inicio-producto{
    padding-left: 5%;
    padding-right: 5%;
    height: 36vw;
    padding-top: 10vw;
    flex-direction: row;
    flex-wrap: wrap;
    font-family: var(--poppins);
}
.inicio-producto > article{
    width: 34%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.inicio-producto > div{
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.inicio-producto > article > h3{
    letter-spacing: -.2vw;
    text-align: center;
    line-height: 1;
}
.inicio-producto > article > a{
    background-color: var(--azul-marino);
    color: #FFF;
    padding: .3vw;
    padding-top: .1vw;
    padding-left: 1vw;
    padding-right: 1vw;
    font-size: 1.8vw;
    font-weight: 600;
    border-radius: 2vw;
    margin-top: 2vw;
    margin-bottom: 2.5vw;
    font-family: var(--work);
}

/*********************
 *      WUFFRESH     *
 ********************/
.wuffresh > article > h4{
    text-align: center;
    line-height: 1;
    letter-spacing: -.1vw;
}
.wuffresh > article > h2{
    text-align: center;
    line-height: 1;
    color: var(--aqua);
    letter-spacing: -.1vw;
}
.wuffresh{
    background-image: url(images/wu5.png);
    background-repeat: no-repeat;
    background-position: 86% 8vw;
    background-size: auto 69%;
}
.wuffresh > article > h3{
    font-size: 3.5vw;
    font-weight: 600;
}
.wuffresh > article > h4{
    font-size: 2.5vw;
    font-weight: 600;
}
.wuffresh > article > h2{
    font-size: 3.6vw;
    font-weight: 700;    
}
.wuffresh > article > img{
    width: 45%;
    /*margin-top: 2vw;*/
}
.wuffresh > div > img{
    width: 80%;
}

/*********************
 *      DESGYM     *
 ********************/
.desgym > article > h4{
    text-align: center;
    line-height: .8;
    letter-spacing: -.1vw;
}
.desgym > article > h2{
    text-align: center;
    line-height: 1;
    color: var(--aqua);
    letter-spacing: -.1vw;
}
.desgym{
    background-image: url(images/desgym2.png);
    background-repeat: no-repeat;
    background-position: 85% 10vw;
    background-size: auto 60%;
}
.desgym > article > h3{
    font-size: 2vw;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 1;
}
.desgym > article > h4{
    font-size: 2.5vw;
    font-weight: 700;
    color: var(--aqua);
    margin-top: .5vw;
    line-height: 1;
}
.desgym > article > h2{
    font-size: 3.6vw;
    font-weight: 700;    
}
.desgym > article > img{
    width: 45%;
    margin-top: 7vw;
}
.desgym > div > img{
    width: 65%;
}

/*********************
 *  CENTRAL DESGYM *
 ********************/
.central-desgym{
    background-color: var(--azul-marino);
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 4vw;
    padding-bottom: 4vw;
    height: 29vw;
    padding-right: 3%;
    padding-left: 3%;
}
.central-desgym > article{
    width: calc(100%/3);
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding-left: 3vw;
    padding-right: 3vw;
}
.central-desgym > article > h2{
    font-weight: 800;
    font-size: 1.7vw;
    color: #fff;
    text-align: center;
}
.central-desgym > article > p{
    font-weight: 500;
    font-size: 1.7vw;
    color: #fff;
    line-height: 1;
    letter-spacing: -.1vw;
    text-align: center;
}
.central-desgym > article:nth-child(2){
    align-items: cente;
    justify-content: center;
} 
.central-desgym > article:nth-child(1) > img{
    height: 10vw;
    margin-top: 4vw;
}
.central-desgym > article:nth-child(3) > img{
    height: 17vw;
    margin-top: 3vw;
}
.central-desgym > article > h6{
    font-size: 2.5vw;
    font-weight: 600;
    letter-spacing: -.1vw;
    text-align: center;
    width: 100%;
    color: #FFF;
    line-height: .9;
}
.central-desgym > article > h3{
    font-size: 1.6vw;
    color: #FFF;
    font-weight: 400;
    line-height: .9;
}
.central-desgym > article > h4{
    font-size: 5vw;
    color: #FFF;
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--poppins);
    text-align: left;
    width: 100%;
    padding-left: 24%;
}
.central-desgym > article > ul{
    font-size: 1.6vw;
    color: #FFF;
    font-weight: 400;
    line-height: .9;
    line-height: 1.5;
    font-family: var(--poppins);
    padding-left: 2vw;
    width: 100%;
    padding-left: 32%;
}
.central-empresas > article:nth-child(2){
    justify-content: flex-start;
}
.central-empresas > article:nth-child(3){
    padding-left: 7%;
    padding-right: 7%;
}
.central-empresas > article:nth-child(3) > h3{
    text-align: center;
}

/*********************
 *  CENTRAL WUFFRESH *
 ********************/
.central-wuffresh{
    background-color: var(--aqua);
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 4vw;
    padding-bottom: 4vw;
    height: 29vw;
    padding-right: 3%;
    padding-left: 3%;
}
.central-wuffresh > article{
    width: calc(100%/3);
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding-left: 3vw;
    padding-right: 3vw;
}
.central-wuffresh > article > h2{
    font-weight: 800;
    font-size: 1.7vw;
    color: #fff;
    text-align: center;
}
.central-wuffresh > article > p{
    font-weight: 500;
    font-size: 1.7vw;
    color: #fff;
    line-height: 1;
    letter-spacing: -.1vw;
    text-align: center;
}
.central-wuffresh > article:nth-child(1) > img{
    height: 10vw;
    margin-top: 4vw;
}
.central-wuffresh > article:nth-child(2) > img{
    height: 12vw;
    margin-top: 3vw;
}
.central-wuffresh > article:nth-child(3){
    justify-content: center;
}
.central-wuffresh > article > h3{
    font-size: 3.3vw;
    font-weight: 600;
    text-align: left;
    width: 100%;
    color: #FFF;
}
.central-wuffresh > article > h4{
    font-size: 2.8vw;
    font-weight: 600;
    letter-spacing: -.2vw;
    text-align: left;
    width: 100%;
    color: #FFF;
}
.central-wuffresh > article > h5{
    font-size: 4vw;
    font-weight: 600;
    letter-spacing: -.2vw;
    text-align: left;
    width: 100%;
    color: #FFF;
}

/*********************
 *  INFERIOR DESGYM  *
 ********************/
.inferior-desgym{
    flex-direction: row;
    flex-wrap: wrap;
    height: 39vw;
    padding-right: 3%;
    padding-left: 3%;
    align-items: center;
    padding-top: 0px;
    padding-bottom: 0px;
}
.inferior-desgym > article{
    width: calc(100%/3);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.inferior-desgym > article:nth-child(1) > img{
    width: 55%;
}
.inferior-desgym > article:nth-child(2) > img{
    width: 45%;
}
.inferior-desgym > article:nth-child(3) > img{
    width: 90%;
}

/*********************
 * INFERIOR EMPRESAS *
 ********************/
.inferior-empresas{
    flex-direction: row;
    flex-wrap: wrap;
    height: 37vw;
    padding-right: 3%;
    padding-left: 3%;
    align-items: center;
    padding-top: 0px;
    padding-bottom: 0px;
}
.inferior-empresas > article{
    width: calc(100%/3);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.inferior-empresas > article:nth-child(1) > img{
    width: 55%;
}
.inferior-empresas > article:nth-child(2) > img{
    width: 60%;
}
.inferior-empresas > article:nth-child(3) > img{
    width: 70%;
}

/*********************
 * INFERIOR WUFFRESH *
 ********************/
.inferior-wuffresh{
    flex-direction: row;
    flex-wrap: wrap;
    height: 36vw;
    padding-right: 3%;
    padding-left: 3%;
    align-items: center;
    padding-top: 0px;
    padding-bottom: 0px;
}
.inferior-wuffresh > article{
    width: 45%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding-left: 3vw;
    padding-right: 3vw;
}
.inferior-wuffresh > article:nth-child(2){
    width: 20%;
}
.inferior-wuffresh > article:nth-child(3){
    width: 35%;
}
.inferior-wuffresh > article > img{
    width: 90%;
    height: auto;
}
.inferior-wuffresh > article:nth-child(2) > img{
    width: 90%
}

/*********************
 *      EMPRESAS     *
 ********************/
.empresas > article > h3{
    font-size: 2.5vw;
    font-weight: 600;
    letter-spacing: -.2vw;
}
.empresas > article > h2{
    font-size: 4vw;
    font-weight: 600;
    letter-spacing: 0vw;
    text-align: center;
    margin-top: 1vw;
}
.empresas > article > h4{
    font-size: 1.8vw;
    font-weight: 400;
    letter-spacing: .1vw;
    text-align: center;
}
.empresas > article > img{
    width: 35%;
    margin-top: 2vw;
}
.empresas > article > img:nth-child(2){
    width: 100%;
}

/*********************
 *     PRODUCTOS     *
 ********************/
.productos{
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 0px;
    padding-top: 0px;
}
.productos > h1{
    margin-bottom: 3vw;
}
.productos > article{
    border: solid 1px var(--aqua);
    border-radius: 1vw;
    padding: 2vw;
    margin: 1vw;
}
.productos > article > img{
    height: 12vw;
}
.productos > article > h2{
    margin-bottom: 2vw;
    text-align: center;
}

/*********************
 *    TEXTO MICRO    *
 ********************/
.texto-microorganismos{
    /*padding-right: 0%;
    padding-left: 0%;*/
}
.texto-microorganismos > p{
    font-size: 1.6vw;
    margin-top: 3vw;
}

/*********************
 *      FOOTER       *
 ********************/
footer{
    height: 17vw;
    padding-bottom: 2vw;
    background-image: url(images/logo_footer.png);
    background-position: 47% center;
    background-repeat: no-repeat;
    background-size: 25%;
    display: flex;
    align-items: flex-end;
}
footer > h2{
    font-size: 1.6vw;
    font-weight: 700;
    width: 48%;
    text-align: center;
}
footer > p{
    line-height: 2;
    width: 26%;
    padding-left: 3%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
footer > aside{
    width: 26%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    margin-right: 7%;
}
footer > aside > a{
    font-size: 2.5vw;
}

::placeholder{
    color: #FFF;
}

@media (max-width: 480px){
    .no-movil{
        display: none;
    }
    .solo-movil{
        display: flex;
        flex-direction: column;
    }
    label{
        display: flex;
    }
    h1{
        font-size: 9vw;
    }
    h2{
        font-size: 7vw;
        margin-bottom: 3vw;
    }
    p{
        font-size: 4vw !important;
        padding: 0px !important;
        margin-top: 4vw !important;
        margin-bottom: 4vw !important;
    }
    section{
        padding-right: 10%;
        padding-left: 10%;
        padding-top: 10vw;
    }
    .inicio{
        height: 120vw;
        padding-top: 30vw;
    }
    .inicio > h1{
        font-size: 9vw;
    }
    .inicio > h2{
        font-size: 4vw;
    }
    .productos-home > article{
        width: 90%;
        height: 70vw;
        padding: 4vw;
    }
    .nosotros > img, .calidad > img {
        margin-bottom: 5vw;
        width: unset;
        height: 14vw;
    }
    .calidad > img {
        height: 17vw;
    }
    .contacto > h1{
        padding: 0px;
        text-align: center;
    }
    .contacto > article, .contacto > aside{
        width: 100%;
    }
    .contacto > article > p{
        text-align: center;
    }
    .contacto > article > form > input{
        height: 8vw;
    }
    .contacto > article > form > input, .contacto > article > form > textarea{
        font-size: 3vw;
        text-align: center;
    }
    .contacto > article{
        padding-left: 0px;
    }
    .productos-home > article > h1{
        font-size: 7vw;
    }
    .productos-home > article > a {
        padding: 2vw;
        font-size: 4vw;
        width: 60%;
        margin-top: 4vw;
        margin-left: 40%;
    }
    footer > aside > a{
        font-size: 5vw;
    }
    header{
        background-color: rgba(0,0,0,.8);
    }
    header > a{
        margin-left: 0px;
        margin-right: calc(90% - 250px);
        margin-left: 0%;
        background-size: 65%;
        background-position: center 4vw;
    }
    header > a > img{
        margin: 0px;
        width: 60%;
        margin-right: 40%;
    }
    header > nav{
        position: fixed;
        width: 100%;
        height: 110vh;
        left: 0px;
        padding: 0px;
        margin: 0px;
        top: 0px;
        flex-direction: column;
        justify-content: center;
            background-color: rgba(0, 0, 0, .9);
            border-radius: 0px;
            display: none;
    }
    header > nav > a, header > nav > p{
        width: 100%;
        font-size: 6vw;
        font-weight: 700;
        height: auto;
        line-height: 2;
        text-align: center;
    }
    .inicio-desinfectantes > h1{
        padding: 0px;
    }
    .inicio-desinfectantes > h2{
        padding: 0px;
        font-size: 4vw;
        margin-top: 1vw;
    }
    .desinfectantes > article{
        width: 90%;
        margin: 0px;
    }
    .desinfectantes > article > div{
        height: 70vw;
    }
    .desinfectantes > article > div > h2{
        font-size: 12vw;
    }
    .desinfectantes > article > div > a{
        font-size: 4vw;
        padding: 2vw;
    }
    .desinfectantes > article > div > h3{
        font-size: 9vw;
    }
    .desinfectantes > article > div > div > p{
        font-size: 12vw !important;
        line-height: .5;
    }
    .desinfectantes > article > div > div > h3{
        font-size: 20vw;
    }
    .inicio-microorganismos > h2{
        font-size: 8vw;
    }
    .divisiones{
        flex-wrap: wrap;
    }
    .divisiones > article{
        width: 90%;
        height: 120vw;
    }
    .divisiones > article > div{
        height: 60vw;
    }
    .divisiones > article > article > h2{
        font-size: 5vw;
    }
    .divisiones > article > article > h3{
        font-size: 4vw;
    }
    .divisiones > article > article > ul{
        font-size: 4vw;
    }
    .productos > img{
        height: 68vw;
    }
    .texto-microorganismos{
        padding-left: 10%;
        padding-right: 10%;
    }

    .inicio-producto > div{
        width: 90%;
        height: 70vw;
    }
    .inicio-producto{
        height: auto;
    }
    .inicio-producto > article{
        width: 90%;
    }
    .wuffresh > article > h3{
        font-size: 7vw;
    }
    .wuffresh > article > h4{
        font-size: 6vw;
    }
    .wuffresh > article > h2{
        font-size: 7vw;
    }
    .inicio-producto{
        padding-bottom: 0px;
        padding-top: 30vw;
        background-image: none;
    }
    .inicio-producto > div:nth-child(3) {
        background-image: url(images/desgym2.png);
        background-position: bottom center;
        background-size: auto 90%;
        height: 90vw;
        background-repeat: no-repeat;
    }
    .inicio-producto > article > a {
        padding: 1vw;
        padding-top: .6vw;
        padding-left: 3vw;
        padding-right: 3vw;
        font-size: 4vw;
        border-radius: 4vw;
        margin-top: 4vw;
        margin-bottom: 5vw;
    }
    .wuffresh > div > img{
        margin-left: 0%;
    }
    .central-wuffresh, .central-desgym{
        height: auto;
        padding-top: 15vw;
        padding-bottom: 15vw;
    }
    .central-wuffresh > article{
        width: 100%;
        padding-right: 10%;
        padding-left: 10%;
    }
    .central-wuffresh > article > h2, .central-desgym > article > h2{
        font-size: 5vw;
    }
    .central-wuffresh > article:nth-child(1) > img, .central-desgym > article:nth-child(1) > img{
        height: 25vw;
        margin-bottom: 7vw;
    }
    .central-wuffresh > article:nth-child(2) > img{
        height: 25vw;
    }
    .central-wuffresh > article:nth-child(3){
        padding-top: 5vw;
    }
    .central-wuffresh > article > h3{
        font-size: 7vw;
        text-align: center;
    }
    .central-wuffresh > article > h4{
        font-size: 6vw;
        text-align: center;
    }
    .central-wuffresh > article > h5{
        font-size: 6vw;
        text-align: center;
    }
    .inferior-wuffresh{
        height: auto;
        padding-top: 10vw;
        padding-bottom: 10vw;
    }
    .inferior-wuffresh > article{
        width: 90%;
    }
    .inferior-wuffresh > article:nth-child(2){
        width: 90%;
    }
    .inferior-wuffresh > article:nth-child(3){
        width: 90%;
    }
    .inferior-wuffresh > article:nth-child(2) > img{
        width: 25%;
    }
    .inferior-wuffresh > article:nth-child(2){
        margin-top: 10vw;
        margin-bottom: 10vw;
    }
    .desgym > article > h3{
        font-size: 5vw;
    }
    .desgym > article > h4{
        font-size: 5vw;
    }
    .central-desgym{
        height: auto;
    }
    .central-desgym > article{
        width: 90%;
    }
    .central-desgym > article > h6{
        font-size: 5vw;
    }
    .central-desgym > article:nth-child(3) > img {
        height: 35vw;
        margin-top: 8vw;
    }
    .inferior-desgym{
        height: auto;
        padding-top: 10vw;
        padding-bottom: 10vw;
    }
    .inferior-desgym > article{
        width: 90%;
    }
    .inferior-desgym > article:nth-child(2){
        margin-top: 5vw;
        margin-bottom: 5vw;
    }
    .empresas{
        padding-top: 35vw;
        padding-bottom: 15vw;
    }
    .empresas > div{
        display: none;
    }
    .empresas > article > h3{
        font-size: 5vw;
    }
    .empresas > article > h2{
        font-size: 9vw;
    }
    .empresas > article > h4{
        font-size: 4vw;
    }
    .central-desgym > article > h3{
        font-size: 5vw;
    }
    .central-empresas > article:nth-child(3){
        padding-left: 3%;
        margin-top: 10vw;
    }
    .central-empresas > article:nth-child(3) > h3{
        text-align: left;
    }
    .central-desgym > article > h4{
        padding-left: 0px;
        margin-top: 5vw;
    }
    .central-desgym > article > ul{
        padding-left: 4%;
        font-size: 4vw;
    }
    .inferior-empresas{
        height: auto;
        padding-top: 10vw;
        padding-bottom: 10vw;
    }
    .inferior-empresas > article{
        width: 90%;
    }
    .inferior-empresas > article:nth-child(2){
        margin-top: 10vw;
        margin-bottom: 10vw;
    }
    header.header-general > a{
        background-image: url(images/logo_menu.png);
    }
    .productos > article{
        width: 100%;
        padding: 5vw;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 5vw;
    }
    .productos > article > h2{
        margin-bottom: 5vw;
    }
    .productos > article > img{
        height: 32vw;
    }
    .central-wuffresh > article > p, .central-desgym > article > p{
        margin-top: 1vw !important;
    }
    .central-desgym > article > h4{
        font-size: 7vw;
    }
    .inicio-microorganismos > p{
        margin-top: 1vw !important;
    }
    footer{
        flex-direction: column;
        padding-top: 20vw;
        background-position: center 10vw;
        background-size: 40%;
        height: auto;
    }
    footer > p, footer > h2{
        width: 100%;
        text-align: center;
    }
     footer > h2{
        font-size: 6vw;
        margin-top: 3vw;
        margin-bottom: 3vw;
     }
    footer > aside{
        width: 80%;
        justify-content: space-around;
        margin-top: 4vw;
        margin-bottom: 5vw;
    }
}




