footer .sc-inner {
    padding-top: 40px;
    padding-bottom: 0;
    font-family: "kurious-looped";
    color: #777;
}



@media screen and (max-width: 767px) {
    footer .sc-inner {
        padding-top: 32px;
    }
}

.container-md {
    max-width: 1030px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

@media screen and (min-width: 1200px) {
    .container-lg {
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 767px) {
    .container-lg {
        max-width: 738px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

.site-header {
    position: fixed !important;
    height: 120px;
    z-index: 999;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    font-family: "kurious-looped";
}

.site-header * {
    line-height: 1.5;
}

@media screen and (max-width: 992px) {
    .site-header * {

        line-height: 1.5 !important;
    }
}

.site-header .header-search.js-search-button {
    font-size: 16px;
}

.site-header ul {
    list-style: none;
}


/* .site-header .row {
    margin-left: -30px;
    margin-right: -30px;
  } */
.site-header .header-top a {
    font-size: 14px;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .site-header {
        height: 63px;
    }
}

@media (min-width: 1200px) {
    .header-sticky .site-header {
        height: 80px;
    }
}

@media (max-width: 1200px) {
    .site-header .row {
        height: 100%;
        margin-left: -10px;
        margin-right: -10px;
    }
}

.site-header .logo {
    width: auto;
    height: 50px;
}

@media (max-width: 1200px) {
    .site-header .logo {
        height: 32px;
    }
}



@media (max-width: 1199px) and (min-width: 1200px) {
    .navigation-item {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

.navigation-item.has-children {
    position: relative;
    font-size: 16px;
    line-height: 1.5 !important;
}

@media (min-width: 1200px) {
    .navigation-item.has-children::after {
        bottom: 0;
        left: 50%;
        border-bottom: 8px solid #fff;
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
        margin-left: -5px;
    }

    .navigation-item.has-children::before {
        height: 60px;
        left: 0;
        right: 0;
        top: 100%;
        border-radius: 100%;
        -webkit-box-shadow: 0 0 40px rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.8);
        pointer-events: none;
    }

    .navigation-item.has-children::before,
    .navigation-item.has-children::after {
        position: absolute;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: opacity 0.2s, opacity 0.2s;
        transition: opacity 0.2s, opacity 0.2s;
        content: "";
    }
}

.navigation-item:hover::before,
.navigation-item:hover::after {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
    opacity: 1;
    visibility: visible;
}

.navigation-link {
    white-space: nowrap;
    -webkit-transition: color 0.3s, opacity 0.2s;
    transition: color 0.3s, opacity 0.2s;
    /* font-size: 18px; */
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 1200px) {
    .navigation-link {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

.navigation-link.is-active {
    color: var(--bs-secondary) !important;
}

@media (hover: hover) {
    .navigation-item .navigation-link:not(.is-active):hover {
        opacity: 0.5;
    }
}

@media (min-width: 1200px) {
    .navigation-item.has-children .navigation-link::after {
        position: absolute;
        border: none;
        content: "";
        margin-top: 0;
        margin-left: 0;
        /* top: 16px; */
        top: 50%;
        transform: translateY(-50%);
        right: -4px;
        width: 16px;
        height: 16px;
        background: url("../img/icon-chevron-down.svg") no-repeat center center;
        border: none;
        -webkit-transition: -webkit-transform 0.2s;
        transition: -webkit-transform 0.2s;
        transition: transform 0.2s;
        transition: transform 0.2s, -webkit-transform 0.2s;
    }

    .navigation-item.has-children:hover .navigation-link::after {
        -webkit-transform: scaleY(-1);
        transform: translateY(-50%) scaleY(-1);
    }
}

@media (max-width: 1200px) {
    .navigation {
        position: fixed !important;
        top: 60px;
        left: 0;
        right: 0;
        background: #fff;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.3s;
        transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.3s;
        transition: opacity 0.2s, visibility 0.2s, transform 0.3s;
        transition: opacity 0.2s, visibility 0.2s, transform 0.3s,
            -webkit-transform 0.3s;
        height: auto !important;
        max-height: calc(var(--site-height) - 60px);
    }

    .open-menu .navigation {
        opacity: 1;
        visibility: visible;
        overflow-y: scroll;
    }

    header .navigation::after {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        background: rgba(0, 0, 0, 0.8);
        -webkit-backdrop-filter: saturate(200%) blur(10px);
        backdrop-filter: saturate(200%) blur(10px);
    }

    .navigation .navigation-inner {
        background: #f7fcf8;
        padding: 32px 32px 0;
        overflow-y: auto;
        max-height: calc(var(--site-height) - 122px);
    }

    .navigation-link {
        color: var(--bs-primary) !important;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        padding-left: 16px;
        padding-right: 16px;
        font-weight: 600;
        font-weight: 600;
        display: block;
        text-decoration: none;
        font-size: 18px;
        line-height: 21px !important;
    }

    .navigation-link.is-active {
        font-weight: 600;
        color: var(--bs-primary) !important;
    }

    .navigation-item.has-children .navigation-link {
        position: relative;
    }

    .navigation-item.has-children .navigation-link::after {
        display: none;
    }

    header .navigation-footer {
        height: fit-content;
        border: none;
        padding-left: 32px;
        padding-right: 32px;
        background: #f7fcf8;
    }

    .navigation-footer .lang-switcher svg {
        width: 20px;
        height: auto;
    }

    .navigation-footer-social svg {
        width: 20px;
        height: auto;
        fill: #fff;
    }

    .navigation-footer .lang-switcher .dropdown-toggle::after {
        width: 20px;
        height: 20px;
        background-size: cover;
        top: 50%;
        right: -26px;
        transform: translateY(-50%);
    }

    .navigation-footer .small {
        font-size: 12px;
        font-weight: 500;
        color: #777;
    }

    .navigation .navigation-mega h3,
    .navigation .navigation-mega .h3,
    .navigation .navigation-item.has-children>a {
        background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' fill='%23333333' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 341.4 341.4' style='enable-background:new 0 0 341.4 341.4;' xml:space='preserve'%3E%3Cpolygon points='192,149.4 192,0 149.4,0 149.4,149.4 0,149.4 0,192 149.4,192 149.4,341.4 192,341.4 192,192 341.4,192 341.4,149.4 '/%3E%3C/svg%3E%0A");
        background-repeat: no-repeat;
        background-position: right 16px center;
        background-size: 12px;
    }

    .navigation .navigation-mega h3.is-open,
    .navigation .navigation-mega .is-open.h3,
    .navigation .navigation-item.has-children.is-open>a {
        background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' fill='%23333333' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 341.333 341.333' style='enable-background:new 0 0 341.333 341.333;' xml:space='preserve'%3E%3Crect y='149.333' width='341.333' height='42.667'/%3E%3C/svg%3E");
    }
}

.navigation-mega {
    background: #fff;
    text-align: left;
    -webkit-transition: opacity 0.2s, visibility 0.2s;
    transition: opacity 0.2s, visibility 0.2s;
    position: static;
    box-shadow: none;
}

@media (min-width: 1200px) {
    .navigation-mega {
        position: fixed;
        top: 120px;
        left: 0;
        right: 0;
        opacity: 0;
        visibility: hidden;
        -webkit-box-shadow: 0px 16px 94px rgba(8, 97, 95, 0.38);
        box-shadow: 0px 16px 94px rgba(8, 97, 95, 0.38);
    }
}

@media (max-width: 1200px) {
    .navigation-mega {
        opacity: 1 !important;
        visibility: visible !important;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
        background: transparent;
        border-top: solid 1px #e8e8e8;
        /* border-bottom: solid 1px #e8e8e8; */
    }

    .navigation-mega .container-md {
        max-width: none;
        position: relative;
        padding: 0 !important;
    }

    .navigation-mega ul {
        display: none;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
        background: transparent;
        padding-top: 16px;
        padding-bottom: 16px;
        border-top: solid 1px #e8e8e8;
    }

    .navigation-mega div[class*="col-"]:not(:last-child) ul {
        border-bottom: solid 1px #e8e8e8;
    }

    header .navigation-mega div[class*="col-"]:last-child h3,
    header .navigation-mega div[class*="col-"]:last-child .h3 {
        padding-bottom: 20px;
        background-position: right 16px top 15px !important;
    }

    header .navigation-mega div[class*="col-"]:first-child h3,
    header .navigation-mega div[class*="col-"]:first-child .h3 {
        padding-top: 20px;
        background-position: right 16px top 25px !important;
    }

    .navigation-mega h3.is-open+ul,
    .navigation-mega .is-open.h3+ul {
        display: block;
    }

    .navigation-mega .row,
    .navigation-mega div[class*="col-"] {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .navigation-mega h3,
    .navigation-mega .h3 {
        position: relative;
        font-size: 18px;
        color: var(--bs-primary) !important;
        margin: 0 -16px !important;
        padding: 10px 16px;
        font-weight: 400;
    }
}

.navigation-item.is-open .navigation-mega {
    display: block !important;
}

body.header-sticky .navigation-mega {
    top: 5rem;
}

@media (min-width: 1200px) {
    .navigation-item .navigation-mega {
        opacity: 0;
        visibility: hidden;
    }

    .navigation-item:hover .navigation-mega {
        opacity: 1;
        visibility: visible;
        -webkit-transition-delay: 0.4s;
        transition-delay: 0.4s;
    }
}

@media (min-width: 1200px) {

    .navigation-mega h3,
    .navigation-mega .h3 {
        background-image: url("data:image/svg+xml, %3Csvg class='flex-shrink-0 me-3' width='7' height='11' viewBox='0 0 7 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.23857 3.57121C0.842004 4.73017 0.13191 6.34507 0.0764337 7.00766C-0.0955422 8.97856 0.0764337 11 0.0764337 11C0.0764337 11 0.0764368 10.4307 1.95708 8.97188C3.83772 7.51302 5.72325 6.40193 6.21764 6.04747C6.85672 5.58928 7.0054 4.93568 6.99985 4.66616V0C6.74466 0.707504 5.63514 2.41225 3.23857 3.57121Z' fill='%23FFCB44' /%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: left top 0.2rem;
    }
}

.navigation-mega a {
    text-decoration: none;
    color: var(--bs-dark);
    font-weight: 600;
}

.navigation-mega .navmega-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    color: var(--bs-primary);
    display: flex;
    align-items: center;
}

.navigation-mega a:hover {
    color: var(--bs-secondary);
}

.navigation-mega li:not(:last-child) {
    margin-bottom: 10px;
}

.navigation-mega-footer {
    line-height: 2;
    -webkit-box-shadow: 0px 16px 94px rgba(8, 97, 95, 0.38);
    box-shadow: 0px 16px 94px rgba(8, 97, 95, 0.38);
}

.navigation-mega-footer a {
    color: #fff;
}

.navigation-mega-footer a[href^="tel"],
.navigation-mega-footer a[href^="mail"] {
    color: #fff;
}

.navigation .background svg {
    margin-top: -120px;
    position: unset;
    width: unset;
}

.site-header .navigation .navigation-item {
    font-size: 14px;
    line-height: 21px !important;
    font-weight: 600;
    color: #FFFFFF;
    padding-top: 0;
    padding-bottom: 0;
}

.site-header .navigation .navigation-item:not(.px-3) {
    padding-left: 0 !important;

    padding-right: 0 !important;

}

.site-header .navigation .navigation-item.px-3 {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

.site-header .navigation .navigation-item span {
    line-height: 21px !important;
}

.site-header .navigation .navigation-item .rippleJS {
    line-height: 1 !important;
}

.ka-footer-mobile .rippleJS {
    line-height: 1 !important;
}

.ka-footer-mobile .navigation-item span {
    line-height: 1.5 !important;
}


.gap-16px {
    gap: 16px;
}

/* header main */
.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 48px;
    height: 80px;
}

.header-main__icon {
    height: 34px;
    font-size: 16px;
}

.header-main__icon img {
    height: 100%;
}

.header-main__tool__container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

@media screen and (max-width: 1200px) {
    .header-main__icon {
        height: 24px;
    }

    .header-main {
        padding: 16px;
        height: 64px;

    }

    .header-main__tool__container {
        gap: 8px;
    }
}

/* navigation */
.navigation-inner {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    padding-left: 0;
}

/* navigation-inner flex-column flex-xl-row d-flex align-items-xl-center justify-content-xl-center list-unstyled my-0 mx-auto h-100 fw-semibold position-relative z-3 gap-16px */
@media screen and (max-width: 1200px) {
    .navigation-inner {
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 3;
    }
}

/* ----------- navigation-search ------------ */

input.ka-searchbox {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    color: var(--bs-primary);
    background: #fff;
    position: relative;
}

input.ka-searchbox::placeholder {
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    color: #666666;
}

header input.ka-searchbox+.ka-searchinput-icon {
    position: absolute;
    right: 4.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}

.navigation-search {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    /* height: 100dvh; */
    height: -webkit-fill-available;

}

@media screen and (max-width: 767px) {
    .navigation-search {
        overflow-y: scroll;
        overflow-x: hidden;
    }
}

.navigation-search__tag-wrapper {
    font-family: "kurious-looped", sans-serif;
    font-size: 14px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: nowrap;
    overflow-x: hidden;
    padding-bottom: 0.5rem;
}

@media (max-width: 1200px) {
    .navigation-search__tag-wrapper {
        overflow-x: scroll;
    }
}

.navigation-search__tag-wrapper::-webkit-scrollbar {
    display: none;
    /* margin-top: 8px;
    height: 4px;
    width: 2px;
    background-color: #fff; */
}

.navigation-search__tag-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(17, 120, 118, 0.5);
    border-radius: 10px;
    width: 50px;
}

.navigation-search__tag {
    color: var(--bs-primary);
    font-weight: 600;
    min-width: fit-content;
    width: fit-content;
    background: #fff;
    border: 1px solid #88bcbb;
    border-radius: 5px;
    padding: 5px 12px;
    cursor: pointer;
}

.navigation-search__tag.is-active {
    border: 1px solid var(--bs-primary);
    box-shadow: 0px 0px 10px rgba(17, 120, 118, 0.5);
    font-weight: 600;
}

.navigation-search__card {
    border-radius: 4px;
    padding: 44px 24px 20px;
    background: url("../img/bg-search-card.png") no-repeat;
    background-size: cover;
    max-width: 322px;
    margin: 0;
}

.navigation-search__card a:hover {
    text-decoration: underline;
}

.navigation-search h3 {
    font-size: 28px;
}

.navigation-search__card-risk {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 16px;
    padding: 1px 0px 1px 9px;
    font-size: 10px;
}

.navigation-search__card-risk-text {
    font-size: 10px !important;
    padding-right: 4px;
    color: #666;
}

.navigation-search__card-risk .risk-level {
    font-weight: 600;
    color: #333;
    background: #f2f2f2;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 12px;
    margin-right: 0px;
}

.navigation-search-background {
    background: url("../img/bg-navigation-serach.svg") no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: 150;
    min-height: fit-content;
    overflow: auto;
}

.navigation-search-background::before {
    display: none;
}

.navigation-search-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 100;
    /* display: none; */
    height: 100dvh;
}

.navigation-search .searchbox-suggestion {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    z-index: 200;
    width: calc(100% - 66px);
    border: 1px solid #eeeeee;
}

.navigation-search .searchbox-suggestion__wrapper {
    padding-left: 31px;
}

.navigation-search .searchbox-suggestion__link {
    color: #666;
    font-weight: 600;
    padding-bottom: 1rem;
    display: block;
    text-decoration: none;
    font-size: 14px;
}

.navigation-search .searchbox-suggestion__link:hover {
    color: var(--bs-primary);
}

.navigation-search .searchbox-suggestion__link-keyword {
    color: #666;
    font-weight: 600;
    padding-bottom: 1rem;
    display: block;
    text-decoration: none;
    font-size: 14px;
}

.navigation-search .searchbox-suggestion__link-keyword:hover {
    color: var(--bs-primary);
    font-weight: 600;
}

.navigation-search .form-check {
    width: 220px;
}

.navigation-search input[type="radio"]:checked+label {
    color: #333;
    font-weight: 600;
}

.searchbox-suggestion--border {
    border-right: 1px solid #eeeeee;
    border-bottom: 0;
}

.navigation-search__recommender .allfunds:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1200px) {
    .searchbox-suggestion--border {
        border-bottom: 1px solid #eeeeee;
        border-right: 0;
    }
}

@media screen and (max-width: 576px) {
    .navigation-search__card {
        max-width: 100%;
    }

    .navigation-search__recommender h3 {
        font-size: 24px;
    }

    .navigation-search__tag {
        font-size: 14px;
    }

    .navigation-search__tag img {
        width: 24px;
    }

    .swiper-pagination.navigation-search__card-pagination {
        bottom: 39px;
    }
}

header .swiper-navigation-card {
    overflow: hidden;
}

/* ----------- END navigation-search ------------ */

.header-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 40px;
    max-height: 40px;
    /* background: linear-gradient(280.12deg, #fff -62.12%, #e2e6e5 130.35%); */
    background: #FFFFFF;
    -webkit-transition: height 0.2s;
    transition: height 0.2s;
    padding-left: 48px;
    padding-right: 48px;
    transition: .35s cubic-bezier(0, 0, 0, 1);
    /* overflow: hidden; */
}

.header-sticky .header-top {
    max-height: 0;
    display: none;
}

/* .header-sticky .navigation-search {
    top: 5rem;
  } */

.header-top-icon {
    width: 22px;
    height: 22px;
    border-radius: 100%;
    background: var(--bs-primary);
}

.header-top-icon svg {
    width: 14px;
    height: auto;
    fill: #fff;
}

.header-top .ka-topnav__container {
    display: flex;
    flex-direction: row;
    gap: 16px;
    color: #117B76;
    margin-bottom: 0;
    list-style: none;
}

.header-top .header-top-nav-expandable {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.header-top .header-top-nav-expandable.collapsed:after {
    rotate: 0deg;
}

.header-top .header-top-nav-expandable:after {
    content: "";
    width: 16px;
    height: 16px;
    background: url("../img/icon-header-footer-down-green.svg") no-repeat center center;
    rotate: 180deg;
}

.ka-topnav-expand-wrapper {
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    z-index: 200;
    width: 250px;
    border: 1px solid #eeeeee;
    padding: 24px 20px;
}

.ka-topnav-expand-wrapper.expand-right {
    left: auto;
    right: -1.25rem;
}

.ka-topnav-expand__lv1 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    padding-left: 0;
    list-style: none;
}

.ka-topnav-expand__lv2 {
    display: flex;
    flex-direction: column;
    gap: 0px;
    position: relative;
}

.ka-topnav-expand__lv2 ul {
    height: 0;
    overflow: hidden;
}

.ka-topnav-expand__lv2.active ul {
    height: fit-content;
    overflow: visible;
    transition: height 0.2s;
}

.ka-topnav-expand__lv2:after {
    position: absolute;
    content: "";
    background-image: url(/SiteCollectionDocuments/assets/ka-revamp2023/theme/img/icon-chevron-down-green.svg);
    background-repeat: no-repeat;
    background-position: right 0px center;
    background-size: cover;
    top: 0;
    right: 0;
    width: 16px;
    height: 16px;
    transform: rotate(0deg);
}

.ka-topnav-expand__lv2.active:after {
    transform: rotate(180deg);
}

.ka-topnav-expand__lv1 li a {
    font-size: 16px !important;
    font-weight: 600;
    color: #333;
    /* margin-bottom: 24px; */
}

.ka-topnav-expand__lv1 li a:hover {
    color: var(--bs-primary);
}

.ka-topnav-expand-wrapper>ul>li>ul>li a {
    font-size: 16px;
    font-weight: 400;
    color: #777;
}

.ka-topnav-expand-wrapper>ul>li>ul>li {
    margin-bottom: 12px;
}

.ka-topnav-expand-wrapper>ul>li>ul>li:first-child {
    margin-top: 12px;
}

.ka-topnav-expand-wrapper>ul>li>ul>li:last-child {
    margin-bottom: 0;
}

.lang-switcher {
    border-left: 1px solid #117876;
    padding-left: 16px;
}

.lang-switcher .dropdown-toggle::after {
    position: absolute;
    border: none;
    content: "";
    top: 6px;
    right: -16px;
    width: 12px;
    height: 12px;
    background: url("../img/icon-chevron-down-green.svg") no-repeat center center;
}

.lang-switcher .dropdown-menu.show {
    padding: 1rem;
    inset: 0 -32px auto auto !important;
    min-width: 60px;
    border: none;
}

.header-top-kbank-logo {
    width: 27px;
}

.header-top a:hover {
    opacity: 1;
}

.header-login {
    padding: 0;
}

.header-login .btn {
    border-radius: 24px;
}

.btn.btn-login {
    background-color: #ffffff;
    color: #117b76;
    padding: 9.5px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 8px;
    align-items: center;
}

.btn.btn-login:hover {
    background-color: #ffffff;
    color: #117b76;

}

.navigation-footer .btn {
    border-radius: 50px;
    padding: 8px 30px;
    cursor: pointer;
    background-image: linear-gradient(90deg, #117876 0%, #0e5e5e 100%);
    margin-bottom: 0;
    font-size: inherit;
    font-weight: normal;
    line-height: 1.5;
    text-align: center;
    text-decoration: none !important;
    white-space: nowrap;
}

.navigation-footer .btn span {
    font-size: 16px;
}

.header-login-dropdown {
    position: relative;
    width: 200px;
    background: #ffffff;
    -webkit-box-shadow: 0px 4px 61px rgba(16, 113, 111, 0.5);
    box-shadow: 0px 4px 61px rgba(16, 113, 111, 0.5);
    border-radius: 0px 0px 6px 6px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.2s, visibility 0.2s;
    transition: opacity 0.2s, visibility 0.2s;
}

.header-login:hover .header-login-dropdown {
    opacity: 1;
    visibility: visible;
}

.header-login-dropdown::after {
    position: absolute;
    bottom: 100%;
    right: 30px;
    border-bottom: 6px solid #fff;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
    margin-left: 0.5rem;
    content: "";
}

.header-login-dropdown li:not(:last-child) {
    margin-bottom: 8px;
}

.header-login-dropdown li a:hover {
    color: var(--bs-primary);
}

.header-login-select {
    border: none;
    background: var(--bg-light);
    outline: none;
    width: 80px;
}

.lang-switcher {
    /* padding: 1.625rem 0.5rem */
}

#Modal-view__filter .btn-search,
.btn-search {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.5rem 1rem;
  color: #F8F9FA !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none;
  cursor: pointer;
}

#Modal-view__filter .btn-search,
.btn-search::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(/SiteCollectionDocuments/assets/ka-revamp2023/theme/img/icon-magnify.svg) no-repeat center center;
  background-size: contain;
}

/* #Modal-view__filter .btn-search,
.btn-search {
    background: url(/SiteCollectionDocuments/assets/ka-revamp2023/theme/img/icon-magnify.svg) no-repeat center center !important;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 0.5rem;
    cursor: pointer;
} */

#Modal-view__filter .btn-search,
.btn-search:hover {
  opacity: 50%;
}
#Modal-view__filter .btn-search,
.btn-search:active {
  border-color: transparent !important;
}

/* .btn-search.is-active {
    background: url(/SiteCollectionDocuments/assets/ka-revamp2023/theme/img/icon-magnify-green.svg) no-repeat center center !important;
    background-color: #e0fff7;
    background-size: contain;
    border-radius: 50%;
    cursor: pointer;
} */

.btn-filter {
    border-radius: 50%;
    padding: 12px;
}

@media screen and (max-width: 1200px) {
    .header-top {
        display: none;
    }

    .lang-switcher {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    #Modal-view__filter .btn-search,
    .btn-search {
        border-radius: 50%;
        padding: 0 !important;
        width: 30px;
        background-size: cover;
    }

    #Modal-view__filter .btn-search-text,
    .btn-search-text {
        display: none;
    }

    .btn-search.is-active {
        width: 30px;
    }

    .btn-filter {
        border-radius: 50%;
        padding: 12px;
    }

    /* .navigation-search {
      top: 60px;
    } */
    /* .header-sticky .navigation-search {
      top: 60px;
    } */
    .navigation-mega .navmega-title {
        font-size: 16px;
    }

    .navigation-mega li a {
        font-size: 14px;
    }
}

.hamburger {
    height: 17px;
    cursor: pointer;
    -webkit-transition: background-color 0.15s, -webkit-transform 0.15s;
    transition: background-color 0.15s, -webkit-transform 0.15s;
    transition: transform 0.15s, background-color 0.15s;
    transition: transform 0.15s, background-color 0.15s, -webkit-transform 0.15s;
    text-transform: none;
    border: 0;
    background-color: transparent;
}

.hamburger-menu {
    padding: 3.5px 2px;
    position: relative;
    z-index: 3;
    overflow: hidden;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

@media screen and (max-width: 360px) {
    .hamburger-menu {
        margin-left: 0;
    }
}

html.menu-sticky .hamburger-menu {
    top: 8px;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 17px;
}

.open-menu .hamburger-box {
    width: 20px;
}

.hamburger-inner {
    position: absolute;
    top: 0;
    width: 20px;
    height: 3px;
    background: #fff;
    position: absolute;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.open-menu .hamburger-inner {
    width: 20px;
}

html.menu-sticky .hamburger-inner {
    background: #fff;
}

.hamburger-inner::before,
.hamburger-inner::after {
    width: 20px;
    height: 3px;
    content: "";
    display: block;
    background: #fff;
    position: absolute;
    -webkit-transition: opacity 0.15s, background-color 0.15s,
        -webkit-transform 0.15s;
    transition: opacity 0.15s, background-color 0.15s, -webkit-transform 0.15s;
    transition: transform 0.15s, opacity 0.15s, background-color 0.15s;
    transition: transform 0.15s, opacity 0.15s, background-color 0.15s,
        -webkit-transform 0.15s;
}

html.menu-sticky .hamburger-inner::before,
html.menu-sticky .hamburger-inner::after {
    background: #fff;
}

.open-menu .hamburger-inner::before,
.open-menu .hamburger-inner::after {
    width: 20px;
}

.hamburger-inner::before {
    top: 7px;
}

.hamburger-inner::after {
    top: 14px;
}

.open-menu .hamburger-inner {
    -webkit-transform: translate3d(0, 6px, 0) rotate(45deg);
    transform: translate3d(0, 6px, 0) rotate(45deg);
}

.open-menu .hamburger-inner::before {
    -webkit-transform: rotate(-45deg) translate3d(-5.7136px, -6px, 0);
    transform: rotate(-45deg) translate3d(-5.7136px, -6px, 0);
    opacity: 0;
}

.open-menu .hamburger-inner::after {
    width: 20px;
    margin: 0;
    -webkit-transform: translate3d(0, -14px, 0) rotate(-90deg);
    transform: translate3d(0, -14px, 0) rotate(-90deg);
}

.page-header {
    background-color: rgba(184, 184, 184, 0.1);
    -webkit-box-shadow: 0 0 100px 100px rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 100px 100px rgba(255, 255, 255, 0.7);
}

@media (max-width: 1200px) {
    .page-header {
        margin-top: -2.5rem;
    }
}

.navigation .navigation-mega h3,
.navigation .navigation-mega .h3,
.navigation .navigation-item.has-children>a {
    background-image: unset;
    background-repeat: no-repeat;
    /* background-position: right 0px center; */
    background-size: 16px;
    font-weight: 600;
    padding-right: 16px;
    line-height: 1 !important;
}

.navigation .navigation-mega a,
.navigation .navigation-mega a.h3 {
    background-image: unset;
    font-size: 13px;
    font-weight: 500;
}

.navigation .navigation-mega h3.is-open,
.navigation .navigation-mega .is-open.h3,
.navigation .navigation-item.has-children.is-open>a {
    background-image: unset;
}
@media (min-width: 1025px) {
    .navigation .navigation-mega .no-collapse h3.is-open{
        pointer-events: none;
    }
}

/* ------------ CUSTOM MOBILE MENU style --------------- */

@media (max-width: 1200px) {
    .navigation-inner {
        padding: 32px 32px 0;
    }

    .navigation-item {
        border-bottom: 1px solid #e0eeec;
        /* padding:12px 0; */
    }

    header .navigation-item:last-child {
        border-bottom: none;
    }

    .link-light:focus,
    .link-light:hover {
        color: #117876 !important;
        font-weight: 600;
    }
}

/* ------------ END CUSTOM MOBILE MENU style --------------- */

/* ------------ FOOTER 2023.08.16 --------------- */

/* footer start */
/* footer {
        position: relative;
      } */
/* footer::after{
        content: "";
        position: absolute;
        top: 0;
        width: 100%;
        height: 2px;
        background: rgb(17,120,118);
        background: -moz-linear-gradient(90deg, rgba(17,120,118,1) 0%, rgba(20,72,72,1) 100%);
        background: -webkit-linear-gradient(90deg, rgba(17,120,118,1) 0%, rgba(20,72,72,1) 100%);
        background: linear-gradient(90deg, rgba(17,120,118,1) 0%, rgba(20,72,72,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#117876",endColorstr="#144848",GradientType=1);
      } */
footer {
    border-top: 2px solid rgb(17, 120, 118);
}

.navigation-mega a span {
    line-height: 2;
}

.footer-logo-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
    display: none;
}

.footer-logo-wrapper img {
    width: 278px;
}

.footer-accordian {
    padding: 0 0 32px;
    /* border-top: 1px solid #eeeeee; */
    border-bottom: 1px solid #eeeeee;
}

ka-footer-en .footer-accordian {
    padding: 0 0 32px;
}

.footer-header .footer-accordian {
    border: none;
}

.footer-header .footer-accordian .accordion-body {
    /* gap: 40px; */
}

.footer-header .footer-others {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    line-height: 1.5;
}

.footer-header .footer-others a {
    color: #777777;
}

.footer-accordian .footer-title {
    position: relative;
    padding-right: 0;
    justify-content: start;
    width: fit-content;
}

/* .footer-accordian .footer-title.accordion-button:after , */
.footer-accordian .footer-title.accordion-button[aria-expanded="true"]:after {
    content: "";
    position: absolute;
    right: 0px;
    width: 16px;
    height: 16px;
    background: url("../img/icon-chevron-up-green.svg") no-repeat center center;
}

/* .footer-accordian .footer-title.accordion-button:not(.collapsed):after , */
.footer-accordian .footer-title.accordion-button[aria-expanded="false"]:after {
    content: "";
    position: absolute;
    right: 0px;
    width: 16px;
    height: 16px;
    background: url("../img/icon-chevron-down-green.svg") no-repeat center center;
}

.footer-layout.second.expand-button.last {
  position: relative;
}

.footer-layout.second.expand-button.last::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30%;
  transform: translateY(-50%) rotate(180deg);
  width: 24px;
  height: 24px;
  background: url("../img/icon-chevron-up-green.svg") no-repeat center center;
  background-size: 24px auto;
  transition: transform 0.3s ease;
}

.footer-layout.second.expand-button[aria-expanded="true"].last::after {
  transform: translateY(-50%) rotate(360deg);
}

.show-1024 {
    display: none;
}
@media screen and (max-width: 1024px) {
    .show-1024 {
        display: block;
    }
}

.footer-title {
    width: max-content;
    padding-right: 21px;
    color: #11706e;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    font-family: "kurious-looped", sans-serif;
}

.footer-content {
    display: block;
    text-decoration: none;
    color: #333333;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
}

a.footer-content:hover,
.footer-phone-number:hover {
    color: #11706E;
}

.footer-phone-number {
    font-family: "kurious-looped", sans-serif;
    color: #333333;
    font-size: 26px;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 300;
}

.footer-item-two-col {
    /* height: 50%; */
    height: unset;
}

.footer-item-two-col .accordion-body {
    /* height: 50%; */
    min-height: 199px;
}

.footer-item-two-col:last-child .accordion-body {
    min-height: unset;
}

.ka-contact-center-icon-group {
    display: flex;
    gap: 16px;
}

.ka-contact-center-icon-group img {
    width: 28px;
    height: 28px;
    cursor: pointer;
}

/* accdian */

.ka-footer-mobile {
    border-top: 1px solid #eeeeee;
    /* border-bottom: 1px solid #eeeeee; */
    /* padding-bottom: 30px; */
}

@media screen and (max-width: 767px) {
    .ka-footer-mobile {
        border-top-width: 0px;
    }
}

.footer-directory {
    padding: 45px 0;
}

.footer-utility {
    display: flex;
    justify-content: space-between;
}

.footer-utility .links {
    float: right;
    margin-top: 9px;
    border-bottom: none;
}

.footer-utility .links li {
    white-space: nowrap;
    padding-left: 15px;
    margin-bottom: 0;
    font-size: 12px;
    color: #777;
    font-weight: 600;
}

.footer-utility .affiliate-websites {
    /* float: left; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.affiliate-websites li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    padding: 5px 0;
}

.affiliate-websites li:last-child {
    margin-right: 0;
}

.affiliate-websites .img {
    height: 21px;
}

.affiliate-websites .img-kbtg {
    height: 25px !important;
}

/* Responsive */
@media screen and (min-width: 1200px) {
    .footer-wrapper {
        width: auto;
        min-width: 228px;
    }

    .footer-new .footer-wrapper {
        width: 20%;
    }

    :lang(en) .footer-wrapper {
        min-width: 250px;
    }

    :lang(en) .footer-new .footer-wrapper {
        width: 22%;
    }

    :lang(en) .footer-new .footer-wrapper:nth-child(4) {
        width: 26%;
    }

    :lang(en) .footer-new .footer-wrapper:nth-child(5) {
        width: 8%;
        min-width: 50px;
    }

    .contact-center-group {
        font-family: "kurious-looped", sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: #333333;
        width: fit-content;
        float: right;
    }
}

@media screen and (max-width: 991px) {
    .footer-utility {
        margin-top: 0;
    }

    .footer-utility .links {
        padding: 0;
    }

    .container {
        padding: 0 15px;
    }

    .footer-logo-wrapper {
        text-align: center;
        width: 100%;
    }
}

/* footer end */

@media (max-width: 1200px) {
    .ka-footer-mobile .navigation {
        position: relative !important;
        bottom: 0px;
        left: 0;
        right: 0;
        background: #fff;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.3s;
        transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.3s;
        transition: opacity 0.2s, visibility 0.2s, transform 0.3s;
        transition: opacity 0.2s, visibility 0.2s, transform 0.3s,
            -webkit-transform 0.3s;
        height: fit-content;
        max-height: fit-content;
    }

    .ka-footer-mobile .navigation {
        opacity: 1;
        visibility: visible;
        top: 0;
        z-index: 0;
    }

    .ka-footer-mobile .navigation::after {
        /* position: fixed;
      top: 60px;
      left: 0;
      right: 0;
      bottom: 0;
      content: "";
      background: rgba(0, 0, 0, 0.8);
      -webkit-backdrop-filter: saturate(200%) blur(10px);
      backdrop-filter: saturate(200%) blur(10px); */
        content: "";
        background: none;
        backdrop-filter: none;
        position: relative;
    }

    .ka-footer-mobile .navigation .navigation-inner {
        background: #fff;
        padding: 0px 0 20px;
        overflow-y: auto;
        /* max-height: calc(var(--site-height) - 122px); */
        max-height: 100%;
    }

    .ka-footer-mobile .navigation-link {
        color: #11706e !important;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
        font-weight: 600;
        display: block;
        text-decoration: none;
        font-size: 16px;
    }

    .ka-footer-mobile .navigation-link.is-active {
        font-weight: 600;
        color: var(--bs-primary) !important;
    }

    .ka-footer-mobile .navigation-item.has-children .navigation-link {
        position: relative;
    }

    .contact-center-group {
        font-size: 16px !important;
    }

    .ka-footer-mobile .contact-center-group .contact-social .contact-center-title,
    .ka-footer-mobile .contact-center-group .contact-call .contact-center-title {
        font-family: "kurious-looped", sans-serif;
        font-size: 12px;
        color: #333333;
    }

    .ka-footer-mobile .contact-center-group .contact-call .footer-phone-number {
        font-family: "kurious-looped", sans-serif;
        font-size: 26px;
        font-weight: 600;
        line-height: 1.5;
        color: #333333;
    }

    .ka-footer-mobile .contact-center-group .contact-social .ka-contact-center-icon-group {
        gap: 9px;
    }

    .ka-footer-mobile .contact-center-group .contact-social .ka-contact-center-icon-group img {
        width: 32px;
        height: 32px;
    }

    .footer-others {}


    .navigation-footer {
        height: fit-content;
        border: none;
        padding-left: 32px;
        padding-right: 32px;
    }

    .navigation-footer-social svg {
        width: 20px;
        height: auto;
        fill: #fff;
    }

    .ka-footer-mobile .navigation .navigation-mega h3,
    .ka-footer-mobile .navigation .navigation-mega .h3,
    .ka-footer-mobile .navigation .navigation-item.has-children>a {
        background-image: url("../img/icon-chevron-down-green.svg");
        background-repeat: no-repeat;
        background-position: right 16px !important;
        background-size: 16px;
    }

    .ka-footer-mobile .navigation .navigation-mega h3.ka-nav-noexpand {
        background-image: none !important;
    }

    .ka-footer-mobile .navigation .navigation-mega h3.is-open,
    .ka-footer-mobile .navigation .navigation-mega .is-open.h3,
    .ka-footer-mobile .navigation .navigation-item.has-children.is-open>a {
        background-image: url("../img/icon-chevron-up-green.svg");
    }

    .ka-footer-mobile .navigation-mega ul {
        background: #fff;
    }

    .ka-footer-mobile .navigation-mega div[class*="col-"]:last-child h3,
    .ka-footer-mobile .navigation-mega div[class*="col-"]:last-child .h3,
    .ka-footer-mobile .navigation-mega div[class*="col-"]:last-child a {
        padding-bottom: 16px;
        background-position: right 0px top 16px !important;
    }

    .ka-footer-mobile .navigation-mega div[class*="col-"]:first-child h3,
    .ka-footer-mobile .navigation-mega div[class*="col-"]:first-child .h3,
    .ka-footer-mobile .navigation-mega div[class*="col-"]:first-child a {
        padding-top: 16px;
        background-position: right 0px top 16px !important;
        line-height: 1 !important;
    }

    .ka-footer-mobile .navigation-footer {
        display: flex;
        flex-direction: column;
        gap: 24px;
        height: fit-content;
        border: none;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 24px;
        border-bottom: 1px solid #D9D9D9;
    }

    .ka-footer-mobile .contact-call {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .ka-footer-mobile .contact-social {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .ka-footer-mobile .contact-center-group {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;

    }

    .ka-footer-mobile .footer-header .footer-others {
        flex-wrap: wrap;
        gap: 8px;
    }
}

.ka-footer-mobile .navigation-mega {
    background: #fff;
    text-align: left;
    -webkit-transition: opacity 0.2s, visibility 0.2s;
    transition: opacity 0.2s, visibility 0.2s;
}

/* ------------ END FOOTER 2023.08.16 --------------- */
/* footer-layout */
.footer-layout__container {
    display: grid;
    grid-template-columns: 1fr;
}

.footer-layout.first {
    /* display: flex; */
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: minmax(340px, 676px) minmax(220px, 444px);
    gap: 20px;
    padding-bottom: 32px;
    border-bottom: 1px solid #EEEEEE;
    justify-content: space-between;
}

.footer-layout.second {
    display: grid;
    grid-template-columns: repeat(5, minmax(100px, 190px));
    gap: 16px;
    margin-bottom: 32px;
    /* border-bottom: none; */
}

.footer-layout.contact-details {
    /* border-top: 1px solid #eee; */
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* margin-top: 32px; */
    /* padding-top: 32px; */
    padding-bottom: 24px;
}

/* footer-desktop */

.footer-desktop__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-desktop__title {
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    text-decoration: none;
    color: #777;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.pb-16 {
    padding-bottom: 16px !important;
}

/* sub */
.footer-desktop__sub__container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-desktop__sub__title {
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
}

/* content */
.footer-desktop__content {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    text-decoration: none;
    color: #777;
}

.footer-desktop__content:hover {
    color: #777;
}

.footer-desktop__content__container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* wrapper */
.footer-desktop__wrapper:nth-child(1) {
    /* display: grid;
    grid-template-columns: repeat(3, minmax(100px, 212px));
    row-gap: 16px;
    column-gap: 20px; */
    padding: 0;
    min-width: 436px;
}

.footer-desktop__wrapper:nth-child(2) {
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 212px));
    gap: 20px;
    padding: 0;
}

/* mutual-funds */
.footer-desktop__wrapper.footer-desktop__mutual-funds .footer-accordian-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 212px));
    gap: 20px;
}

.footer-desktop__mutual-funds .footer-desktop__title__container {
    grid-column: 1 / 4;
}


/* contact-center-group*/
/* call */
.contact-center-group__call__container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: end;
}

.contact-center-group__call__title {
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    color: #144B48;
}

a[href^="tel"].contact-center-group__call__number {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color: #144B48;
    text-decoration: none;
}

/* icon */
.contact-center-group__icon__container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-center-group__icon__title {
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    color: #144B48;
}

.slogan {
    padding: 32px 0;
}

.slogan img {
    display: block;
    margin: 0 auto;
    width: 183px;
    border: 0;
}

@media screen and (max-width: 767px) {
    .slogan {
        padding: 32px 0;
    }
}

/* New Header */
ka-header {
    display: block;
    /* height: 120px; */

    .navigation {
        height: 100%;

        .navigation-inner {

            height: 100%;

            .navigation-item {
                height: 100%;

                .navigation-link {
                    height: 100%;
                    display: flex !important;
                    align-items: center;
                    justify-content: start;
                }
            }
        }

        .navigation-mega {
            .navmega-title {
                +ul {
                    transition: .35s ease-in-out;
                    overflow: hidden;
                    max-height: 900px;
                }

                &:not(.is-open) {
                    +ul {
                        max-height: 0;
                    }
                }
            }
        }
    }
}

.page-subnavbar {
    position: fixed;
    top: 80px;
    width: 100%;
    transition: .35s cubic-bezier(0, 0, 0, 1);
}

@media (max-width: 1200px) {
    ka-header {
        height: 62px;
    }

    .page-subnavbar {
        top: 62px;
    }
}

body:not(.header-sticky) {
    .page-subnavbar {
        translate: 0 -100%;
        visibility: hidden;
        opacity: 0;
    }
}



.banner-float-mobile-content {
    max-width: 100vw;
    overflow: hidden;
}



/* --------------- Digital set up ---------------- */
.wrapper .site-header label {
    font-size: 14px;
}

.wrapper .site-header input[type="text"]:placeholder-shown {
    border-color: #eeeeee;
}

.wrapper .site-header input[type="text"] {
    border: 1px solid #eee;
    display: block;
    width: 100%;
    height: 48px;
    background-color: #fff;
    border-radius: 8px;
    padding: 8px 18px;
    font-weight: 400;
}

.wrapper .site-header .btn.btn-search.is-active {
    background: url("../img/icon-magnify-green.svg") no-repeat center center;
    background-color: #e0fff7;
    background-size: contain;
    border-radius: 50%;
    cursor: pointer;
}

.wrapper .site-header .btn {
    display: inline-block;
    padding: 8px 12px;
    margin-bottom: 0;
    font-size: inherit;
    font-weight: normal;
    line-height: 1.5;
    text-align: center;
    text-decoration: none !important;
    white-space: nowrap;
    border: 1px solid transparent;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.wrapper .site-header .btn.btn-filter-advanced::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 20px;
    height: 16.61px;
    background-image: url("../img/icon-search-advanced-green.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

.wrapper .site-header .btn.btn-filter-advanced {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    border: 1px solid #eeeeee;
    background-color: #ffffff;
}

.wrapper .site-header .btn.btn-login {
    background-color: #ffffff;
    color: #117b76;
    padding: 9.5px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 8px;
    align-items: center;
}

.wrapper .site-header .navigation-search h3 {
    margin-bottom: 0;
    line-height: 1.3;
}

.wrapper .site-header a {
    text-decoration: none;
}

.wrapper .site-header .p1 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.wrapper .site-header .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #dddddd;
    border: 1px solid #dddddd;
    border-radius: 50%;
    padding: 0;
    margin: 0 4px;
    color: #ccc;
    opacity: 1;
}

.wrapper .site-header .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 8px;
    background-color: #117876;
}

.wrapper .site-header .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px 8px;
}

.wrapper .site-header .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
    margin: 0px 0px;
}

