/*pop up home video*/
.closeVideo{
    color: #fff;
    background-color: #be1e2d;
    height: 45px;
    width: 45px; 
    border-radius: 50%;
    display: block;
    position: absolute;
    right: 15px;
    top: -15px;
    cursor:pointer;
    z-index: 1;
  }
  .closeVideo:before{
    content:"";
    height: 2px;
    width: 20px;
    background-color: #ffffff;
    display:block;
    transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
     position: absolute;
    top: 22px;
    left: 12px;
  }
  .closeVideo:after{
    content:"";
    height: 2px;
    width: 20px;
    background-color: #ffffff;
    display:block;
    transform:rotate(-45deg);
    -webkit-transform:rotate(-45deg);
    position: absolute;
   top: 22px;
    left: 12px;
  }
  .popUp_tease_video{
   position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    background-color: #0000008f;
    overflow: hidden;
  }
  .popUp_tease_video>div{
       position: relative;
      width: auto;
      height: auto;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  .popUp_tease_video.removeVideo{
    display: none;
  }
  .popUp_tease_video video{
    max-width: 100%;
    height: auto;
    width: 650px;
  }
  @media(max-width: 480px){
    .closeVideo {
        right: 5px;
        top: -25px;
    }
    .popUp_tease_video video{
        width: 350px;
    }
  }
/**/
*{
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
*:focus {
    outline: 0;
}
#pagination{
    margin: 60px 0;
    text-align: center;
}
#pagination a {
    background-color: #fff;
    color: #be1e2d;
    font-size: 16px;
    padding: 12px 20px;
    font-weight: bold;
    border: 2px solid #009345;
}
#pagination a:hover{
    background-color: #009345;
    color: #fff;    
}
@media(min-width:840px){
    body{
        padding-top: 128px;
    }
}
.container{
    max-width: 1100px;
    width:100%;
    margin: auto;
}
img{
    max-width: 100%;
}
h1, .title_header{
    font-size: 35px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0.88px;
    color: #000000;
}
h2, .subtitle_header{
    font-size: 28px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.29;
    letter-spacing: 0.7px;
    text-align: center;
    color: #000000;
    margin-bottom: 20px;
}
p{
    font-size: 16px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.44;
    letter-spacing: normal;
    color: #000000;
    margin: 10px 0;
}
/*animate boxes*/
.boxAnimate{
    position: relative;
     bottom: -30px;
     opacity: 0;
     transition: .5s;
 }
 .boxAnimate.show {
     bottom: 0px;
     opacity: 1;
     transition: .5s;
 }
 .boxAnimate:nth-child(2).show {
     transition: .8s;
 }
 .boxAnimate:nth-child(3).show {
     transition: 1s;
 }
 .boxAnimate:nth-child(4).show {
     transition: 1.3s;
 }
 .boxAnimate:nth-child(5).show {
     transition: 1.5s;
 }
 /*animate title boxes top*/
 .titleAnimation{
    position: relative;
    opacity: 0;
    bottom:-50px;
    -webkit-animation: titleAnimatiion 1.5s 1 forwards; /* Safari 4+ */
    -moz-animation:    titleAnimatiion 1.5s 1 forwards; /* Fx 5+ */
    -o-animation:      titleAnimatiion 1.5s 1 forwards; /* Opera 12+ */
    animation:         titleAnimatiion 1.5s 1 forwards; /* IE 10+, Fx 29+ */
  }
  @-webkit-keyframes titleAnimatiion {
    0%   { opacity: 0; bottom:-50px}
    100% { opacity: 1; bottom: 0;}
  }
  @-moz-keyframes titleAnimatiion {
    0%   { opacity: 0; bottom:-50px}
    100% { opacity: 1; bottom: 0;}
  }
  @-o-keyframes titleAnimatiion {
    0%   { opacity: 0; bottom:-50px}
    100% { opacity: 1; bottom: 0;}
  }
  @keyframes titleAnimatiion {
    0%   { opacity: 0; bottom:-50px}
    100% { opacity: 1; bottom: 0;}
  }
