@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: left;
  font-size: 20px;
}

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;
  }


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: 100%;
    max-width: 200px; /* Por ejemplo, puedes limitar el ancho máximo */
    margin: 0 auto; /* Para centrar horizontalmente */
  }
  
  #hero h4{
    padding-bottom: 15px;
  }
  #hero h4{
   color :#088178;
  }

/*origin COCtest*/

.product-details .column2 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; */
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: auto; /* Establecer la altura al 100% de la ventana */
}

.container .product-details{
  display: flex;
  align-items: center;
  position: relative;
  height: auto; /* Establecer la altura al 100% de la ventana */
  gap: 0px;
  margin: 100px 0px 50px 100px;
}

.container .product-details .column1{
    width: 300px;
    margin-left: 0px;
    align-items: center;
    text-align: center;
  }


.container .product-details .column2{
    align-items: center;
    margin: 0px 100px 0px 30px;
  }

h1 {
  margin-bottom: 20px;
  font-size: 20px;
}

.price {
  font-size: 24px; /* Tamaño de fuente más grande */
  color: green; /* Color verde */
  font-weight: bold; /* Negrita */
}

.graybox {
  display: flex;
  flex-direction: column;
  /*align-items: center;*/
  position: relative;
  height: auto; /* Establecer la altura al 100% de la ventana */
  background-color: #E3E6F3;
  margin: 40px 100px 40px 100px;
  padding: 30px 30px 30px 30px;
}

.graybox p{
  margin-bottom: 40px;
  margin-top: 40px;
  font-size: 15px;
  text-align: center;
}
/*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;
  transition: opacity 0.5s ease; /* Agregar transición para el efecto de fade out */
  opacity: 1; /* Establecer la opacidad inicial */
}
/*Loading page - Ocultar con efecto de fade out */
.jm-loadingpage.fadeout {
  opacity: 0; /* Establecer la opacidad a 0 */
  pointer-events: none; /* Deshabilitar eventos de ratón */
  z-index: -1; /* Mover detrás de otros elementos */
}
/*Loading overlay*/
.jm-loadingoverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999999;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}



/*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;
  }

  h1 {
    margin-bottom: 20px;
    font-size: 13px;
  }

  #mobile{
  display: flex;
  align-items: center;
  }

  #close{ 
  display: initial;
  position: absolute;
  top: 30px;
  left: 30px; color: #222;
  font-size: 24px;
  }

  .container .product-details{
    display: flex;
    align-items: center;
    position: relative;
    height: auto; /* Establecer la altura al 100% de la ventana */
    gap: 0px;
    margin: 50px 0px 50px 100px;
  }

  .graybox p {
    margin-bottom: 40px;
    font-size: 17px;
}

  footer .copyright {
    width: 100%;
    text-align: center;
    margin-top: 380px;
  }
  .fa-solid, .fas {
  font-weight: 900;
  font-size: 45px;
}

}

@media (max-width:480px){
#bodymain {
    width:100%;
    margin: auto;
   }
  
  
   #header a{
    height: auto;
    width: 50%;
   }
html, body {
   width: 100%;
   height: 100%;
   margin: 0;
   padding: 0;
   overflow-x: hidden;
  }


h1 {
  font-size:9px;
}

#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;
  }


p {
  padding-top: 7px;
  color: #000000;
  font-size: 10px;
 /* font-family: 'Work Sans', sans-serif;*/
  position: relative;
}

.price {
    font-size: 12px; /* Tamaño de fuente más grande */
    color: green; /* Color verde */
    font-weight: bold; /* Negrita */
  }

.container .product-details{
    display: flex;
    align-items: center;
    position: relative;
    height: auto; /* Establecer la altura al 100% de la ventana */
    gap: 0px;
    margin-right: 170px;
    margin-left: 170px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  
  .container .product-details .column1{
      margin-right: 10px;
      align-items: center;
      text-align: center;
      width: 260px;
    }
  
  
  .container .product-details .column2{
      align-items: center;
      margin: 0px 0px 0px 10px;
    }



.graybox {
  display: flex;
  flex-direction: column;
  /*align-items: center;*/
  position: relative;
  height: auto; /* Establecer la altura al 100% de la ventana */
  background-color: #E3E6F3;
  margin: 30px 30px 40px 30px;
  padding: 20px 30px 20px 30px;
}

.graybox p{
  margin-bottom: 20px;
  font-size: 12px;
}


.graybox ul{
  font-size: 10px;
}

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;
}

  .fa-solid, .fas {
  font-weight: 900;
  font-size: 25px;
}

}
