
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #3d4348; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #3e5055; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #e6007e; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #313336; /* The default color of the main navmenu links */
    --nav-hover-color: #e6007e; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #313336; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #e6007e; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f8fbfc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.colorMain {
    color: #e6007e;
}

.backgroundMain {
    background-color: #e6007e;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

.marginTop {
    margin-top: 15px;
}

.clearMargin{
    margin:0;
}

.cursorPoint {
    cursor: pointer;
}
.marginCenter {
    margin: 0 auto;
}
.padding10 {
    padding: 10px;
}





/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 480px;
  position: relative;
  padding: 30px 0 20px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .hero-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .hero-bg::before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 15%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
}

@media (min-width: 768px) {
  .hero .hero-img {
    max-width: 600px;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 500;
  font-size: 18px;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
    font-size: 18px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 40px 0;
}

.featured-services .service-item {
  position: relative;
  padding-top: 20px;
}

.featured-services .service-item .icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  width: 72px;
  height: 72px;
  position: relative;
  margin-right: 15px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 32px;
  z-index: 2;
  position: relative;
}

.featured-services .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 21px;
}

.featured-services .service-item .title a {
  color: var(--heading-color);
}

.featured-services .service-item .title a:hover {
  color: var(--accent-color);
}

.featured-services .service-item .description {
  font-size: 18px;
}

.featured-services .service-item:hover .icon {
  background-color: var(--accent-color);
}

.featured-services .service-item:hover .icon i {
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
  padding-bottom: 20px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

    .faq .faq-container .faq-item h3 {
        font-weight: 600;
        font-size: 20px;
        line-height: 24px;
        margin: 0 30px 0 0;
        transition: 0.3s;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item .content {
    font-style: italic;
    margin: 0 auto 15px auto;
    padding: 7px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}


.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 4px solid var(--background-color);
    margin: 0 auto;
}



.testimonials-img {
    width: 100%;
}

.testimonials .testimonial-item .title {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    padding: 15px;
    color: #fff;
}

.testimonials .btn-get-started {
    color: var(--contrast-color);
    font-weight: 500;
    font-size: 20px;
    padding: 5px 28px;
    border-radius: 50px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    margin-right:10px;
}

.testimonials .link {
    padding: 10px;
    margin: 0 auto;
    width: 50%;
}

@media (min-width: 1400px) {
    .testimonials .link {
        width: 50%;
    }

    .testimonials .btn-get-started {
        padding: 5px 28px;
    }
}

@media (max-width: 1400px) {
    .testimonials .link {
        width: 100%;
    }
    .testimonials .btn-get-started {
        padding: 5px 36px;
    }
}

@media (max-width: 1200px) {
    .testimonials .link {
        width: 50%;
    }
    .testimonials .btn-get-started {
        padding: 5px 140px;
    }
}

@media (max-width: 960px) {
    .testimonials .btn-get-started {
        padding: 5px 100px;
    }
}

@media (max-width: 768px) {
    .testimonials .link {
        width: 100%;
    }
    .testimonials .btn-get-started {
        padding: 5px 65px;
    }
}

@media (max-width: 320px) {

    .testimonials .btn-get-started {
        padding: 5px 45px;
    }
}


.testimonials .bt-detail {
    font-size: 18px;
    color: var(--default-color);
    font-weight: 600;
}

 .icon-detail {
    margin-left: 2px;
}



.bgAllocation {
    background: #e94c1f;
}

.textAllocation {
    color: #e94c1f;
}

.bgTax {
    background: #3daae9;
}

.textTax {
    color: #3daae9;
}

.bgTermFund {
    background: #ff6565;
}

.textTermFund {
    color: #ff6565;
}

.bgInvestment {
    background: #2e9928;
}

.textInvestment {
    color: #2e9928;
}

.bgThematic {
    background: #4902a3;
}

.textThematic {
    color: #4902a3;
}


/*--------------------------------------------------------------
# portRecommend Section
--------------------------------------------------------------*/
.portRecommend {
    width: 100%;
    min-height: 480px;
    position: relative;
    padding: 120px 0 120px 0;
    display: flex;
    align-items: center;
}

    .portRecommend .portRecommend-bg {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .portRecommend:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 15%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .portRecommend .container {
        position: relative;
        z-index: 3;
    }

    .portRecommend h1 {
        margin: 0 0 20px 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
    }

        .portRecommend h1 span {
            color: var(--heading-color);
            border-bottom: 4px solid var(--accent-color);
        }

    .portRecommend p {
        margin: 5px 0 30px 0;
        font-size: 22px;
        font-weight: 400;
    }

    .portRecommend .btn-get-started {
        color: #ffffff;
        font-weight: 400;
        font-size: 18px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 40px;
        border-radius: 50px;
        transition: 0.5s;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }

    .portRecommend .animated {
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }

@media (max-width: 640px) {
    .portRecommend h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .portRecommend p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .heportRecommendro .btn-get-started,
    .portRecommend .btn-watch-video {
        font-size: 13px;
    }
}

.portRecommend .portRecommend-waves {
    display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.portRecommend .wave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
    fill: var(--default-color);
    opacity: 0.6;
}

.portRecommend .wave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
    fill: var(--default-color);
    opacity: 0.4;
}

.portRecommend .wave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
    fill: var(--default-color);
}