.introHome{
    background-color: #f2f2f2;
    padding: 125px 0 96px 0;
}
.introHome h1{
    margin-bottom: 30px;
}
.introHome h1 br{
    display: none;
}
.introHome .container{
   max-width: 1145px;
}
.flexIntro{
    display:flex;
    align-items: center;
}
.flexIntro img{
    margin-right: 40px;
    max-width: 60%;
}
.btnRed{
    background-color: #be1e2d;
    border-radius: 5px;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0.8px;
    text-align: center;
    color: #ffffff;
    border: solid 1px #be1e2d;
    transition: .4s;
    display: inline-block;
    margin: 25px 0;
}
.btnRed:hover{
    background-color: transparent;
    color: #be1e2d;
    transition: .4s;
}
.btnGreen{
    background-color: #009345;
    border-radius: 5px;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0.8px;
    text-align: center;
    color: #ffffff;
    border: solid 1px #009345;
    transition: .4s;
    display: inline-block;
    margin: 25px 0;
}
.btnGreen:hover{
    background-color: transparent;
    color: #009345;
    transition: .4s;
}
.introHome p span{
    font-weight: 600;
    color: #009345;
}
.bannerSec .btnRed{
    margin: 25px auto;
    display: block;
    max-width: 200px;
    border-radius: 0;
    font-size: 20px;
    margin-bottom: 0;
}
.bannerSec .flex{
    align-items: flex-end;
}
.bannerSec .escudo{
    margin-bottom: 35px;
    margin-right: 20px;
}
.bannerSec h2{
    font-size: 35px;
    font-weight: 700;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: .88px;
    text-align: left;
    color: #fff;
    padding-top: 20px;
}
.bannerSec h3 {
    font-size: 22px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.27;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
}
.bannerSec .flex div{
    padding:30px 0;
}
.banner-antifraude{
    max-height: 260px;
}
.banner-antifraude .flex{
    padding-top: 35px;
    align-items: flex-start;
    justify-content: center;
}
.banner-antifraude .flex div{
    margin: 0 50px;
}
.banner-antifraude h2, .banner-antifraude .title{
    font-size: 30px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0.88px;
    text-align: left;
    color: #ffffff;
}
#btn-margin{
    margin: 0;
}
.banner-antifraude .img-antifraude{
    position: relative;
    top: -58px;
}
.banner-antifraude h3, .banner-antifraude .subtitle{
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.27;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
    max-width: 516px;
}
.banner-antifraude h3, .banner-antifraude .subtitle.small{
    font-size: 12px;
}
.banner-antifraude img:last-child{
    margin: 25px 15px;
}
.banner-antifraude.buenfin .texto-buenfin{
	max-width:690px;
    text-align: center;
}
.banner-antifraude.buenfin h2{
	color: #219345;
    text-align: center;
}
.banner-antifraude.buenfin h3{
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    margin: auto;
    max-width: 600px;
    margin-bottom: 14px;
}
.banner-antifraude.buenfin p{
	color: #ffffff;
    text-align: center;
    font-size: 13px;
    max-width: 580px;
    margin: auto;
}
.banner-antifraude.buenfin .img-buenfin{
	margin-top: -76px;
}
@media(max-width:1222px){
    .banner-antifraude .flex div {
        margin: 0 10px;
    }
    .banner-antifraude h3, .banner-antifraude .subtitle {
        max-width: 100%;
    }
    .banner-antifraude img:first-child,
    .banner-antifraude img:last-child{
        display: none;
    }
    .banner-antifraude .img-antifraude{
        top: 0;
    }
}
@media(max-width:900px){
    .banner-antifraude {
        max-height: 100%;
    }
    .banner-antifraude.buenfin{
    	padding-bottom: 30px;
    }
}
@media(max-width:767px){
    .banner-antifraude .flex {
        flex-direction: row;
        align-items: flex-end;
        padding-top: 20px;
    }
    .banner-antifraude .img-antifraude {
        top: 0;
        max-width: 35%;
    }
    .banner-antifraude h2, .banner-antifraude .title,  .bannerSec h2 {
        font-size: 28px;
    }
    .banner-antifraude h3, .banner-antifraude .subtitle,  .bannerSec h3 {
        font-size: 16px;
    }
    .bannerSec .escudo{
       display: none;
    }
    .bannerSec .flex{
        align-items: center;
    }
    .bannerSec img{
       max-width: 60%;
    }
}
.cntBoxesSectores {
    padding: 30px 0;
    margin-top: 30px;
}
.cntBoxesSectores .box{
    border: solid 1px #006b45;
    background-color: #ffffff;
    min-height: 375px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 30px; */
    transition: .1s;
}
.cntBoxesSectores .box:hover{
    background-color: #006b45;
    transition: .1s;
}
.cntBoxesSectores .box:hover h2, .cntBoxesSectores .box:hover h3, .cntBoxesSectores .box:hover p{
    color: #ffffff;
}
.cntBoxesSectores .box img{
    margin: auto auto 28px;
}
.cntBoxesSectores .slick-slide {
    padding: 0 8px;
}
.cntBoxesSectores h2, .cntBoxesSectores h3{
    font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.44;
  letter-spacing: normal;
  text-align: center;
  color: #000000;
}
.txtMax{
    font-size: 35px;
    line-height: 1.2;
    letter-spacing: 0.88px;
    color: #be1e2d;
}

