@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
:root{
  /* FONT */
  

  /* COLORS */
  --color: #9176FF;
  --bg-color: #f4f4f4;
  --primary : #cd262e;
  --secundary :#00A6E8;
  --otherbgcolor:rgb(226, 235, 253);
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
}


body{
    background-color: #ffffff;
    
}
.Camara label{
    color: #ff0000;
}

.header{
    position: fixed;  /* Fija la posición del header en la parte superior */
    top: 0;           /* Alinea el header en la parte superior de la pantalla */
    width: 100%;      /* Asegura que el header ocupe el ancho completo */
    z-index: 1000;    
    background-color: #ffffffe7;
    font-weight: 550;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
    padding: 5px 10%;
   
}

.header .logo{
    cursor: pointer;
}

.header .logo img{
    height: 50px;
    width: auto;
    transition: all 0.3s;
}

.header .logo img:hover{
    transform: scale(1.2);
}

.header .nav-links ul{
    list-style: none;
}

.header .nav-links ul li{
    display: inline-block;
    padding: 0 20px;    
}

.header .nav-links ul li:hover{
    transform: scale(1.1);
}

.header .nav-links ul li a{
    font-size: 700;
    color: #555555;
    text-decoration: none;    
}

.header .nav-links ul li a:hover{
    color: #CD262F;
}

.header .btn button{
    font-weight: 700;
    color: #1b3039;
    padding: 9px 25px;
    background: #eceff1;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.botonformdiv{
  margin-top: 20px;
}
form a{
  text-decoration: none;
  color: white;
  background-color: var(--secundary);
  border-radius:8px;
  font-size: 19x;
  padding: 4px;
  
}
form a:hover{
  text-decoration: none;
  color: white;
  background-color: var(--primary);
  border-radius:8px;
}
.header .btn button:hover{
    background-color: #e2f1f8;
    color: #3b3eee;
    transform: scale(1.1);
}

.hamburger-menu {
    display: none;
}
/*Seccion De la Peticion con Barra de Aumento*/

.Barra-credito{
  height: 100vh;
  
  display: flex;
  
  justify-content: space-between;
}
.Welcome-Textbox {
  width: 100%;
  height: 100%;
  flex-basis: 50%;
  display: flex;
  justify-content: center; /* Centrado horizontal */
   /* Centrado vertical */
  flex-direction: column; /* Para que los elementos se apilen verticalmente */
}

.Welcome-Textbox h1,
.Welcome-Textbox h3,
.Welcome-Textbox p {
  margin: 0;
  
}

.Welcome-Textbox h1 {
  font-weight: 100;
  color: #3b3b3b;
  font-size: larger;
  padding-left: 10%;
  text-shadow: 1px 1px 2px rgba(197, 28, 28, 0.11);
}

.Welcome-Textbox h3 {
  margin-left: 13%;
  color: #00A6E8;
}

.Welcome-Textbox p {
  margin-left: 13%;
  color: #292929ec;
  font-weight: 500;
}


.Welcome-Textbox h3,
.Welcome-Textbox p {
  padding-left: 0%; 

}
.Creditbartool{
 
 
  flex-basis: 50%;
  display: flex;
  justify-content: center; /* Centrado horizontal */
  align-items: center; /* Centrado vertical */
 
}
.Creditbartool h3{
  color: #000000bd;

}
.ActualBox{
  
 
  padding: 40px 40px;
  border-radius: 15px;
  box-shadow: 0px 0px 20px 10px rgba(0, 145, 255, 0.089);  
 
  margin: 0px; 
  background-color: #ffffff;
  
}
.periodo{
  display: flex;
  font-size: medium;
}
#time-frame{
  font-size: medium;
}


.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box; /* Para incluir el padding en el ancho total */
}

textarea {
  height: 100px;
}

.enviar {
  background-color: #00A6E8;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #cd262eec;
}

button:active {
  background-color: #00A6E8;
}
.slider{
  display: flex;
  justify-content: space-between;
  
}
.slider img{
  width: 20px;
}
.increment-btn, .decrement-btn {
  background-color: transparent; /* quitar el fondo */
  border: none; /* quitar el borde */
  display: flex; /* usar flexbox para centrar */
  justify-content: center; /* centrar horizontalmente */
  align-items: center; /* centrar verticalmente */
  padding: 0; /* quitar relleno */
}

