@import url('https://fonts.googleapis.com/css?family=Baloo|Montserrat');
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
}
/*--------------------------------------------------- HEADER ---------------------------------------------------*/
a:visited {
  color: #4a3f35;
}
a:link {
  color: #4a3f35;
}
header {
  width: 100%;
  height: 60px;
  background: #fff;
  color: grey;
  border-bottom: 2px solid red;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.contenedor {
  width: 95%;
  margin: auto;
}
header img {
  margin: 12px 0;
  float: left;
}
header .contenedor {
  display: table;
}
@media (min-width:1024px) {
  .contenedor {
    width: 80%;
  }
}
@media (min-width:1280px) {
  .contenedor {
    width: 60%;
  }
}
/*--------------------------------------------------- LISTADO ---------------------------------------------------*/
.listado {
  background: #fff;
  padding: 30px;
  margin: auto;
  text-align: center;
}
.cabecera {
  background-color: #393e46;
  font-size: 70%;
  color: #fff;
}
.cabecera th {
  padding: 10px;
}
.listado td {
  background: #fff;
  padding: 10px;
  font-size: 90%;
}
.test:hover {
  color: #0047ba;
  cursor: pointer;
}
.categoria {
  color: #fff;
  text-align: left;
  background-color: #fff;
  font-size: 11px;
  padding: 5px 20px;
}
.pdf:hover td {
  color: #fff;
  cursor: pointer;
}
.icon-file-pdf {
  font-size: 20px;
  color: #c70039;
}
.pdf:hover .icon-file-pdf {
  font-size: 24px;
  color: #c70039;
  transition: font-size 0.2s;
}
/*--------------------------------------------------- MENU ---------------------------------------------------*/
#icono-menu {
  display: none;
}
header label {
  float: right;
  font-size: 24px;
  margin: 15px 0;
  cursor: pointer;
  transition: color .4s, font-size .4s;
}
header label:hover {
  color: #086972;
  font-size: 26px;
}
.menu {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0047ba;
  opacity: 0.93;
  color: #fff;
  transition: all 0.5s;
  transform: translateX(-100%);
}
.menu a {
  display: block;
  color: grey;
  height: 60px;
  text-decoration: none;
  padding: 21px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: background .4s, padding .4s;
  font-weight: 700
}
.menu a:hover {
  background: #0047ba;
  color: #fff;
  /*padding-left: 30px;*/
}
.select {
  background: #0047ba;
  color: #fff;
}
#icono-menu:checked ~ .menu {
  transform: translateX(0%);
}
@media (min-width:1024px) {
  .menu {
    position: static;
    width: auto;
    height: auto;
    transform: translateX(0%);
    float: right;
    display: flex;
    background: none;
  }
  .menu a {
    border-bottom: none;
  }
  header label {
    display: none;
  }
}
section {
  width: 100%;
  margin: 0px auto;
  padding: 0;
}
/*----------------------------------- SLIDER -----------------------------------*/
#c-slider {
  margin-top: 60px;
  width: 100%;
  max-width: 1920 px;
  position: relative;
  overflow: hidden;
}
#slider {
  display: flex;
  padding: 0;
  width: 500%;
  height: auto;
  animation: cambio 20s infinite alternate;
  animation-timing-function: cubic-beziersteps(3);
}
#slider img {
  width: 100%;
}
#btn-prev, #btn-next {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  transform: tranlateY(-50%);
  line-height: 40px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  font-family: monospace;
  cursor: pointer;
}
#btn-prev:hover, #btn-next:hover {
  background: rgba(20, 255, 255, 1);
}
#btn-prev {
  left: 30px;
}
#btn-next {
  right: 30px;
}
/*--------------------------------- SCROLL ---------------------------------*/
.center {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
}
.down {
  position: relative;
  width: 30px;
  height: 45px;
  border-radius: 14px;
  background: transparent;
  border: 3px solid #fff;
  overflow: hidden;
  animation: tamano 1.2s linear;
}
@keyframes tamano {
  35% {
    width: 30px;
    height: 45px;
    border-radius: 14px;
  }
  75% {
    width: 38px;
    height: 55px;
    border-radius: 18px;
  }
}
.down:before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  left: 50%;
  top: 3px;
  transform: translate(-50%, 0);
  animation: animate 1s linear infinite;
}
.down:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  left: 50%;
  top: 5px;
  transform: translate(-50%, 0);
  border-radius: 3px;
}
@keyframes animate {
  0% {
    transform: translate(-50%, 10px);
    opacity: 0;
    width: 6px;
    height: 6px;
  }
  35% {
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, 40px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 60px);
  }
}
/*-- PAGINA DE PRODUCTOS --*/
.info_producto {
  margin-top: 60px;
  padding: 40px;
  display: flex;
  flex-flow: row wrap;
}
.foto_producto {
  padding: 30px;
}
/*------------------------------- PRODUCTOS MENU-------------------------------*/
.menu_categorias {
  width: inherit;
  list-style: none;
  display: block;
  float: left;
}
.menu_categorias ul {
  list-style: none;
  display: none;
}
.menu_categorias a {
  background-color: darkblue;
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 10px;
  border-bottom: 1px solid aqua;
}
.menu_categorias a:hover {
  background-color: #1d1b38;
  color: aqua;
  padding-left: 20px;
}
.menu_categorias li:hover ul {
  display: block;
  padding-left: 30px;
  transition: display 0.09s;
}
.menu_categorias li ul a {
  background-color: #b9ac92;
}
.menu_categorias li ul a:hover {
  background-color: #01a9b4;
  padding-left: 30px;
}
/*---------------------------- PRODUCTOS -------------------------------*/
.info_producto h1 {
  color: #4a3f35;
}
.descripcion_producto {
  color: #4a3f35;
}
.contenedor_cajas {
  width: 100%;
  margin: auto;
  padding: 10px;
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  flex: auto;
}
.destacados {
  color: #fff;
  background: #646464;
}
.cajas {
  padding: 70px;
  display: flex;
  flex-flow: column wrap;
  text-align: center;
}
.cajas a {
  text-decoration: none;
  font-size: 90%;
}
.cajas a:hover {
  color: red;
}
@media (max-width:360px) {
  .productos {
    flex-wrap: wrap;
  }
  .iconos h3 {
    font-size: 15px;
  }
}
.folleto {
  width: 50%;
  margin: auto;
  padding: 20px;
  border-radius: 3px;
  background: #0047ba;
  text-align: center;
}
.folleto a {
  text-decoration: none;
  color: #fff;
}
.folleto:hover {
  padding: 25px;
  background: green;
  transition: padding 0.2s, background 0.2s;
}
/*-- AXINEA --*/
#axinea {
  background-image: url(fondoempresa.jpg);
  background-size: cover;
  background-attachment: fixed;
  margin: auto;
  padding: 30px;
  text-align: center;
  color: #fff;
}
.textoaxinea {
  margin: auto;
  padding: 40px;
  color: #fff;
  width: 80%;
  text-align: center;
  font-size: 100%;
}
/*--------------------------------------------------- BANNER ---------------------------------------------------*/
#banner {
  margin: 60px auto 0px;
  position: relative;
}
#banner img {
  width: 100%;
  height: 100%;
  border-bottom: 2px solid #0047ba;
  margin: 0px;
}
#banner .contenedor {
  position: absolute;
  width: 60%;
  top: 50%;
  left: 35%;
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
}
#banner p {
  margin-left: 30px;
}
#banner h1 {
  margin-left: 30px;
  font-size: 35px;
  text-shadow: 2px 2px 10px #5c5757;
}
#banner p {
  text-shadow: 2px 2px 5px #363434;
}
@media (min-width:1024px) {
  #banner h1 {
    font-size: 45px;
  }
  #banner p {
    font-size: 20px;
  }
}
.descripcion {
  width: 70%;
  padding: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 120px;
}
.descripcion h2 {
  font-size: 30px;
  padding: 10px 0;
  color: #0047ba;
}
.descripcion p {
  color: #0047ba;
  font-size: 17px;
}
@media (max-width:360px) {
  .descripcion {
    width: 100%;
    margin: auto;
  }
  .descripcion h2 {
    font-size: 25px;
  }
  .descripcion p {
    font-size: 18px;
    z-index: 400;
  }
  #banner h1 {
    font-size: 25px;
  }
}
@media (max-width:360px) {
  .folleto a {
    width: 200px;
    font-size: 12px;
  }
}
/*-------------------------------- CONTACTO --------------------------------*/
#sec-contacto .contenedor {
  padding: 40px;
  display: flex;
  align-items: center;
}
#suc {
  flex: 1 1 45%;
  box-sizing: border-box;
  padding: 20px;
  margin: auto;
}
#suc h1 {
  font-size: 18px;
  color: #575151;
}
#suc p {
  color: grey;
}
@media (max-width:950px) {
  #sec-contacto .contenedor {
    display: block;
    margin: auto;
    align-content: center;
  }
  #suc {
    text-align: center;
    margin: auto;
  }
}
.titulocontacto {
  padding: 10px 50px 10px 10px;
  text-align: right;
  color: #0047ba;
}
/*--------------------------------------------------- FORMULARIO ---------------------------------------------------*/
#formulario {
  display: block;
  flex: 1 1 45%;
  align-items: center;
  text-align: center;
  margin: auto;
}
form {
  width: 450px;
  text-align: center;
  margin: auto;
  padding: 10px 0 40px;
  box-sizing: border-box;
  justify-content: center;
}
input, textarea {
  border: .5px solid grey;
  border-radius: 3px;
  width: 100%;
  margin: 0;
  margin-bottom: 10px;
  padding: 10px;
  box-sizing: border-box;
}
textarea {
  min-height: 100px;
  max-height: 200px;
  max-width: 100%;
  min-width: 100%;
}
#boton {
  margin: 0;
  padding: 13px;
  color: #fff;
  cursor: pointer;
  background: #0047ba;
  padding: 15px 20px 15px;
  border: none;
  transition: background .4s ease-in-out, padding .4s ease-in-out, font-size .4s;
}
#boton:hover {
  background: #c70039;
  color: #fff;
  padding-top: 20px;
  font-size: 16px;
}
#formulario h1 {
  color: #575151;
  font-size: 25px;
  padding: 20px;
}
/*--------------------------------------------------- FOOTER ---------------------------------------------------*/
footer {
  width: 100%;
  height: 100px;
  background: #162447;
}
footer .contenedor {
  padding: 30px;
}
footer p {
  text-align: center;
  color: #fff;
  font-family: sans-serif;
  font-size: 12px;
  padding: 10px;
}
/*--------------------------------------------------- REDES ---------------------------------------------------*/
.redes {
  text-align: center;
  padding: 5px;
}
.redes a {
  color: #fff;
  text-decoration: none;
  padding: 0px 3px;
  font-size: 16px;
  transition: color .4s ease-in-out, font-size .4s;
}
.redes a:hover {
  color: #0047ba;
  font-size: 20px;
}
/*------------------------------ ENVIADO ------------------*/
#correo_enviado {
  width: 80%;
  height: 790px;
  align-content: center;
  position: relative;
}
.enviado {
  padding-top: 60px;
  margin-top: 100px;
  color: #575151;
}
.enviado a {
  text-decoration: none;
  background: #0047ba;
  padding: 15px 30px;
  color: #fff;
  transition: background .4s ease-in-out, padding .4s ease-in-out, font-size .4s;
}
.enviado a:hover {
  background: #c70039;
  padding-left: 40px;
}
/*INGRAPHICA*/
/* Estilos generales para la tabla */
.table-wrapper {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
/*th, td {
  padding: 8px;
  border: 1px solid #ddd;
}*/
.pdf {
  min-width: 60px !important
}
/* Estilos específicos para pantallas pequeñas */
@media screen and (max-width: 600px) {
  /* Ajusta el diseño de la tabla para pantallas pequeñas */
  table {
    border: 0;
  }
  th, td {
    border: 0;
    /*border-bottom: 1px solid #ddd;*/
    display: block;
    text-align: left;
  }
  th {
    background-color: #f2f2f2; /* Cambia el color de fondo para la fila de encabezado */
  }
  .cabecera, .icono {
    display: none;
  }
}
/*------------------------------------*\
    #FORMS
\*------------------------------------*/
.form-control {
  color: #222;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  height: 45px;
  /*text-transform: capitalize;*/
  border: none;
  background: #f5f5f5;
  padding-left: 24px;
  margin-bottom: 20px;
  position: relative;
  border-radius: 6px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-control:focus {
  border-color: #752646;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* Placeholder */
.form-control::-webkit-input-placeholder {
  color: #222;
}
.form-control:-moz-placeholder {
  color: #ffffff;
}
.form-control::-moz-placeholder {
  color: #222;
}
.form-control:-ms-input-placeholder {
  color: #222;
}
.input-group {
  border-radius: 25px;
  border: 1px solid #ffffff;
  background-color: transparent;
  overflow: hidden;
  padding: 3px;
}
.btn {
  margin: 0;
  color: #fff;
  cursor: pointer;
  background: #0047ba;
  padding: 15px 20px 15px;
  border: none;
  transition: background .4s ease-in-out, padding .4s ease-in-out, font-size .4s;
  font-size: 16px;
}
.btn:hover {
  background: #c70039;
  color: #fff;
  font-size: 16px;
}
.input-group .input-group-btn {
  border-radius: 50px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  /* Ajusta el diseño para pantallas pequeñas */
  form {
    width: 100%;
    text-align: center;
    margin: auto;
    padding: 10px 0 40px;
    box-sizing: border-box;
    justify-content: center;
  }
  nav.menu a {
    color: #fff;
  }
  nav.menu a:visited {
    background: #1960d3 !important;
    padding-left: 30px;
  }
  nav.menu {
    height: auto
  }
  .icon-file-pdf {
    display: inline-block; /* Muestra el ícono del PDF como un bloque en línea */
    margin-right: 5px; /* Agrega un margen a la derecha para separar el ícono del texto */
  }
  .pdf-text {
    display: inline; /* Muestra el texto "Descargar el inserto" como texto en línea */
      text-transform: uppercase
  }
    a:link {
  text-decoration: none
}
    #slides {
  height:600px !important;
}
    .cajas {
  padding: 10px;
}
 .destacados h1{
  font-size:27px
}  
 .descripcion {
  margin-left: 60px;
}   
}
@media screen and (min-width: 601px) {
        .pdf-text {
            display: none; /* Oculta el texto "Descargar el inserto" en resoluciones mayores a 600px */
        }
    }