.cntPrestamos{
    max-width: 815px;
    width: 100%;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;

}
.cntPrestamos > div{
    width: 24%;
    text-align: center;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}
.ventajas{
    padding: 30px 0;
}
.secSectores  p{
    text-align: center;
}
.secSectores{
    background-color: #f7f7f7;
    padding: 50px 0;
    position: relative;
}
.secSectores .container{
    position: relative;
    z-index: 1;
}
.secSectores:before{
    content:"";
    position: absolute;
    top:0;
    left: 0;
    width:100%;
    height: 280px;
    background-color: #ffffff;
    padding: 50px 0;
}
.secSectores .slick-dots li button:before{
    width: 10px;
    height: 10px;
    border-radius: 50px;
    border: solid 1px #be1e2d;
    opacity: 1;
    content:"";
}
.secSectores .slick-dots li.slick-active button:before {
    background-color:#be1e2d;
}
.secSectores .slick-dots li:hover button:before {
    background-color:#be1e2d;
}
.flexContent{
    display: flex;
    align-items: center;
}
.secSucursales{
    background-color: #f2f2f2;
    padding-top: 25px;
}
.pq_lanamovil h2, .secSucursales h2{
    text-align: left;
}
.pq_lanamovil h2 span{
    color: #009345;
    display:block;
}
.pq_lanamovil {
    padding-top: 55px;
}
.flexContent > div{
    max-width: 440px;
}
.secSucursales .flexContent img{
    margin-right: 15%;
    max-width: 40%;
}
.pq_lanamovil .flexContent img{
    margin-left: 5%;
    max-width: 60%;
}
.sectionBlog{
    padding: 55px 0;
}
.infoBlogSec{
    max-width: 720px;
    margin: auto;
    margin-bottom: 35px;
    text-align: center;

}
.sec_cotiza{
    padding: 50px 0;
    background-color: #333333;
}
.sec_cotiza h2{
    color: #ffffff;
}
.sec_cotiza p{
    font-size: 13px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.38;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
  max-width: 720px;
  margin: auto;
}
/*formulario*/
.formulario{
    max-width: 540px;
    margin: 40px auto;
    width: 100%;

}
.formulario form select option{
    color: #000000 !important;
}
.formulario form input:not([type='checkbox']):not([type='submit']), .formulario form select{
    width: 100%;
    height: 39px;
    border: solid 1px #999999;
    font-size: 13px;
    font-style: italic;
    text-align: left;
    color: #cccccc;
    padding: 0 5px;
    background-color: transparent;
}
.formulario form select {
    appearance: none;
    -webkit-appearance: none;
    background-image:url(https://lanamovil.net/wp-content/themes/lanamovil-new-theme/images/home/select_down.png);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: 98% 50%;

}
.formulario form input:focus{
    border: solid 1px #009345 !important;
    color: #ffffff !important;
}
.formulario form label, .formulario form p{
    font-size: 13px;
    font-style: italic;
    text-align: left;
    color: #cccccc;
    position: relative;
    display: block;
    margin-bottom: 5px;
}
.formulario form p{
    margin-bottom: 20px;
}
.formulario form fieldset{
    display: block;
    border: none;
    margin: 10px 0;
}
.formulario form input[type='checkbox'] ~ span:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid #009345;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
  }
