
@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=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'roboto';
    text-decoration: none;
    list-style: none;
}
.nav{
  width: 100%;
  background: #f9f9f9;  
}
.nav-top{
    
    height: 40px;    
    display: flex;
    justify-content:space-between;
    align-items: center;
    color: #7c7c7c;
    font-size: 12px;
    margin: 0 5%;
    /*padding: 0 100px;*/
}
.nav-top .left{
    display: flex;    
    font-size: 14px;
        
}
.text-left{
    padding: 0 10px;    
}
.nav-top .rigth{
    display: flex;    
    font-size: 14px;
    height: 100%;
    
}
.rigth .container-social{
    display: flex;
}
.container-social{
    display: flex;
    z-index: 100;
}
.card{
    height: 40px;
    margin: 2px;
    overflow: hidden;
}
.i1{
    text-align: center;
    line-height: 40px;    
    height: 50px;
    width: 40px;
    font-size: 20px;
    color: #7c7c7c;
    border-radius: 3px;
    transition: 1s;
}
.intro{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 7px;
    width: 40px;    
    box-sizing: border-box;
    position: absolute;
    top: 33px;    
    color: white;
    transition: .5s;
}
.fac{
    background: #3b5998;
}
.ins{
    background: #c81d25;
}
.twi{
    background: #0084b4;
}
.inf{
    background: #008000;
}
.fono{
  background: #006076;
}
.mail{
  background: #006076;
}
.i2{    
    font-size: 20px;    
    visibility: hidden;
    opacity: 0;
    color: #fff;
}
.card:hover{
    cursor: pointer;
}
.card:hover .intro{
    height: 40px;
    top: 0px;    
}
.card:hover .fac{
    background: linear-gradient(#8b9dc3,25%,#3b5998);
}
.card:hover .ins{
    background: linear-gradient(#F77737,50%,#c81d25);
}
.card:hover .twi{
    background: linear-gradient(#1DA1F2,#0084b4);
}
.card:hover .inf{
    background: linear-gradient(#00c800,35%,#008000);
}
.card:hover .fono{
  background: linear-gradient(#009ec3,25%,#006076);
}
.card:hover .mail{
  background: linear-gradient(#009ec3,25%,#006076);
}
.card:hover .i2{
    opacity: 1;
    visibility: visible;
}
.card:hover .i1{    
    transform: translateY(-80px);
}

.rigth .descargar{
    background: linear-gradient(#009ec3,25%,#006076);
    width: 120px;
    height: 40px;
    font-size: 13px;
    color: white;
    text-align: center;
    text-justify: center;
    line-height: 40px;
    margin-bottom: 1px;
    margin-left: 1px;   
}
.rigth .acceder{
    color: #717171;
    width: 90px;
    height: 40px;
    font-size: 13px;    
    text-align: center;    
    line-height: 40px;
    /*margin-bottom: 1px;*/
    border-left: solid 2px #7c7c7c;
    transition: 0.3s;   
}
.rigth .acceder:hover{
    background: #7c7c7c;
    width: 90px;
    height: 40px;
    font-size: 13px;
    color: #fff;
    text-align: center;    
    line-height: 40px;
    /*margin-bottom: 1px;*/
    border: solid 2px #7c7c7c;   
}
.responsi{
  display: none;
}
/*------nav-top--responsive---*/
@media (max-width: 785px){
  .nav-top .left{
    display: none;
  }
  .nav-top .responsi{    
    display: flex;
    flex-direction: row;    
  }  
}

@media (max-width:550px){
  .acceder{
    display: none;
  }
  .descargar{
    display: none;
  }
}



/*-----------------nav flotante-----------*/
header{
    position: absolute; 
    top: 40px;
    left: 0;
    right: 0;
    background: transparent;
    /*box-shadow: 0 5px 10px rgba(0,0,0,0.1);*/
    padding: 0px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}
header .logo .img-logo{
  width: 250px;
  margin-top: 20px;  /*....................................*/
}
header .navbar ul{
    list-style: none;    
}
header .navbar ul li{
    position: relative;
    float: left;
    margin: 0 1px;    
}
header .navbar ul li a{
    font-size: 16px;
    padding: 10px 20px;
    color: #7c7c7c;
    display: block;
    background: white;
    border-radius: 5px;
    transition: 0.3s;
}
header .navbar ul li a:hover{
    background: #c71311;
    border-radius: 5px;
    color: #fff;
    /*border-bottom: solid 4px #006076;*/
    box-shadow: inset 0px -3px 0px 0px #006076;
}
header .navbar .active{
    background: #c71311;
    color: white;
}
header .navbar ul li ul{
    position: absolute;
    left: 0;
    width: 243px;
    background: #fff;
    display: none;
    z-index: 10;
}
header .navbar ul li ul li{
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.1);
}

header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul{
    display: initial;
}

#menu-bar{
    display: none;
}
header label{
    font-size: 20px;
    color: #333;
    cursor: pointer;
    display: none;
}

@media(max-width:900px){
    header{
        padding: 0 20px;
        display: flex;
        align-items: start;
    }
    header label{
        display: initial;
        width: 120px;
        height: 40px;
        margin: 10px 20px;
        background: linear-gradient(#009ec3,25%,#006076);
        border-radius: 5px;
        text-align: center;
        line-height: 40px;
        color: #fff;           
    }
    header .navbar{
        width: 35%;
        margin: 0 150px;
        position: absolute;
        top: 35%;
        /*left: 0;*/
        right: 0;
        background: #fff;
        border-top: 1px solid rgba(0,0,0,0.1);
        display: none;
    }
    header .navbar ul li{
        width: 100%;
    }

    header .navbar ul li ul{
        position: relative;
        width: 100%;
        
    }
    header .navbar ul li ul li{
        background: #eee;     
        margin-left: 120px;
    }
    #menu-bar:checked ~ .navbar{
        display: initial;
    }
     
}





/*-----------------slider--------------*/

.mySlides {
    display: none;      
}
img {
    vertical-align: middle;   
}

/* Slideshow container */
.container-carrusel{
  width: 100%;
  height: calc(100vh - 40px);  
}

.slideshow-container {
  width: 100%;
  height: 100%; 
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  /*background-color: rgba(0,0,0,0.8);*/
  background: linear-gradient(#009ec3,25%,#006076);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
.dot-container{
  position: absolute;
  bottom: -15%;
  left: 47%;
}


/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  z-index: 100;
}

.active, .dot:hover {
  /*background-color: #717171;*/
  background: #006076;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
.dot{
 height: 10px;
  width: 10px;
}
}

@media only screen and (max-width: 500px) {
  .prev, .next,.text {font-size: 14px}
}

/*----------beneficios----------*/
.beneficios{
    display: flex;    
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}
.beneficios .subtitulo{
    width: 100%;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    /*color: #7c7c7c;*/
    color: white;
    background: #c71311;
    text-align: center;
}
.beneficios-icon{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.beneficios-icon .col{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 20px 20px;     
}
.col .iconsa{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: solid 10px whitesmoke;
    color: #fff;
    font-size: 20px;
    width: 80px;
    height: 80px;
    margin-bottom: 5px;
    background: #006076;
}
.col .icons{
    font-size: 13px;
    font-weight: 600;
    color: #006076;
    text-transform: uppercase;
}
@media(max-width:600px){
  .beneficios .subtitulo{
    font-size: 18px;
  }
}


/*-----------galeria productos--------------*/
.wrapper{
    margin: -40px 0;
    /*max-width: 1250px;*/
    width: 100%;    
  }
  
  .wrapper .wrapper-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 70px 0 25px 0;  /*...................................*/
  }
  .wrapper img{
    width: 250px; 
    margin-bottom: 20px;
    
  }
  .wrapper-title .product-title{
    font-size: 36px;
    color: #c71311;
    font-weight: 600;
    text-transform: uppercase;
  }
  .wrapper nav{
    width: 100%;
    height: 70px;   /*.......................................*/
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c71311;
  }
  .wrapper .items{
    display: flex;
    max-width: 900px;
    width: 100%;
    justify-content: space-between;
  }
  .items span{
    width: 280px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    /*padding: 7px 25px;*/
    font-size: 30px;
    font-weight: 500;
    cursor: pointer;
    color: white;
    /*border-radius: 50px;*/
    border-left: 2px solid white;
    border-right: 2px solid white;
    transition: all 0.3s ease;
  }
  .items .title-products{
    width: 420px;
    height: 120px;
    text-align: center;
    line-height: 120px;
    /*padding: 7px 25px;*/
    font-size: 30px;
    font-weight: 500;
    cursor: pointer;
    color: white;
    /*border-radius: 50px;*/
    border-left: 2px solid white;
    border-right: 2px solid white;
    transition: all 0.3s ease;
  }
  .items span.active{
    color: #7c7c7c;
    background: white;
  }
  .items span:hover{
    color: #fff;
    background: #850907;
  }

  @media (max-width: 500px){
    .wrapper-title .product-title{
      font-size: 28px;
    }
  }
  
  
  /*-------------------------galleria---------------------*/
  .gallery{
    display: flex;
   justify-content: space-between;
    /*align-items: center;*/
    flex-wrap: wrap;
    margin: 30px 30px;
    
  }
  .gallery .image{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    width: calc(95% / 4);
    /*width: 290px;*/
    /*padding: 7px;*/
    margin: 20px 5px;  
     
  }
  
  .gallery .image .img-shadow{
    width: 92%;
    height: 10px;
    text-align: center;
    line-height: 10px;  
  }
  
  .gallery .image span{
    display: flex;
    width: 100%;
    overflow: hidden;
    
  }
  .gallery .image span img{
    width: 100%;
    vertical-align: middle;
    transition: all 0.3s ease;  
    border: solid 1px rgba(124,124,124,0.3);
  }
  /*.gallery .image .img-producto{
    border: 1px solid rgba(0,0,0,0.2);
  }*/
  .gallery .image:hover img{
    transform: scale(1.1);  
  }
  .gallery .image:hover .text1{
    background: #006076;
    color: #fff;
  }
  .gallery .image.hide{
    display: none;
  }
  .gallery .image.show{
    animation: animate 0.4s ease;
  }
  @keyframes animate {
    0%{
      transform: scale(0.5);
    }
    100%{
      transform: scale(1);
    }
  }
  
  .text1{
    text-align: center;
    line-height: 70px;
    width: 100%;
    height: 70px;    
    background: white;
    border: 1px solid rgba(0,0,0,0.3);
    /*border-right: 1px solid rgba(0,0,0,0.3);*/
    transition: 0.3s;
  }
  /*.text1:hover{
    background: #006076;
    color: white;
  }
  .text2{
    background: green;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }*/
  .image .cont-text2{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.3);  
  }
  .cont-text2 .text2{
    width: 60%;
    height: 40px;  
    /*padding: 0 5px;*/
    text-align: center;
    line-height: 40px;
    margin: 0px 0;
    background: #fa3246;  
    border-radius: 5px;
    color: #fff;     
  }
  .cont-text2 i{
    font-size: 20px;
  }
    
  .preview-box{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    max-width: 500px;
    width: 100%;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    border-radius: 3px;
    padding: 0 5px 5px 5px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
  }
  .preview-box.show{
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.3s ease;
  }
  .preview-box .details{
    padding: 13px 15px 13px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .details .title{
    display: flex;
    font-size: 18px;
    font-weight: 400;
  }
  .details .title p{
    font-weight: 500;
    margin-left: 5px;
  }
  .details .icon{
    color: #006076;
    font-size: 30px;
    /*font-style: 22px;*/
    cursor: pointer;
  }
  .preview-box .image-box{
    width: 100%;
    display: flex;
  }
  .image-box img{
    width: 100%;
    border-radius: 0 0 3px 3px;
  }
  .shadow{
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    display: none;
    background: rgba(0,0,0,0.4);
  }
  .shadow.show{
    display: block;
  }
  
  @media (max-width: 1100px) {    
    .gallery .image{
      /*width: calc(100% / 4);*/
      width: 260px;
    }
  }
  @media (max-width: 700px) {    
    .gallery{
      display: flex;
      justify-content: center;
    }
    .gallery .image{
      /*width: calc(100% / 3);*/
      width: 280px;
    }
  }
  @media (max-width: 400px) {
    
    .gallery .image{
      /*width: calc(100% / 2);*/
      width: 350px;
      
    }
  }
  
  @media (max-width: 350px) {
    .wrapper nav .items{
      max-width: 400px;      
    }
    nav .items span{
      padding: 7px 15px;
    }
  }
  @media (max-width: 300px) {
    .wrapper{
      margin: 30px auto;
    }
    .wrapper nav .items{
      flex-wrap: wrap;
      justify-content: center;
    }
    nav .items span{
      margin: 5px;
    }
    .gallery .image{
      width: 100%;
    }
  }
  
  /*-------------------fin-----------------------------------*/

  /*------------------- descarga catalogo---------------------*/
  .descarga-catalogo{
    width: 100%;
    height: 130px;/*.........................................*/
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(#009ec3,25%,#006076);
    padding: 0 30px;  
    border-bottom: 1px solid white;  
  }

  .descarga-catalogo a{
    background: #c71311;
    width: 250px;
    height: 35px;
    text-align: center;
    border-radius: 5px;    
    color: white;
    padding: 7px 0;    
  }
  .descarga-catalogo .text-catalogo{
    color: white;
    font-size: 18px;
    opacity: .7;
  }

  @media(max-width: 400px){
    .descarga-catalogo{
      flex-direction: column;
    }
  }
  

  /*-------------------------fin----------------------------*/
  

/*------------footer--------------*/
.footers{
    display: flex;
    justify-content: space-around;
    align-items: start;    
    background: url(imagenes/slider-footer.jpg);
    background-size: cover;
    height: 320px;     
}
.footer-lefth{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.footer-lefth img{
    width: 120px;    
}
.footer-lefth .footer-text{
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    margin-top: 15px;
    opacity: 0.7;
}
.footer-rigth{
  margin-top: 30px;
}
.rigth-row{
    display: flex;
    justify-content: start;
    align-items: center;
}
.rigth-row i{
    color: #fff;
    font-size: 30px;
    margin: 5px 15px;
    opacity: 0.7;
}
.rigth-row .rigth-text{
    color: white;
    opacity: 0.7;
}
@media(max-width: 700px){
  .footers{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 600px;
  }
  .footer-lefth{
    margin: 20px;
  }

}


.contactanos-banner{
  width: 80%;
  margin: 30px;
}

/*---------------pag-nosotros-------*/
.nosotros-banner{
    width: 100%;
}
.nosotros-banner img{
    width: 100%;
}
.nosotros{
    display: flex;
    flex-direction: column;    
    width: 100%;
    height: 80%;
    padding-bottom: 20px;    
    
}
.nosotros-top{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 25%;
}
.nosotros-top img{
    width: 200px;
    
    margin: 10px;
}
.nosotros-top h2{
    font-size: 30px;
    font-weight: 600;
    color: #006076;
    text-transform: uppercase;
    margin-bottom: 15px ;
    
}
.nosotros-top p{
    font-size: 16px;
    color: #7c7c7c;text-align: center;
}
.nosotros-botton{    
    display: flex;    
}
.nosotros-botton .nos-box{    
    display: flex;
    flex-direction: column;   
    justify-content: space-around;
    margin: 0 auto;
}
.nos-box .mision{
    width: 500px;
    height: 200px;
    background: #006076;
    color: #fff;
    padding: 30px 30px;
    border-radius: 5px;    
}
.nos-box .vision{
    width: 500px; 
    height: 200px;
    background: #006076;
    color: #fff;
    padding: 30px;
    border-radius: 5px;    
}
.mision h3{
    text-transform: uppercase;
    margin: 10px 0;
}
.vision h3{
    text-transform: uppercase;
    margin: 10px 0;
}
.mision p{
    font-size: 14px;
}
.vision p{
    font-size: 14px;
}
.nos-box img{
    width: 500px;
    margin-top: 2px;
}


@media (max-width: 1050px){
  
  .nos-box .mision{
    width: 350px;
    height: 250px;
  }
  .nos-box .vision{
    width: 350px;
    height: 250px;
  }
  .nos-box img{
    width: 350px;
    margin-top: 2px;
  }
}

@media (max-width: 740px){
  
  .nos-box .mision{
    width: 250px;
    height: 300px;
    
  }
  .nos-box .vision{
    width: 250px;
    height: 300px;
  }
  .nos-box img{
    width: 250px;
    margin-top: 2px;
  }
}
@media (max-width: 550px){
  
  .nosotros-botton{    
    flex-direction: column;
  }
  .nos-box .mision{
    width: 390px;
    height: 200px;
    
  }
  .nos-box .vision{
    width: 380px;
    height: 200px;
  }
  .nos-box img{
    width: 380px;
    margin-top: 2px;
  }
}



/*---------------pag-productos--------*/
.banner img{
  width: 100%;
  height: 350px;
}

/*----------------pag contatos-----------------*/
.contacto-in{
  width: 80%;
  height: auto;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  margin: 80px auto;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px #666;
}
.contacto-map{
  width: 100%;
  height: auto;
  flex: 50%;
}
.contacto-map iframe{
  width: 100%;
  height: 100%;    
}

.contacto-form{
  width: 100%;
  height: auto;
  flex: 50%;
  padding: 30px;
  text-align: center;
}
.contacto-form h1{
  margin-bottom: 10px;
}
.contacto-form-txt{
  width: 100%;
  height: 40px;
  color: #000;
  border: 1px solid #bcbcbc;
  border-radius: 5px;
  outline: none;
  margin-bottom: 20px;
  padding: 15px;
}
.contacto-form-txtarea{
  width: 100%;
  height: 130px;
  color: #000;
  border: 1px solid #bcbcbc;
  border-radius: 5px;
  outline: none;
  margin-bottom: 20px;
  padding: 15px;
}
.contacto-form-txt::placeholder{
  color: #aaa;
}
.contacto-form-txtarea::placeholder{
  color: #aaa;
}
.contacto-form-btn{
  width: 100%;
  border: none;
  outline: none;
  border-radius: 50px;
  background: #006076;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 0;
  cursor: pointer;
  font-size: 18px;

}