/* Estilos opcionales para la imagen dentro del botón */
.increment-btn img, .decrement-btn img {
  max-width: 100%; 
  max-height: 100%;
}


.increment-btn:hover, .decrement-btn:hover {
  background-color: #ffffff00;
}
.custom-slider ,.custom-slider2 {
  -webkit-appearance: none; /* Elimina los estilos por defecto del navegador */
  appearance: none;
  width: 100%; /* Ancho completo del slider */
  height: 6px; /* Altura del slider */
  background: #00a6e834; /* Color de fondo del slider */
  outline: none; /* Quita el contorno predeterminado del slider */
  border-radius: 9px; /* Radio de borde del slider */
}
.custom-slider :hover ::-webkit-slider-thumb{
  width: 19px;
  height: 19px;
}
/* Estilos para la bolita del slider en Chrome y Safari */
.custom-slider2::-webkit-slider-thumb {
  -webkit-appearance: none; /* Elimina los estilos por defecto del navegador */
  appearance: none;
  width: 15px; /* Ancho de la bolita */
  height: 15px; /* Altura de la bolita */
  background: #00A6E8; /* Cambia el color de la bolita */
  border-radius: 60%; /* Hace la bolita redonda */
  cursor: pointer; /* Cambia el cursor al pasar sobre la bolita */
}
.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Elimina los estilos por defecto del navegador */
  appearance: none;
  width: 15px; /* Ancho de la bolita */
  height: 15px; /* Altura de la bolita */
  background: #cd262e; /* Cambia el color de la bolita */
  border-radius: 60%; /* Hace la bolita redonda */
  cursor: pointer; /* Cambia el cursor al pasar sobre la bolita */
}

/* Estilos para la bolita del slider en Firefox */
.custom-slider2::-moz-range-thumb{
  -webkit-appearance: none; /* Elimina los estilos por defecto del navegador */
  appearance: none;
  width: 15px; /* Ancho de la bolita */
  height: 15px; /* Altura de la bolita */
  background: #00A6E8; /* Cambia el color de la bolita */
  border-radius: 60%; /* Hace la bolita redonda */
  cursor: pointer; /* Cambia el cursor al pasar sobre la bolita */
}
.custom-slider::-moz-range-thumb {
  width: 15px; /* Ancho de la bolita */
  height: 15px; /* Altura de la bolita */
  background: #cd262e; /* Cambia el color de la bolita */
  border-radius: 50%; /* Hace la bolita redonda */
  cursor: pointer; /* Cambia el cursor al pasar sobre la bolita */


}
/*Seccion de about us*/
.about-us{
  background-color: rgb(247, 247, 247);
  border-radius: 40px;
  
}
.aboutuscanvas{
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutuscanvas h1{
  margin-top: 7vh;
  margin-bottom: 1vh;
 
}
.aboutuscanvas span{
  
  font-size: 4.5vh;
 
}
#CREDIBOX{
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
.aboutuscanvas h1 :hover{
  font-size: 4.7vh;
  transition: all 0.3s;
  
  
}

.valores-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3.5vh;
  box-sizing: border-box;
  width: 100%;
  
}

.valores-container {
  text-align: center;
  
  width: 100%;
}

.valores-container h2,
.valores-container h3 {
  color: #333;
  margin: 10px 0;
}
.valores-container h3{
  font-size: 30px;
  color: #535353;
}


.valores {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap; /* Wrap items when the screen is too small */
  
  
}

.valor {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
  width: 12vw;
  height: 11vh;
  border-radius: 50px;
 

  
}

.valor img {
  margin-top: 1vh;
  width: 6vh; /* Adjust as needed */
  height: auto;
}