.formulario form input[type='checkbox'] ~ span{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin-right: 35px;
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.2;
    color: #ccc;
    border: solid 1px #999999;
    width: 18px;
  height: 18px;
}
.formulario input[type='checkbox']:checked ~ span{
    border: solid 1px #ffffff;
}
.formulario input[type='checkbox']:checked ~ span:after {
    display: block;
}
.formulario input[type='checkbox'] {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    z-index: 1;
    cursor: pointer;
}
.formulario .checkboxes label{
    width: 80px;
    height: 30px;
    padding-left: 30px;
}
.formulario input[type='submit'], .formulario .hs-button{
    width: 160px;
    height: 40px;
    margin: auto;
    display: block;
    margin-top: 25px;
    background-color: #009345;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0.8px;
    text-align: center;
    color: #ffffff;
    border: solid 1px #009345;
    cursor: pointer;
    transition: .4s;
    border-radius: 5px;
}
.formulario input[type='submit']:hover, .formulario .hs-button:hover{
    background-color: transparent;
    color: #009345;
    transition: .4s;
}
.formulario .submitted-message{
    display: none !important;
}
#submitted-message-response{
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #ffffffe6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
    padding: 50px 20px;
}
#submitted-message-response p{
    font-weight: bold;    
    color: #000;
    margin: 0;
    font-size: 16px;
    text-align: center;
    max-width: 100%;
}
.loader {
    color: #be1e2d;
    font-size: 90px;
    text-indent: -9999em;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    margin: 72px auto;
    position: relative;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}