.wrapper .site-header .hamburger-menu {
    margin: 0px 0px;
    width: 24px;
}

.wrapper .site-header .hamburger {
    padding: 0;
}

#Modal-view__filter {
    font-family: "kurious-looped";
}

#Modal-view__filter .searchBox__form-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1000px;
    padding-left: 48px;
    padding-right: 48px;
}

#Modal-view__filter .modal-dialog {
    max-width: 1000px;
}

#Modal-view__filter .searchBox__form-inner {
    padding-top: 48px;
    padding-bottom: 48px;
}

#Modal-view__filter .searchBox__form-control-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#Modal-view__filter .searchBox__form-head-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#Modal-view__filter .h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}

#Modal-view__filter .caption {
    font-family: "kurious-looped", sans-serif;
    font-size: 13px;
    line-height: 21px;
}

#Modal-view__filter .searchBox__form-group-fund-type {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#Modal-view__filter .searchBox__form-fund-type {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#Modal-view__filter .btn-wrapper-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

#Modal-view__filter .btn:is(.btn-theme-1, .btn-theme-2) {
    opacity: 1;
    padding: 5.5px 16px 5.5px 16px;
    border-radius: 24px;
    position: relative;
}

#Modal-view__filter .btn:is(.btn-theme-1, .btn-theme-2):is(.bg-green) {
    background-color: #144b48;
    color: #ffffff;
}

