@charset "utf-8";
@font-face {
    font-family: 'montserrat_sb';
    src: url('../fonts/montserrat-semibold-webfont.eot');
    src: url('../fonts/montserrat-semibold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/montserrat-semibold-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-semibold-webfont.woff') format('woff'),
         url('../fonts/montserrat-semibold-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'o_s_it';
    src: url('../fonts/opensans-italic-webfont.eot');
    src: url('../fonts/opensans-italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/opensans-italic-webfont.woff2') format('woff2'),
         url('../fonts/opensans-italic-webfont.woff') format('woff'),
         url('../fonts/opensans-italic-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'o_s';
    src: url('../fonts/opensans-regular-webfont.eot');
    src: url('../fonts/opensans-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/opensans-regular-webfont.woff2') format('woff2'),
         url('../fonts/opensans-regular-webfont.woff') format('woff'),
         url('../fonts/opensans-regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'o_s_sb';
    src: url('../fonts/opensans-semibold-webfont.eot');
    src: url('../fonts/opensans-semibold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/opensans-semibold-webfont.woff2') format('woff2'),
         url('../fonts/opensans-semibold-webfont.woff') format('woff'),
         url('../fonts/opensans-semibold-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html{font-size: 16px;}

* {
   margin: 0;
   padding: 0; 
}

*, *::before, *::after {
    box-sizing: border-box;
}

.logo {
    display: block;
    width: 35%;
    margin: .3rem auto;
}

.titulo {
    margin: 6vw 0 8vw 0;    
    font-family: o_s, sans-serif;
    font-size: 6vw;
    text-align: center;
}

/*--------------SLIDER------------------*/

.slider {
	position: relative;
	width: 100%;
    max-width: 37.5rem;
	height: 80vw;
    max-height: 483px;
	overflow: hidden;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	opacity: 0;
	animation: slider 24s linear infinite;
}

.slide:nth-child(1) {animation-delay: 0s;}
.slide:nth-child(2) {animation-delay: 4s;}
.slide:nth-child(3) {animation-delay: 8s;}
.slide:nth-child(4) {animation-delay: 12s;}
.slide:nth-child(5) {animation-delay: 16s;}
.slide:nth-child(6) {animation-delay: 20s;}

.slider .slide img {
	position: absolute;
    width: 100%;
	left: 0;
	object-fit: cover;	
}

.slider .slide p {
    display: block;
    float: center;
    margin: 0;
    padding: 1vw;
    height: 8vw;
    font-family: 'o_s';
    font-size: 5vw;
    text-align: center;
    background: black;
    color: white; 
}

.numero {
    position: absolute;
	top: 8vw;
	right: 5vw;
    font-family: 'o_s_sb';
    font-size: 24vw;
    color: red;
    text-shadow: 2px 2px 2px black;
}


@keyframes slider
{
	0% {
		visibility: hidden;
		opacity: 0;
	}   
	2% {
		visibility: visible;
		opacity: 1; 
	}   
	18% {
		visibility: visible;
		opacity: 1;
	}
	20%,100% {
		visibility: hidden;
		opacity: 0;
	}
}

/*------- LISTA ANIMADA ---------*/

.listanim p {
    margin-bottom: 3vw;
    font-family: 'o_s';
    font-size: 5vw;     
}

.list {
    width: 100%;
    height: 5.5vw;
    font-family: 'o_s';
    font-size: 4.9vw;
    line-height: 5vw;
    text-align: center;
    overflow: hidden;
}

.list ul {
    padding-left: 2px;
    list-style: none;
    animation: subir 22s infinite;
}

@keyframes subir {
    
    0%{margin-top: 0;}
    10%{margin-top: 0;}

    12.5%{margin-top: -1em;}
    22.5%{margin-top: -1em;}

    25%{margin-top: -2em;}
    35%{margin-top: -2em;}

    37.5%{margin-top: -3em;}
    47.5%{margin-top: -3em;}

    50%{margin-top: -4em;}
    60%{margin-top: -4em;}

    62.5%{margin-top: -5em;}
    72.5%{margin-top: -5em;}

    75%{margin-top: -6em;}
    85%{margin-top: -6em;}

    87.5%{margin-top: -7em;}
    97.5%{margin-top: -7em;}      
}

/*FIN LISTA ANIMADA*/

/*------- BOLSA --------*/

.bolsa img{
    display: none;
}

/*--------------ACORDEON-----------------*/

.acordeon {
    margin-top: 5vw;
    width: 100%;
    height: auto;    
}

dl { 
    margin: 0;
    width: 100%;
}

dt {                     /*titulo*/
    padding: 3.5vw 0 3.5vw 1vw;
    font-family: o_s;
    font-size: 4.4vw;
    color: white; 
    border-bottom: 2px solid #001A36; 
    border-top: 2px solid #0052AB; 
    background: #002955; /*color barras inactivas*/
    cursor: pointer;
}

dd {                     /*texto*/
    padding: 5px;
    font-family: o_s;
    font-size: 4vw;
    line-height: 6vw;
    background: #F5F5F5;      
}

dd ul{
	list-style: none;
}

dt .activo, dt:hover {
    background: #003874; /*color barras hover y activas*/
}

dt:before { 
    content: "▸"; 
    margin-right: 1vw; 
}

dt.activo:before { 
    content: "▾"; 
} 
	
.aquapav {
    font-family: 'montserrat_sb';
    font-size: 4.8vw;
    color: #0072B1;
}

/* tabla de acordeon */

tbody tr th {
    font-size: 1rem;
}

.tabla {
    width: 960px;
    font-size: .8rem;
    background: #F5F5F5;
    border: .25rem solid #000;
    border-spacing: 0;
}

td, th {
    vertical-align: top;
    border: 1px solid #000;
    border-collapse: collapse;
}

th {
    font-size: 1rem;
}

td {
    padding: 6px;
    width: 23%;
    line-height: 18px;     
}

.centrado {
    text-align: center;
    vertical-align:middle;
}

.tipos {
    color: white;
    vertical-align: middle;
    background-color: #636363;
    border: .25rem solid #636363;
}

.tipos1 {
    color: white;
    background-color: #636363;
    border: .1rem solid #636363;
}

.tipos2 {
    color: #FFFFFF;
    background-color: #0064FF;
}

.tipos3 {
    background-color: #D3D1D1;
    border-bottom: .25rem solid #636363;
}

.tipos4{
    background-color: #D2EDFB;
    border-bottom: .25rem solid #636363;
}
     /* fin de tabla de acordeon */
.pdf {
    text-align: center;
}

/*-------------CALCULOS RECTANGULO---------------*/

#rectangulo {
	width: 300px;
	border:1px solid;
	padding: 8px;
	margin: 5px;
	background-color: white;
}

.campo {
	text-align: right;
}

.campo2 {
	text-align: right;
}

.boton {
	position: relative;
	left: 82px;
	margin-top: 12px;
	margin-bottom: 10px;
}

.fontchico {
	font-size: 0.8em;
	color: red;
}

/*-------------CALCULOS CIRCULOS---------------*/

#circulo {
	width: 300px;
	border:1px solid;
	padding: 8px;
	margin: 5px;
	background-color: white;
}


.camp-circ {
	text-align: right;	
}

.camp-circ2 {
	text-align: right;
}

.bot-circ {
	position: relative;
	left: 72px;
	margin-top: 12px;
	margin-bottom: 10px;
}


/*-------------VIDEO----------------*/
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.embed-container iframe {
    position: absolute;
    top: 3vw;
    left: 0;
    width: 100%;
    height: 100%;
}
.video980 {
    display:none;
}

/*--------------PIE-----------------*/

.pie {
    background: #000000;
    color: #000000;
}
    
.contenedor980 {
    background: #000000;
    text-align: center;
}

.formupie {
    background: #000000;
}

.datospie {
    width: auto;
    display: inline-block;
    font-family: o_s;
    font-size: 3vw;
    text-align: center;
    background: #000000;
}

.contacto {
    padding: 4vw 0 1vw 0;
    font-size: 5vw;
    color:#FFFFFF;
}

.info {
    font-size: 7vw;
}

.tel {
    padding: 2vw 0 5vw 0;
    color:#FFFFFF;
    font-size: 5vw;
}

.patente {
    padding: .5vw 0 1vw 0;
}

.esundesarr {
    color: #FFFFFF;
    font-size: 3vw;
}

.aquapavpie{
    font-family: 'montserrat_sb';
    font-size: 8vw;
    color: #00EBFF;
}

.insumospie {
    font-size: 6vw;
    color:#009CF3;
    text-decoration: none;        
    }

.patentenum {
    padding: 2vw 0 3vw 0;
    color: #FFFFFF;
}

/*-------------- FIN PIE -----------------*/

/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*---------------------- x 600 px ----------------------------*/

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

/*body {background: #6E6E6E;}*/ /*fondo de trabajo*/
    
.logo {
    width: 14rem;
}
    
.titulo {
    margin: 2.2rem 0 2.2rem 0;
	font-size: 2.25rem;
}

/*-------------- SLIDER x 600 px ------------------*/

.slider {
	left: 50%; 
    transform: translateX(-50%);
	height: 30.2rem;
}

.slider .slide p {
    height: 3.1rem;
    padding: .4rem;
    font-size: 1.8rem;
}

.numero {
    top: 3rem;
	right: 1.1rem;
    font-size: 9rem;
}

/*---------- LISTA ANIMADA x 600 px -----------*/

.listanim p {
	margin-bottom: 1rem;
    font-family: 'o_s';
    font-size: 2rem; 
    text-align: center;
    }

.list{
    width: 100%;
    height: 2.2rem;
    font-family: 'o_s';
    font-size: 1.9rem;
    line-height: 2rem;
    overflow: hidden;
    text-align: center;
}

.list ul{
    list-style: none;
    padding-left: 2px;
    animation: subir 22s infinite;
}

@keyframes subir {
    
    0%{margin-top: 0;}
    10%{margin-top: 0;}

    12.5%{margin-top: -2rem;}
    22.5%{margin-top: -2rem;}

    25%{margin-top: -4rem;}
    35%{margin-top: -4rem;}

    37.5%{margin-top: -6rem;}
    47.5%{margin-top: -6rem;}

    50%{margin-top: -8rem;}
    60%{margin-top: -8rem;}

    62.5%{margin-top: -10rem;}
    72.5%{margin-top: -10rem;}

    75%{margin-top: -12rem;}
    85%{margin-top: -12rem;}

    87.5%{margin-top: -14rem;}
    97.5%{margin-top: -14rem;}      
}

/*FIN LISTA ANIMADA*/

/*-------------- ACORDEON x 600 px -----------------*/

.acordeon {
    width: 37.5rem;
    height: auto;
    margin: 1.5rem auto;
}

dl { 
    margin: 0;
    width: 100%;
}

dt { /*titulo*/
    padding: 1rem 0 1rem 1rem;
    background: #002955; /*color barras inactivas*/
    font-family: o_s;
    font-size: 1.6rem;
    color: white; 
    border-bottom: 2px solid #001A36; 
    border-top: 2px solid #0052AB; 
    cursor: pointer; 
}
    
dd {  /*texto*/
    padding: 5px;
    font-family: o_s;
    font-size: 1rem;
    background: #F5F5F5; 
    line-height: 1.5rem; 
}

dt .activo, dt:hover {
    background: #003874; /*color barras hover y activas*/
}
    
dt:before { 
    content: "▸"; 
    margin-right: .5em; 
}
    
dt.activo:before { 
    content: "▾"; 
} 
	
.aquapav {
    font-family: 'montserrat_sb';
    font-size: 1.5rem;
    color: #0072B1;
}

/* tabla de acordeon */
    
tbody tr th {
    font-size: 1rem;
}

 .tabla {
    position: relative;
    margin-top: 1rem;
    right: 11.5rem;
    width: 960px;
    font-size: .8rem;
	background: #F5F5F5;
    border: .25rem solid #000;
    border-spacing: 0;    
}
  
td, th {
    border: 1px solid #000;
    border-collapse: collapse;
    vertical-align: top;
}

th {
    font-size: 1rem;
}

td {
    width: 23%;
    line-height: 1.1rem;
    padding: .5rem; 
}

.centrado {
    text-align: center;
    vertical-align:middle;
}
    
.tipos {
	color: white;
    background-color: #636363;
    vertical-align:middle;
    border: .25rem solid #636363;        
}
    
.tipos1 {
	color: white;
    background-color: #636363;
    border: .1rem solid #636363;
}
	
.tipos2 {
	color: #FFFFFF;
    background-color: #0064FF;
}
    
.tipos3 {
    background-color: #D3D1D1;
    border-bottom: .25rem solid #636363;
}
    
.tipos4 {
    background-color: #D2EDFB;
    border-bottom: .25rem solid #636363;
}
     /* fin de tabla de acordeon */
    
/*-------------- PIE x 600 px -----------------*/   
   
.pie {
    margin-top: 0;
    font-family: o_s;
    /*color:;*/
    font-size: 1rem;
    overflow: hidden;
    text-align: center;
    background: black;
}

.contacto {
    padding: .8rem 0;
    font-size: 1.3rem;
}

.info {
    font-size: 1.4rem;    
}

.tel {
    padding: .2rem 0 3rem 0;
    font-size: 1.5rem;
}

.esundesarr {
    padding: .4rem 0 .4rem 0;
     font-size: 1rem;   
}

.patente {
    padding: .3rem 0 0 0;
}

.aquapavpie {
    font-family: 'montserrat_sb';
    font-size: 2rem;
    color: #00EBFF;
}

.insumospie {
    font-size: 1.6rem;
    color:#009CF3;
    text-decoration: none;        
    }

.patentenum {
    font-size: .9rem; 
}

/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*---------------------- x 980 px ----------------------------*/

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

body {
    /*background: #B6F7FD;*/  /*fondo de trabajo*/
}
    
main {
    position: relative;
    bottom: 1rem;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    /*background: #BCFFD6;*/  /*fondo de trabajo*/
}    
    
 /*-------------- CABECERA x 980 px ------------------*/   
 
.caja {
    width: 100%;
    max-width: 1000px;
    margin: auto;
	/*background: #E0CDFF;*/  /*fondo de trabajo*/
}
    
.logo {
    width: 16rem;
    float:right;
    padding-right: 3rem;
    margin-top: -2rem;
}
    
.titulo {
    padding-left: 3rem;
    margin-top: 3rem;
	font-size: 2.25rem;
    text-align: left;
}

/*-------------- SLIDER x 980 px ------------------*/

.slider {
    position: relative;
	left: 18.8rem;
	height: 30.2rem;
    margin-top: 6rem;
}
 
.slider .slide p {
    height: 3.1rem;
    padding: .4rem;
    font-size: 1.8rem;
}

.numero {
    top: 3rem;
	right: 1.1rem;
    font-size: 9rem;
}

/*---------- LISTA ANIMADA x 980 px -----------*/
    
/* anulacion lista animada */  
.listanim p {
    margin-bottom: auto;
    font-family: auto;
    font-size: auto;     
}

.list {
    width: auto;
    height: auto;
    font-family: auto;
    font-size: auto;
    line-height: auto;
    text-align: auto;
    overflow: auto;
}

.list ul {
    padding-left: auto;
    list-style: none;
    animation: auto;
}
 /*600 px*/   
.listanim p{
    font-family: auto;
    font-size: auto; 
    margin-bottom: auto;
    text-align: auto;
    }

.list{
    width: auto;
    height: auto;
    font-family: auto;
    font-size: auto;
    line-height: auto;
    overflow: auto;
    text-align: auto;
}

.list ul{
    list-style: auto;
    padding-left: auto;
    animation: auto;
}

  /* nuevos estilos para lista grande */
    
.listanim{
    position: absolute;
    top: 3rem;
    right: 0;
    width: 370px;
	/*background: #92FBBF;*/  /*fondo de trabajo*/
} 

p.diferente {
	padding-bottom: 1rem;
    font-family: 'o_s_sb';
    font-size: 1.2rem;
    text-align: left;
}     
    
.list {
    text-align: left;
    font-family: 'o_s';
    font-size: 1.2rem;
}  

.list ul {
	padding-left: 50px;
    list-style-type: disc;
}

li {
    margin-top: 5px;
}

.item1{
    animation: it_1 20s infinite;
    opacity: 0.3;
   
}
.item2{
    animation: it_2 20s infinite;
    opacity: 0.3;
    animation-delay: 2.5s;
}
.item3{
    animation: it_3 20s infinite;
    opacity: 0.3;
    animation-delay: 5s;
}
.item4{
    animation: it_4 20s infinite;
    opacity: 0.3;
    animation-delay: 7.5s;
}
.item5{
    animation: it_1 20s infinite;
    opacity: 0.3;
    animation-delay: 10s;
}
.item6{
    animation: it_2 20s infinite;
    opacity: 0.3;
    animation-delay: 12.5s;
}
.item7{
    animation: it_3 20s infinite;
    opacity: 0.3;
    animation-delay: 15s;
}
.item8{
    animation: it_4 20s infinite;
    opacity: 0.3; 
    animation-delay: 17.5s;
}


@keyframes it_1{
    0%{font-weight: bolder; opacity: 1;}
    11%{font-weight: bolder; opacity: 1; }
    12.5%{font-weight: normal; opacity: .3;}
}
@keyframes it_2{
    0%{font-weight: bolder; opacity: 1;}
    11%{font-weight: bolder; opacity: 1;}
    12.5%{font-weight: normal; opacity: .3;}
}
@keyframes it_3{
    0%{font-weight: bolder; opacity: 1;}
    11%{font-weight: bolder; opacity: 1;}
    12.5%{font-weight: normal; opacity: .3;}
}
@keyframes it_4{
    0%{font-weight: bolder; opacity: 1;}
    11%{font-weight: bolder; opacity: 1;}
    12.5%{font-weight: normal; opacity: .3;}
}
@keyframes it_5{
    0%{font-weight: bolder; opacity: 1;}
    11%{font-weight: bolder; opacity: 1;}
    12.5%{font-weight: normal; opacity: .3;}
}
@keyframes it_5{
    0%{font-weight: bolder; opacity: 1;}
    11%{font-weight: bolder; opacity: 1;}
    12.5%{font-weight: normal; opacity: .3;}
}
@keyframes it_7{
    0%{font-weight: bolder; opacity: 1;}
    11%{font-weight: bolder; opacity: 1;}
    12.5%{font-weight: normal; opacity: .3;}
}
@keyframes it_8{
    
    0%{font-weight: bolder; opacity: 1;}
    11%{font-weight: bolder; opacity: 1;}
    12.5%{font-weight: normal; opacity: .3;}
}

/*FIN LISTA ANIMADA*/
    
/*------- BOLSA x 980 px--------*/

.bolsa {
    display: inline-block;
    margin-top: 4rem;
}

.bolsa img{
    display: inline-block;
}    
/*-------------- ACORDEON x 980 px -----------------*/

.acordeon {
    width: 37.5rem;
    height: auto;
    margin: auto;
    float: right;
}

dl { 
    margin: 0;
    width: 100%;
}

dt { /*titulo*/
    padding: 1rem 0 1rem 1rem;
    background: #002955; /*color barras inactivas*/
    font-family: o_s;
    font-size: 1.6rem;
    color: white; 
    border-bottom: 2px solid #001A36; 
    border-top: 2px solid #0052AB; 
    cursor: pointer; 
}
    
dd {  /*texto*/
    padding: 5px;
    font-family: o_s;
    font-size: 1rem;
    background: #F5F5F5; 
    line-height: 1.5rem; 
}

dt .activo, dt:hover {
    background: #003874; /*color barras hover y activas*/
}
    
dt:before { 
    content: "▸"; 
    margin-right: .5em; 
}
    
dt.activo:before { 
    content: "▾"; 
} 
	
.aquapav {
    font-family: 'montserrat_sb';
    font-size: 1.5rem;
    color: #0072B1;
}

/* tabla de acordeon */
    
tbody tr th {
    font-size: 1rem;
}

 .tabla {
    position: relative;
    margin-top: 1rem;
    right: 25.2rem;
    width: 1000px;
    background: #F5F5F5;
    border: .25rem solid #000;
    border-spacing: 0;
    font-size: .8rem;
}
  
td, th {
    border: 1px solid #000;
    border-collapse: collapse;
    vertical-align: top;
}

th {
    font-size: 1rem;
}

td {
    width: 23%;
    line-height: 1.1rem;
    padding: .5rem; 
}

.centrado {
    text-align: center;
    vertical-align:middle;
}
    
.tipos {
	vertical-align:middle;
    color: white;
    border: .25rem solid #636363;
	background-color: #636363;
}
    
.tipos1 {
    color: white;
    border: .1rem solid #636363;
	background-color: #636363;
}
	
.tipos2 {    
    color: #FFFFFF;
	background-color: #0064FF;
}
    
.tipos3 {
    border-bottom: .25rem solid #636363;
	background-color: #D3D1D1;
}
    
.tipos4 {    
    border-bottom: .25rem solid #636363;
	background-color: #D2EDFB;
}
     /* fin de tabla de acordeon */
    
 /*----------- VIDEO x 980px --------------*/ 
    
.embed-container {
    display: none;
}

.embed-container iframe {
    display: none;
}
 
.video980 {
    display:inherit;
    text-align: center; 
}
    
.video980 iframe {
    margin: 2rem 0 .5rem 0;
}
    
       
/*-------------- PIE x 980px -----------------*/   
    

    .pie {
        padding: 1rem 0 1rem 0;
        background: #000000;
        color: #000000;
    }
    
    .contenedor980 {
        max-width: 980px;
        margin: auto;
    }

    .datospie {
        margin-right: 4rem;
        display: inline-block;
        font-family: o_s;
        color: white;
        font-size: 1.5rem;
    }
    .contacto {
        padding: 1.8rem 0 .6rem 0;
        font-size: 1.5rem;
    }
    
    .info {
        text-decoration: none;
        color:#88D4FF;
        font-size: 1.5rem;
    }

    .tel {
        padding: .2rem 0;
    }

    .patente {
        padding: 3.4rem 0 0 0;
    }
    
    .esundesarr {
        margin: .4rem 0 .4rem 0;
        font-size: 1rem;
    }

    .aquapavpie {
        font-family: 'montserrat_sb';
        font-size: 2rem;
    }

    .insumospie {
        font-size: 1.6rem;
        color:#009CF3;
        text-decoration: none;        
        }

    .patentenum {
       font-size: .8rem; 
    }
    
   
    .formupie {
        float: right;
        
    }
  