@-webkit-keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}
@keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}
@-webkit-keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.contactoPage{
    background-color: #ffffff;
    position: relative;
    padding-top: 60px;
}
.no-list.hs-error-msgs.inputs-list{
    list-style: none;
}
.no-list.hs-error-msgs.inputs-list li label{
    color: #009345;
    font-size: 11px;
    text-align: right;
    padding-top: 5px;
}
.form-columns-1 .input{
    margin-right: 0 !important;
}
.form-columns-2 > div:last-child .input{
    margin-right: 0 !important;
}
.hs_error_rollup ul li label{
    text-align: center !important;
}
@media(max-width:400px){
    .form-columns-2 .input{
        margin-right: 0 !important;
    }
    .form-columns-2 > div:last-child{
        margin-top: 10px !important;
    }
}
.contactoPage .container{
    position: relative;
    z-index: 1;
}
.contactoPage:before{
    content:"";
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #f2f2f2;
    position: absolute;
}
.flexContact{
    display: flex;
    flex-wrap: wrap;
}
.flexContact > div{
    width: 48%;
    margin-right: 2%;
}
.flexContact > div:last-child{
    margin-right: 0;
}
.boxContacto{
    border-radius: 4px;
  background-color: #ffffff;
  padding: 50px;
  padding-top: 10px;
}
.boxContacto .formulario form input:not([type='checkbox']):not([type='submit']),.boxContacto .formulario form select {
    width: 100%;
    height: 39px;
    border: solid 1px #e4e4e4;
    color:#000000 !important;
}
.boxContacto .formulario form fieldset {
    display: block;
    border: none;
    margin: 20px 0;
}
.boxBlack{
    background-color: #333333;
    padding: 35px 0;
}
.boxBlack p{
    font-size: 22px;
    line-height: 1.27;
    text-align: center;
    color: #ffffff;
}
.boxBlack p span{
    font-weight: bold;
    font-style: italic;
}
.boxBlack .btnGreen{
    margin: 30px auto 0 auto;
    display: block;
    max-width: 300px;;
}
.boxBlack .container{
    max-width: 755px;
}
.contactoPage h1 span{
    color: #009345;
    display: block;
}
.contactoPage h1 {
   text-align: left;
   margin: 20px 0;
   margin-top: 50px;
}
.contactoPage h2{
    font-size: 22px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.27;
  letter-spacing: normal;
  text-align: left;
  color: #000000;
}
.contactoPage .flexContact > div img{
    display: flex;
    margin: auto;
    margin-top: 90px;
}
.cntPostBlog{
    height: 295px;
    background-color: #cccccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}
.boxTextBlog{
    min-height: 352px;
    height: auto;
    background-color: #ffffff;
    max-width: 50%;
    width: 200px;
    position: absolute;
    right: 0;
    top: 38px;
    padding: 65px 16px;
    -webkit-box-shadow: 3px 6px 15px 1px rgba(0,0,0,0.17);
    -moz-box-shadow: 3px 6px 15px 1px rgba(0,0,0,0.17);
    box-shadow: 3px 6px 15px 1px rgba(0,0,0,0.17);
}
.boxTextBlog h4{
    font-size: 10px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.3;
    letter-spacing: normal;
    text-align: left;
    color: #009345;
}
.boxTextBlog h3{
    font-size: 19px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.47;
    letter-spacing: normal;
    text-align: left;
    color: #000000;
}
.boxTextBlog span{
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: italic;
    line-height: 1.64;
    letter-spacing: normal;
    text-align: left;
    color: #009345;
    text-decoration: underline;
    margin-top: 20px;
    display: block;
}
.sliderBlogHome {
    padding: 0 30px;
}
.sliderBlogHome .slick-list {
    padding-bottom: 140px;
}
.sliderBlogHome .slick-slide {
    padding: 0 15px;
}
.sliderBlogHome .slick-prev, .sliderBlogHome .slick-next {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    border: solid #b9b9b9 1px;
    background-color: #dcdcdc;
}
.sliderBlogHome .slick-next:before {
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
}
.sliderBlogHome .slick-prev:before {
    content: '\f053';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
}
.sliderBlogHome .slick-prev:hover, .sliderBlogHome .slick-prev:focus, .sliderBlogHome .slick-next:hover, .sliderBlogHome .slick-next:focus {
    color: #ffffff;
    outline: none;
    background-color: #009345;
}
.sliderBlogHome .slick-next {
    right: -5px;
}
.sliderBlogHome .slick-prev{
   left: -5px;
}
.pageLegales{
    padding: 80px 0;
}
.pageLegales p{
    text-align: justify !important;
}
.pageLegales pre{
    text-align: center !important;
}
.pageLegales h2{
    text-align: left;
    font-size: 18px;
    margin-top: 30px;
}
.pageLegales h1{
    text-align: center;
    margin-bottom: 50px;
}
.pageLegales .fecha{
    text-align: right;
    font-size: 14px;
    margin-bottom: 30px;
}
.pageLegales a{
    color: #009346;
    text-decoration: underline;
}
.pageLegales ul li{
    list-style: none;
}
.pageLegales ul > li:before{
    content:"";
    background-color: #009346;
    width: 6px;
    height: 6px;
    border-radius: 50px;
    display: block;
    position: absolute;
    top: 12px;
    left: -20px;
}
.pageLegales ul, .pageLegales ol{
    margin: 10px 0;
    padding-left: 20px;
}
.pageLegales ul li, .pageLegales ol li{
    font-size: 16px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.44;
    letter-spacing: normal;
    color: #000000;
    padding: 5px 0;
    position: relative;
}
.pageLegales ol li:before {
    content: counter(seccion, upper-roman) ". ";
    counter-increment: seccion;
    position: absolute;
    top: 5px;
    left: -40px;
    color: #009346;
    font-weight: 500;
}
.pageLegales ol{
    counter-reset: seccion;
    padding-left: 45px;
    list-style: none;
}
.pageLegales ul li span{
    color: #009345;
    font-weight: 500;
}
.pageLegales ul.red > li:before {
    background-color: #c22c3a;
}

.pageLegales.despachos table tr td{
    font-size: 13px;
    padding: 5px;
    border: 1px solid #cacaca;
}

.pageLegales.despachos table tr td table{
    border: none;
}
.pageLegales.despachos table tr td table td{
    font-size: 11px;
}
.pageLegales #table-une{
    margin-top: 50px;
}
.pageLegales #table-une table{
    border-collapse: collapse;
    width: 100%;
}
.pageLegales #table-une table td, .pageLegales #table-une table th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}
.pageLegales #table-une table th{
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #be1e2d;
    color: white;
}
.pageLegales #table-une table td:first-child{
    font-weight: bold;
}
.cuadroComisiones table tr:first-child{
    background-color: #dcdcdc;
}
.cuadroComisiones table tr td{
    font-size: 16px;
    padding: 10px 5px;
    border: 1px solid #cacaca;

}

