:root {
  --blanco: #FFFFFF;
  --azul-oscuro: #222D5A;
  --verde: #3FAC4D;
  --gris-oscuro: #696969;
  --gris-medio: #CDD0D9;
  --azul-medio: #213890;
  --azul-claro: #3d509d;
  --gris-claro: #F8FAFC;
  --gris-claro-2: #F1F5F9;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url("../fonts/Montserrat-Bold.ttf") format("opentype");
  font-weight: 700;
}
:root html,
:root body {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  overflow-x: hidden;
  color: var(--black);
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
}
:root .gracias {
  background-color: #F8F9FE;
}
:root .text-azul {
  color: var(--azul-oscuro) !important;
}
:root .text-gris {
  color: var(--gris-oscuro);
}
:root .text-verde {
  color: var(--verde) !important;
}
:root .d-pad {
  padding: 70px 5%;
}
:root button {
  border: none;
}
:root h1 {
  font-size: 40px;
}
:root h2 {
  font-size: 30px;
}
:root h3 {
  font-size: 20px;
}
:root .fs-16 {
  font-size: 16px;
}
:root .fs-12 {
  font-size: 12px;
}
:root .fs-10 {
  font-size: 10px;
}
:root .btn-cta {
  background: rgb(62, 173, 78);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(62, 173, 78)), to(rgb(91, 187, 104)));
  background: linear-gradient(0deg, rgb(62, 173, 78) 0%, rgb(91, 187, 104) 100%);
  padding: 2% 7%;
  margin: 0;
  border: 2px solid #3FAC4D;
  border-radius: 28px;
  text-decoration: none;
  color: white;
}
:root .btn-cta:hover {
  background: rgb(27, 147, 44);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(27, 147, 44)), to(rgb(58, 162, 73)));
  background: linear-gradient(0deg, rgb(27, 147, 44) 0%, rgb(58, 162, 73) 100%);
}
:root .mobile-item {
  display: none;
}
:root .desktop-item {
  display: block;
}
:root .text-footer {
  font-size: 15px;
}
:root .aviso-privacidad .mark, :root .aviso-privacidad mark {
  background-color: #fff900 !important;
}
:root .pad-link {
  margin-top: 50px;
}
:root .navbar {
  position: fixed;
  z-index: 999;
  background-color: transparent;
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  width: 100%;
  padding: 13px 14.8%;
}
:root .navbar .navbar-toggler {
  border: none;
}
:root .navbar .logo {
  width: 170px;
}
:root .navbar .btn-cta {
  width: 18%;
  font-size: 16px;
  padding: 12px;
}
:root .navbar .nav-link {
  font-size: 18px;
  padding: 12px 0px !important;
  margin: 0 20px;
  color: black !important;
}
:root .navbar .nav-link.active {
  font-weight: 700;
}
:root .navbar .btn-cta {
  padding: 1% 5%;
  width: 22%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) and (min-width: 501px) {
  :root .navbar .btn-cta {
    width: 30%;
  }
}
@media (max-width: 500px) and (min-width: 0px) {
  :root .navbar {
    width: 100%;
    padding: 18px 5%;
  }
  :root .navbar .logo {
    width: 70px;
  }
  :root .navbar .btn-cta {
    padding: 9px 10px;
    font-size: 15px;
  }
  :root .navbar .btn-cta {
    margin-top: 2%;
    width: 100%;
  }
}
:root .footer .box {
  background-color: #F1F5F9;
  padding: 3% 5% 2%;
}
:root .footer .box .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}
:root .footer .box .item p {
  font-size: 14px;
}
:root .footer .icons {
  margin-top: 7%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
:root .footer .box-2 {
  background-color: #F1F5F9;
  padding: 0 5% 3%;
}
:root .footer .box-2 .fs-10 {
  font-size: 11px !important;
}
:root .footer a {
  text-decoration: unset;
}
@media (max-width: 500px) and (min-width: 0px) {
  :root .footer {
    text-align: center;
  }
  :root .footer h3 {
    font-size: 30px;
  }
  :root .footer .item {
    padding: 0% 10%;
  }
  :root .footer .icons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  :root .footer .customPadding {
    margin: 4% 0%;
  }
  :root .footer .box-2 {
    padding: 3% 5% 3%;
  }
  :root .footer .row {
    --bs-gutter-x: 0rem;
  }
}
:root .copy {
  background-color: var(--azul-oscuro);
  padding: 2%;
  color: white;
}
:root .copy .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
:root .copy .box p {
  display: inline-block;
  margin: 0;
}
:root .copy .box a {
  text-decoration: none;
  color: white;
  margin: 0;
  display: inline-block;
}
@media (max-width: 500px) and (min-width: 0px) {
  :root .copy .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    text-align: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 10px;
  }
}
:root .home .sec1 {
  padding-top: 5%;
}
:root .home .sec1 .restriccion {
  margin-bottom: 35px;
  font-size: 16px;
  color: var(--gris-medio);
}
@media (max-width: 500px) and (min-width: 0px) {
  :root .home .sec1 {
    padding-top: 30%;
    text-align: center;
  }
  :root .home .sec1 .gx-5 {
    margin-bottom: 2% !important;
  }
  :root .home .sec1 .restriccion {
    position: unset;
    margin-top: 5%;
  }
}
:root .home .sec2 .btn-cta {
  padding: 2% 17%;
}
:root .home .sec2 .c-padding {
  padding: 0% 6%;
}
@media (max-width: 500px) and (min-width: 0px) {
  :root .home .sec2 {
    text-align: center;
  }
  :root .home .sec2 h2 {
    margin-top: 5%;
    font-size: 30px;
  }
}
:root .home .sec3 {
  background-color: var(--gris-claro-2);
}
:root .home .sec3 .btn-cta {
  padding: 1% 5%;
}
:root .home .sec3 .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin: 5% 0% 8%;
}
:root .home .sec3 .grid .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 488px;
  gap: 14px;
  background-color: var(--blanco);
  padding: 19% 11%;
  border-radius: 28px;
  -webkit-box-shadow: 0px 0px 24px -21px black;
          box-shadow: 0px 0px 24px -21px black;
}
:root .home .sec3 .grid .box:hover {
  -webkit-box-shadow: 0px 0px 40px -21px black;
          box-shadow: 0px 0px 40px -21px black;
  border: 1px solid var(--verde);
  -webkit-transform: scale(1);
          transform: scale(1);
  padding: 19% 10.7%;
}
:root .home .sec3 .grid .box span {
  font-size: 28px;
}
:root .home .sec3 .grid .box img {
  width: 45px;
  height: 65px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) and (min-width: 501px) {
  :root .home .sec3 .grid .box {
    height: 590px;
  }
}
@media (max-width: 500px) and (min-width: 0px) {
  :root .home .sec3 .grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  :root .home .sec3 .grid .box {
    height: 454px;
  }
  :root .home .sec3 .btn-cta {
    padding: 2% 5%;
  }
}
:root .home .sec4 {
  margin-top: -12%;
}
:root .home .sec4 .simulador {
  background-color: var(--azul-medio);
  padding: 6% 5% 3% 5%;
  border-radius: 28px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
:root .home .sec4 .simulador .bar {
  width: 63%;
  margin: 0% auto 2%;
  background-color: white;
  height: 4.5px;
}
:root .home .sec4 .simulador .btn-cta {
  padding: 1% 8%;
}
:root .home .sec4 .simulador .text-verde {
  font-size: 25px;
}
:root .home .sec4 .simulador .text-verde span {
  font-size: 13px;
  margin-top: 4px;
  position: absolute;
}
:root .home .sec4 .simulador .limites {
  width: 63%;
  margin: 0% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
:root .home .sec4 .simulador .limites p {
  font-size: 12px;
}
:root .home .sec4 .simulador .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  padding: 0% 18%;
  margin-bottom: 6%;
  margin-top: 5%;
}
:root .home .sec4 .simulador .grid .meses,
:root .home .sec4 .simulador .grid .pagos {
  background-color: #3C509D;
  border: 1px solid white;
  margin-top: 10px;
}
:root .home .sec4 .simulador .grid .meses p,
:root .home .sec4 .simulador .grid .pagos p {
  margin: 0;
  color: var(--blanco);
}
:root .home .sec4 .simulador .grid .meses {
  border-radius: 12px 0px 0px 12px;
}
:root .home .sec4 .simulador .grid .pagos {
  border-radius: 0px 12px 12px 0px;
}
:root .home .sec4 .simulador .aviso {
  font-size: 12px;
  opacity: 0.6;
  color: var(--blanco);
}
@media (max-width: 500px) and (min-width: 0px) {
  :root .home .sec4 .simulador {
    width: 100%;
  }
  :root .home .sec4 .simulador .grid {
    padding: 0% 0%;
  }
  :root .home .sec4 .simulador .bar {
    width: 100%;
  }
  :root .home .sec4 .simulador .limites {
    width: 100%;
  }
}
:root .home .sec5 {
  background-color: #ECF2F8;
  background-image: url("../img/home/textura-fondo-clientes.webp");
  background-size: cover;
  padding-bottom: 3%;
}
:root .home .sec5 .glide {
  -webkit-box-shadow: 0px 11px 51px -16px black;
          box-shadow: 0px 11px 51px -16px black;
  border-radius: 28px;
  background-color: transparent;
}
:root .home .sec5 .glide .glide__slide .icono-cita {
  width: 25px;
  position: absolute;
  top: 47px;
  margin-left: 20px;
}
:root .home .sec5 .glide .glide__slide .icono-cita-right {
  width: 25px;
  position: absolute;
  bottom: 210px;
  margin-left: 530px;
}
:root .home .sec5 .glide .glide__bullets {
  bottom: -37px;
}
:root .home .sec5 .glide .glide__bullets .glide__bullet {
  background-color: #CBCBCB;
}
:root .home .sec5 .glide .glide__bullets .glide__bullet--active {
  border-radius: 35px;
  width: 55px;
  background-color: var(--verde);
  border: none;
}
:root .home .sec5 .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  height: 100%;
}
:root .home .sec5 .grid .left {
  background-color: var(--azul-oscuro);
  border-radius: 28px 0px 0px 28px;
}
:root .home .sec5 .grid .right {
  background-color: #F1F5F9;
  border-radius: 0px 28px 28px 0px;
  text-align: left;
  padding: 10%;
  min-height: 675px;
}
:root .home .sec5 .grid .right .btn-cta {
  background-color: white;
  color: var(--verde);
  background: none;
  width: 100%;
  margin-top: 6%;
  text-align: center;
}
:root .home .sec5 .grid .right .btn-cta:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(62, 173, 78)), to(rgb(91, 187, 104)));
  background: linear-gradient(0deg, rgb(62, 173, 78) 0%, rgb(91, 187, 104) 100%);
  color: white;
}
:root .home .sec5 .grid .right .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  width: 100%;
  gap: 20px;
}
:root .home .sec5 .grid .right .user p {
  margin: 0;
  font-size: 16px;
}
:root .home .sec5 .grid .sliderParts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
:root .home .sec5 .logo-empresa {
  width: 40%;
}
@media (max-width: 768px) and (min-width: 501px) {
  :root .home .sec5 .glide .glide__slide .icono-cita {
    top: 125px;
    margin-left: 20px;
  }
  :root .home .sec5 .glide .glide__slide .icono-cita-right {
    bottom: 305px;
    margin-left: 275px;
  }
  :root .home .sec5 .grid .right {
    min-height: 925px;
  }
}
@media (max-width: 500px) and (min-width: 0px) {
  :root .home .sec5 h2 {
    font-size: 30px;
  }
  :root .home .sec5 .glide {
    font-size: 15px;
  }
  :root .home .sec5 .glide .glide__slide .icono-cita {
    top: 195px;
    margin-left: -154px;
  }
  :root .home .sec5 .glide .glide__slide .icono-cita-right {
    bottom: 239px;
    margin-left: 113px;
  }
  :root .home .sec5 .grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  :root .home .sec5 .grid .left {
    border-radius: 28px 28px 0px 0px;
    padding: 20px;
  }
  :root .home .sec5 .grid .right {
    border-radius: 0px 0px 28px 28px;
  }
  :root .home .sec5 .grid .right .user p {
    font-size: 12px;
  }
}
:root .nosotros .sec1 {
  padding-top: 5%;
}
:root .nosotros .sec1 .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
:root .nosotros .sec1 .grid .left {
  border-radius: 28px 0px 0px 28px;
  background-color: var(--azul-oscuro);
  padding: 7% 9%;
}
:root .nosotros .sec1 .grid .right {
  background-image: url("../img/nosotros/cercanio-nosotros-header.webp");
  background-size: cover;
  border-radius: 0px 28px 28px 0px;
  background-position: center center;
}
:root .nosotros .sec1 .aviso {
  color: var(--gris-oscuro);
  margin-top: 1%;
  padding: 0% 5%;
}
@media (max-width: 500px) and (min-width: 0px) {
  :root .nosotros .sec1 {
    padding-top: 15%;
  }
  :root .nosotros .sec1 .left {
    font-size: 12px;
  }
  :root .nosotros .sec1 .aviso {
    font-size: 10px;
  }
}
:root .nosotros .sec2 .d-pad {
  padding: 0px 5% 70px 5%;
}
:root .nosotros .sec2 .custom {
  padding: 1% 10%;
}
:root .nosotros .sec2 .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
:root .nosotros .sec2 .grid .item .category {
  padding: 4px 14px;
  background-color: var(--gris-claro-2);
  border-radius: 28px;
  font-size: 15px;
  margin-top: 4%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
:root .nosotros .sec2 .grid .item h4 {
  font-size: 24x;
}
:root .nosotros .sec2 .grid .item .desc {
  position: relative;
  height: 165px;
}
:root .nosotros .sec2 .grid .item .desc::after {
  position: absolute;
  bottom: 0px;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), color-stop(80%, rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 80%);
  pointer-events: none;
}
:root .nosotros .sec2 .grid .item .btn-cta {
  display: block;
  width: 100%;
  text-align: center;
  background-color: white;
  color: var(--verde);
  background: none;
  border-width: 1px;
}
:root .nosotros .sec2 .grid .item .btn-cta:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(62, 173, 78)), to(rgb(91, 187, 104)));
  background: linear-gradient(0deg, rgb(62, 173, 78) 0%, rgb(91, 187, 104) 100%);
  background-color: var(--verde);
  color: white;
}
@media (max-width: 768px) and (min-width: 501px) {
  :root .nosotros .sec2 .grid .item h4 {
    min-height: 125px;
  }
  :root .nosotros .sec2 .grid .item .desc {
    height: 310px;
  }
}
@media (max-width: 500px) and (min-width: 0px) {
  :root .nosotros .sec2 .grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  :root .nosotros .sec2 .custom {
    display: block;
    padding: 2% 5%;
    width: 100%;
  }
}
:root .contacto .sec1 {
  padding-top: 3%;
  padding-bottom: 3%;
}
:root .contacto .sec1 .lineas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding-top: 5%;
  margin: 5% 0%;
}
:root .contacto .sec1 .lineas p {
  margin: 0;
  font-size: 12px;
  cursor: pointer;
}
:root .contacto .sec1 .lineas .activo::before {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background-color: #222D5A;
  border-radius: 100px;
}
:root .contacto .sec1 .lineas .noactivo {
  color: lightgrey;
}
:root .contacto .sec1 .lineas .noactivo::before {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background-color: lightgrey;
  border-radius: 100px;
}
:root .contacto .sec1 .datos_empresariales {
  display: show;
}
:root .contacto .sec1 .datos_personales {
  display: none;
}
:root .contacto .sec1 .form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
:root .contacto .sec1 .form-floating > .form-control:not(:-ms-input-placeholder) {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
:root .contacto .sec1 .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
:root .contacto .sec1 .form-floating > .form-control {
  padding: 1rem 14px;
}
:root .contacto .sec1 .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  transform: scale(0.85) translateY(-1.9rem) translateX(0.15rem);
}
:root .contacto .sec1 .form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  transform: scale(0.85) translateY(-1.9rem) translateX(0.15rem);
}
:root .contacto .sec1 .form-floating > .form-control:not(:placeholder-shown) ~ label {
  -webkit-transform: scale(0.85) translateY(-1.9rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-1.9rem) translateX(0.15rem);
}
:root .contacto .sec1 .form-floating > .form-select {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
:root .contacto .sec1 .form-floating > .form-select:not(:-moz-placeholder-shown) ~ label {
  transform: scale(0.85) translateY(-1.9rem) translateX(0.15rem);
}
:root .contacto .sec1 .form-floating > .form-select:not(:-ms-input-placeholder) ~ label {
  transform: scale(0.85) translateY(-1.9rem) translateX(0.15rem);
}
:root .contacto .sec1 .form-floating > .form-select:not(:placeholder-shown) ~ label {
  -webkit-transform: scale(0.85) translateY(-1.9rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-1.9rem) translateX(0.15rem);
}
@media (max-width: 500px) and (min-width: 0px) {
  :root .contacto .form-floating > label {
    font-size: 15px;
  }
}
:root .credito-pyme .sec1 {
  position: relative;
  z-index: 99;
  padding-top: 5%;
}
:root .credito-pyme .sec1 .box {
  background-color: var(--azul-oscuro);
  border-radius: 28px;
  padding: 6% 16%;
}
:root .credito-pyme .sec1 .box .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
:root .credito-pyme .sec1 .box .grid .item p {
  font-size: 16px;
}
:root .credito-pyme .sec1 .box hr {
  margin: 4% 0%;
}
@media (max-width: 500px) and (min-width: 0px) {
  :root .credito-pyme .sec1 {
    padding-top: 20%;
  }
  :root .credito-pyme .sec1 .box {
    padding: 6% 10%;
  }
  :root .credito-pyme .sec1 .box .grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
:root .credito-pyme .sec2 {
  background-color: var(--gris-claro-2);
  padding-top: 10%;
  margin-top: -17%;
  z-index: 1;
}
:root .credito-pyme .sec2 .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin: 5% 0% 8%;
}
:root .credito-pyme .sec2 .grid .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 640px;
  gap: 14px;
  background-color: var(--blanco);
  padding: 19% 11%;
  border-radius: 28px;
  -webkit-box-shadow: 0px 0px 24px -21px black;
          box-shadow: 0px 0px 24px -21px black;
}
:root .credito-pyme .sec2 .grid .box:hover {
  -webkit-box-shadow: 0px 0px 40px -21px black;
          box-shadow: 0px 0px 40px -21px black;
  border: 1px solid var(--verde);
  -webkit-transform: scale(1);
          transform: scale(1);
  padding: 19% 10.7%;
}
:root .credito-pyme .sec2 .grid .box span {
  font-size: 28px;
}
:root .credito-pyme .sec2 .grid .box img {
  width: 45px;
  height: 65px;
  -o-object-fit: contain;
     object-fit: contain;
}
:root .credito-pyme .sec2 .grid .box .plazos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
:root .credito-pyme .sec2 .grid .box .plazos p {
  font-size: 14px;
  color: var(--verde);
  line-height: 1.2;
}
:root .credito-pyme .sec2 .grid .box .plazos p span {
  color: var(--azul-oscuro);
  font-size: 20px;
}
:root .credito-pyme .sec2 .grid .box .plazos img {
  width: 20px !important;
}
:root .credito-pyme .sec2 .requisitos {
  padding: 0% 8%;
}
:root .credito-pyme .sec2 .requisitos h2 {
  font-size: 23px;
}
:root .credito-pyme .sec2 .requisitos ul {
  padding-left: 1.2em;
}
:root .credito-pyme .sec2 .requisitos ul li {
  font-size: 16px;
  margin-bottom: 2%;
  color: var(--azul-oscuro);
}
:root .credito-pyme .sec2 .requisitos ul li::marker {
  color: var(--verde) !important;
}
:root .credito-pyme .sec2 .requisitos .btn-cta {
  display: block;
  width: 80%;
  text-align: center;
  margin: 0% auto;
}
@media (max-width: 500px) and (min-width: 0px) {
  :root .credito-pyme .sec2 .grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  :root .credito-pyme .sec2 .grid .box {
    max-height: 560px;
  }
  :root .credito-pyme .sec2 .btn-cta {
    padding: 2% 5%;
  }
}
:root .credito-pyme .sec3 {
  margin-top: -12%;
}
:root .credito-pyme .sec3 .simulador {
  background-color: var(--azul-medio);
  padding: 6% 5% 3% 5%;
  border-radius: 28px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
:root .credito-pyme .sec3 .simulador .bar {
  width: 63%;
  margin: 0% auto 2%;
  background-color: white;
  height: 4.5px;
}
:root .credito-pyme .sec3 .simulador .btn-cta {
  padding: 1% 8%;
}
:root .credito-pyme .sec3 .simulador .text-verde {
  font-size: 25px;
}
:root .credito-pyme .sec3 .simulador .text-verde span {
  font-size: 13px;
  margin-top: 4px;
  position: absolute;
}
:root .credito-pyme .sec3 .simulador .limites {
  width: 63%;
  margin: 0% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
:root .credito-pyme .sec3 .simulador .limites p {
  font-size: 12px;
}
:root .credito-pyme .sec3 .simulador .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  padding: 0% 18%;
  margin-bottom: 6%;
  margin-top: 5%;
}
:root .credito-pyme .sec3 .simulador .grid .meses,
:root .credito-pyme .sec3 .simulador .grid .pagos {
  background-color: #3C509D;
  border: 1px solid white;
  margin-top: 10px;
}
:root .credito-pyme .sec3 .simulador .grid .meses p,
:root .credito-pyme .sec3 .simulador .grid .pagos p {
  margin: 0;
  color: var(--blanco);
}
:root .credito-pyme .sec3 .simulador .grid .meses {
  border-radius: 12px 0px 0px 12px;
}
:root .credito-pyme .sec3 .simulador .grid .pagos {
  border-radius: 0px 12px 12px 0px;
}
:root .credito-pyme .sec3 .simulador .aviso {
  font-size: 12px;
  opacity: 0.6;
  color: var(--blanco);
}
@media (max-width: 500px) and (min-width: 0px) {
  :root .credito-pyme .sec3 .simulador {
    width: 100%;
  }
  :root .credito-pyme .sec3 .simulador .grid {
    padding: 0% 0%;
  }
  :root .credito-pyme .sec3 .simulador .bar {
    width: 100%;
  }
  :root .credito-pyme .sec3 .simulador .limites {
    width: 100%;
  }
}
:root .credito-pyme .sec4 .d-pad {
  padding: 0px 5% 70px 5%;
}
:root .credito-pyme .sec4 .custom {
  padding: 1% 10%;
  -webkit-box-shadow: 0px 9px 17px -10px black;
          box-shadow: 0px 9px 17px -10px black;
}
:root .credito-pyme .sec4 .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
:root .credito-pyme .sec4 .grid .item .category {
  padding: 4px 14px;
  background-color: var(--gris-claro-2);
  border-radius: 28px;
  font-size: 15px;
  margin-top: 4%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
:root .credito-pyme .sec4 .grid .item h4 {
  font-size: 24x;
}
:root .credito-pyme .sec4 .grid .item .desc {
  position: relative;
  height: 165px;
}
:root .credito-pyme .sec4 .grid .item .desc::after {
  position: absolute;
  bottom: 0px;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), color-stop(80%, rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 80%);
  pointer-events: none;
}
:root .credito-pyme .sec4 .grid .item .btn-cta {
  display: block;
  width: 100%;
  text-align: center;
  background-color: white;
  color: var(--verde);
  background: none;
  border-width: 1px;
}
:root .credito-pyme .sec4 .grid .item .btn-cta:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(62, 173, 78)), to(rgb(91, 187, 104)));
  background: linear-gradient(0deg, rgb(62, 173, 78) 0%, rgb(91, 187, 104) 100%);
  background-color: var(--verde);
  color: white;
}
@media (max-width: 768px) and (min-width: 501px) {
  :root .credito-pyme .sec4 .item h4 {
    min-height: 120px;
  }
  :root .credito-pyme .sec4 .item .desc {
    height: 315px !important;
  }
}
@media (max-width: 500px) and (min-width: 0px) {
  :root .credito-pyme .sec4 .grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  :root .credito-pyme .sec4 .custom {
    display: block;
    padding: 2% 5%;
    width: 100%;
  }
}
:root .gracias {
  background-color: #B4B4B4;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
:root .gracias .card-custom {
  text-align: center;
  background-color: var(--azul-oscuro);
  padding: 3% 0% 6%;
  border-radius: 25px;
  -webkit-box-shadow: 0px 0px 50px -10px black;
          box-shadow: 0px 0px 50px -10px black;
}
:root .gracias .card-custom h2 {
  color: white;
  font-weight: 700;
  font-size: 30px;
}
:root .gracias .card-custom p {
  color: white;
  font-size: 18px;
  padding: 0% 7%;
}
:root .gracias .card-custom .btn-cta {
  padding: 1.3% 21%;
}
@media (max-width: 500px) and (min-width: 0px) {
  :root body {
    font-size: 18px;
  }
  :root h1 {
    font-size: 30px;
  }
  :root h2 {
    font-size: 20px;
  }
  :root .fs-18 {
    font-size: 16px;
  }
  :root .fs-16 {
    font-size: 14px;
  }
  :root .btn-cta {
    width: 80%;
  }
  :root .mobile-item {
    display: block;
  }
  :root .desktop-item {
    display: none;
  }
  :root .pad-link {
    margin-top: 120px;
  }
}