/* #Primary
================================================== */
:root{
    --primary-color:#8EBAE7;
    --second-color:#EBF5FF;
    --primary-white:#FCFCFF;
    --primary-black:#190F14;
    --color-gray:#C9C9C9;
    --color-dark-gray:#949494;
    --color-light-gray:#EFEFED;
    --color-success:#33B24A;
    --color-error:#D65C15;
    --color-warning:#F2D604;
    --bs-body-font-family:'Kumbh Sans', sans-serif;
    --bs-body-font-size: 1rem;
    --bs-body-color:#190F14;
}
.text-w{color: var(--primary-white);}
.text-b{color: var(--primary-black);}
.text-gray{color: var(--primary-gray);}
.text-gray-2{color: var(--color-dark-gray);}
.text-red{color: #D65C15;}
.text-blue{color: var(--primary-color);}
.text-info{color: #00A3EF;}
h5,h4,h3,h2,h1,p,span,figure, small{ margin-bottom: 0;}

a{ text-decoration: none;color: inherit;transition: color .2s ease-in, background-color .2s ease-in, border-color .2s ease-in;}
.relativo{ position: relative;}
[type=button], [type=reset], [type=submit], button {
-webkit-appearance: button-bevel;
}
:focus-visible{
    outline: none;
    outline-color: transparent;
}
:-internal-direct-focus {
    outline-color: transparent;
}
body{
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--primary-white);
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1120px;
        margin-right: auto;
        margin-left: auto;
        padding-left: 0;
        padding-right: 0;
    }
}
@media (min-width: 1300px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1120px;
        width: calc(100% - 160px); 
        margin-right: auto;
        margin-left: auto;
    }
    .disclosures .container, .disclosures .container-lg, .disclosures .container-md, .disclosures .container-sm, .disclosures .container-xl, .disclosures .container-xxl {
        max-width: 1200px;
        width: calc(100% - 160px);
        margin-right: auto;
        margin-left: auto;
    }
}
@media (max-width: 768px) {
    .custom-container {
        padding-left: 16px;
        padding-right: 16px;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}
.row {
    --bs-gutter-x: 2rem;
}
/* #Header
================================================== */
@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    transition: height 0.3s ease-in-out;
    height: 62px;
}
header.scroll-on {
    position: fixed;
    top: 0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease-in;
    z-index: 999;
    animation: slideDown 0.35s ease-out;
}
nav.navbar-expand-lg {
    background: transparent;
    transition: all 0.2s ease-in;
    padding: 0;
}
header .navbar-expand-lg .container {
    height: 62px;
    transition: height 0.3s ease-in-out;
}
.navbar .navbar-brand svg{
    width: 132px;
    height: auto;
}
.navbar-nav {
    gap: 49px;
}
.navbar .navbar-brand{
    width: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar .navbar-brand svg path{
    fill: var(--primary-white);
    transition: fill 0.25s ease-in-out;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    transition: color .2s ease-in, background-color .2s ease-in, border-color .2s ease-in;
    color: var(--primary-white);
}
.scroll-on .navbar-expand-lg .navbar-nav .nav-link, .scroll-on .navbar-expand-lg .language,
.header-white .navbar-expand-lg .navbar-nav .nav-link, .header-white .navbar-expand-lg .language {
    color: var(--primary-black);
}
.scroll-on nav.navbar-expand-lg,
.header-white nav.navbar-expand-lg {
    background: var(--primary-white);
}
.scroll-on .navbar-expand-lg .btn-custom-gral.outline-w,
.header-white .navbar-expand-lg .btn-custom-gral.outline-w {
    border-color: var(--primary-black);
    color: var(--primary-black);
}
header.header-white{
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    padding: 16px 16px 24px 16px;
    background: #FFFFFF;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0px 0px 6px 6px;
    border: 0;
    margin-top: 0;
    display: block;
    transition: all 0.25s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}
.navbar-expand-lg .navbar-nav .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}
.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item {
    padding: 0;
    white-space: inherit;
}
.navbar-toggler-icon {
    background-image: none !important;
    width: 18px;
    height: 14px;
    display: inline-block;
    position: relative;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon > span {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-white);
    border-radius: 2px;
    transition: transform 0.28s cubic-bezier(.2,.9,.2,1), opacity 0.2s ease, background-color 0.25s ease-in-out;
}
.navbar-toggler-icon > span { top: 50%; transform: translateY(-50%); }
.navbar-toggler-icon::before { top: 0; }  
.navbar-toggler-icon::after  { bottom: 0; }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: translateY(8px) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon > span {
  opacity: 0;
  transform: scaleX(0.8);
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  transform: translateY(6px) rotate(45deg);
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon > span {
  opacity: 0;
}
.navbar-toggler {
    border: none;
    padding: 0;
    width: 24px;
    height: 24px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar-toggler:focus { box-shadow: none; outline: none; }
.navbar-collapse .menu-footer{
    display: none;
}
.navbar-collapse .menu-copy {
    display: none;
}
.underline-bottom {
    position: relative;
    text-decoration: none;
}
.underline-bottom::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background-color: currentColor;
}
.text-underline {
    text-decoration: underline;
}
.scroll-on .navbar-brand svg path,
.header-white .navbar-brand svg path{
    fill: var(--primary-black);
}
/* #Main
================================================== */
.bg-hero-image {
    background-image: url(../img/home/hero.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 720px;
    display: flex;
    align-items: flex-end;
}
.bg-hero-image .custom-container {
    width: 100%;
}
.bg-hero-image .row {
    align-items: flex-end;
}
.misssion-cards{
    border-radius: 8px;
    padding: 0;
}
.mission-body{
    padding: 20px 16px 0 20px;
}
.mission-cards-row {
    flex-wrap: nowrap;
    gap: 20px;
    margin-top: 40px;
}
.mission-cards-row .misssion-cards {
    flex: 1;
    min-width: 0;
    height: 375px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    gap: 17px;
}
.mission-content{
    padding-top: 20px;
    min-height: 68px;
}
.mission-img{
    height: 222px;
}
.bg-separator {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-separator-us{
    background-image: url(../img/home/bloque-separador-01.webp);
}
.bg-separator-ap{
    background-image: url(../img/home/bloque-separador-02.webp);
}
.bg-separator-visual{
    background-image: url(../img/home/bloque-separador-03.webp);
}
.bg-separator-end{
    background-image: url(../img/home/bloque-separador-04.webp);
    height: 340px;
}
.bg-separator .separator-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.advisor-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.advisor-item {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-gray);
}
.advisor-item h3 {
    margin-bottom: 10px;
}
.process-cards{
    overflow: hidden;
    border-radius: 8px;
    height: 218px;
}
.process-cards > .row {
    height: 100%;
}
.process-img {
    height: 100%;
}
.process-img img {
    height: 100%;
    object-fit: cover;
}
.process-body{
    padding: 16px 24px 16px 31px;
}
.process-body .process-number{
    padding-bottom: 20px;
}
.process-body .process-content{
    width: 96%;
}
.process-cards-row {
    margin-left: 0;
    margin-right: 0;
    gap: 24px 20px;
}
.process-cards-row > .process-cards {
    flex: 0 0 auto;
    width: calc(50% - 10px);
    max-width: calc(50% - 10px);
}
.swiper-dots-black .swiper-pagination {
    position: relative;
    text-align: center;
    padding: 16px 0 0;
    bottom: 0 !important;
    font-size: 0;
}
.swiper-dots-black .swiper-pagination-bullet {
    width: 7.5px; 
    height: 7.5px;
    background: #949494;
    opacity: 1;
    border-radius: 50%;
    transition: width 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease;
}
.swiper-dots-black .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-dots-black .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    margin-right: 16px;
    margin-left: 0;
}
.swiper-dots-black .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet:last-child, .swiper-dots-black .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:last-child{
    margin-right: 0;
}
.swiper-dots-black .swiper-pagination-bullet-active {
    opacity: 1;
    width: 7.5px; 
    height: 7.5px;
    background: #1C1C1C;
    border-radius: 20px;
}
.logo-axos{
    width: 161px;
}
.logo-interactive{
    width: 150px;
}
.logo-insight{
    width: 120px;
}
.gap-logos{
    gap: 41.5px;
}
/* ===== FORMULARIO BASE ===== */
.custom--form {
    margin: 0 auto;
}
.custom--form label {
    display: block;
    margin-bottom: 0;
}
.custom--form input,
.custom--form select,
.custom--form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--primary-black);
    background: transparent;
    padding: 8px 0;
    font-family: var(--bs-body-font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    border-radius: 0;
}
.custom--form input, .custom--form select{
    height: 32px;
}
.custom--form textarea{
    height: 51px;
    resize: none;
    padding: 13px 16px 0 0;
    line-height: 2;
}
.custom--form input::placeholder,
.custom--form textarea::placeholder {
    color: #999999;
    transition: color 0.3s;
}
.gap-20{gap: 20px;}
.gap-23{gap: 23px;}
.custom--form input:focus,
.custom--form select:focus,
.custom--form textarea:focus {
    border-bottom: 1px solid #8EBAE7;
    box-shadow: none;
    color: var(--primary-black);
    background: transparent;
    opacity: 1;
}
.custom--form .form-control:focus {
    box-shadow: none;
    border-bottom-color: #8EBAE7;
}
.custom--form input:focus::placeholder,
.custom--form textarea:focus::placeholder {
    color: var(--primary-black);
}
.custom--form .form-control.valid {
    border-bottom-color: #609F00;
    color: #609F00;
    box-shadow: none;
}
.custom--form .form-control.error {
    border-bottom-color: #FF3730;
    box-shadow: none;
    color: #FF3730;
}
.custom--form .form-control.error::placeholder {
    color: #FF3730;
}
.custom--form select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 24px;
    background: url("data:image/svg+xml,%3Csvg%20width='13'%20height='7'%20viewBox='0%200%2013%207'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M0.5%200.5L6.5%206.5L12.5%200.5'%20stroke='%23231F20'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 6px center;
    background-size: 13px auto;
    box-shadow: none;
    color: var(--primary-gray);
}
.custom--form .form-check {
    display: flex;
    align-items: center;
    padding-left: 0;
    min-height: auto;
    margin-bottom: 0;
}
.custom--form .form-check-input {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 0;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid var(--primary-black);
    margin-right: 6px;
    margin-left: 0;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    line-height: 0;
    padding: 0;
    font-size: 0;
}
.custom--form .form-check label{
    cursor: pointer;
}
.custom--form .form-check-input[type="radio"] {
    border-radius: 50%;
}
.custom--form .form-check-input.input-square {
    border-radius: 2px;
}
.custom--form .form-check-input.privacy {
    width: 21px;
    height: 21px;
    margin-top: 3px;
    margin-right: 11px;
}
.custom--form .form-check-input[type="radio"]:checked {
    background-color: transparent;
    border-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%233357C8'/%3e%3c/svg%3e");
}
.custom--form .form-check-input.input-square:checked {
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    border-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg%20width='21'%20height='21'%20viewBox='0%200%2013%2013'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M4.5%206.5L5.83333%207.83333L8.5%205.16667M1.83333%200.5H11.1667C11.903%200.5%2012.5%201.09695%2012.5%201.83333V11.1667C12.5%2011.903%2011.903%2012.5%2011.1667%2012.5H1.83333C1.09695%2012.5%200.5%2011.903%200.5%2011.1667V1.83333C0.5%201.09695%201.09695%200.5%201.83333%200.5Z'%20stroke='%233357C8'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
}
.custom--form .form-check-input.input-square.privacy:checked {
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    border-color: transparent;
}
.custom--form .form-check.dimmed {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.custom--form .form-check-input:focus {
    box-shadow: none;
    border-color: var(--primary-color);
    opacity: 1;
}
.custom--form .form-check-input.input-square:focus {
    border-color: var(--primary-black);
}
.custom--form .form-check-input.input-square:checked:focus {
    border-color: var(--primary-color);
}
.custom--form .form-check.error .form-check-input {
    border: 1px solid var(--primary-red);
}
.custom--form .form-check.error label {
    color: var(--primary-red) !important;
}
.custom-select-container {
    position: relative;
    user-select: none;
    width: 100%;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    border-bottom: 1px solid var(--primary-black);
    font-size: 12px;
    line-height: 18px;
    color: var(--primary-gray);
    cursor: pointer;
    transition: all 0.2s;
    padding: 8px 0;
}
.custom-select-trigger.selected {
    color: #609F00;
    border-bottom-color: #609F00;
}
.custom-select-trigger::after {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='7' viewBox='0 0 13 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 0.5L6.5 6.5L12.5 0.5' stroke='%23231F20' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px 7px;
    transition: transform 0.2s;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.custom-select-container.open .custom-select-trigger::after {
    transform: translateY(-50%) rotate(180deg);
}
.custom-select-trigger.error {
    color: var(--primary-red);
    border-bottom: 1px solid var(--primary-red);
}
.custom-select-container .custom-select-trigger.error::after {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='7' viewBox='0 0 13 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 0.5L6.5 6.5L12.5 0.5' stroke='%23FF3730' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.info-error {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    margin-top: 3px !important;
}
.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.05);
border-radius: 0px 0px 8px 8px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.2s ease-in-out;
    padding: 0;
    margin-top: 1px;
}
.custom-select-container.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}
.custom-option {
    padding: 6px 16px;
    height: 28px;
    display: flex;
    align-items: center;
    color: #0A120F;
    cursor: pointer;
    transition: background 0.2s;
}
.custom-option:hover {
    background-color: #EDFF8C;
    color: #0A120F;
}
.custom-option.selected {
    background-color: #EDFF8C;
    color: #0A120F;
}
.disabled-btn {
    opacity: 0.6;
    pointer-events: none;
}
.fade-section {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease-in-out, margin-bottom 0.5s ease-in-out;
    margin-bottom: 0;
}
.fade-section.show {
    grid-template-rows: 1fr;
    margin-bottom: 24px;
}
.fade-inner {
    min-height: 0;
}
.fade-form {
    transition: opacity 0.3s ease-in-out;
}
.bg-hero-image.thankyou {
    background-image: url(../img/home/thank-you-page.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 626px;
    display: flex;
    align-items: start;
    padding-top: 202px;
}




































/* #Footer
================================================== */
.list-links-footer{
    padding-left: 20px;
    list-style: none;
    margin-bottom: 0;
}
.footer-bottom{
    padding-top: 37.95px;
}