@media(max-width:1145px){
    .container{
        padding: 0 15px;
    }
}
@media(max-width:1025px){
    .flexIntro img {
        margin-right: 40px;
        max-width: 45%;
    }
}
@media(max-width:768px){
    .introHome {
        padding: 35px 0;
    }
    .flexIntro img {
        max-width: 90%;
        margin-right: 0px;
    }
    .flexIntro {
        flex-direction: column-reverse;
    }
    .pq_lanamovil .flexContent {
        flex-direction: column;
    }
    .secSucursales .flexContent {
        flex-direction: column-reverse;
    }
    .flexContent > div {
        max-width: 100%;
    }
    .pq_lanamovil .flexContent img {
        margin-left: 0;
        max-width: 90%;
    }
    .secSucursales .flexContent img {
        margin-right: 0;
        max-width: 90%;
    }
    .flexContent img{
        margin-top: 50px;
    }
    .secSucursales, .pq_lanamovil {
        padding: 45px 0;
    }
    .flexContact > div {
        width: 100%;
        margin-right: 0;
    }
    .contactoPage {
        padding-top: 20px;
    }
}
@media(max-width:670px){
    .cuadroComisiones table tr td {
        font-size: 11px;
        padding:5px 2px;
    }
    .pageLegales pre img{
        width:100%;
        height:auto;
    }
}
@media(max-width:580px){
    .cntPrestamos > div {
        width: 45%;
        padding: 15px;
    }
    .boxTextBlog {
        min-height: 250px;
        right: 50%;
        left: 50%;
        top: 50px;
        padding: 40px 16px;
        transform: translate(-50%,0);
        -webkit-transform: translate(-50%,0);
        -ms-transform: translate(-50%,0);
    }
}
@media(max-width:480px){
    .container{
        padding: 0 30px;
    }
    h1{
        font-size: 29px !important;
    }
    h2{
        font-size: 25px !important;
    }
    .txtMax {
        font-size: 30px;
    }
    br{
        display: none;
    }
    .cntPrestamos > div {
        width: 100%;
        border-radius: 25.1px;
        background-color: #ffffff;
    }
    .cntPrestamos {
        border-radius: 25.1px;
        background-color: #ffffff;
        max-width: 240px;
        padding: 30px 10px;
    }
    .flexContent img {
        max-width: 100% !important;
    }
    .introHome h1{
        position: relative;
    }
    .introHome h1:after {
        content:"";
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url(https://lanamovil.net/wp-content/themes/lanamovil-new-theme/images/home/moneda_gris.png);
        width: 56.7px;
        height: 56.7px;
        position: absolute;
        right: 0;
        bottom: 30px;
        z-index: -1
    }
    .introHome h1:before{
        content:"";
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url(https://lanamovil.net/wp-content/themes/lanamovil-new-theme/images/home/moneda_amarilla.png);
        width: 27px;
        height: 27px;
        position: absolute;
        right: 15%;
        bottom: -20px;
    }
    .introHome h1 br{
        display: block;
    }
    .introHome{
        position: relative;
    }
    .introHome .container{
        position: relative;
        z-index: 1;
    }
    .introHome:after {
        content:"";
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url(https://lanamovil.net/wp-content/themes/lanamovil-new-theme/images/home/billete.png);
        width: 170.1px;
        height: 146.5px;
        max-width: 40%;
        position: absolute;
        right: 15px;
        top: 50%;
    }
    .boxContacto {
        padding: 40px 30px;
        padding-top: 10px;
    }
    .boxBlack p {
        font-size: 16px;
    }
    .boxTextBlog h3 {
        font-size: 14px;
    }
    .boxTextBlog span {
        font-size: 11px;
    }
    .boxTextBlog h4 {
        font-size: 9px;
    }
    .cntPostBlog {
        height: 175px;
    }
    .boxTextBlog {
        max-width: 75%;
        min-height: 200px;
    }
    .sliderBlogHome {
        padding: 0 0px;
    }
    .sliderBlogHome .slick-next {
        right: -20px;
        top: 30%;
    }
    .sliderBlogHome .slick-prev {
        left: -20px;
        top: 30%;
    }
    .sectionBlog {
        padding-bottom: 0;
    }
    .pageLegales {
        padding: 30px 0;
    }
    .pageLegales h1 {
        margin-bottom: 30px;
    }
    .pageLegales ol {
        padding-left: 30px;
    }
    .responsiveScroll{
        overflow: scroll;
    }
    .pageLegales #table-une{
        overflow: hidden;
        overflow-x: auto;
        clear: both;
        width: 100%;
    }
    .pageLegales ol li:before {
        left: -30px;
    }
    .cuadroComisiones .responsiveScroll > table{
        width: 400px;
    }
    .banner-antifraude h2, .banner-antifraude .title {
        font-size: 20px !important;
    }
    #btn-margin{
        margin: 25px 0;    
    }
}
@media(max-width:325px){

    .introHome:after {
        top: 58%;
    }
}

.faqs {
				margin: 0;
				padding: 0;
				font-family: sans-serif;
				background: #fff;
				color: #4d5974;
				display: block;
				min-height: auto;
				margin-bottom: 2rem !important;
			 }
		
			.faqs-title{
				background: #be1e2d;
				padding: 0.5rem;
				display: flex;
				align-items: center;
				justify-content: center;
				margin-bottom: 50px;
			}
			
			.faqs-title h2{
				margin-bottom: 0;
				color: #fff;
			}
			.faqs .flexIntro img {
				max-width: 50% !important;
			}

            .accordion a.faqs-question{
            position: relative;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            width: 100%;
            padding: 1rem 3rem 1rem 1rem;
            color: #be1e2d;
            font-size: 1.15rem;
            font-weight: 400;
			border-bottom: 2px solid #be1e2d;
			padding-left: 50px;
			font-weight: bolder;
				
            }
		
			.accordion .accordion-item:first-child a.faqs-question{
				border-top: 2px solid #be1e2d;
			}
            .accordion a.faqs-question:hover,
            .accordion a.faqs-question:hover::after {
            cursor: pointer;
            color: #009345;
            }
            .accordion .active {
            color: #009345;
            border-bottom: 2px solid #be1e2d;
            }
            .accordion a.faqs-question::after {
				font-family: 'fontawesome';
				content: '\2b';
				position: absolute;
				float: left;
				left: 1rem;
				color: #be1e2d;
				padding: 0px 5px;
				text-align: center;
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: 20px;
				font-weight: bolder;
            }
            .accordion a.active::after {
            color: #009345;
            }
            .accordion .content {
            opacity: 0;
            padding: 0 1rem;
            max-height: 0;
            border-bottom: 2px solid #be1e2d;
            overflow: hidden;
            clear: both;
            -webkit-transition: all 0.2s ease 0.15s;
            -o-transition: all 0.2s ease 0.15s;
            transition: all 0.2s ease 0.15s;
            }
            .accordion .content p {
            font-size: 16px;
            font-weight: 300;
			text-align: justify;
            }
            .accordion .content.active {
            opacity: 1;
            padding: 1rem;
            max-height: 100%;
            -webkit-transition: all 0.35s ease 0.15s;
            -o-transition: all 0.35s ease 0.15s;
            transition: all 0.35s ease 0.15s;
            }
		
		@media(max-width: 768px){
			.accordion a.faqs-question{
				padding: 1rem 0rem 1rem 2rem;
			}
			
			.faqs .flexIntro {
				flex-direction: column;
			}
			
			.accordion a.faqs-question::after {
				left: 0rem;
			}
			
			.faqs .flexIntro img {
				max-width: 90% !important;
				padding-bottom: 1rem;
			}
		}
