
@import url('https://fonts.googleapis.com/css?family=DM+Sans&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  body {
 /* background: linear-gradient(to right, royalblue, darkblue);*/
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

  .img-fluid{
    width: 100%;
  }

  header {
    width: 100%;
    padding: 40px;
    color: white;
    text-align: center;
    background: black;
  }
  
 
  nav ul {
    background: #164884;
    text-align: center;
    list-style: none;
    overflow: hidden;
    
  
  }

  
  ul li {
    display: inline-block;
    padding: 20px;
    transition: all ease-in-out 250ms;
  }
  
  ul li:hover {
    background: #112d4e;
  }
  
  ul li a {
    color: white;
    text-decoration: none;
  }
  
 

  .hide {
    padding: 16px;
    font-size: 22px;
    background: #112d4e;
    color: white;
    cursor: pointer;
    display: none;
  }
  
  @media (max-width: 768px) {
    ul li {
      width: 100%;
      padding: 15px;
      text-align: left;
    }
  
    .hide {
      font-size: 18px;
      display: block;
    
    }

  
    nav ul {
    display: none;
  
    }

    #frmPrestamo{
      width: 200px;
    }

    #formulario{
      width:100%;
    }

    .whLink{
      width: 25px;
      height: 25px;
    }
    
    .igLink{
      width: 25px;
      height: 25px;
    }
    
    .fbLink{
      width: 25px;
      height: 25px;
    }
    
    .imagen .img-fluid{
      width: 100%;
      height: 350px;
    }
  
   li .igLink{
     width: 32px;
     height: 32px;
   }

   li .whLink{
    width: 35px;
    height: 35px;
  }

  li .fbLink{
    width: 32px;
    height: 32px;
  }
 
   header{
     height: 80px;
   }

  header h1{
     font-size: 18px;
   }

  p{
    font-size: 15px;
  }
}




#contenedor, #contenedorTabla {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  margin-left: 30px;
  /*width: 300px;*/
  margin-top: 30px;
  margin-bottom: 40px;
    
  
}

#contenedorTabla {
  width: 800px;
  max-height: 820px;
  overflow-y: scroll;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #112d4e;
}

.header, thead {
    border-bottom: 1px solid #f0f0f0;
  background-color: #f7f7f7;
  padding: 20px 40px;
 
}

/*#contenedorTabla{
  width: 80%;

}*/

.header h2 {
    width: 400px;
}

#frmPrestamo {
    padding: 10px 20px;
    width: 100%;
}

#frmPrestamo .control, #amortizaciones .control, .radios {
    margin-bottom: 5px;
  padding-bottom: 15px;
  position: relative;
}


#frmPrestamo .control label {
  margin-bottom: 5px;
}

#frmPrestamo .control input, #frmPrestamo .control select {
  border: 2px solid #f0f0f0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  padding: 10px;
  width: 100%;
}

#frmPrestamo .control input:focus {
  outline: 0;
  border-color: #112d4e;
}

#frmPrestamo button {
  background: #112d4e;
  border: 2px solid #112d4e;
  border-radius: 4px;
  color: #fff;
  display: block;
  font-family: inherit;
  font-size: medium;
  padding: 10px;
  margin-top: 20px;
  width: 100%;
}
#simular{
  cursor: pointer;
}

table {
    border: 2px solid #112d4e;
    border-collapse: collapse;
    border-radius: 4px;
  width: 100%;
    text-align: center;
    font-family: inherit;
  font-size: 0.9em;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

table thead tr {
    background: #112d4e;
    color: white;
    text-align: left;
    font-weight: bold;
}

table thead, td {
    padding: 12px 15px;
}

table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

table tbody tr:nth-last-of-type(even) {
    background-color: #f3f3f3;
}

table tbody tr:last-of-type {
    border-bottom: 2px solid rgba(28, 45, 97, 0.9);
}

table tbody tr:hover {
    color: white;
    background: rgba(28, 45, 97, 0.9);
}

table tfoot {
  background: royalblue;
  color: white;
}

.radios {
  padding: 10px 20px;
}

.radioContenedor {
  display: inline-block;
  position: relative;
  cursor: pointer;
  user-select: none;
  padding-left: 30px;
  margin: 10px;
}

.radioContenedor input {
  display: none;
}

.radioContenedor .circle {
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  position: absolute;
  display: inline-block;
  background-color: rgba(28, 45, 97, 0.9);
  border-bottom: 2px solid ;
}

.radioContenedor:hover .circle {
  background-color: #112d4e;
}

.radioContenedor input:checked + .circle {
  background-color: #112d4e;
}

.radioContenedor input:checked + .circle:after {
  content: "";
  height: 10px;
  width: 10px;
  background-color: white;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.centrar{
  display: flex;
  flex-direction: column;
  align-items: center;
 justify-content: center;

}

.solapa #solicitud {
  text-align: center;
  font-size: 26px;
  padding: 15px;
}


.contacto {
  display: flex;
  flex-direction: column; 
}


textarea{
height: 100px;
width: 100%;


}

h4{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  
  
}



.cuadro{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
 
  
  

}
.bloque{
  
  border: 1px black solid;
  font-size: 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(224, 156, 28, 0.842);

  
}

p{
  text-align: center;
  padding: 10px;
  color: #000000;
}


h3{
  text-align: center;
 margin-top: 80px;
  
}

.titulo{
  margin-top: 50px;
}


.card{
  display: flex;
  flex-direction: column;
  width: 50px;
  height: 50px;
  z-index: -1;
  
  
}

#nosotros{
  font-size: 18px;
  text-align: center;
}
.opcionesUno{
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
}