.valor p {
  color: #0000009d;
  margin-top: 8px;
  font-size: clamp(12px, 1.2vw, 19px); /* No menor de 12px, no mayor de 18px */
  font-weight: 800;
  
}
.valores :hover{
  
  background-color: #98e2ff;
  transition: all 0.3s;
}
.valor p:hover {
  color: #000000;
  margin-top: 8px;
  font-size: 22px;
  font-weight: 800;
  transition: all 0.3s;
}







/*---------------------Mision y Vision Seccion-------------------------------*/

.misionsec{
  height: auto;
}
.container-misionvision{
  height: 100%;
  width: 100%;
  display: flex;
}
.textmision{
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.textmision .misiontext, .textmision .visiontext{
  margin: 2rem;
  text-align: justify;
  font-size: 1rem;
}
.borde{
  height: 0.5rem;
  width: 5rem;
  margin-left: 3rem;
  background-color: var(--primary);
}
.bordeblue{
  height: 0.5rem;
  width: 5rem;
  margin-left: 3rem;
  background-color: var(--secundary);
}
.misiontext h1, .visiontext h1{
  font-size: 1.2rem;
  margin-left: 3rem;
}
.misiontext p, .visiontext p{
  font-size: 1rem;
  margin-left: 2rem;
}
.misiontext h1:hover, .visiontext h1:hover{
  font-size: 1.2rem;
  margin-left: 3rem;
  color: var(--secundary);
  transition: all 400ms;
  
}
.misiontext p:hover, .visiontext p:hover{
  font-size: 1rem;
  margin-left: 2rem;
  
  color: var(--secundary);
  transition: all 0.3s;
}
.misiontext p, .visiontext p{
  font-size: 1rem;
  margin-left: 2rem;
}
.imagenmision{
  flex-basis: 40%;
  display: flex;
  flex-direction: row-reverse;
  
}
.imagenmision img{
  height: 700px;
}

.misionvisionmobile{
  display: none;
}




/*----------------------------------------------------------------------------*/
/*------------------------------Servicios--------------------------*/
.Servicios{
  
  background-color: #ffffff;
  
}
.tituloo{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
.titulo span{
  font-size: 45px;
}

/* Estilos Generales para la Sección de Servicios */
.servicios {
  background-color: #ffffff; /* Fondo blanco */
  padding: 40px 30px;
  border-radius: 8px; /* Esquinas redondeadas */

  margin: 20px 0;
  font-family: 'Arial', sans-serif; /* Consistencia tipográfica */
}

.servicios h2, .servicios h3 {
  color: #333333de; /* Color oscuro para los títulos */
  text-align: center;
  font-size: 25px;
  margin-bottom: 20px;
}
.servicios p:hover{
  padding: 20px;
  text-align: center;
  
  
}
.servicios p{
  padding: 20px;
  text-align: center;
  font-weight: 500;
  color: #143441;
}

/* Estilos para los íconos y texto descriptivo */
.proceso .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.icon{
  margin: 10%;
  color: var(--secundary);
}

.grid-item {
  background-color: #ffffff; /* Fondo para cada elemento del grid */
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 10px rgba(44, 153, 255, 0.205);
}
.grid-item i{
  font-size: 65px;
  padding: 10px;
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 6, 6, 0.24);
  
}

.grid-item img {
  width: 60px; /* Tamaño adecuado para los íconos */
  height: auto;
  margin-bottom: 15px;
}

/* Estilos para la lista de características */
.caracteristicas {
  margin-top: 30px;
}

.caracteristicas ul {
  list-style: none;
  padding: 0;
}

.caracteristicas li {
  background: #e6f4ff; /* Azul claro para diferenciar las características */
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.credit-application form{
  padding: 10%;
  
  border-radius: 30px;
}
/*.-.-.-.-......--...........--.-.-.-.-.-elegible.--------------..-.-.-.-.-.-.--..-.-*/
.tituloEleg{
  margin: 50px;
  display: flex ;
  
  justify-content: center;
  align-items: center;
}
.colaboradoruas{
  background-color:rgb(247, 247, 247);
  height: auto;
}

.canvaselgeible{
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.soyElegible{
  display: flex;
  width: 100%;
  height: 400px;
  align-items: center;
  justify-content: center;
  
}
.eleg{
  width: 500px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}
.eleg h2{
  color: rgb(92, 92, 100);
  font-size: 1rem;
  font-weight: 600;
  
}
#addborder{
  border-left: solid 2px rgba(180, 180, 180, 0.288);
  border-right: solid 2px rgba(180, 180, 180, 0.288);
}
.eleg div{
  padding: 30px;
  
}
.eleg .banorte{
  padding: 68px;
  
}
.bottombar{
  background-color: rgb(247, 247, 247);
  width: 100%;
  height: 70px;
}
/*-----------------------------Contacto-------------------------------------------*/
.contactUs{
  background-color: rgb(247, 247, 247) ;
  height: auto;
  
}
.contactUsTitulo{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px;
  padding-bottom: 0;

}
.contactUsTitulo span{
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 46px;
}
.tituloo{
  padding: 100px;
}
.phonecontent i{
  color: var(--secundary);
  font-size:26px;
  margin-right: 10px;
  
}
.upperspace{
 display: flex;
 align-items: center;
 justify-content: center;
}
.phonecontent{
  margin: 2rem;
  display: flex;
  flex-direction: column;
  padding: 60px;
  border-radius: 15px;
  
  
  justify-content: center;
  
}
.phonecontent h1{
  color: var(--secundary);
  text-align: center;
}
.phonecontent a{
  text-decoration: none;
  color: black;
  font-size: 1rem;
}
.phonecontent div{
  height: 90px;
  width: 400px;
  border-radius: 20px;
  box-shadow: 0px 0px 20px 10px rgba(0, 145, 255, 0.048); 
  display: flex;
  align-items: center; 
  justify-content: center;
  
}
.phonecontent a:hover{
  
  color: var(--secundary);
}
.callus{
  display: flex;
  align-items: center;
  justify-content: center;
}
.phonecontent div{
  margin: 10px;
}

.phonecontent a :hover{

  color: var(--secundary);
}
.phonecontact{
  display: flex;
  flex-direction: column;
}
.Encuentranos{
  display: none;
}
.googlemaps{
  margin: 2rem;
  box-shadow: 0px 0px 20px 10px rgba(0, 145, 255, 0.089); 
}

@media (max-width: 768px) {
  .proceso .grid {
      grid-template-columns: 1fr;
  }

  .caracteristicas li {
      flex-direction: column;
      text-align: center;
  }
 
}
@media (max-width: 1375px){
  .eleg h2{
    color: rgb(39, 39, 39);
    font-size: .7rem;
    
  }
} 

/*------------------------------------------------------------------*/
.credit-application {
  background: white;
  padding: 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.FORMULARIO{
  padding: 4%;
}

.credit-application form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 80%;
}
.credit-application form{
  border-radius: 40px;
  box-shadow: 0px 0px 20px 10px rgba(0, 145, 255, 0.089);  
 
  margin: 0px; 
  background-color: #ffffff;
}
input[type="text"], input[type="email"], input[type="number"], select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
}

button {
  background-color: var(--secundary); /* Blue */
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

button:hover {
  background-color: #004494;
}
.enviar{
  margin-top: 5px;
}
input[type="file"] {
    display: none;
}
.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}
/*----------------------------------------------------------------------*/
.downspace {
  padding: 20px;
}

.formulariodecontacto {
  max-width: 80%;
  
  margin: 0 auto;
  padding: 70px;
  box-shadow: 0px 0px 20px 10px rgba(0, 145, 255, 0.048); 
  border-radius: 19px;
  background-color: #ffffff;
  
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 300;
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 9px;
  
}

.contact-form button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: var(--secundary);
  color: white;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}
