 @font-face {
     font-family: 'Kurious Looped';
     src: url('fonts/Kurious_Looped-Light.otf') format('opentype');
     font-weight: 300; /* Light */
     font-style: normal;
}
 @font-face {
     font-family: 'Kurious Looped';
     src: url('fonts/Kurious_Looped-Medium.otf') format('opentype');
     font-weight: 500; /* Medium */
     font-style: normal;
}
 @font-face {
     font-family: 'Kurious Looped';
     src: url('fonts/Kurious_Looped-SemiBold.otf') format('opentype');
     font-weight: 600; /* SemiBold */
     font-style: normal;
}
 body{
     margin: 0;
     font-family: 'Kurious Looped', sans-serif;
     font-weight: 300;
}
 ul, li {
     margin: 0;
     padding: 0;
     list-style: none;
}
 h1, h2, h3, h4, h5, h6, p{
     margin: 0;
     font-weight: normal;
}
 a{
     color: rgba(64, 248, 169, 1);
}
 section{
     position: relative;
     box-sizing: border-box;
     padding: 0 20px;
}
 section .container{
     width: 100%;
     max-width: 1140px;
     display: flex;
     flex-direction: row;
     margin: auto;
     box-sizing: border-box;
}
 #header{
     background-color: #117B76;
}
 .header-content{
     justify-content: space-between;
     align-items: center;
}
/* ## NavBar ## */
 nav {
     padding: 0;
}
 ul.menu, ul.submenu {
     list-style: none;
}
 ul.menu {
     list-style: none;
     display: flex;
     background-color: transparent;
}
 ul.menu > li {
     position: relative;
     list-style: none;
}
 ul.menu > li > a {
     font-size: 14px;
     color: rgba(220, 220, 220, 1);
     padding: 15px 20px;
     display: block;
     text-decoration: none;
}
 ul.menu > li:hover {
     background-color: #444;
}
 ul.submenu {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     background-color: #444;
     min-width: 220px;
     z-index: 999;
}
 ul.menu > li:hover > ul.submenu {
     display: block;
}
 ul.submenu li a {
     font-size: 14px;
     color: rgba(220, 220, 220, 1);
     padding: 10px 20px;
     display: block;
     text-decoration: none;
}
 ul.submenu li a:hover {
     background-color: #555;
}
/*## Banner Slider ##*/
 .owl-carousel {
     display: block;
}
 .banner-slider .item img {
     width: 100%;
     object-fit: cover;
     height: auto;
     aspect-ratio: 3 / 1;
}
 #top-content{
     padding: 0;
}
 #top-content .owl-theme .owl-dots {
     text-align: center;
     margin-top: -40px;
     margin-bottom: 18px;
     z-index: 9;
     position: relative;
}
 #top-content .owl-theme .owl-dot {
     display: inline-block;
     margin: 0 5px;
     cursor: pointer;
}
 #top-content .owl-theme .owl-dot span {
     width: 10px;
     height: 10px;
     background-color: transparent;
     border: solid 1px #FFF;
     display: block;
     border-radius: 50%;
     transition: background-color 0.3s;
}
 #top-content .owl-theme .owl-dots .owl-dot span{
     margin: 0;
}
 #top-content .owl-theme .owl-dot.active span, #top-content .owl-theme .owl-dot:hover span {
     background-color: #FFF;
}
/*# Service #*/
 #service{
     background-color: #1C7E6A;
}
 #service .container{
     justify-content: space-between;
     align-items: center;
     padding: 8px 0;
}
 #service h2{
     font-size: 16px;
     color: #FFF;
     font-weight: 500;
}
 #service span{
     font-size: 12px;
     color: #C0C0C0;
}
 #service .container .list ul{
     display: flex;
     gap: 10px;
}
 #service .container .list ul li{
     display: flex;
     align-items: center;
}
 #service .container .list ul li span{
     color: #FFF;
     font-size: 16px;
     font-weight: 500;
     margin-left: 5px;
}
/*# About #*/
 #about .container{
     flex-direction: row;
     padding: 80px 0;
     column-gap: 38px;
}
/* Basic Styles for Accordion */
 .accordion {
     width: 100%;
     overflow: hidden;
}
 .accordion-item {
     border-bottom: 1px solid #ccc;
}
 .accordion-header {
     background: #fff;
     cursor: pointer;
     font-weight: bold;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 0;
}
 .accordion-body {
     max-height: 0;
     overflow: hidden;
     padding: 0 56px 0 0;
     background: #fff;
     transition: max-height 0.3s ease;
     display: flex;
     row-gap: 24px;
     flex-direction: column;
}
 .accordion .accordion-item:first-child .accordion-header {
     padding: 0 0 20px 0;
}
 .accordion-item.active .accordion-body {
     max-height: 200px;
     padding: 0 56px 40px 0;
}
 .accordion-header .icon {
     transition: transform 0.3s ease;
}
 .accordion-item.active .accordion-header .icon {
     transform: rotate(180deg);
}