.portRecommend .taxWave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
    fill: #3daae9;
    opacity: 0.6;
}

.portRecommend .taxWave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
    fill: #3daae9;
    opacity: 0.4;
}

.portRecommend .taxWave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
    fill: #3daae9;
}

.portRecommend .termWave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
    fill: #ff6565;
    opacity: 0.6;
}

.portRecommend .termWave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
    fill: #ff6565;
    opacity: 0.4;
}

.portRecommend .termWave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
    fill: #ff6565;
}


.portRecommend .targetWave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
    fill: #2e9928;
    opacity: 0.6;
}

.portRecommend .targetWave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
    fill: #2e9928;
    opacity: 0.4;
}

.portRecommend .targetWave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
    fill: #2e9928;
}

.portRecommend .thematicWave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
    fill: #4902a3;
    opacity: 0.6;
}

.portRecommend .thematicWave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
    fill: #4902a3;
    opacity: 0.4;
}

.portRecommend .thematicWave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
    fill: #4902a3;
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}



.portRecommend ul {
    list-style: none;
    padding: 0;
    color: #000000;
}

    .portRecommend ul li {
        padding-bottom: 10px;
        display: flex;
        align-items: center;
    }

    .portRecommend ul i {
        font-size: 20px;
        padding-right: 4px;
        color: #e94c1f;
    }


/*--------------------------------------------------------------
# Tab Section
--------------------------------------------------------------*/
/*.tabs .nav-tabs {
    border: 0;
}*/

