*{
    box-sizing: border-box;
    margin: 0px;
    outline: none;
    padding: 0px;
    position: relative;
}
:root{
    --color-primary: #266141;
    --color-light: #94C11F;
    --color-button: #ED6C24;
    --color-text: #515050;
    --color-border: #d2d2d2;
    --max-width-contenct: 1200px;
}
::placeholder {
  color: #acacac;
  opacity: 1;
}
::-ms-input-placeholder {
    color: #acacac;
}
html,body{
    min-width: 100%;
    min-height: 100%;
}
body{
    color: var(--color-text);
    font-family: 'Uni Neue';
    font-size: 18px;
    line-height: 1.3em;
    background: #FFFFFF;
    text-align: center;
}
a{
    color: var(--color-primary);
    text-decoration: none;
}
button{
    border: none;
    background: transparent;
    cursor: pointer;
}
footer{
    border-top: #C0C0C0;
    border-bottom: 16px solid var(--color-primary);
    padding-top: 50px;
    padding-bottom: 25px;
}
footer::before{
    content: ' ';
    background: linear-gradient(180deg, #E0E0E0 20%, #FFFFFF 56% 100%);
    height: 30px;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 100%;
}
h1{
    font-size: 44px;
    font-weight: bold;
    line-height: 1.2em;
    margin-bottom: 12px;
}
h2,
.h2{
    font-size: 35px;
    line-height: 1.2em;
    margin-bottom: 12px;
}
h3{
    font-size: 27px;
    line-height: 1.2em;
    margin-bottom: 7px;
}
h4{
    font-size: 22px;
    line-height: 1.2em;
    margin-bottom: 7px;
}
img.full{
    width: 100%;
}
p{
    margin-bottom: 10px;
}
ul{
    list-style: none;
    margin-bottom: 10px;
    padding: 0px;
}
ol{
    padding-left: 20px;
}
.acordion-content{
    background: #f9f9f9;
    border-radius: 0px 0px 17px 17px;
    font-size: 14px;
    line-height: 1.2em;
    padding: 0px 60px;
    text-align: left;
    height: 0px;
    overflow: hidden;
    opacity: 0;
    transition: opacity .2s linear;
}
.acordion-item.active .acordion-content{
    height: auto;
    opacity: 1;
    padding: 30px 60px 40px 60px;
}
.acordion-item.active .acordion-content .title{
    margin-bottom: 20px;
}
.acordion-item.active .acordion-content ul{
    list-style-type: disc;
    padding-left: 15px;
}
.acordion-item.active .acordion-content.life-secure ul{
    list-style: none;
    padding-left: 50px;
}
.acordion-item.active .acordion-content ul li{
    margin-bottom: 5px;
}
.acordion-title{
    background: var(--color-light);
    border-radius: 17px 17px 0px 0px;
    color: #FFF;
    cursor: pointer;
    padding: 12px 60px;
    text-align: left;
}
.acordion.unique .acordion-item .acordion-title{
    border-radius: 17px 17px 17px 17px;
}
.acordion.unique .acordion-item.active .acordion-title,
.acordion-item.active .acordion-title{
    border-radius: 17px 17px 0px 0px;
}
.acordion-title .icon{
    font-size: 48px;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transition: all .2s linear;
}
.acordion-item.active .acordion-title .icon{
    transform: translateY(-50%) rotate(0deg);
}
.asks{
    text-align: left;
}
.asks-content ul{
    list-style: disc;
    padding-left: 20px;
}
.asks-content{
    background: #FCF9F9;
    font-size: 16px;
    height: 0px;
    opacity: 0;
    overflow: hidden;
    transition: opacity .25s linear;
}
.asks-content.pic{
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
}
.asks-content.pic .asks-content-pic{
    flex: 0 0 480px;
    margin-right: 20px;
}
.asks-content.pic .asks-content-text{
    flex: 1 1 100%;
}
.asks .active .asks-content{
    height: auto;
    opacity: 1;
    padding: 30px 30px;
}
.asks-title{
    background: var(--color-light);
    border-radius: 7px;
    border-bottom: 1px solid #FCF9F9;
    color: #FFF;
    cursor: pointer;
    font-weight: bold;
    padding: 15px 30px;
}
.asks-title .icon{
    font-size: 32px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transition: all linear .25s;
}
.asks .active .asks-title .icon{
    transform: translateY(-50%) rotate(0deg);
}
.asks .active .asks-title{
    border-radius: 7px 7px 0px 0px;
}
.acordion.dark .acordion-title{
    background: var(--color-button);
}
.banner{
    height: 400px;
    overflow: hidden;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}
.banner h1{
    max-width: 470px;
    margin-bottom: 40px;
}
.banner p{
    max-width: 645px;
}
.banner picture{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
}
.banner picture img{
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    right: 0px;
}
.banner.back-bottom picture{
    height: 400px;
}
.banner.back-bottom picture img{
    bottom: 0px;
}
.banner.back-left picture img{
    left: 0px;
    right: auto;
}
.banner.about-us .row{
    margin-left: 25%;
}
.banner.page h1{
    max-width: 80%;
}
.banner.page p{
    max-width: 80%;
}
.banner.page.about-us h1{
    max-width: 65%;
}
.banner.page.work h1{
    margin-bottom: 20px;
}
.banner.page.work p{
    font-size: 17px;
    line-height: 1.5em;
    max-width: 60%;
    margin-bottom: 15px;
}
.banner.page .logo{
    position: absolute;
    top: 0px;
    right: 10%;
}
.blurb{
   max-width: 190px;
}
.blurb.big{
    max-width: 320px;
}
.blurb.full{
    max-width: 100%;
}
.blurb-action .btn{
    margin-top: 10px;
    min-width: auto;
    width: 100%;
}
.blurb-image{
    text-align: center;
}
.blurb-image img{
    margin: auto;
}
.blurb-text{
    margin: 15px 0px;
    padding: 0px 10px;
}
.blurb-stat{
    font-size: 44px;
    font-weight: 800;
    color: var(--color-light);
    line-height: 48px;
    margin-bottom: 30px;
}
.blurb-left{
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    font-size: 13px;
    line-height: 1.3em;
    margin-bottom: 20px;
    text-align: left;
}
.blurb-left.align-start{
    align-items: flex-start;
}
.blurb-left>div:first-child{
    flex: 0 0 50px;
}
.blurb-left>div:last-child{
    flex: 1 1 100%;
}
.btn{
    border-radius: 25px;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    min-width: 230px;
    padding: 10px 20px;
    text-align: center;
    transition: all .2s linear;
}
.btn:hover{
    transform: scale(1.02);
    box-shadow: 4px 5px 12px rgba(0,0,0,.3);
}
.btn.no-action:hover{
    cursor: default;
    transform: none;
    box-shadow: none;
}
.btn.medium{
    padding-bottom: 12px;
    padding-top: 12px;
}
.btn.full{
    min-width: 100%;
}
.btn-light{
    background: var(--color-light);
    color: #fff;
    transition: all .2s linear;
}
.btn-dark{
    background: var(--color-button);
    border: 1px solid var(--color-button);
    color: #fff;
    transition: all .2s linear;
}
.btn-dark.active{
    background: #ffffff;
    color: var(--color-button);
}
.btn-dark-invert{
    background: #fff;
    border: 1px solid var(--color-button);
    color: var(--color-button);
    transition: all .2s linear;
}
.btn-primary{
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #fff;
    transition: all .2s linear;
}
.btn-primary-invert{
    background: #fff;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    transition: all .2s linear;
}
.btn-primary-invert.no-action{
    cursor: default;
}
.btn-primary.no-action{
    cursor: default;
}
.card{
    border: 1px solid var(--color-text);
    border-radius: 17px;
    padding: 10px 20px;
    width: 230px;
}
.card-action{
    margin: 30px 0px 10px 0px;
}
.card-action .btn{
    display: block;
    min-width: auto;
    font-size: 14px;
}
.card-body .list-icon{
    margin: 0px 15%;
}
.card-body .list-icon-text{
    font-size: 13px;
    line-height: 1.1em;
}
.card-body-title{
    font-weight: bold;
    font-size: 22px;
    margin: 20px 0px;
}
.card-body-title a{
    color: #515050;
}
.card-image{
    margin-top: -55px;
    text-align: center;
}
.card-image img{
    border-radius: 50%;
    margin: auto;
    overflow: hidden;
}
.card-info{
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch;
    padding: 60px 70px;
    width: 100%;
}
.card-info>div{
    flex: 0 0 50%;
}
.card-info-content{
    display: flex;
    flex-flow: column nowrap;
    height: 220px;
    justify-content: flex-end;
}
.card-info-title{
    font-size: 32px;
    line-height: 1.3em;
    font-weight: bold;
    margin-bottom: 30px;
}
.card-info-image{
    display: flex;
    align-items: flex-end;
    padding: 0px 10px 0px 50px;
}
.card-info-image img{
    width: 100%;
}
.chart{
    max-width: 700px;
    margin: auto;
}
.col{
    display: flex;
    flex-flow: row wrap;
}
.col.align-center{
    align-items: center;
}
.col-14{
    justify-content: space-between;
}
.col-14>div:first-child{
    margin-bottom: 3%;
    width: 25%;
}
.col-14>div:last-child{
    margin-bottom: 3%;
    width: 75%;
}
.col-2{
    justify-content: space-between;
}
.col-2>div{
    margin-bottom: 3%;
    width: 48.5%;
}
.col-3{
    justify-content: space-between;
}
.col-3>div{
    width: 32%;
}
.col-4{
    justify-content: space-between;
}
.col-4>div{
    width: 23.5%;
}
.download{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch;
}
.download-content{
    color: #515050;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    margin-left: 25px;
    width: 180px;
}
.download-content .link{
    color: #006098;
    font-size: 15px;
}
.download-icon img{
    height: 100%;
}
.flag-right{
    position: absolute;
    right: 0px;
    top: 135px;
}
.flag-right-image{
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.flag-right-image>div{
    background: var(--color-light);
    border-radius: 50%;
    height: 120px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.flag-right-image>div .icon{
    font-size: 58px;
}
.flag-right-content{
    background: #F6F3F3;
    padding: 15px 40px 15px 100px;
    color: var(--color-primary);
    border-radius: 17px 0px 0px 17px;
}
.flag-right-content p{
    font-size: 14px;
    line-height: 1em;
    margin-bottom: 5px;
}
.fondos-list.cities{
    max-width: 250px;
}
.fondos-list ul{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    list-style: none;
    padding-left: 0px;
}
.fondos-list ul.vertical{
    flex-flow: column nowrap;
}
.fondos-list li{
    margin: 0px 2% 15px 2%;
    width: 100%;
}
.fondos-list li:first-child{
    margin-left: 0px;
}
.fondos-list li:last-child{
    margin-right: 0px;
}
.fondos-list ul.vertical li{
    margin: 0px 2% 35px 2%;
    width: 100%;
}
.fondos-list.cities ul.vertical li .btn{
    border-radius: 10px;
    font-weight: 700;
    font-size: 20px;
    padding: 12px 0px;
}
.fondos-list .btn{
    font-size: 16px;
    min-width: auto;
    width: 100%;
}
.fondos-list.simulator ul{
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 0px 0px 17px 15px;
    border: 2px solid var(--color-light);
    background: #fff;
    z-index: 1;
}
.fondos-list.simulator li{
    margin: 0px;
    width: 100%;
}
.fondos-list.simulator .fondo-dropdown{
    background: var(--color-light);
    border-radius: 10px;
    color: #FFF;
    cursor: pointer;
    display: flex;
    padding: 15px 10px 8px 15px;
    text-align: left;
}
.fondos-list.simulator .fondo-dropdown .arrow{
    font-size: 32px;
}
.fondos-list.simulator .fondo-dropdown .icon{
    display: flex;
    align-items: center;
    height: 35px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.fondos-list.simulator ul li .btn{
    border-radius: 0px;
    padding: 15px 20px;
    text-align: center;
}
.fondos-list.simulator ul{
    height: 0px;
    opacity: 0;
    position: absolute;
    transition: opacity .25s linear;
}
.fondos-list.simulator .fondo-dropdown.active{
    border-radius: 10px 10px 0px 0px;
}
.fondos-list.simulator .fondo-dropdown.active + ul{
    height: auto;
    opacity: 1;
}
.footer-copy{
    font-size: 11px;
    font-style: italic;
    line-height: 1.4em;
    margin: 0px 5%;
}
.footer-logos div{
    margin-bottom: 18px !important;
}
.footer-menu li{
    margin-bottom: 8px;
}
.footer-menu li a{
    color: var(--color-text);
    font-size: 15px;
    font-weight: bold;
}
.footer-social ul{
    margin: 20px 0px;
    align-items: center;
}
.footer-social p{
    font-size: 16px;
    font-weight: bold;
}
.footer-social .icon{
    font-size: 30px;
    margin: 0px 15px;
}
.footer-social .icon-youtube{
    font-size: 35px;
}
.form{
    background: #EEEEEE;
    border-radius: 17px;
    padding: 30px 50px;
    text-align: left;
}
.form-birthday{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}
.form-birthday select:nth-child(1),
.form-birthday select:nth-child(3){
    flex: 0 0 25%;
}
.form-birthday select:nth-child(2){
    margin: 0px 15px;
    flex: 1 1 100%;
}
.form-control{
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    width: 100%;
}
textarea.form-control{
    height: 150px;
    resize: none;
    width: 100%;
}
.form-group{
    padding-bottom: 20px;
}
.form-group label{
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}
.form-group .error{
    color: var(--color-button);
    font-size: 12px;
    margin-bottom: 0px;
}
.form_job{
    overflow: hidden;
    height: 0px;
    opacity: 0;
    transition: all .2s linear;
}
.form_job.active{
    height: auto;
    opacity: 1;
}
.grecaptcha-badge{
    z-index: 2;
}
.header{
    height: 80px;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0px 5px 5px rgba(0,0,0,.07);
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin-bottom: 50px;
}
.header .menu{
    padding-right: 15px;
}
.header .dropdown{
    background-color: var(--color-primary);
    border-radius: 10px;
    color: #fff;
    opacity: 0;
    position: absolute;
    width: 160px;
    z-index: -1;
    transition: all .2s linear;
}
.header .drop:hover .dropdown{
    opacity: 1;
    z-index: 2;
}
.header .dropdown button{
    background: var(--color-primary);
    color: #FFF;
    width: 100%;
    padding: 15px 15px;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    z-index: 3;
}
.header .dropdown li:first-child button{
    border-radius: 10px 10px 0px 0px;
}
.header .dropdown li:last-child button{
    border-radius: 0px 0px 10px 10px;
}
.header .dropdown>li .icon{
    height: 50px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 50px;
    z-index: 3;
}
.header .dropdown>li .arrow{
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    height: 8px;
    position: absolute;
    right: 10px;
    transform: rotate(45deg);
    top: 18px;
    width: 8px;
    transition: all .2s linear;
}
.header .dropdown>li:hover .arrow{
    border-top: none;
    border-right: none;
    height: 2px;
    background: #FFF;
    transform: rotate(0deg) translateY(5px);
}
.header .menu,
.header .menu-action{
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
}
.header .menu-action .btn{
    border-radius: 24px;
    font-size: 14px;
    padding: 8px 15px;
    margin: 0px 10px;
    min-width: auto;
}
.header .menu-links ul.nav{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
}
.header .menu-links ul.nav a{
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    font-size: 14px;
    height: 85px;
    padding: 14px 20px 0px 20px;
}
.header .menu-links ul.nav a.active{
    font-weight: 900;
}
.header picture img{
    max-height: 105px;
}
.header .sandwich{
    align-items: center;
    display: none;
    flex-flow: row nowrap;
    height: 40px;
    position: absolute;
    top: 30px;
    transform: translateY(-50%);
    right: 20px;
    width: 35px;
    z-index: 3;
}
.header .sandwich img{
    display: none;
}
.header .sandwich::after,
.header .sandwich::before{
    content: ' ';
    background: var(--color-primary);
    border-radius: 4px;
    height: 3px;
    border-top: 2px;
    left: 0px;
    position: absolute;
    transition: all .2s linear;
    width: 100%;
}
.header .sandwich::after{
    top: 7px;
}
.header .sandwich::before{
    bottom: 7px;
}
.header .sandwich span{
    background: var(--color-primary);
    border-radius: 4px;
    display: block;
    height: 3px;
    width: 100%;
}
.header .submenu{
    background-color: var(--color-light);
    border-radius: 0px 10px 10px 10px;
    color: #fff;
    opacity: 0;
    position: absolute;
    left: -0px;
    top: 0px;
    transition: all .2s linear;
    width: 160px;
    z-index: -1;
}
.header .dropsub:hover .submenu{
    left: 150px;
    opacity: 1;
    z-index: 1;
}
.header .submenu{
    overflow: hidden;
}
.header .submenu a{
    color: #FFF;
    height: auto !important;
    padding: 10px 30px !important;
}
.header .submenu a:hover{
    background: rgba(0,0,0,.1);
}
.hide{
    display: none !important;
}
.inline{
    display: flex;
    flex-flow: row nowrap;
}
.inline-center{
    justify-content: center;
}
.input-upload{
    align-items: center;
    background: var(--color-light);
    border-radius: 20px;
    color: #FFF;
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    padding: 20px 15px;
    text-align: left;
}
.input-upload-text{
    font-size: 15px;
    margin-left: 15px;
}
.job-content{
    background: #EEE;
    border-radius: 0px 0px 18px 18px;
    padding: 40px 40px;
}
.job-title{
    background: var(--color-light);
    border-radius: 18px 18px 0px 0px;
    color: #FFF;
    text-align: left;
    padding: 20px 40px 15px 40px;
}
.justify-center{
    justify-content: center;
}
.justify-start{
    justify-content: flex-start;
}
.job-title h3{
    font-size: 20px;
}
.list-icon .list-icon-item{
    align-items: flex-start;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    margin-bottom: 12px;
}
.list-icon .list-icon-icon{
    flex: 0 0 22px;
    width: 22px;
}
.list-icon .list-icon-text{
    flex: 1 1 100%;
    padding-left: 10px;
    text-align: left;
}
.loading{
    animation: girar 2s linear 0s infinite;
}
@keyframes girar {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.mb-2{
    margin-bottom: 20px;
}
.mh-5{
    margin-bottom: 0px;
    min-height: 70px;
}
.my-2{
    margin: 20px 0px;
}
.my-3{
    margin: 30px 0px;
}
.mx-1p{
    margin: 0px 12%;
}
.mx-2p{
    margin: 0px 20%;
}
.office{
    width: 100%;
    max-width: 320px;
}
.office-content{
    background: #EEEEEE;
    border-radius: 0px 0px 15px 15px;
    padding: 20px 30px 1px 30px;
}
.office-item-icon .icon{
    font-size: 36px;
}
.office-item{
    display: flex;
    flex-flow: row nowrap;
    font-size: 14px;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 23px;
}
.office-item p{
    margin-bottom: 0px;
}
.office-item>div:first-child{
    flex: 0 0 50px;
}
.office-item>div:last-child{
    flex: 1 1 100%;
    margin-left: 3%;
}
.office-title{
    background: var(--color-light);
    border-radius: 18px 18px 0px 0px;
    color: #fff;
    font-weight: 700;
    padding: 20px 0px;
    text-align: center;
}
.offices{
    display: flex;
    flex-flow:row wrap; 
    justify-content:space-between;
    margin: 0px 10%;
}
.offices>div{
    margin-bottom:60px;
}
.print_data label{
    font-weight: 700;
}
.pr-1p{
    padding-right: 10%;
}
.pl-1p{
    padding-left: 10%;
}
.px-2{
    padding: 0px 20px;
}
.popup{
    background: rgba(0,0,0,.15);
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    height: 100%;
    left: 0px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 3;
}
.popup-content{
    border: 4px solid #FFFFFF;
    border-radius: 10px;
    max-width: 600px;
    transform: translateY(-100vh);
    width: 100%;
    animation: popupenter .7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 1s;
}
@keyframes popupenter {
    0%{
        transform: translateY(-100vh);
    }
    80%{
        transform: translateY(0px);
    }
    95%{
        transform: translateY(-15px);
    }
    100%{
        transform: translateY(-10px);
    }
}
.popup-content img{
    border-radius: 10px;
    display: flex;
    width: 100%;
}
.popup-close{
    background: #EFEFEF;
    border: 1px solid #FFF;
    border-radius: 7px;
    color: #797979;
    padding: 10px 12px;
    position: absolute;
    right: -15px;
    top: -15px;
    transition: all .2s linear;
}
.popup-close:hover{
    transform: scale(1.1);
}
.riesgo{
    line-height: 1.3em;
    font-style: italic;
    opacity: 0.8;
}
.row{
    margin: auto;
    max-width: var(--max-width-contenct);
    width: 100%;
}
.separator{
    display: block;
    height: 1px;
    margin: 30px 0px;
    width: 100%;
}
.separator.md{
    margin: 50px 0px;
}
.separator.sp-border{
    background: var(--color-border);
    opacity: .8;
}
.separator.medium{
    height: 2px;
    max-width: 80%;
    margin-right:auto;
    margin-left:auto;
    opacity: 1;
}
.show-movil{
    display: none;
}
.show-responsive{
    display: none;
}
.simulator{
    max-width: 600px;
    margin: auto;
}
.simulator .error{
    color: var(--color-button);
    font-size: 14px;
    margin-bottom: 30px;

}
.simulator-group{
    border: 1px solid #000;
    border-radius: 17px;
    display: flex;
    font-size: 22px;
    font-weight: bold;
    flex-flow: row nowrap;
    align-items: stretch;
    margin-top: 30px;
    overflow: hidden;
}
.simulator-group input{
    flex: 1 1 100%;
    font-size: 20px;
    font-weight: bold;
    border: none;
    padding: 20px 20px;
}
.simulator-group span{
    flex: 0 0 110px;
    display: flex;
    border-left: 1px solid #000;
    justify-content: center;
    align-items: center;
}
.slick-slider .slick-arrow{
    display: none !important;
}
.slick-slider .card{
    margin-top: 50px;
}
.slick-slider .slick-dots{
    bottom: -50px;
}
.slick-slider .slick-dots button::before{
    border: 3px solid var(--color-text);
    border-radius: 50%;
    height: 8px;
    width: 8px;
    background: #fff;
    content: ' ';
    display: block;
    opacity: 1 !important;
}
.slick-slider .slick-dots .slick-active button::before{
    background: var(--color-text);
}
.slider{
    background-repeat: no-repeat;
    background-size: 100% auto;
    margin-top: 50px;
}
.slider-content{
    padding: 80px 0px 140px 0px;
}
.slider .btn{
    font-size: 15px;
    font-weight: bold;
}
.slider img{
    width: 100%;
}
.steps{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}
.steps .steps-item:nth-child(2){
    margin-top: 50px;
}
.steps .steps-item:nth-child(4){
    margin-top: 30px;
}
.steps .steps-item:nth-child(1)::after,
.steps .steps-item:nth-child(2)::after,
.steps .steps-item:nth-child(3)::after{
    content: ' ';
    background-repeat: no-repeat;
    height: 100px;
    position: absolute;
    width: 250px;
}
.steps .steps-item:nth-child(1)::after{
    background-image: url('../img/home-arrow1.svg');
    left: 120px;
    top: 50px;
}
.steps .steps-item:nth-child(2)::after{
    background-image: url('../img/home-arrow2.svg');
    left: 140px;
    top: -20px;
}
.steps .steps-item:nth-child(3)::after{
    background-image: url('../img/home-arrow3.svg');
    left: 160px;
    top: 80px;
}
.table{
    background: var(--color-primary);
    border-collapse: collapse;
    border: 0px;
    border-radius: 20px;
    padding: 0px;
    width: 100%;
}
.table thead{
    background: var(--color-primary);
    color: #FFF;
}
.table thead th{
    font-size: 26px;
    font-weight: bold;
    padding: 30px 40px;
}
.table thead th:nth-child(1){
    background: var(--color-light);
    border-radius: 20px 20px 0px 0px;
}
.table thead th:nth-child(2){
    border-radius: 0px 20px 0px 0px;
}
.table tbody td{
    font-size: 16px;
    padding: 40px 25px 0px 25px;
}
.table tbody tr:last-child td{
    padding-bottom: 35px;
}
.table tbody td:nth-child(1){
    background: #f9f9f9;
}
.table tbody td:nth-child(2){
    background: #f6f6f6;
    font-size: 1.2em;
}
.table tbody tr:last-child td:nth-child(1){
    border-radius: 0px 0px 0px 20px;
}
.table tbody tr:last-child td:nth-child(2){
    border-radius: 0px 0px 20px 0px;
}
.text-big{
    font-size: 50px;
    line-height: 1.3em;
}
.text-center{
    text-align: center;
}
.text-center>div{
    margin: auto;
}
.text-left{
    text-align: left;
}
.text-line{
    display: inline-block;
}
.text-light{
    font-weight: 300;
}
.text-line::after,
.text-line::before{
    content: ' ';
    background: var(--color-text);
    height: 1px;
    position: absolute;
    top: 50%;
    width: 250px;
}
.text-line::before{
    left: -320px;
}
.text-line::after{
    right: -320px;
}
.text-medium{
    font-size: 30px;
    line-height: 1.3em;
}
.text-medium25{
    font-size: 25px;
    line-height: 1.3em;
}
.text-right{
    text-align: right;
}
.text-right>div{
    margin:auto;
    margin-right: 0px;
}
.text-bold{
    font-weight: bold;
}
.text-heavy{
    font-weight: 800;
}
.text-justify{
    text-align: justify;
}
.text-shadow{
    text-shadow: 2px 2px 7px rgba(0,0,0,.4);
}
.text-small{
    font-size: 12px;
    line-height: 1.5em;
}
.title-fondo{
    font-size: 48px;
    font-weight: 400;
}
.title-special{
    border-bottom: 3px solid var(--color-button);
    margin: 0px 10%;
}
.text-black{
    color: var(--color-text);
}
.text-white{
    color: #FFF;
}
.text-alert{
    color: var(--color-button);
}
.title-special-title{
    background: var(--color-button);
    border-bottom: 4px solid var(--color-button);
    border-radius: 12px 12px 0px 0px;
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: -1px;
    padding: 15px 20px 11px 20px;
    width: 250px;
}
.youtube{
    border-radius: 5px;
    min-height: 380px;
    width: 100%; 
}
.whatsapp{
    background: #E4E3E3;
    border-radius: 25px 0px 0px 25px;
    padding: 10px 20px;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    z-index: 2;
}
.whatsapp img{
    max-width: 40px;
}
@media(max-width: 1270px){
    .row{
        padding: 0px 20px;
    }
    .steps .steps-item:nth-child(1)::after,
    .steps .steps-item:nth-child(2)::after,
    .steps .steps-item:nth-child(3)::after{
        background-size: contain;
        height: 70px;
        width: 115%;
    }
    .steps .steps-item:nth-child(3)::after{
        width: 95%;
    }
    .text-line::after,
    .text-line::before{
        width: 150px;
    }
    .text-line::before{
        left: -220px;
    }
    .text-line::after{
        right: -220px;
    }
}
@media(max-width: 1220px){
    .banner.about-us .row{
        margin-left: 5%;
    }
    .header picture img {
        max-height: 95px;
    }
    .header .menu-links ul.nav a{
        padding: 14px 10px 0px 10px;
    }
}
@media(max-width: 1150px){
    
    .fondos-list li{
        width: 135px;
    }
    
    .slider-content{
        padding: 30px 0px 80px 0px;
    }
}
@media(max-width: 1020px){
    .steps .steps-item:nth-child(1)::after,
    .steps .steps-item:nth-child(2)::after,
    .steps .steps-item:nth-child(3)::after{
        background-size: contain;
        width: 80%;
    }
    .steps .steps-item:nth-child(3)::after{
        width: 75%;
    }
}
@media(max-width: 980px){
    .btn.btn-980{
        min-width: 180px;
    }
    .card-info{
        padding: 30px 40px;
    }
    .card-info-content{
        height: 190px;
    }
    .card-info-image{
        padding: 0px 0px 0px 40px;
    }
    .card-info-title{
        font-size: 26px;
    }
    .col-4{
        flex-wrap: wrap;
    }
    .col-4>div{
        margin-bottom: 7%;
        width: 50%;
    }
    .header{
        height: 65px;
    }
    .header .dropdown button{
        width: calc(100% - 150px);
    }
    .header .dropdown>li .icon{
        display: inline-block;
        top: 0px;
        right: 0px;
    }
    .header .dropdown>li .arrow {
        background: transparent !important;
        border-top: 2px solid #FFF !important;
        border-right: 2px solid #FFF !important;
        height: 8px !important;
        position: absolute !important;
        right: 10px !important;
        transform: rotate(45deg) !important;
        top: 18px !important;
        width: 8px !important;
        transition: all .2s linear !important;
    }
    
    .header .dropdown>li.active .arrow{
        border-top: none !important;
        border-right: none !important;
        height: 2px !important;
        background: #FFF !important;
        transform: rotate(0deg) translateY(5px) !important;
    }
    .header picture img{
        max-height: 61px;
    }
    .header .dropdown{
        opacity: 1;
        position: relative;
        width: 100%;
        z-index: 1;
    }
    .header .menu{
        align-items: flex-start;
        background: var(--color-primary);
        flex-flow: column nowrap;
        justify-content: flex-start;
        scroll-behavior: smooth;
        height: 100vh;
        max-width: 100%;
        opacity: 0;
        overflow: auto;
        padding: 20px;
        position: fixed;
        right: 0px;
        top: -100vh;
        width: 350px;
        z-index: 3;
    }
    .header .menu.active{
        opacity: 1;
        top: 0px;
    }
    .header .menu button{
        font-size: 16px;
        font-weight: 200;
    }
    .header .menu-action{
        align-items: flex-start;
        flex-flow: column wrap;
        width: 100%;
    }
    .header .menu-action-item{
        margin-bottom: 10px;
        text-align: left;
    }
    .header .menu-action-item a.btn{
        font-size: 12px;
        margin: 0px;
        padding: 4px 7px;
        width: 150px;
    }
    .header .menu-back{
        background-color: rgba(0,0,0,.2);
        opacity: 0;
        top: -100vh;
        left: 0px;
        height: 100vh;
        position: fixed;
        width: 100vw;
        z-index: 2;
    }
    .header .menu-back.active{
        opacity: 1;
        top: 0px;
    }
    .header .menu-links{
        padding-left: 8px;
        order: 2;
        width: 100%;
    }
    .header .menu-links ul.nav{
        flex-flow: column wrap;
        justify-content: flex-start;
    }
    .header .menu-links ul.nav a{
        color: #FFF;
        font-weight: bold;
        font-size: 16px;
        justify-content: flex-start;
        height: auto;
        padding: 10px 0px;
        width: 100%;
    }
    .header .submenu{
        background: var(--color-primary);
        height: 0px;
        opacity: 0;
        overflow: hidden;
        position: relative;
        transform: none;
        transition: all .2s linear;
        width: 100%;
        z-index: 1;
    }
    .header .submenu a{
        font-weight: normal !important;
    }
    .header .dropsub.active .submenu{
        height: auto;
        opacity: 1;
        overflow: inherit;
    }
    .header .dropsub:hover .submenu{
        transform: none;
        left: 0px;
    }
    .header .sandwich{
        display: flex;
    }
    .header .sandwich.active{
        position: fixed;
    }
    .header .sandwich.active::after,
    .header .sandwich.active::before{
        background: #FFF;
    }
    .header .sandwich.active::after{
        transform: translateY(12px) rotate(45deg); 
    }
    .header .sandwich.active::before{
        transform: translateY(-12px) rotate(-45deg);
    }
    .header .sandwich.active span{
        background: #FFF;
        display: none;
    }
    .hide-responsive{
        display: none;
    }
    .mx-1p{
        margin: 0px 7%;
    }
    .show-responsive{
        display: block;
    }
}
@media(max-width: 870px){
    .download-content{
        width: 150px;
    }
    .slider{
        background-size: cover;
    }
    .slider-content{
        padding: 20px 0px 40px 0px;
    }
    .slick-invertir .slick-slide{
        padding: 0px 10px;
    }
    .steps .steps-item:nth-child(1)::after,
    .steps .steps-item:nth-child(2)::after,
    .steps .steps-item:nth-child(3)::after{
        background-size: contain;
        width: 70%;
    }
    .steps .steps-item:nth-child(3)::after{
        width: 60%;
    }
    .steps .steps-item:nth-child(1)::after{
        left: 110px;
    }
    .steps .steps-item:nth-child(2)::after{
        left: 115px;
    }
    .steps .steps-item:nth-child(3)::after{
        left: 140px;
    }
    .text-line::after,
    .text-line::before{
        width: 100px;
    }
    .text-line::before{
        left: -120px;
    }
    .text-line::after{
        right: -120px;
    }
}
@media(max-width: 760px){
    h1{
        font-size: 32px;
    }
    h2{
        font-size: 26px;
    }
    h3{
        font-size: 24px;
    }
    h4{
        font-size: 20px;
    }
    p{
        font-size: 16px;
        line-height: 1.3em;
    }
    .acordion-title,
    .acordion-item.active .acordion-content{
        padding: 14px 30px 10px 30px;
    }
    .acordion-content{
        line-height: 1.4em;
    }
    .acordion-title .icon{
        right: 20px;
    }
    .asks-title .icon{
        right: 5px;
    }
    .banner,
    .banner picture,
    .banner.back-bottom picture{
        height: 200px;
    }
    .banner.page h1{
        max-width: 55%;
    }
    .banner h1{
        font-size: 26px;
        max-width: 55%;
        margin-bottom: 0px;
    }
    .banner p{
        max-width: 100%;
        color: var(--color-text);
        margin-top: 0px;
    }
    .banner picture img{
        min-height: 100%;
        min-width: 100%;
        right: 0px;
    }
    .banner.about-us .row h1{
        margin-left: 30%;
        max-width: 70%;
    }
    .banner.page{
        height: 200px;
    }
    .banner.page picture img{
        height: 200px;
        width: auto;
    }
    .banner.page .logo{
        right: 10px;
        max-width: 80px;
    }
    .banner.page.work h1{
        max-width: 70%;
    }
    .blurb-action{
        padding: 0px 15px;
    }
    .blurb-action .btn{
        padding-left: 10px;
        padding-right: 10px;
    }
    .btn,
    .btn.btn-980{
        min-width: 100%;
    }
    .card-info{
        align-items: center;
        padding: 20px 20px;
    }
    .card-info>div:first-child{
        flex: 0 0 60%;
    }
    .card-info>div:first-child{
        flex: 0 0 40%;
    }
    .card-info-content{
        height: auto;
    }
    .card-info-title{
        font-size: 26px;
    }
    .col-14>div:first-child{
        margin-bottom: 3%;
        width: 100%;
    }
    .col-14>div:last-child{
        margin-bottom: 3%;
        width: 100%;
    }
    .col-2{
        flex-wrap: wrap;
    }
    .col-2>div{
        flex: 0 0 100%;
        margin-bottom: 4%;
    }
    .col-2.fixed>div{
        flex: 0 0 48%;
    }
    .col-2.inverse{
        flex-wrap: wrap-reverse;
    }
    .col-3{
        flex-wrap: wrap;
    }
    .col-3>div{
        flex: 0 0 100%;
        margin-bottom: 4%;
    }
    .download{
        margin-bottom: 30px;
    }
    .flag-right{
        position: relative;
        top: 0px;
        margin-right: 0px;
        margin-left: auto;
        margin-bottom: 40px;
        max-width: 310px;
    }
    .flag-right-image>div{
        height: 90px;
        width: 90px;
    }
    .flag-right-image>div .icon{
        font-size: 42px;
    }
    .flag-right-content{
        padding: 15px 40px 15px 0px;
    }
    .fondo-dropdown{
        background: var(--color-button);
        border-radius: 10px;
        color: #FFF;
        display: flex;
        padding: 15px 10px 8px 15px;
        text-align: left;
    }
    .fondo-dropdown .arrow{
        font-size: 32px;
    }
    .fondo-dropdown.active{
        border-radius: 10px 10px 0px 0px;
    }
    .fondo-dropdown.active + ul{
        height: auto;
        opacity: 1;
    }
    .fondo-dropdown .icon{
        display: flex;
        align-items: center;
        height: 35px;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    .fondo-dropdown #fondo-selected{
        padding-right: 35px;
    }
    .fondos-list.cities {
        max-width: 100%;
    }
    .fondos-list ul{
        height: 0px;
        opacity: 0;
        transition: opacity .25s linear;
    }
    
    .fondos-list ul{
        flex-wrap: wrap;
        overflow: hidden;
        border-radius: 0px 0px 17px 15px;
        border: 2px solid var(--color-button);
        background: #fff;
        z-index: 1;
    }
    .fondos-list li{
        margin: 0px;
        width: 100%;
    }
    .fondos-list ul.vertical li{
        margin: 0px;
    }
    .fondos-list.cities ul.vertical li .btn{
        border-radius: 0px;
        font-weight: normal;
    }
    .fondos-list li .btn{
        background: #fff;
        border-radius: 0px;
        border: none;
        border-bottom: 1px solid rgba(111, 69, 69, 0.1);
        color: var(--color-button);
    }
    .fondos-list li:hover .btn{
        background: var(--color-button);
        color: #fff;
    }
    .fondos-list li:last-child .btn{
        border-bottom: none;
    }

    .fondos-list.simulator .fondo-dropdown{
        padding: 15px 0px 8px 7px;
    }
    .fondos-list.simulator .fondo-dropdown .icon{
        right: 4px;
    }
    .fondos-list.simulator li .btn{
        color: var(--color-text);
    }
    .fondos-list.simulator li .btn.btn-light,
    .fondos-list.simulator li:hover .btn{
        background: var(--color-light);
        color: #fff;
    }
    .form{
        padding: 20px 15px;
    }
    .form .btn{
        padding: 15px 50px;
        min-width: auto;
    }
    .form-control{
        padding: 15px 15px;
    }
    .footer-copy{
        margin: 0px;
    }
    .hide-movil{
        display: none;
    }
    .input-upload-icon{
        flex: 0 0 40px;
        width: 40px;
    }
    .input-upload-icon img{
        width: 100%;
    }
    .job-title{
        padding: 20px 20px 15px 20px;
    }
    .job-content{
        padding: 30px 20px;
    }
    .mh-5{
        min-height: 40px;
    }
    .mx-1p{
        margin: 0px;
    }
    .mx-2p{
        margin: 0px;
    }
    .office{
        max-width: 100%;
    }
    .offices{
        margin: 0px;
    }
    .office-content{
        padding: 20px 20px 1px 20px;
    }
    .popup-content{
        width: 90%;
    }
    .px-2.full-movil{
        padding: 0px;
    }
    .row.full-movil{
        padding: 0px;
    }
    .show-movil{
        display: block;
    }
    .slick-valores .blurb{
        margin: auto;
        max-width: 80%;
    }
    .simulator-group input{
        width: calc(100% - 110px);
    }
    .slider{
        background: none !important;
    }
    .slider-content{
        padding: 40px 0px 10px 0px;
    }
    .steps{
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 520px;
        margin: auto;
    }
    .steps .steps-item .blurb{
        margin: auto;
    }
    .steps .steps-item:nth-child(1)::after, 
    .steps .steps-item:nth-child(2)::after, 
    .steps .steps-item:nth-child(3)::after {
        width: 100px;
    }
    .steps .steps-item:nth-child(1)::after{
        background-image: url('../img/home-arrow1-movil.svg');
        left: 85%;
    }
    .steps .steps-item:nth-child(2){
        margin-top: 120px;
    }
    .steps .steps-item:nth-child(2)::after{
        background-image: url('../img/home-arrow2-movil.svg');
        left: auto;
        height: 101px;
        top: 40px;
        right: 85%;
    }
    .steps .steps-item:nth-child(3){
        margin-top: 0px;
    }
    .steps .steps-item:nth-child(3)::after{
        background-image: url('../img/home-arrow3-movil.svg');
        left: 85%;
        top: 55px;
    }
    .steps .steps-item:nth-child(4){
        margin-top: 130px;
    }
    .steps>div{
        flex: 0 0 50%;
    }
    .table thead th {
        font-size: 20px;
    }
    .text-big{
        font-size: 40px;
    }
    .text-center-movil{
        text-align: center;
    }
    .text-center-movil>div{
        margin-right: auto;
        margin-left: auto;
    }
    .text-left-movil{
        text-align: left;
    }
    .text-medium{
        font-size: 24px;
        line-height: 1.3em;
    }
    .text-small-movil{
        font-size: 13px;
        line-height: 1.2em;
    }
    .text-small,
    .text-small p{
        font-size: 12px;
    }
    .whatsapp{
        border-radius: 20px 0px 0px 20px;
        padding: 10px 15px;
    }
    .whatsapp img{
        max-width: 35px;
    }
    .youtube{
        min-height: 250px;
    }
}
@media(max-width: 640px){
    .slick-slide .blurb,
    .slick-valores .blurb{
        margin: auto;
        max-width: 100%;
    }
    .text-line::after,
    .text-line::before{
        content: none;
    }
    .title-special{
        margin: 0px;
    }
}
.print_data{
    display: none;
}
@media(max-width: 490px){
    .banner h1{
        font-size: 22px;
    }
}
@media print {
    .col-2>div{
        margin-bottom: 15px !important;
    }
    p{
        font-size: 14px;
    }
    h1{
        font-size: 24px;
        text-align: center;
        margin-bottom: 0px;
    }
    footer::before{
        content: none;
    }
    footer .inverse,
    .print_hide{
        display: none;
    }
    .header .sandwich{
        display: block !important;
    }
    .header .sandwich img{
        display: block;
    }
    .print_data{
        display: block;
    }
    .separator{
        display: none !important;
    }
    .whatsapp{
        display: none;
    }
}