/* Video container */
 .left .videos {
     display: flex;
     gap: 20px;
}
 iframe#video1 {
     border-radius: 8px;
}
/*# Insight Library #*/
 #insight-library .container{
     flex-direction: column;
     padding: 80px 0;
     column-gap: 38px;
}
 #insight-library .heading {
     display: flex;
     flex-direction: row;
}
 #banner{
     height: 480px;
     display: flex;
     align-items: center;
     background-position: center;
     background-size: cover;
     background-repeat: no-repeat;
}
 #banner .container{
     justify-content: center;
}
 #banner .title{
     font-size: 48px;
     font-weight: 600;
     color: rgba(51, 51, 51, 1);
}
 #blog-list .container{
     flex-direction: column;
}
 .news-grid {
     display: grid;
     grid-template-columns: repeat(3, minmax(300px, 1fr));
     column-gap: 24px;
     row-gap: 48px;
}
 .news-card {
     border: 0;
     border-radius: 8px;
     padding: 0;
     background-color: #FFF;
     transition: transform 0.2s;
}
 .news-card:hover {
     transform: translateY(-0px);
}
 .card-content{
     position: relative;
     height: 75px;
     padding: 5px 5px 0px;
}
 #blog-list .news-title h3{
     font-size: 14px;
     font-weight: 500;
     color: rgba(51, 51, 51, 1);
     overflow: hidden;
     text-overflow: ellipsis;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
}
 .news-date {
     font-size: 14px;
     font-weight: 500;
     color: rgba(150, 150, 150, 1);
}
 .news-link {
     font-size: 14px;
     font-weight: 500;
     display: inline-block;
     margin-top: 10px;
     color: rgba(138, 138, 138, 1);
     text-decoration: none;
     position: absolute;
     bottom: 0;
}
 .news-link:after{
     content: "";
     transform: rotate(90deg);
     position: absolute;
     top: -3px;
     background-image: url(https://www.kasikornasset.com/th/Pages/GlobalPartnership/images/chevron_open.svg);
     background-repeat: no-repeat;
     background-size: contain;
     display: block;
     width: 25px;
     height: 25px;
     right: -25px;
}

 #pagination {
     margin-top: 20px;
     text-align: center;
}
 #pagination button {
     margin: 3px;
     padding: 0;
     border: 0px solid #ccc;
     background: transparent;
     cursor: pointer;
}
 #pagination button.active {
     background: transparent;
     color: rgba(119, 119, 119, 1);
}
 #pagination button:disabled {
     cursor: default;
}
/* Arrow buttons */

 .pagination-arrow:hover:not(:disabled) {
     background-color: #ddd;
}
/* Specific arrow buttons */
 .pagination-arrow.prev::before {
     content: url(https://www.kasikornasset.com/th/Pages/GlobalPartnership/images/chevron_left.svg);
     display: block;
     transform: rotate(180deg);
     margin-top: -5px;
}
 .pagination-arrow.next::after {
     content: url(https://www.kasikornasset.com/th/Pages/GlobalPartnership/images/chevron_left.svg);
}
/* Specific arrow buttons */
 .pagination-arrow.first::before {
     content: url(https://www.kasikornasset.com/th/Pages/GlobalPartnership/images/keyboard_double_arrow_right.svg);
     display: block;
     transform: rotate(180deg);
     margin-top: -5px;
}
 .pagination-arrow.last::after {
     content: url(https://www.kasikornasset.com/th/Pages/GlobalPartnership/images/keyboard_double_arrow_right.svg);
}
 #single-news{
     background-color: rgba(250, 250, 250, 1);
}
/* Number buttons */
 #pagination .pagination-number {
     background-color: transparent;
     color: rgba(189, 189, 189, 1);
}
 .pagination-number.active {
     background-color: transparent;
     color: rgba(119, 119, 119, 1);
}
 #banner.banner-single-news .container{
     flex-direction: column;
}
 #footer .container{
     flex-direction: column;
     padding: 40px 0 60px;
     font-size: 12px;
     line-height: 18px;
     color: rgba(119, 119, 119, 1);
}
 #footer .footer-list ul{
     padding-left: 25px;
}
 #footer .footer-list ul, #footer .footer-list ul li{
     list-style: disc;
}

 #footer .footer-content-bottom{
     margin-top: 40px;
     padding-top: 55px;
     text-align: center;
     border-top: solid 1px rgba(119, 119, 119, 0.47);
}
 #footer .footer-content-bottom h3{
     font-size: 20px;
     line-height: 24px;
     color: rgba(172, 158, 149, 1);
}
 #footer .footer-content-bottom span{
     font-size: 14px;
     line-height: 17px;
     color: rgba(102, 102, 102, 1);
     display: block;
     margin-top: 24px;
}
 #footer .footer-content-bottom p{
     margin-top: 8px;
     font-size: 14px;
     line-height: 17px;
     color: rgba(153, 153, 153, 1);
}
 html {
     scroll-behavior: smooth;
}
 html, body {
     overflow-x: hidden;
}
 .banner-slider .item img {
     width: 100vw;
}
 section#main-content-desktop, section#main-content-mobile {
     padding: 0;
}
/* === HEADER BASE === */
 section#header {
    /* position: sticky;
     */
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 6;
     overflow: visible;
}
 #top-content, section#banner {
     margin-top: 47px;
}
/* === DESKTOP NAVIGATION === */
 #desktop-nav {
     display: block;
}
 .menu {
     list-style: none;
     display: flex;
     gap: 20px;
}
 .menu>li {
     position: relative;
}
 .menu>li>a {
     text-decoration: none;
     padding: 10px;
     display: block;
     color: #000;
}
/* Submenu hidden by default on desktop */
 .menu>li>.submenu {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     background: transparent;
     min-width: 26px;
     width: max-content;
     list-style: none;
     z-index: 1000;
     border-radius: 8px;
}
 .menu>li:hover>.submenu {
     display: block;
}
 .space-submenu {
     display: block;
     background-color: transparent;
     height: 10px;
}
 .submenu li a {
     display: block;
     padding: 10px 15px;
     text-decoration: none;
     color: #333;
     background-color: #FFF;
}
 .submenu li a:hover {
     background-color: #f5f5f5;
}
 ul.menu>li>a {
     color: #fff;
     font-size: 14px;
     font-weight: 500;
}
 ul.menu>li {
     border-bottom: 1px solid transparent;
}
 ul.menu>li:hover {
     background-color: transparent;
     border-bottom: 1px solid #40f8a9;
}

 ul.submenu li a {
     color: #777777;
     padding: 10px 16px;
     font-weight: 500;
}
 ul.submenu li a:hover {
     background-color: #f4f4f4;
     color: #117B76;
}
 ul.submenu li:nth-child(2) a {
     border-radius: 8px 8px 0 0;
}
 ul.submenu li:last-child a {
     border-radius: 0 0 8px 8px;
}
/* === HAMBURGER BUTTON (Mobile Only) === */
 .hamburger {
     display: none;
     font-size: 32px;
     background: none;
     border: none;
     cursor: pointer;
     z-index: 5;
     color: #007a3d;
}
 .close-btn {
     background: none;
     border: none;
     position: relative;
     color: white;
     cursor: pointer;
     text-align: right;
     margin: 0 0 40px;
     padding: 0;
}
/* === MOBILE NAVIGATION OVERLAY === */
 .mobile-nav-overlay {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     height: 100vh;
    /* height: unset;
     */
     overflow-y: scroll;
     width: 100%;
     background-color: #117b76;
     transform: translateX(100%);
     opacity: 0;
     transition: transform 0.4s ease, opacity 0.4s ease;
     z-index: 999;
     display: flex;
     flex-direction: column;
     visibility: hidden;
}
 .modal-content {
     padding: 20px;
     height: unset;
}
 .mobile-nav-overlay.show {
     transform: translateX(0);
     opacity: 1;
}
 .mobile-nav-overlay .menu {
     display: flex;
     flex-direction: column;
     gap: 10px;
}
/* === ACCORDION STYLE (Mobile Submenus) === */
 #mobile-nav .accordion {
     display: flex;
     flex-direction: column;
     gap: 10px;
     color: white;
}
 #mobile-nav .accordion-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 16px;
     font-weight: 500;
     cursor: pointer;
     padding: 8px 20px;
     background-color: transparent;
     color: #fff;
}
 #mobile-nav .accordion-header a {
     color: white;
     text-decoration: none;
     flex: 1;
}
 #mobile-nav .accordion-body {
     background-color: transparent;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.5s ease;
     padding: 0 20px 0 36px;
     margin-bottom: 24px;
}
 #mobile-nav .accordion-body ul {
     list-style: none;
     padding: 0;
     margin: 10px 0;
}
 #mobile-nav .accordion-body ul li {
     padding: 14px 0;
}
 #mobile-nav .accordion-body ul li a {
     color: #c7c7c7;
     font-size: 16px;
     font-weight: 500;
     text-decoration: none;
}
 #mobile-nav .accordion-item.active .accordion-body {
     max-height: 500px;
     background-color: transparent;
     padding: 0 20px 0 36px;
}
 #mobile-nav .accordion-header .icon {
     transition: transform 0.3s ease;
     width: 24px;
     height: 24px;
}
 #mobile-nav .accordion-item.active .icon {
     transform: rotate(180deg);
}
 .accordion-item {
     border: none;
}
 .accordion-header {
     color: #333;
     font-size: 24px;
     font-weight: 500;
     line-height: 120%;
     letter-spacing: -0.48px;
}
 .accordion-body {
     color: #777;
     font-size: 14px;
     font-weight: 300;
     line-height: 150%;
}

 #about .container {
     padding:60px 0 0 0;
     min-height: 400px;
}
/*# Insight Library Section : Homepage #*/
 #insight-library .container {
     display: flex;
     flex-direction: column;
     padding: 60px 0 0 0;
     row-gap: 24px;
}
 .heading {
     display: flex;
     flex-direction: row;
     column-gap: 8px;
     padding: 2px 16px;
     border-radius: 6px;
     background: var(--lineat-green, linear-gradient(90deg, #40f8a9 0%, rgba(255, 255, 255, 0) 100%));
}
 .heading h2 {
     color: #333;
     font-size: 30px;
     font-weight: 600;
     line-height: 120%;
     letter-spacing: -1.5px;
     text-transform: capitalize;
}
 .tabs {
     width: 100%;
     display: flex;
     flex-direction: column;
     row-gap: 24px;
}
 .tab-links {
     list-style: none;
     padding: 0;
     display: flex;
     flex-direction: row;
     column-gap: 16px;
     /* margin-left: 20px; */
     font-weight: 600;
     align-items: center;
}
 .tab-links a {
     padding: 10px 12px;
     display: inline-block;
     background: #f1f1f1;
     color: #777;
     border: 1px solid #f1f1f1;
     text-decoration: none;
     border-radius: 8px;
     transition: 0.3s;
}
 .tab-links .active a, .tab-links a:hover {
     border: 1px solid #117b76;
     color: #117b76;
     background-color: #ffffff;
}
 #insight-library .tab-content .tab {
     display: none;
}
 #insight-library .tab-content .active {
     display: flex;
     flex-direction: row;
     column-gap: 24px;
}
 #insight-library .tab {
     display: flex;
     flex-direction: row;
     column-gap: 24px;
}
 #insight-library .left.hightlight {
     width: 65%;
}
 #insight-library .left.hightlight a {
     text-decoration: none;
}
 #insight-library .right.recent-content {
     width: 35%;
     display: flex;
     flex-direction: column;
     row-gap: 16px;
}
 #insight-library .hightlight-box {
     flex: 1;
     aspect-ratio: 72/49;
     background-size: cover;
     background-position: center;
     position: relative;
     color: white;
     display: flex;
     align-items: flex-end;
     border-radius: 16px;
}
 .hightlight-box::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 33%);
     border-radius: 16px;
}
 #insight-library .highlight-text {
     background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
     padding: 24px;
     width: 100%;
     display: flex;
     flex-direction: column;
     row-gap: 16px;
     border-radius: 16px;
}
 #insight-library .highlight-text h1 {
     color: #fff;
     text-overflow: ellipsis;
     font-size: 20px;
     font-weight: 500;
     line-height: 140%;
     text-transform: capitalize;
     display: -webkit-box;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 2;
     align-self: stretch;
     overflow: hidden;
}
 #insight-library .highlight-text p {
     color: #b5b5b5;
     font-size: 14px;
     font-weight: 500;
     line-height: 120%;
}
 #insight-library .left.recent-content {
     flex: 1;
}
 #insight-library .recent-content a {
     list-style: none;
     text-decoration: none;
     color: #333;
     display: flex;
     flex-direction: row;
     column-gap: 16px;
     align-items: center;
}
 #insight-library .recent-content ul {
     list-style: none;
     padding: 0;
}
 #insight-library .recent-content li {
     display: flex;
     gap: 16px;
     margin-bottom: 16px;
}
 #insight-library .recent-content li:last-child {
     margin-bottom: 0px;
}
 #insight-library .recent-content img {
     height: 124px;
     max-width: 190px;
     border-radius: 8px;
     object-fit: cover;
}
 #relatedNews .related-card .wrapper-img img {
     object-fit: cover;
     aspect-ratio: 97 / 62;
     max-width: 190px;
     height: auto;
     min-width: 120px;
}
 #insight-library .recent-content strong {
     display: -webkit-box;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 2;
     align-self: stretch;
     overflow: hidden;
     font-size: 16px;
     font-weight: 500;
    /* line-height: 140%;
     */
     line-height: 165%;
    /* 22.4px */
}
 #insight-library .recent-content small {
     color: #777;
     font-size: 14px;
     font-weight: 400;
     line-height: 120%;
}
 #insight-library .view-all {
     padding: 8px 16px;
     border-radius: 8px;
     border: 1px solid #b8b8b8;
     cursor: pointer;
     color: #808080;
     font-size: 14px;
     font-weight: 500;
     line-height: 120%;
     background-color: #fff;
     transition: 0.3s;
     display: flex;
     flex-direction: row;
     column-gap: 10px;
     justify-content: center;
     text-decoration: none;
}
 #insight-library .view-all:hover, #single-news .view-all:hover {
     color: #117b76;
     border: 1px solid #117b76;
}
 #insight-library .view-all img.icon {
     width: 9.8px;
     height: auto;
}
/*# Know The Market Section : Homepage #*/
 #know-the-markets .container {
     display: flex;
     flex-direction: column;
     padding: 60px 0 30px 0;
     row-gap: 24px;
}
 #know-the-markets .slide-img, #know-the-markets a.tab-links {
     width: 100%;
    /* height: 600px;
     */
     object-fit: cover;
     border-radius: 16px;
}
 #know-the-markets .dl {
     padding: 4px 10px;
     border-radius: 4px;
     cursor: pointer;
     color: #737373;
     font-size: 14px;
     font-weight: 500;
     line-height: 120%;
     background-color: #f1f1f1;
     transition: 0.3s;
     display: flex;
     flex-direction: row;
     column-gap: 4px;
     justify-content: center;
     width: fit-content;
     align-items: center;
     text-decoration: none;
     border: 1px solid #f1f1f1;
     transition: 0.3s;
}
 #know-the-markets .tab {
     display: none;
}
 #know-the-markets .tab-content .tab.active {
     display: flex;
     flex-direction: column;
     row-gap: 24px;
     align-items: flex-end;
}
 #know-the-markets .dl:hover {
     color: #117b76;
     border: 1px solid #117b76;
}
 #know-the-markets .dl img.icon {
     width: 24px;
     height: 24px;
}
 .tab-links {
     margin-left: 0px;
}
/*# Exclusive Content Section : Homepage #*/
 section#exclusive-content {
     background-color: #fafafa;
}
 #exclusive-content .container {
     display: flex;
     flex-direction: column;
     padding: 60px 0;
     row-gap: 20px;
}

 #exclusive-content .exclusive-content-wrapper {
     display: flex;
     flex-direction: row;
     column-gap: 30px;
}
 #exclusive-content .right.vdo-short {
     margin-top: 64px;
}
 #exclusive-content .right.vdo-short h3{
     margin-bottom: 8px;
}
 #exclusive-content .tab-content .tab {
     display: none;
}
 #exclusive-content .tab-content .active {
     display: flex;
     flex-direction: row;
     column-gap: 24px;
}
 #exclusive-content .tab-links .vdo-short-tab {
     visibility: hidden;
}
 #exclusive-content .vdo-content {
     display: flex;
     flex-direction: row;
     column-gap: 28px;
}
 #exclusive-content .vdo-content iframe {
     border-radius: 10px;
     margin-bottom: 16px;
}
 #exclusive-content .vdo-content h3 {
     margin-bottom: 8px;
     overflow: hidden;
     color: #333;
     text-overflow: ellipsis;
     font-size: 20px;
     font-weight: 600;
     line-height: 140%;
}
 #exclusive-content .view-all {
     padding: 9px 11px 9px 12px;
     border-radius: 8px;
     border: 1px solid #b8b8b8;
     cursor: pointer;
     color: #808080;
     font-size: 14px;
     font-weight: 500;
     line-height: 120%;
     background-color: #fff;
     transition: 0.3s;
     display: flex;
     flex-direction: row;
     column-gap: 4px;
     justify-content: center;
     width: fit-content;
     text-decoration: none;
}
 #exclusive-content .view-all:hover {
     color: #117b76;
     border: 1px solid #117b76;
}
 #exclusive-content .view-all img.icon {
     width: 9.8px;
     height: auto;
}
/*# Investment Solution Section : Homepage #*/
 #investment-solution .container {
     display: flex;
     flex-direction: column;
     padding: 60px 0;
     row-gap: 40px;
}

 #investment-solution .owl-stage {
     display: flex;
}
 #investment-solution .owl-carousel .owl-stage-outer {
     padding: 0 10px !important;
}
 #investment-solution .owl-theme .owl-dots {
     text-align: center;
     margin-top: 10px;
     z-index: 9;
     position: relative;
}
 #investment-solution .owl-theme .owl-dot {
     display: inline-block;
     margin: 0 3px;
     cursor: pointer;
}
 #investment-solution .owl-theme .owl-dot span {
     width: 8px;
     height: 8px;
     background-color: transparent;
     border: solid 1px #808080;
     display: block;
     border-radius: 50%;
     transition: background-color 0.3s;
}
 #investment-solution .owl-theme .owl-dots .owl-dot span {
     margin: 0;
}
 #investment-solution .owl-theme .owl-dot.active span, #investment-solution .owl-theme .owl-dot:hover span {
     background-color: #808080;
}
 #investment-solution .investment-slider .investment-card {
     transform: scale(1);
     padding-top: 56px;
     transition: transform 0.3s ease;
     border-radius: 16px;
     border: 1px solid #dfdfdf;
     background: #fff;
     width: 85%;
     display: flex;
     flex-direction: column;
     align-content: center;
     justify-content: space-between;
}
 #investment-solution .owl-carousel.owl-drag .owl-item {
     display: flex;
     justify-content: center;
}
 #investment-solution .investment-slider .owl-item.center .investment-card {
     transform: scale(1);
     padding-top: 40px;
     transition: transform 0.3s ease;
     border: 1.047px solid #117b76;
     width: 100%;
}
 #investment-solution .investment-slider .owl-item.center .investment-tabs {
     border: 1.047px solid #117b76;
}
 #investment-solution .investment-card {
     background: #fff;
     border-radius: 16px;
     text-align: center;
    /* height: 407px;
     */
}
 #investment-solution .tab-card {
     width: 154px;
     color: #777777;
     background: #f1f1f1;
     padding: 10.5px 12px;
     border-radius: 6.8px;
     text-align: center;
     cursor: pointer;
     border-radius: 8px;
     font-size: 16px;
     font-weight: 600;
     line-height: 120%;
     text-transform: uppercase;
     transition: 0.3s;
     border: 1px solid #f1f1f1;
}
 #investment-solution .owl-item.center .tab-card, #investment-solution .tab-card:hover {
     border: 1px solid #117b76;
     background: #fff;
     color: #117b76;
}
 #investment-solution .owl-item .bottom div.date-box p, #investment-solution .owl-item .bottom div.date-box ul li {
     font-size: 12px;
}
 #investment-solution .owl-item.center .bottom div.date-box p, #investment-solution .owl-item.center .bottom div.date-box ul li {
     font-size: 14px;
}
 #investment-solution .investment-card .top {
     margin-bottom: 30px;
}
 #investment-solution .investment-card .top h2 {
     color: #00788a;
     font-size: 24px;
     font-weight: 600;
     line-height: 140%;
     text-transform: uppercase;
     margin-bottom: 8.3px;
}
 #investment-solution .investment-card .top h3 {
     color: #777;
     text-align: center;
     font-size: 16px;
     font-weight: 600;
     line-height: 140%;
}
 #investment-solution .graph {
     width: 235px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     margin: 0 auto;
     row-gap: 8.3px;
     margin-top: 8.3px;
     padding: 0 8.3px 8.3px 8.3px;
}
 #investment-solution .graph .graph-text {
     display: flex;
     flex-direction: row;
     font-size: 14px;
     font-weight: 600;
     line-height: 140%;
     width: 100%;
     justify-content: space-between;
}
 #investment-solution .more-info, #investment-solution .fund-box {
     display: flex;
     flex-direction: row;
     column-gap: 6px;
     width: 100%;
     justify-content: center;
     padding: 8.3px 0;
     align-items: center;
}
 #investment-solution .more-info .risk-box {
     color: #777;
     font-size: 12px;
     font-weight: 600;
     line-height: 100%;
     border-radius: 100px;
     background: #fff;
     box-shadow: 0px 2.095px 4.19px 0px rgba(0, 0, 0, 0.1);
     padding-left: 8.3px;
     display: flex;
     flex-direction: row;
     column-gap: 4px;
     align-items: center;
}
 #investment-solution .more-info .risk-box .num {
     border-radius: 104.738px;
     background: #f3f4f4;
     display: flex;
     width: 24px;
     height: 24px;
     aspect-ratio: 1/1;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 10.474px;
}
 #investment-solution .date-box, #investment-solution .value-box {
     display: flex;
     padding: 0 16px;
     justify-content: space-between;
     align-items: center;
     align-self: stretch;
     flex-wrap: nowrap;
     height: 36px;
}
 #investment-solution .date-box ul {
     display: flex;
     flex-direction: row;
     column-gap: 8.3px;
     list-style: none;
     justify-content: space-between;
     align-items: center;
}
 #investment-solution .fund-box {
     background: #117b76;
     border-radius: 0 0 16px 16px;
}
 #investment-solution .tab-list::before {
     background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 90%, rgba(255, 255, 255, 0.954) 100%);
     content: "";
     width: 1140px;
     height: 41.6px;
     position: absolute;
     z-index: 2;
     pointer-events: none;
}
 p.value {
     font-size: 24px;
     font-weight: 600;
     line-height: 140%;
     color: #333;
}
 #investment-solution .date-box {
     font-size: 14px;
}
/*# News Update Section : Homepage #*/
 #news-update .container {
     display: flex;
     flex-direction: column;
     padding: 60px 0;
     row-gap: 20px;
}
 #news-update .heading {
     display: flex;
     flex-direction: row;
     justify-content: space-between;
     padding: 0;
     background: none;
}
 #news-update .heading h2 {
     display: flex;
     flex-direction: row;
     column-gap: 8px;
     flex-wrap: wrap;
     align-items: center;
     width: 80%;
     padding: 2px 16px;
     border-radius: 6px;
     background: var(--lineat-green, linear-gradient(90deg, #40f8a9 0%, rgba(255, 255, 255, 0) 100%));
}
 section#news-update {
     background-color: #fafafa;
}
 #news-update .view-all {
     padding: 9px 11px 9px 12px;
     border-radius: 8px;
     border: 1px solid #b8b8b8;
     cursor: pointer;
     color: #808080;
     font-size: 14px;
     font-weight: 500;
     background-color: #fff;
     transition: 0.3s;
     display: flex;
     flex-direction: row;
     column-gap: 4px;
     justify-content: center;
     width: fit-content;
     text-decoration: none;
     flex-wrap: wrap;
     align-items: center;
}
 #news-update .view-all:hover {
     color: #117b76;
     border: 1px solid #117b76;
}
 #news-update .view-all:hover {
     color: #117b76;
     border: 1px solid #117b76;
}
 #news-update .news-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 24px;
     margin-top: 24px;
}
 #news-update .news-card {
     background-color: #fafafa;
}
 #news-update a.news-card {
     list-style: none;
     text-decoration: none;
}
 #news-update .card-content {
     padding: 14px;
     display: flex;
     flex-direction: column;
     row-gap: 2px;
     height: auto;
}
 #news-update .news-date {
     color: #969696;
     font-size: 14px;
     font-weight: 500;
     line-height: 120%;
}
 #news-update .news-title {
     display: -webkit-box;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 2;
     overflow: hidden;
     color: #333;
     text-overflow: ellipsis;
     font-size: 16px;
     font-weight: 600;
     line-height: 140%;
}
/*# Footer #*/
 #footer {
     background-color: #fff;
     color: #777;
}
 #footer .footer-content-bottom {
     margin-top: 20px;
}
/*# #newsTitle #*/
 h1#newsTitle {
     overflow: hidden;
     color: #fff;
     text-overflow: ellipsis;
     font-size: 30px;
     font-weight: 500;
     line-height: 140%;
    /* 42px */
}
 #newsDate {
     color: #fff;
     font-size: 14px;
     font-weight: 300;
     line-height: 140%;
}

 #relatedNews a {
     list-style: none;
     text-decoration: none;
     color: #333;
     display: flex;
     flex-direction: row;
     column-gap: 16px;
     align-items: center;
}
 #relatedNews .related-card .wrapper-img {
     border-radius: 8px;
     aspect-ratio: 16/9;
}
 #relatedNews .related-news-content {
     width: 60%;
     display: flex;
     flex-direction: column;
     row-gap: 16px;
}
 #single-news .view-all {
     padding: 8px 16px;
     border-radius: 8px;
     border: 1px solid #b8b8b8;
     cursor: pointer;
     color: #808080;
     font-size: 14px;
     font-weight: 500;
     line-height: 120%;
     background-color: #fff;
     transition: 0.3s;
     display: flex;
     flex-direction: row;
     column-gap: 10px;
     justify-content: center;
     text-decoration: none;
}
 section#service.sticky-bottom {
     position: -webkit-sticky;
     position: fixed;
     width: 100%;
     bottom: 0;
     z-index: 5;
     transition: opacity 0.3s ease, visibility 0.3s ease;
}
 section#service.sticky-bottom.hidden {
     opacity: 0;
     visibility: hidden;
}
 #banner .container.blog img {
     height: 44px;
}
 #banner .container.blog {
     display: flex;
     flex-direction: column;
     align-items: center;
     row-gap: 16px;
}
 #banner .container.blog .title {
     text-align: center;
     color: #fff;
     font-size: 56px;
     font-weight: 600;
     line-height: 120%;
     text-transform: uppercase;
}
 .card-content {
     display: flex;
     flex-direction: column;
     justify-content: space-between;
}
 .news-link {
     position: relative;
     margin-right: 20px;
}
 .video-container {
     position: relative;
     cursor: pointer;
}
 .video-container.videos-1 {
     width: 560px;
     height: 315px;
}
 .video-container.videos-2 {
     aspect-ratio: 16/9;
     margin-bottom: 16px;
}
 .video-container.videos-3 {
     margin-bottom: 16px;
}
 .video-thumbnail {
     width: 100%;
     height: 100%;
     display: block;
     border-radius: 8px;
     object-fit: cover;
}
 .videos-2 .video-thumbnail {
     width: 100%;
     height: 470px;
     min-height: 30px;
}
 .videos-3 .video-thumbnail {
     height: 470px;
     min-height: 30px;
     aspect-ratio: 9 / 16;
     width: auto;
}
 .video-iframe {
     display: none;
     width: 100%;
     height: 100%;
     border: none;
}
 .videos-1 {
     aspect-ratio: 16 / 9;
     height: auto;
}
 iframe#video2.video-iframe {
     aspect-ratio: 16 / 9;
     width: auto;
     height: 470px;
     min-height: 350px;
}
 iframe#video3.video-iframe {
     aspect-ratio: 39 / 56;
     width: auto;
     height: 470px;
     min-height: 350px;
}
 .footer-list, .footer-content {
     display: block;
}
 img.img-100 {
     width: 100%;
}
 #insight-library.mobile .accordion-item {
     border: none;
}
 #insight-library.mobile .accordion-header {
     padding: 10.5px 12px;
     background: #f1f1f1;
     border: solid 1px #f1f1f1;
     border-radius: 8px;
     width: 100%;
     text-align: left;
     color: #777;
     font-size: 20px;
     font-weight: 600;
     line-height: 120%;
     margin-bottom: 10px;
}
 #insight-library.mobile .accordion-item.active .accordion-header {
     border: 1px solid #117b76;
     background: #fff;
     color: #117b76;
}
 #insight-library.mobile .accordion-header .icon path {
     fill: #777777;
}
 #insight-library.mobile .accordion-item.active .accordion-header .icon path {
     fill: #117b76;
}
 #insight-library.mobile .accordion-content {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
     padding: 0 1rem;
     background: #fff;
}
 #insight-library.mobile .accordion-item.active .accordion-content {
     max-height: 500px;
     padding: 1rem;
}
 section#main-content-mobile {
     display: none;
}
 .news-card{
     text-decoration: none;
}
 .card-content {
     height: auto;
}
 .news-link{
     margin-top: 6px;
}
 .accordion-toggle {
     text-decoration: none;
     background: transparent;
     color:#117B76;
     border: none;
     padding: 0;
     font-size: 12px;
     cursor: pointer;
     text-align: left;
     display: flex ;
     transition: background 0.3s;
}
 .accordion-icon {
     transition: transform 0.3s ease;
     width: 16px;
     height: 16px;
     display: inline-block;
}
 .accordion-icon.rotate {
     transform: rotate(180deg);
}
 .footer-content {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
     padding: 0 16px;
}
 .footer-content.open {
     max-height: 1000px;
     padding: 16px;
}
 #footer .footer-content {
     display: block;
}
 #blog-list .news-title h3{
     padding-top: 2px;
}

