@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*@import url('https://fonts.cdnfonts.com/css/beyond-wonderland');*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Global Styles */

h1 {
  /*font-size: 50px;
  line-height: 64px;
  color: #222;*/
  text-align: center;
}

h2 {
  display: block;
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
  font-family: 'Times New Roman', Times, serif;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  padding-top: 7px;
  color: #000000;
  font-size: 15px;
  font-family: 'Work Sans', sans-serif;
  position: relative;
}


.section-p1 {
  padding: 0px 0px;
}

button.normal {
font-size: 14px;
font-weight: 600;
padding: 15px 30px;
color: black;
background-color: #fff;
border-radius: 4px;
cursor: pointer;
border: none;
outline: none;
transition: 0.2s;
}
button.white {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color:#fff;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid #fff;
  outline: none;
  transition: 0.2s;
  }

.section-m1 {
  margin: 40px 0;
}

body {
  width: 100%;
}

 /* header start parte del menu*/ 
#header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:  20px 20px;
  background: #E3E6F3;
  box-shadow:  0 5px 15px rgba(0, 0, 0, 0.06);
  z-index:999;
  position: sticky;
  top:0;
  left: 0;
 }

 #bodymain {
  width:75%;
  margin: auto;
 }
 #header a{
  height: auto;
  width: 30%;
 }

 #header img {
  width: 100%;
  height: auto;
 }

#navbar{
  display: flex;
  align-items: center;
  justify-content: center;

 }
#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
 }


 
#navbar li a{
text-decoration: none;
font-size: 20px;
font-weight: 600;
color: #1a1a1a;
transition: 0.3s ease;
}
#navbar li a:hover, 
#navbar li a.active{
  color:#088178;
}
#navbar li a.active::after,
#navbar li a:hover::after {

  content:"";
  width: 30%;
  height: 2px;
  background: #088178;
  position: absolute;
  bottom: -4px;
  left: 20px;

}

#mobile{
  display: none;
  align-items: center;
}

#close{ 
  display: none;
  }

/* Home Page */

#hero{
  height: auto;
  width: 100%;
  background-size: cover;
  background-position: top 25% right 0;
  display: flex;
  flex-direction: column;
  align-items: unset;
  justify-content: center;

}

#hero img{
  height: auto;
  width: 100%;
  background-size: cover;
  background-position: top 25% right 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

}

#hero .imghero{
  position: relative;
  display: inline-block;
  width: 100%; /* O ajusta según tus necesidades */
  max-width: 100%; /* O ajusta según tus necesidades */
}

#hero .input-container{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  max-width: 400px;
}

#hero .input-container input{
  display: block;
  width: 100%;
  box-sizing: border-box; /* Para incluir el padding en el ancho */
  margin-bottom: 10px;
  font-size: 20px;
}

#hero .input-container button{
  display: block;
  width: 50%;
  max-width: 200px; /* Por ejemplo, puedes limitar el ancho máximo */
  margin: 0 auto; /* Para centrar horizontalmente */
  font-size: 15px;
}

#hero h4{
  padding-bottom: 15px;
}
#hero h4{
 color :#088178;
}
 /* Spinner CSS */
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-left-color: #088178;
  animation: spin 1s ease infinite;
  margin: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*origin COCtest*/

/*Loading page*/
.jm-loadingpage {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999999;
  background: url(img/cocloadingdots.gif) center no-repeat #fff;
}
/*Loading page*/


.container {
  display: flex;
  padding-top: 0px;
  overflow-x: auto;
  gap: 0px;
  justify-content: center;
  max-width: 100%;
  flex-wrap: wrap;
  margin-left: 10px;
  margin-right: 10px;
}
.product {
    min-width: auto;
    min-height: 10%;
    padding: 10px 12px;
    border: 1px solid #E3E6F3;
    border-radius: 20px;
    left: 0;
    cursor: pointer;
    /* box-shadow: 20px 20px 30px #E3E6F3; */
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
    width: min-content;
    flex: 0 0 auto;
    height: auto;
    text-align: center;
}
.product img {
  border-radius: 20px;
  max-width: 100%;
  height: auto;
}
.product h2 {
  padding-top: 7px;
  color: #000000;
  font-size: 15px;
  font-family: 'Work Sans', sans-serif;
}
.product p.price {
  padding-top: 10px;
  font-size: 17px;
  font-weight: 700;
  color: #088178;
  font-family: 'Work Sans', sans-serif;
  padding-bottom: 10px;
}
.search-container {
  margin-top: 1cm;
  margin-bottom: 0.5cm;
  margin-left: 1cm;
  margin-right: 1cm;
  text-align: center;
}
.search-container input[type=text],
.search-container input[type=number] {
  padding: 5px;
  margin-right: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
}
.search-container button {
  padding: 10px 20px; /* Ajustar el padding para que coincida con los otros botones */
  font-size: 30px;
  margin-top: 1cm; /* Agregar margen de 1cm arriba */
  margin-bottom: 0.5cm; /* Agregar margen de 1cm abajo */
}
#pagination button {
  padding: 10px 20px;
  font-size: 30px;
  margin-bottom: 1cm; /* Agregar margen de 1cm abajo */
  margin-top: 1cm;
  cursor: pointer;
}
.product a {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #1C6EA4;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-family: 'Times New Roman', Times, serif;
}