.tabs .nav-link {
    background-color: var(--surface-color);
    color: var(--heading-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 15px 20px;
    transition: 0.3s;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
}

    .tabs .nav-link.active {
       
        color: var(--contrast-color);
        
    }

.nav-item{
    font-size:16px;
}

.tabs .selectAllocation.active {
    background: #e94c1f;
    border-color: #e94c1f;
}

.tabs .selectTax.active {
    background: #3daae9;
    border-color: #3daae9;
}

.tabs .selectTarget.active {
    background: #2e9928;
    border-color: #2e9928;
}


    .tabs .nav-link h4 {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
    }

    .tabs .nav-link h4 {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
    }

    .tabs .nav-link.active h4 {
        color: var(--contrast-color);
    }
    .tabs .nav-link i {
        padding-right: 15px;
        font-size: 36px;
    }


.tabs .tab-content {
    margin-top: 30px;
}

.tabs .tab-pane h3 {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 26px;
}

@media (max-width: 575px) {
    .tabs .nav-link i {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .tabs .nav-link i {
        padding: 0;
        line-height: 1;
        font-size: 36px;
    }
}
.hilightTextTable {
    color: var(--heading-color);
    font-size:18px;
    font-weight:800;
}

#listModel {
   
}

    /*#listModel li {
        margin: 5px auto;
    }*/

.tableGolbal {
    margin: 10px 0;
}
.btn-get-Calculate {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-weight: 500;
    font-size: 32px;
    padding: 10px 45px;
    border-radius: 50px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

    .btn-get-Calculate:hover {
        color: var(--contrast-color);
        background: color-mix(in srgb, var(--accent-color), transparent 15%);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }

    .btn-get-Calculate span{
        font-size:24px;
    }

.btn-get-theme {
    color: #212529;
    background: #ffffff;
    font-weight: 600;
    font-size: 20px;
    padding: 10px 45px;
    border-radius: 50px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

    .btn-get-theme span {
        font-size: 24px;
    }

.btn-get-themeTable {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-weight: 500;
    font-size: 16px;
    padding: 2px 22px;
    border-radius: 50px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);

}

    .btn-get-themeTable:hover {
        color: var(--contrast-color);
        background: color-mix(in srgb, var(--accent-color), transparent 15%);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }

.theme .icon-box {
    background-color: var(--surface-color);
    padding: 50px 40px;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: #ffffff;
}
.theme .imageBack {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 10px;
    padding: 50px 10px;
}

.theme .chaina {
    background: #e52929;
    background-image: url(../img/recommend/Model/tax/chaina.png);
    background-position: center;
    background-repeat: no-repeat;
    margin: 10px;
    padding: 50px 10px;
}

.theme .vietnam {
    background: #3da91a;
    background-image: url(../img/recommend/Model/tax/vietnam.png);
    background-position: center;
    background-repeat: no-repeat;
    margin: 10px;
    padding: 50px 10px;
}

.theme .usa {
    background: #1a3ea9;
    background-image: url(../img/recommend/Model/tax/usa.png);
    background-position: center;
    background-repeat: no-repeat;
    margin: 10px;
    padding: 50px 10px;
}

.theme .india {
    background: #a9491a;
    background-image: url(../img/recommend/Model/tax/india.png);
    background-position: center;
    background-repeat: no-repeat;
    margin: 10px;
    padding: 50px 10px;
}

.theme .tech {
    background: #731aa9;
    background-image: url(../img/Model/tech.png);
    background-position: center;
    background-repeat: no-repeat;
    margin: 10px;
    padding: 50px 10px;
}
.theme .healthy {
    background: #a91a68;
    background-image: url(../img/Model/healthy.png);
    background-position: center;
    background-repeat: no-repeat;
    margin: 10px;
    padding: 50px 10px;
}

/*--------------------------------------------------------------
# Target
--------------------------------------------------------------*/

.cardTarget {
    padding:10px;
    box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
}
.fs-20 {
    font-size: 20px !important;
}

.nav-link {
    display: block;
    padding: 0.5em 1em;
}

.nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: 0.25rem;
    color: var(--heading-color);
    font-weight: 600;
    font-size: 20px;
}

.iconTarget {
    margin-bottom: -7px !important;
    font-size: 30px
}

.custom-verti-nav-pills .nav-link {
    background-color: #f3f6f9;
    margin-top: 7px;
    position: relative;
}

@media (min-width: 992px) {
    .custom-verti-nav-pills .nav-link::before {
        content: "";
        position: absolute;
        right: -20px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        border: 12px solid transparent;
        border-left-color: transparent;
    }
}

@media (min-width: 992px) {
    .custom-verti-nav-pills .nav-link.active::before {
        border-left-color: #2e9928;
    }
}


.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #ffffff;
    background-color: #2e9928;
}



.nav-pills {
    --vz-nav-pills-border-radius: 0.25rem;
    --vz-nav-pills-link-active-color: #fff;
    --vz-nav-pills-link-active-bg: #2e9928;
}

.cardTarget .imgTarget {
    width: 100%;
    margin-bottom:20px;
}

.pricing .pricing-item {
    background-color: #2e992817;
    padding: 40px 40px;
    height: 100%;
    border-radius: 15px;
}
.pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
}
.pricing .description {
    font-size: 14px;
}

.pricing h4 {
    color: #2e9928;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0;
}

.pricing .cta-btn {
    border: 1px solid #2e9928;
    color: var(--default-color);
    display: block;
    text-align: center;
    padding: 10px 35px;
    border-radius: 5px;
    font-size: 24px;
    font-weight: 600;
    transition: 0.3s;
    margin-top: -10px;
    margin-bottom: 6px;
}
    .pricing .cta-btn:hover, .pricing .cta-btn:active, .pricing .cta-btn:focus {
        background: #2e9928;
        color: #ffffff;
        border-color: #2e9928;
    }