#CONTAC{
  font-weight: 900;
}
.titulocontacUs{
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  
}
.tituloContactUsMobile{
  display: none;

}
.titulocontacUs span{
  font-size: 25px;
  margin-right: 5px;
}
.footer {
  background-color: #f8f8f8;
  padding: 20px 0;
  text-align: center;
  font-family: Arial, sans-serif;
  border-top: 1px solid #e7e7e7;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer p {
  margin: 5px 0;
  color: #555;
}

.footer a {
  color: #007BFF;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Media queries para ajustar el tamaño de la imagen en diferentes tamaños de pantalla */

@media (max-width: 768px) {
  .valor {
      flex-basis: 50%; /* Each value will take half of the container width */
  }
  .valor p {
    color: #0000009d;
    margin-top: 8px;
    font-size: clamp(19px, 1.2vw, 20px); /* No menor de 12px, no mayor de 18px */
    font-weight: 800;
    
  }
  .mision img{
    height: 100%;
  }
  
}

@media (max-width: 480px) {
  .valor {
      flex-basis: 100%; /* Each value will stack on top of each other */
  }
}


@media only screen and (max-width: 1110px) {
  .servicios{
    height: auto;
  }
  .servicios-pp{
    display: flex;
    flex-direction: column;
  }
 
  
}


/*-------------        Medias         ----------------------*/

@media only screen and (max-height: 732px){
  .Barra-Credito{
    height: 200vh;
  }
  .custom-slider::-moz-range-thumb {
    width: 15px; /* Ancho de la bolita */
    height: 15px; /* Altura de la bolita */
    background: #cd262e; /* Cambia el color de la bolita */
    border-radius: 50%; /* Hace la bolita redonda */
    cursor: pointer; /* Cambia el cursor al pasar sobre la bolita */
  
  
  }
}
@media only screen and (max-height: 813px){
  
  .Creditbartool{
    margin-top: 7%;
    margin-bottom: 0%;
    flex-basis: 50%;
    display: flex;
    justify-content: center; /* Centrado horizontal */
    align-items: center; /* Centrado vertical */
   
  }
  
  .Creditbartool h3,p,h2{
    font-size: medium;
    color: #000000bd;
  
  }
  .ActualBox{
    
    padding: 30px 30px;
    border-radius: 25px;
    
    margin: 0px; 
    background-color: #ffffff;
    
  }
  .SeparadorAU{
    display: none;
  }
  .periodo{
    
    display: flex;
    font-size: medium;
  }
  #time-frame{
    font-size: medium;
  }
  
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
  }
  .nombre{
    font-size: medium;
  }
  input[type="text"],
  input[type="email"],
  select,
  textarea {
    width: 100%;
    padding: 10px;
    font-size: medium;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Para incluir el padding en el ancho total */
  }
  
  textarea {
    height: 100px;
  }
  
  .enviar {
    background-color: #00A6E8;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  
  button:hover {
    background-color: #cd262eec;
  }
  
  button:active {
    background-color: #00A6E8;
  }
  .slider{
    display: flex;
    justify-content: space-between;
    
  }
  .slider img{
    width: 20px;
  }
  .custom-slider::-moz-range-thumb {
    width: 15px; /* Ancho de la bolita */
    height: 15px; /* Altura de la bolita */
    background: #cd262e; /* Cambia el color de la bolita */
    border-radius: 50%; /* Hace la bolita redonda */
    cursor: pointer; /* Cambia el cursor al pasar sobre la bolita */
  
  
  }
  .increment-btn, .decrement-btn {
    background-color: transparent; /* quitar el fondo */
    border: none; /* quitar el borde */
    display: flex; /* usar flexbox para centrar */
    justify-content: center; /* centrar horizontalmente */
    align-items: center; /* centrar verticalmente */
    padding: 0; /* quitar relleno */
  }
  
  /* Estilos opcionales para la imagen dentro del botón */
  .increment-btn img, .decrement-btn img {
    max-width: 100%; 
    max-height: 100%;
  }
  
  
  .increment-btn:hover, .decrement-btn:hover {
    background-color: #ffffff00;
  }
  .custom-slider ,.custom-slider2 {
    -webkit-appearance: none; /* Elimina los estilos por defecto del navegador */
    appearance: none;
    width: 100%; /* Ancho completo del slider */
    height: 6px; /* Altura del slider */
    background: #00a6e834; /* Color de fondo del slider */
    outline: none; /* Quita el contorno predeterminado del slider */
    border-radius: 9px; /* Radio de borde del slider */
  }
  .custom-slider :hover ::-webkit-slider-thumb{
    width: 19px;
    height: 19px;
  }
  /* Estilos para la bolita del slider en Chrome y Safari */
  .custom-slider2::-webkit-slider-thumb {
    -webkit-appearance: none; /* Elimina los estilos por defecto del navegador */
    appearance: none;
    width: 15px; /* Ancho de la bolita */
    height: 15px; /* Altura de la bolita */
    background: #00A6E8; /* Cambia el color de la bolita */
    border-radius: 60%; /* Hace la bolita redonda */
    cursor: pointer; /* Cambia el cursor al pasar sobre la bolita */
  }
  .custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Elimina los estilos por defecto del navegador */
    appearance: none;
    width: 15px; /* Ancho de la bolita */
    height: 15px; /* Altura de la bolita */
    background: #cd262e; /* Cambia el color de la bolita */
    border-radius: 60%; /* Hace la bolita redonda */
    cursor: pointer; /* Cambia el cursor al pasar sobre la bolita */
  }
  
  /* Estilos para la bolita del slider en Firefox */
  .custom-slider::-moz-range-thumb {
    width: 15px; /* Ancho de la bolita */
    height: 15px; /* Altura de la bolita */
    background: #cd262e; /* Cambia el color de la bolita */
    border-radius: 50%; /* Hace la bolita redonda */
    cursor: pointer; /* Cambia el cursor al pasar sobre la bolita */
  
  
  }
  
}
@media only screen and (max-height: 1368px){
 .Barra-Credito{
  height: 115vh;
  
 } 
 .Welcome-Textbox{
  margin-top: 5%;
 }
}
@media only screen and (max-width: 1366px){
  

  iframe{
    width: 50vw;
  }
  .googlemaps{
    width: 50vw;
    margin: 0;
  }
  .phonecontent {
    margin: 1rem;
    padding: 0;
  }
}
@media only screen and (max-height: 710px){
  .Creditbartool{
    margin-top: 15%;
    margin-bottom: 0%;
    flex-basis: 50%;
    display: flex;
    justify-content: center; /* Centrado horizontal */
    align-items: center; /* Centrado vertical */
   
  }
}
@media only screen and (max-width: 948px) {
  
  .Welcome-Textbox{
    flex-basis: 50%;
    display: none;
    
    
  }
  .Welcome-Textbox h1{
    display: none;
    
  }
  .Welcome-Textbox h3{
    padding-top: 0%;
    color: #00A6E8;
    margin: 8%;
    font-weight: 100;
  }
  .Welcome-Textbox p{
    color: #292929ec;
    font-weight: 500;
    margin: 8%;
    
  }
  .Barra-credito{
    display: flex;
    justify-content: center;
  }
  
  
  .Welcome-Textbox h3,
  .Welcome-Textbox p {
     padding-left: 0;
     font-size: medium;

  
  }
  .Creditbartool{
    margin-top: 7vh;
    margin-bottom: 0%;
    margin-right: 0%;
    flex-basis: 100%;
    display: flex;
    justify-content: center; /* Centrado horizontal */
    align-items: center; /* Centrado vertical */
    
   
  }
  .Creditbartool h3{
    color: #000000bd;
    
  
  }
  .ActualBox{
  
    padding: 40px 40px;
    border-radius: 15px;
    box-shadow: 0px 0px 20px 10px rgba(0, 145, 255, 0.055);  
    margin: 0px; 
    background-color: #ffffff;
    
    
  }
  .btn{
    display: none;
  }
  .header .logo img{
    height: 45px;
    width: auto;
    transition: all 0.3s;
}
  .header .nav-links ul {
      width: 100%;
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #ffffff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      border-radius: 5px;
      padding: 10px;
  }

  .header .nav-links ul.show {
      display: block;
  }

  .header .nav-links ul li {
      display: block; /* Display list items vertically */
      padding: 10px 0; /* Add padding between list items */
      padding-left: 20px;
  }

  .hamburger-menu {
      display: block;
      cursor: pointer;
  }

  .bar {
      width: 25px;
      height: 3px;
      background-color: #555;
      margin: 5px 0;
  }
  .space-aboutus{
    height: 100%;
    display: grid;
    align-items: center;
  }
  .containet-aboutus {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrado vertical */
    align-items: center; /* Centrado horizontal */
    text-align: center; /* Alineación de texto centrada */
     /* Para que ocupe toda la altura del contenedor padre */
    margin: auto;
    width: 386px;
    height: 650px;
    justify-content: center;
    background-color: #ffffff; /* Color de fondo */
    border-radius: 35px; /* Bordes redondeados */
    box-shadow: 0px 0px 60px rgba(255, 0, 0, 0.062); /* Sombreado */
  }
  .Izquierda{
    margin-top: 20%;
    flex-basis: 33.333%;
  }
  .Centro{
    margin-top: 20%;
    flex-basis: 33.333%;
  }
  .Derecha{
    margin-top: 20%;
    flex-basis: 33.333%;
  
  }
  .texto-aboutus{
    font-size: 18px;
  }
  .about-us{
    background-color: rgb(230, 249, 255);
    border-radius: 40px;
    height: none;
  }
  .mission-section{
    height: 102vh;
    background-image: none;
    flex-direction: column;
    padding: 5vw;
    gap: 5px;
    
  }
  .sep{
    height: 5vh;
  }
  .misionsec{
  
    display: none;
  }
  .dermyv{
    display: none;
  }
  .misionvisionmobile{
    display: block;
    height: auto;
    width: 100%;
    height: 100%;
  }
  .container2 img{
    height: 100%;
    width: 100%;
    display: block; /* Esto elimina cualquier espacio extra alrededor de la imagen */
    


  }
  .contaner { /* ¿Es "contaner" un error tipográfico en tu CSS? Debería ser "container" quizás. */
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Asegura que los hijos ocupen todo el ancho disponible */
}

  .bloquenegro{
    padding-top: -10px;
    display: flex;
    color: white;
    width: 100%;
    height: 100px;
    background-color: var(--secundary);
    justify-content: center;
    align-items: center
    
    
  }
  .bloquenegro h1{
    
    font-size: 30px;
  }
  .parrafomobile{
    padding: 5%;
  }
  .parrafomobile p{
    padding: 4%;
    text-align: justify;
    font-weight: 800;
    font-size: 16px;
  }
  .credit-application form{
    width: 100%;
  }
  .FORMULARIO span{
    font-size: 35px;
  }
  .soyElegible{
    display: flex;
    flex-direction:column ;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: auto;
    
  }
  .eleg{
    width: auto;
  }
  .eleg h2{
    font-size: 1rem;
  }
  #addborder{
    border: none;
  }
}
@media only screen and (max-width: 1500px){
  .misionvisionsec{
  
    height: 40vw;
  }
  .dermyv img{
    height: 40vw;
    width: auto;
    margin-left: 30px;
}
}
@media only screen and (max-width: 1076px){
  .upperspace{
    flex-direction: column;
  }
  iframe{
    width: 100%;
  }
  .googlemaps{
    width: 80%;
    
  }
  .titulocontacUs span{
    font-size: 20px;
  }
  .formulariodecontacto {
    max-width: 100%;
    
    margin: 0 auto;
    padding: 70px;
    box-shadow: 0px 0px 20px 10px rgba(0, 145, 255, 0.048); 
    border-radius: 19px;
    background-color: #ffffff;
    
  }
  .downspace {
    padding: 19px;
  }
  .phonecontact{
    width: 90%;
  }
  .phonecontent div {
    height: 90px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0px 0px 20px 10px rgba(0, 145, 255, 0.048);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .Encuentranos{
    margin: 10%;
    display: block;
    color: grey;
  }
}
@media only screen and (max-width: 700px){
  .titulocontacUs{
    display: none;
  }
  .tituloContactUsMobile{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px;

  }
  .tituloContactUsMobile span{
    font-size: 25px;
  }
  .formulariodecontacto {
    max-width: 100%;
    margin: 0 auto;
    padding: 27px;
    box-shadow: 0px 0px 20px 10px rgba(0, 145, 255, 0.048);
    border-radius: 19px;
    background-color: #ffffff;
}
  .tituloEleg{
    display: flex ;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }


}