.product .productdes {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #ffffff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-family: 'Times New Roman', Times, serif;
}

.note {
  font-size: 12px;
  color: #555;
  margin-top: 5px;
}

.imgcont {
    width: 250px;
    height: 250px;
    overflow: hidden;
    object-fit: contain;
}

.imgcont img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*origin COCtest*/

footer{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #E3E6F3;
  }
  footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-top: 100px;
    margin-right: 20px;
  }
  footer .logo{
    margin-bottom:30px;
    margin-top: 30px;
    width: 60%;
    height: auto;
  }
  footer h4{
    font-size: 14px;
    padding-bottom: 20px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif; /* Agrega la fuente Work Sans */
  }
  footer p{
    font-size: 13px;
    margin: 0 0 18px 0;
    font-family: 'Poppins', Arial, Helvetica, sans-serif; /* Agrega la fuente Work Sans */
  }

  footer p strong{
    font-size: 13px;
    margin: 0 0 18px 0;
    font-family: 'Poppins', Arial, Helvetica, sans-serif; /* Agrega la fuente Work Sans */
  }

  footer a{
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif; /* Agrega la fuente Work Sans */
  }
  footer .follow{
  color:#465b52;
  padding-right: 4px;
  cursor: pointer;
  }
  
  footer .install .row img{
    border: 1px solid #088178;
    border-radius: 6px;
  }
  footer .install img{
    margin: 10px 0 15px 0;
  }

  footer .follow i {
    font-size: 60px;
  }

  footer .follow i:hover,
  footer a:hover {
    color: #088178;
  }
  footer .copyright{
    width: 100%;
    text-align: center;
    margin-top: 560px;
  }




/* Start Media Query */

/* Start Media Query */



  @media (max-width:1025px){


    #bodymain {
    width:100%;
    margin: auto;
   }
  
  
   #header a{
    height: auto;
    width: 50%;
   }
    
    #navbar {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      position: fixed;
      top: 0;
      right: -300px;
      height: 100vh;
      width: 180px;
      background-color: #E3E6F3;
      box-shadow: 0 40PX 60PX rgba(0, 0, 0, 0.01);
      padding: 80PX 0 0 10PX;
      transition: 0.3s;
    }
  
    #navbar.active {
    right: 0px;
    }

    #navbar li{
    margin-bottom: 25px;
    }

    #mobile{
    display: flex;
    align-items: center;
    }

    #close{ 
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px; color: #222;
    font-size: 24px;
    }

    footer .copyright {
      width: 100%;
      text-align: center;
      margin-top: 380px;
    }

    .product {
      min-width: auto;
      min-height: 10%;
      padding: 10px 12px;
      border: 1px solid #E3E6F3;
      border-radius: 20px;
      left: 0;
      cursor: pointer;
      /* box-shadow: 20px 20px 30px #E3E6F3; */
      margin: 15px 0;
      transition: 0.2s ease;
      position: relative;
      width: min-content;
      flex: 0 0 auto;
      height: auto;
      text-align: center;
    }

    .fa-solid, .fas {
  font-weight: 900;
  font-size: 45px;
}

}

@media (max-width:480px){


  #bodymain {
    width:100%;
    margin: auto;
   }
  
  
   #header a{
    height: auto;
    width: 50%;
   }
  .note {
    font-size: 10px;
    color: #555;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
  }

  #hero .input-container input {
    font-size: 10px;
    display: block;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 10px;
  }

  #hero .input-container {
    display: inline-flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 400px;
    gap: 10px;
  }

  .imgcont {
    width: 130px;
    height: 200px;
    overflow: hidden;
    object-fit: contain;
  }
  .product {
    min-width: auto;
    min-height: 10%;
    padding: 10px 12px;
    border: 1px solid #E3E6F3;
    border-radius: 20px;
    left: 0;
    cursor: pointer;
    /* box-shadow: 20px 20px 30px #E3E6F3; */
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
    width: min-content;
    flex: 0 0 auto;
    height: auto;
    text-align: center;
  }

  .product h2 {
    padding-top: 7px;
    color: #000000;
    font-size: 10px;
    font-family: 'Work Sans', sans-serif;
  }

  .product p.price {
    padding-top: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #088178;
    font-family: 'Work Sans', sans-serif;
  }

  p {
    padding-top: 7px;
    color: #000000;
    font-size: 12px;
    font-family: 'Work Sans', sans-serif;
    position: relative;
  }

  .product a {
    display: inline-block;
    font-size: 10px;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #1C6EA4;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    /* font-family: 'Times New Roman', Times, serif; */
  }

  #pagination button {
    padding: 10px 20px;
    font-size: 15px;
    margin-bottom: 1cm;
    margin-top: 0cm;
  }
  .fa-solid, .fas {
    font-weight: 900;
    font-size: 25px;
  }
  
  
  footer .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
    margin-left: 20px;
    margin-top: 20px;
    margin-right: 20px;
  }
  
  footer .follow i {
    font-size: 30px;
  }
  
  footer .copyright {
    width: 100%;
    text-align: center;
    margin-top: 100px;
  }

  }