#blog-list .tab-links {
	margin-bottom: 24px;
	margin-top: 24px;
	gap: 10px;
}
 #banner .container {
     gap: 10px 
}
 #single-news {
     padding: 80px 20px;
}
 #single-news .container {
     display: flex;
     align-items: flex-start;
     gap: 56px;
     align-self: stretch;
}
 .right {
     gap: 16px;
}
 .related-container {
     display: flex;
     gap: 16px;
     flex-direction: column;
     margin: 16px 0;
}
 .related-card {
     display: flex;
     flex-direction: row;
     gap: 16px;
     max-width: 404px;
     min-width: 350px;
     height: 124px;
}
 .related-card img {
     height: 124px;
     border-radius: 8px;
}
 .related-news-content {
     display: flex;
     flex-direction: column;
}
 .related-news-title {
     display: -webkit-box;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 2;
     align-items: flex-start;
     order: -1;
     align-self: stretch;
     overflow: hidden;
     color: #333;
     text-overflow: ellipsis;
     font-size: 16px;
     font-style: normal;
     font-weight: 600;
     line-height: 165%;
}
 .related-news-date {
     align-items: flex-end;
     color: #777;
     font-size: 14px;
     font-style: normal;
     font-weight: 400;
     line-height: 120%;
}
 #blog-list {
     padding: 80px 150px;
     gap: 24px;
}
 .news-card {
     gap: 16px;
}
 .news-content p {
     font-weight: 100;
}
 .banner-single-news::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%);
}
 #banner.banner-single-news .container {
     z-index: 1;
     margin-bottom: 80px;
}
 #pagination {
     display: flex;
     justify-content: center;
     margin-top: 80px;
}
 #pagination .pagination-number {
     padding: 1.5px 9px;
     margin: 0;
}

 @media (max-width: 1024px) {
     #single-news {
         padding: 24px 20px;
    }
    #blog-list {
     padding: 24px 20px;
     gap: 24px;
}
 }