#Modal-view__filter .btn:is(.btn-theme-1, .btn-theme-2):is(.disabled) {
    pointer-events: none;
    background-color: #e5e5e5;
    color: #acacac;
}

#Modal-view__filter .btn.btn-theme-1 {
    font-size: 14px;
    font-weight: 600;
    padding: 5.5px 16px 5.5px 16px;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    color: #117b76 !important;
}

#Modal-view__filter .btn.btn-theme-1:is(.active, .is-checked) {
    background-color: #f2f9f8;
    border-color: #dddddd;
}

#Modal-view__filter .btn.btn-theme-2 {
    padding: 5px 16px 5px 16px;
    font-size: 16px;
    font-weight: 600;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
}

#Modal-view__filter .btn.btn-theme-2:is(.active, .is-checked) {
    background-color: #f2f9f8;
    border-color: #dddddd;
}

#Modal-view__filter .btn.btn-theme-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5.5px 16px;
    gap: 8px;
    border-radius: 24px;
    background-color: #144b48;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}

#Modal-view__filter .btn.btn-theme-3 .close {
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Modal-view__filter .btn.btn-theme-3 .close::after {
    content: "";
    background-image: url("../img/icon-close-white.svg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 8px;
    height: 8px;
}

#Modal-view__filter .btn-currency {
    display: flex;
    gap: 8px;
    align-items: center;
}