.opciones{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  width: 340px;
  height: 200px;
}

footer{
  height: 20vh;
  background-color: black;

}

footer p{
  color: #fff;
  font-size: 12px;
  padding-top: 50px;
}

#btnPrincipal{
  background-color:#dfa333;
  width: 200px;
}

.whLink{
  width: 54px;
  height: 54px;
}

.igLink{
  width: 50px;
  height: 50px;
}

.fbLink{
  width: 50px;
  height: 50px;
}

.header-social-icons{
  display: flex;
  flex-direction: row;
  justify-content: center;
  
}



.formulario{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 400px;
  height: 500px;
  max-width: 100%;
  margin: auto;
  margin-top: 30px;
  padding: 20px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.7);
 

  
}



.formularioInput .formularioLabel{
  width: 100%;
  margin-bottom: 20px;
  font-size: 1.3em;

}

.formularioInput{
  padding: 15px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  width: 100%;
}



.formularioLabel{
  padding-left:15px ;
  
  
}

.div-social{
  margin-top: 30px;
}

/* CAROUSEL REVIEWS */
.reviews {
  height: 750px;
}
.reviews div {
  padding-left: 20px;
}
#carousel {
  position: relative;
  height: 500px;
  overflow: hidden;
}
#carousel div {
  position: absolute;
  transition: transform 1s, left 1s, opacity 1s, z-index 0s;
  opacity: 1;
}
#carousel div img {
  cursor: pointer;
  width: 400px;
  transition: width 1s;
}
#carousel div.hideLeft {
  left: 0%;
  opacity: 0;
  transform: translateY(50%) translateX(-50%);
}
#carousel div.hideLeft img {
  width: 200px;
}
#carousel div.hideRight {
  left: 100%;
  opacity: 0;
  transform: translateY(50%) translateX(-50%);
}
#carousel div.hideRight img {
  width: 200px;
}
#carousel div.prev {
  z-index: 5;
  left: 30%;
  transform: translateY(50px) translateX(-50%);
}
#carousel div.prev img {
  width: 300px;
}
#carousel div.prevLeftSecond {
  z-index: 4;
  left: 15%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0.7;
}
#carousel div.prevLeftSecond img {
  width: 200px;
}
#carousel div.selected {
  z-index: 10;
  left: 50%;
  transform: translateY(0px) translateX(-50%);
}
#carousel div.next {
  z-index: 5;
  left: 70%;
  transform: translateY(50px) translateX(-50%);
}
#carousel div.next img {
  width: 300px;
}
#carousel div.nextRightSecond {
  z-index: 4;
  left: 85%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0.7;
}
#carousel div.nextRightSecond img {
  width: 200px;
}

.buttons {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
}
.responsive-menu-items {
  display: none;
}

@media screen and (max-width: 750px){
  /* CAROUSEL */
  .hide-left {
    left: 0%;
    opacity: 0;
    transform: translateY(40%) translateX(-50%);
  }
  #carousel div.prevLeftSecond {
    z-index: 4;
    left: 15%;
    transform: translateY(30%) translateX(-50%);
    opacity: 0.7;
  }
  #carousel div.prev {
    z-index: 5;
    left: 30%;
    transform: translateY(50px) translateX(-50%);
  }
  #carousel div.selected {
    z-index: 10;
    left: 50%;
    transform: translateY(0px) translateX(-50%);
  }
  #carousel div.next {
    z-index: 5;
    left: 70%;
    transform: translateY(50px) translateX(-50%);
  }
  #carousel div.nextRightSecond {
    z-index: 4;
    left: 100%;
    transform: translateY(30%) translateX(-80%);
    opacity: 0.7;
  }
  #carousel div.hideRight {
    left: 100%;
    opacity: 0;
    transform: translateY(40%) translateX(-50%);
  }
  #carousel div.hideLeft img {
    width: 200px;
  }
  #carousel div.prevLeftSecond img {
    width: 200px;
  }
  #carousel div.prev img {
    width: 200px;
  }
  #carousel div img {
    width: 200px;
    transition: width 1s;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
  }
  #carousel div.next img {
    width: 200px;
  }
  #carousel div.nextRightSecond img {
    width: 200px;
  }
  #carousel div.hideRight img {
    width: 200px;
  }
  .header-img {
    background-position: 45%;
  }
  .header-nav {
    display: block;
  }
  .responsive-menu {
    display: block;
  }

 
}

#carousel{
  margin-top: 80px;
  height: 260px;

}

.padre{
margin-top: 50px;
}

.imagen{
  position: relative;
}

.contenedor-texto {
  position: absolute;
  top: 10%;
  width: 100%;
  text-align: center;
  font-size: 50px;
  color: #f3f3f3;
}

.contenedor-texto .letras{
  font-weight: bold;
  font-size: 50px;
  color: #164884;
}

span{
  font-size: 50px;
}

#btn1{
  
  width: 100%;
  background-color: #dfa333;
  color: antiquewhite;
  font-size: 20px;
}



#dolar h4{
  color: white;
  
}