/*------------------- Tablet ------------------- */
 @media (max-width: 820px) {
     html, body {
         overflow-x: hidden;
    }
     #top-content.mobile, section#banner {
         margin-top: 40px;
    }
     section#service.mobile.sticky-bottom {
         max-width: 820px;
    }
     .video-container.videos-1, .video-container.videos-2, .video-container.videos-3 {
         width: 100%;
         height: 100%;
         aspect-ratio: 16/9;
    }
     iframe#video2.video-iframe, iframe#video3.video-iframe {
         display: none;
         width: 100%;
         height: 100%;
         border: none;
    }
     #about .container {
         min-height: 450px;
    }
    /* Header */
     .mobile-nav-overlay {
         visibility: visible;
    }
     section#header {
         position: fixed;
         top: 0;
         width: 100%;
         z-index: 6;
    }
     .nav-bar {
         display: none;
    }
     #desktop-nav {
         display: none;
    }
     .hamburger {
         display: flex;
    }
     #header .header-content {
         min-height: 40px;
    }
     ul.menu>li>a {
         font-size: 16px;
         color: #fff;
         padding: 8px 40px;
         font-weight: 500;
         display: block;
         text-decoration: none;
    }
     #mobile-nav .site-logo {
         padding: 0 20px;
         margin-bottom: 56px;
    }
     #mobile-nav .site-logo img {
         width: 128px;
         height: 32px;
    }
    /* Mobile-only submenu behavior (accordion style) */
     .submenu {
         max-height: 0;
         overflow: hidden;
         transition: max-height 0.3s ease;
         padding-left: 15px;
    }
     .has-submenu.open .submenu {
         max-height: 500px;
    }
     .has-submenu.open .accordion-toggle {
         transform: rotate(45deg);
    }
     .menu-more {
         margin: 100px 0 66px;
         padding: 16px 20px 0 20px;
         border-top: 1px solid #ffffff80;
         row-gap: 32px;
         display: flex;
         flex-direction: column;
         align-items: center;
    }
     .menu-more ul {
         display: flex;
         flex-direction: row;
         justify-content: space-between;
         column-gap: 40px;
    }
     .menu-more ul>li>a {
         color: #fff;
         font-size: 12px;
         font-weight: 500;
         text-decoration: none;
         line-height: 150%;
        /* 18px */
    }
     .menu-more ul.sns {
         display: flex;
         flex-direction: row;
         justify-content: space-between;
         column-gap: 13.3px;
    }
     .accordion-item {
         border-bottom: none;
    }
     #about.mobile .container {
         flex-direction: column;
         row-gap: 24px;
    }
     #about.mobile .container, #insight-library.mobile .container {
         padding: 40px 0 0 0;
    }
     #know-the-markets.mobile .container, #exclusive-content.mobile .container, #investment-solution.mobile .container, #news-update.mobile .container {
         padding: 40px 0;
    }
     .accordion-header {
         font-size: 20px;
    }
     .accordion .accordion-item:first-child .accordion-header {
         padding: 20px 0;
    }
     .videos-1, .left.vdo iframe {
         aspect-ratio: 16 / 9;
         height: auto;
    }
     .videos-2 .video-thumbnail, .videos-3 .video-thumbnail {
         width: 100%;
         height: 100%;
         display: block;
         border-radius: 8px;
         object-fit: cover;
    }
     .right.about-accordion {
         height: 268px;
        /* height: auto;
         */
    }
     .tab-links a {
         font-size: 18px;
    }
     #insight-library.mobile .container, .tabs {
         row-gap: 20px;
    }
     #news-update.mobile .news-grid {
         margin: 0;
    }
     #service.mobile .container .list ul {
         display: flex;
         justify-content: center;
    }
     #service.mobile .container .text ul li {
         display: flex;
         align-items: center;
    }
     #insight-library.mobile .tab-content .active {
         flex-direction: column;
         row-gap: 24px;
    }
     #insight-library.mobile .hightlight-box::before {
         content: "";
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0) 100%);
         border-radius: 16px;
         opacity: 0.5;
         z-index: 1;
    }
     #insight-library.mobile .highlight-text {
         background: transparent;
         position: relative;
         z-index: 2;
    }
     #insight-library.mobile .highlight-text.more {
         width: 40%;
    }
     #insight-library.mobile .left.hightlight {
         width: 100%;
    }
     #insight-library.mobile .highlight-text p {
         color: #fff;
    }
     #insight-library.mobile .highlight-text a {
         color: #fff;
         font-size: 14px;
         font-weight: 500;
         text-align: right;
         display: flex;
         align-items: center;
         justify-content: flex-end;
         flex-direction: row;
         column-gap: 8px;
    }
     #insight-library.mobile .view-all, #exclusive-content.mobile .view-all, #news-update.mobile .view-all {
         font-size: 18px;
         padding: 16px;
         text-decoration: none;
         width: auto;
    }
     #know-the-markets.mobile .slide-img, #know-the-markets.mobile a.tab-links {
         aspect-ratio: 16 / 9;
         height: auto;
    }
     #know-the-markets.mobile .tab-links {
         display: flex;
         flex-wrap: nowrap;
         overflow-x: auto;
         -webkit-overflow-scrolling: touch;
         width: 100%;
         scrollbar-width: none;
    }
     #know-the-markets.mobile .tab-links::-webkit-scrollbar {
         display: none;
    }
     #know-the-markets.mobile .tab-links li {
         flex: 0 0 auto;
         white-space: nowrap;
    }

     #exclusive-content.mobile .tab-links .vdo-short-tab {
         visibility: visible;
    }
     #exclusive-content.mobile .tab-content .active {
         flex-direction: column;
         width: 100%;
    }

     #investment-solution.mobile .tab-list::before {
         width: 100%;
    }
     #service.mobile .container .text ul li span {
         color: #fff;
         font-size: 16px;
         font-weight: 500;
         margin-left: 5px;
    }
     section#news-update.mobile {
         padding: 0 20px;
    }
     #news-update.mobile .news-grid {
         grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
     #banner .container.blog img {
         height: 24px;
    }
     #banner .container.blog .title {
         font-size: 32px;
    }

     section#main-content-desktop {
         display: none;
    }
     section#main-content-mobile {
         display: block;
    }
     #blog-list {
     padding: 80px 20px;
     gap: 24px;
}
     #newsContainer.news-grid {
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         gap: 16px;
         padding: 24px 20px;
    }
}
 @media (max-width: 768px) {
     #banner .title {
         color: #333;
         font-family: "Kurious Looped";
         font-size: 32px;
         font-style: normal;
         font-weight: 600;
         line-height: 120%;
         letter-spacing: -1.6px;
         text-transform: capitalize;
    }
     #blog-list .news-grid {
         gap: 30px;
         padding: 16px;
    }

     #blog-list .tab-links {
         color: #333;
         font-family: "Kurious Looped";
         font-size: 16px;
         font-style: normal;
         font-weight: 600;
         line-height: 120%;
         display: flex;
         flex-direction: row;
         width: 100%;
         overflow-x: auto;
         white-space: nowrap;
         -ms-overflow-style: none;
         margin-bottom: 0px;
         margin-left: 20px;
		 margin-top: 24px;;
    }
     .tab-links::-webkit-scrollbar {
         display: none;
    }
     #blog-list {
         padding: 40px 0px;
         gap: 24px;
    }
     #blog-list .container h2 {
         margin-left: 20px;
    }
     #single-news {
         padding: 24px 20px;
    }
     #single-news .container {
         display: flex;
         flex-direction: column;
         align-items: flex-start;
         gap: 40px;
         align-self: stretch;
    }
     #banner {
         height: 219px;
    }
     .banner-single-news::before {
         content: "";
         position: absolute;
         top: 0;
         left: 0;
         right: 0;
         bottom: 0;
         background-color: rgba(0, 0, 0, 0.4);
    }
     #banner.banner-single-news .container {
         padding: 0px 20px;
         gap: 16px;
         z-index: 1;
    }
     h1#newsTitle {
         font-family: "Kurious Looped";
         font-size: 24px;
         font-style: normal;
         font-weight: 600;
         line-height: 170%;
         letter-spacing: -1.6px;
         text-transform: capitalize;
    }
     #banner.banner-single-news .container {
         margin-bottom: 20px ;
    }
     /* .right {
         gap: 16px;
         width: 100%;
    } */
     .related-card {
         display: flex;
         flex-direction: row;
         gap: 16px;
         width: 100%;
         height: 124px;
    }

     .news-content a {
         word-break: break-word;
    }
     .news-content p {
         font-family: Kurious Looped;
         font-weight: 100;
         font-size: 14px;
         line-height: 140%;
         letter-spacing: 0%;
         vertical-align: middle;
         color: #333;
    }
}
 @media (max-width: 480px){
     #blog-list .news-grid {
         grid-template-columns: 1fr 1fr;
    }
     #banner .title {
         color: #333;
         font-family: "Kurious Looped";
         font-size: 32px;
         font-style: normal;
         font-weight: 600;
         line-height: 120%;
         letter-spacing: -1.6px;
         text-transform: capitalize;
    }
     #blog-list .news-grid {
         grid-template-columns: 1fr;
         gap: 24px;
         padding: 16px;
    }
     /* .news-grid {
         display: grid;
         grid-template-columns: repeat(3, minmax(300px, 1fr));
         gap: 16px;
         padding: 24px 20px;
    } */
     #blog-list .tab-links {
         color: #333;
         font-size: 16px;
         font-style: normal;
         font-weight: 600;
         display: flex;
         flex-direction: row;
         width: 100%;
         overflow-x: auto;
         white-space: nowrap;
         -ms-overflow-style: none;
         margin-bottom: 0px;
         /* margin-left: 20px; */
         gap: 10px;
    }
     .tab-links::-webkit-scrollbar {
         display: none;
    }
     #blog-list {
         padding: 40px 0px;
         gap: 24px;
    }
     #blog-list .container h2 {
         margin-left: 20px;
    }
     #single-news {
         padding: 24px 20px;
    }
     #single-news .container {
         display: flex;
         flex-direction: column;
         align-items: flex-start;
         gap: 40px;
         align-self: stretch;
    }
     #banner {
         height: 219px;
    }
     .banner-single-news::before {
         content: "";
         position: absolute;
         top: 0;
         left: 0;
         right: 0;
         bottom: 0;
         background-color: rgba(0, 0, 0, 0.4);
    }
     #banner.banner-single-news .container {
         padding: 0px 20px;
         gap: 16px;
         z-index: 1;
    }
     h1#newsTitle {
         font-family: "Kurious Looped";
         font-size: 24px;
         font-style: normal;
         font-weight: 600;
         line-height: 120%;
        /* 38.4px */
         letter-spacing: -1.6px;
         text-transform: capitalize;
    }
     /* .right {
         gap: 16px;
         width: 100%;
    } */
     .news-content a {
         word-break: break-word;
    }
     .news-content p {
         font-family: Kurious Looped;
         font-weight: 100;
         font-size: 14px;
         line-height: 140%;
         letter-spacing: 0%;
         vertical-align: middle;
         color: #333;
    }
     #top-content.mobile .owl-theme .owl-dot span {
         width: 6px;
         height: 6px;
    }
     #about.mobile .container, #insight-library.mobile .container {
         padding: 24px 0 0 0;
    }
     #know-the-markets.mobile .container, #exclusive-content.mobile .container, #investment-solution.mobile .container, #news-update.mobile .container {
         padding: 24px 0;
         row-gap: 20px;
    }
     .right.about-accordion {
         height: 275px;
    }
     .accordion-item.active .accordion-body, .accordion-item .accordion-body {
         padding: 0;
    }
     .heading {
         padding: 5.5px 10px;
    }
     .heading h2 {
         font-size: 24px;
    }
     .accordion .accordion-header {
         padding: 16px 0;
         font-size: 16px;
         font-weight: 600;
    }
     .accordion .accordion-item:first-child .accordion-header {
         padding: 0 0 16px 0;
         font-size: 16px;
         font-weight: 600;
    }
     #insight-library.mobile .accordion-header {
         padding: 8px 12px;
         font-size: 16px;
    }
     #insight-library.mobile .accordion-item.active .accordion-content {
         padding: 0 0 8px;
    }
     #insight-library.mobile .accordion-item .accordion-content {
         padding: 0px;
    }
     #insight-library.mobile .highlight-text {
         padding: 16px 18px;
    }
     #insight-library.mobile .highlight-text h1 {
         font-size: 16px;
    }
     #insight-library.mobile .view-all, #exclusive-content.mobile .view-all, #news-update.mobile .view-all {
         padding: 7.5px 0;
         font-size: 14px;
    }
     .tab-links a {
         padding: 10.5px 12px;
         font-size: 16px;
    }
     .tab-links {
         gap: 8px;
    }
     #investment-solution .tab-card {
         width: 140px;
    }
     #news-update.mobile .news-title {
         font-size: 16px;
    }
     #investment-solution.mobile .tab-list::before {
         background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 15%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 80%, rgba(255, 255, 255, 1) 95%);
    }
     #investment-solution.mobile .tab-card {
         padding: 8.5px 15px;
    }
     #investment-solution.mobile .investment-slider .investment-card {
         transform: scale(1);
         padding-top: 24px;
         transition: transform 0.3s ease;
         border-radius: 16px;
         border: 1px solid #dfdfdf;
         background: #fff;
         margin: 0 10px;
    }
     #investment-solution.mobile .investment-slider .owl-item.center .investment-card {
         transform: scale(1);
         padding-top: 24px;
         transition: transform 0.3s ease;
         border: 1px solid #dfdfdf;
         margin: 0 30px 0 10px;
        /* width: 100%;
         */
    }
     #investment-solution.mobile .investment-card .top h3 {
         font-size: 14px;
    }
     #investment-solution.mobile .graph .graph-text {
         font-size: 12px;
    }
     #investment-solution.mobile .graph {
         width: 208px;
    }
     #investment-solution.mobile .investment-card .top {
         margin-bottom: 16px;
    }
     p.value {
         font-size: 20px;
    }
     #investment-solution.mobile .date-box {
         font-size: 12px;
    }
     #investment-solution.mobile .owl-theme .owl-dots {
         margin-top: 16px;
    }
     #banner .container.blog img {
         height: 24px;
    }
     #banner .container.blog .title {
         font-size: 32px;
    }
}
 @media (max-width: 375px) {
     #investment-solution.mobile .tab-card {
         padding: 8.5px 5px;
    }
     #investment-solution .tab-card {
         width: 140px;
    }
}