#Modal-view__filter .btn-currency:is(.usa, .euro, .bath)::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
}

#Modal-view__filter .btn-currency.usa::before {
    background-image: url("../img/ic-usa.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

#Modal-view__filter .btn-currency.euro::before {
    background-image: url("../img/ic-european-union.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

#Modal-view__filter .btn-currency.bath::before {
    background-image: url("../img/ic-thailand.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

#Modal-view__filter .searchBox__form-check-group {
    display: grid;
    grid-row-gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

#Modal-view__filter .form-check {
    display: flex;
    line-height: 1.5;
}

#Modal-view__filter input[type="checkbox"],
#Modal-view__filter input[type="radio"] {
    padding: 0;
    border: solid 1px var(--bs-primary);
    width: 24px;
    height: 24px;
    background: #fff;
    cursor: pointer;
    margin-top: 0;
}

#Modal-view__filter .p1 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

#Modal-view__filter [data-content] {
    display: none;
}

#Modal-view__filter [data-content].active {
    display: block;
}

#Modal-view__filter .form-check-input:checked {
    background: url("../img/input-checked.svg") no-repeat center center;
    background-size: cover;
    border: solid 1px var(--bs-primary);
}

#Modal-view__filter .form-check-input:checked[type=radio] {
    --bs-form-check-bg-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e);
}