.pricing h4 span {
    color: var(--bs-secondary-color) !important;
    font-size: 14px;
    font-weight: 500;
}

.targetAge{
    padding:20px;
}

.noUi-target {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #f3f6f9;
    border-color: #f3f6f9;
}

.noUi-horizontal {
    height: 4px;
}

.noUi-handle {
    background: #0ab39c;
    border: 2px solid var(--vz-card-bg);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.noUi-horizontal .noUi-handle:focus {
    outline: 0;
}
.noUi-handle:after, .noUi-handle:before {
    display: none;
}
.noUi-horizontal .noUi-handle {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    right: -10px !important;
    top: -7px;
}

    .noUi-horizontal .noUi-handle:focus {
        outline: 0;
    }

.noUi-horizontal .noUi-origin > .noUi-tooltip {
    -webkit-transform: translate(50%, 0);
    transform: translate(50%, 0);
    left: auto;
    bottom: 10px;
}

.inputTargetAmount .input-group-text {
    background: #2e9928;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 6px 30px;
}

.btnInvestAmount{
    color :#FFFFFF;
}

    .btnInvestAmount:hover, .btnInvestAmount:active, .btnInvestAmount:focus {
        background: #2e9928;
        color: #ffffff;
        border-color: #2e9928;
    }
/*--------------------------------------------------------------
# calculate-form
--------------------------------------------------------------*/
/*.calculate-form {
    --bs-modal-width: 550px;
}
    .calculate-form .modal-dialog {
        width: 620px;
    }*/
.calculate-form .title {
    margin: 3px;
    padding: 10px;
    background-color: #ffe3f2fc;
    font-weight: 800;
    color: var(--accent-color);
}

.calculate-form .detail {
    margin: 5px 0 0 10px;
    font-size: 1rem;
}
.calculate-form .input-group {
    padding: 4px;
}
.calculate-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    transition: 0.4s;
    border-radius: 50px;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 45px;
}

    .calculate-form .form-number {
        text-align: right;
        font-size: 1rem;
    }

.calculate-form .form-check-input {
    margin: 3px 9px 0 0px;
}

    .calculate-form .form-check-input:checked {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
    }

    .calculate-form .result {
        align-content: center;
    }

    .calculate-form .btn-get-started {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-weight: 400;
        font-size: 18px;
        padding: 10px 45px;
        border-radius: 50px;
        transition: 0.5s;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }
.modal-header .btn-close {
     margin: 0;
}

/*--------------------------------------------------------------
# Color
--------------------------------------------------------------*/
.allocation-background {
    --background-color: #ffffff;
    --default-color: #e94c1f;
    --surface-color: #e57d5f;
    --contrast-color: #ffffff;
}

.allocation-background {
    background: #e94c1f;
}

.colorAllocation {
    color: #e94c1f;
}

.tax-background {
    background: #3daae9;
}

.colorTax {
    color: #3daae9;
}

.term-background {
    background: #ff6565;
}

.colorTerm {
    color: #ff6565;
}


.target-background {
    background: #2e9928;
}

.colorTarget {
    color: #2e9928;
}

.thematic-background {
    background: #4902a3;
}

.colorThematic {
    color: #4902a3;
}

/*--------------------------------------------------------------
# Term
--------------------------------------------------------------*/
.termFund  th, td{
    align-content: center;
}
.termFund .amc-img-cricle {
    width: 100px;
    height: 100px;
    border: 2px solid #cdcdcd;
    margin: 10px 20px;
}
    /*--------------------------------------------------------------
# Font
--------------------------------------------------------------*/

.text-color {
    color: var(--accent-color);
}

.textGreen {
    color: #019d00;
}

.textRed {
    color: #cf0202;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}


/************************** Mobile ******************************/
.boxMobShow{
    display:none;
}

@media (max-width: 784px) {
    .boxMobHide{
        display:none;
    }
    .boxMobShow{
        display:block;
    }
}