#Modal-view__filter .btn-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    opacity: 1;
}

@media screen and (min-width: 768px) {
    #Modal-view__filter .btn-close {
        top: -19.5px;
        right: -16.5px;
    }
}

@media screen and (max-width: 1200px) {
    .wrapper .site-header .btn-search {
        border-radius: 50%;
        padding: 2px;
        width: 24px;
        height: 24px;
        background-size: cover;
    }

    .wrapper .site-header .btn-search {
        background: url("../img/icon-magnify.svg") no-repeat center / cover;
    }
}


@media screen and (max-width: 767px) {
    .searchBox {
        grid-template-columns: calc(100% - 71px) 48px;
        gap: 22px;
    }

    .searchBox__input-warpper {
        gap: 16px;
    }

    .searchBox__container {
        gap: 16px;
    }

    .section-filter__card {
        max-width: 100%;
    }

    .section-topic {
        top: 100px;
    }

    .searchBox {
        gap: 22px;
    }

    input.searchBox__input+.searchBox__input-icon {
        right: 16px;
        width: 16px;
        height: 20px;
    }

    .section-topic .searchbox-suggestion {
        width: calc(100% - 71px);
    }

    .section-filter__recommender h3 {
        font-size: 24px;
    }

    .section-filter__tag {
        font-size: 14px;
    }

    .section-filter__tag img {
        width: 24px;
    }

    .swiper-pagination.section-filter__card-pagination {
        bottom: 30px;
    }
}

/* #################### searchBox Form #################### */
.searchBox__form {
    border-radius: 8px;
    overflow: hidden;
}

.searchBox__form-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1000px;
    padding-left: 48px;
    padding-right: 48px;
}

.searchBox__form-inner {
    padding-top: 48px;
    padding-bottom: 48px;
}

.searchBox__form-control-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.searchBox__form-head-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.searchBox__form-head {
    color: #111111;
}

.searchBox__form-head__desc {
    color: #666666;
}

.searchBox__form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.searchBox__form-group-fund-type {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.searchBox__form-fund-type {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.searchBox__form-check-group {
    display: grid;
    grid-row-gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

.searchBox__form-button-container {
    padding: 16px 0 16px 0;
}

.searchBox__form-button-group {
    display: flex;
    justify-content: space-between;
}




@media screen and (max-width: 1200px) {
    .navigation-mega .col-xl-3 a.navmega-title {
        font-size: 18px;
        font-weight: 600;
        padding: 20px 0 10px;
    }
}