:root {
    --brand: #0a4d8c;
    --brand-2: #0f6cd1;
    --accent: #ff9f1c;
    --bg: #ffffff;
    --bg-soft: #f6f8fb;
    --text: #1a1d1f;
    --muted: #5b6673;
    --border: #e5e8ef;
    --max: 1120px;
    --radius: 14px;
    --shadow: 0 10px 24px rgba(12, 36, 64, .08);
    --blueTxt: #052f48;
}

@font-face {
  font-family: montserratR;
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: montserratM;
  src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: montserratSB;
  src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: montserratB;
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: montserratEB;
  src: url('../fonts/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: montserratR;
    color: var(--text);
    background: var(--bg)
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

ul {
    margin: 0;
    padding: 0;
    list-style: none
}

/* Layout */
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px
}

.section {
    padding: 64px 0;
    width:100%;
    float:left;
}

.section--light {
    background: #fff;
}

.section__title {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 16px;
}

.section__subtitle {
    color: var(--muted);
    margin: 0 0 32px
}

.center {
    text-align: center
}

.spacer {
    height: 24px
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px
}

/* Topbar */
.topbar {
    background: #0b2f52;
    color: #dbe7f4;
    font-size: 14px
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 0
}

.topbar__right {
    display: flex;
    align-items: center;
    gap: 16px
}

.topbar__contact {
    display: flex;
    align-items: center;
    gap: 16px
}

.topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: .9
}

.topbar__icon {
    width: 21px;
    height: 16px;
    opacity: .9
}

.topbar__social {
    display: flex;
    align-items: center;
    gap: 10px
}

.icon-link img {
    width: 18px;
    height: 18px;
    opacity: .9
}

/* Navbar */
.navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50
}

.navbar__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    height: 64px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.brand__logo {
    width: auto;
    height: 36px
}

.brand__name {
    font-weight: 700;
    color: var(--brand)
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.navbar-expand-lg .navbar-nav {
    width: 100%;
    gap: 0px !important;
}

.nav-item {
    width: 100%;
    float: left;
    border-right: 1px solid #000;
    text-align: center;
}

.nav-item:last-child {
    border-right: 0px;
}

.nav-link {
    font-size: 11px;
    padding: 0px;
    color: #0d1729;
}

.nav-menu__link {
    color: #2a2f36;
    font-weight: 500;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

/* Custom Buttons (avoid clashing with Bootstrap .btn) */
.cbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 18px;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: .2s ease;
    background: #fff
}

.cbtn--primary {
    background: #ffa800;
    color: #000;
    border: 1px solid #a1bffc;
}

.cbtn--accent {
    background: var(--accent);
    color: #09223f;
    font-family: 'montserratB';
}

.cbtn--ghost {
    border-color: var(--border);
    background: #fff
}

.cbtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .08)
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 6px;
    cursor: pointer
}

.nav-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #1d2b3a;
    margin: 4px 0;
    border-radius: 2px
}

/* Hero */
.hero {
    position: relative
}

.carousel {
    position: relative;
    height: 420px;
    overflow: hidden
}

.carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease
}

.carousel__slide.is-active {
    opacity: 1
}

.carousel__img {
    width: 100%;
    height: 100%;
}

.carousel__controls {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
    border: none;
    background: rgba(9, 34, 63, .55);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .25)
}

.carousel__btn--prev {
    left: 16px
}

.carousel__btn--next {
    right: 16px
}

.carousel__btn:hover {
    background: rgba(9, 34, 63, .75)
}

.hero__content {
    position: relative;
    margin-top: -92px;
    background: linear-gradient(180deg, rgba(9, 34, 63, .4), rgba(9, 34, 63, .0));
    padding-bottom: 24px
}

.hero__title {
    color: #fff;
    font-size: 34px;
    max-width: 720px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .25)
}

.hero .cbtn {
    margin-top: 16px
}

/* Feature grid */
.feature-grid {
    display: block
}

.feature-card {
    text-align: center;
    margin-bottom: 15px;
    cursor: pointer;
}

.feature-card__media {
    width: 100%;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 15px;
}

.feature-card__title {
    font-size: 14px;
    line-height: 1.3;
    border: 1px solid #a1bffc;
    border-radius: 50px;
    padding: 5px 5px;
}

/* Two column */
.two-col {
    display: block
}

.two-col--reverse {
    display: block
}

.two-col__media img {
    border-radius: var(--radius)
}

/* Utility: ensure object-fit cover is available */
.object-fit-cover { object-fit: cover }

/* Lists */
.list--check li {
    position: relative;
    padding-left: 28px;
    margin: 10px 0
}

.list--check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffa800;
    mask: url('../images/icon-check.svg') no-repeat center/contain
}

.list--bullet li {
    margin: 8px 0
}

.list--plain li {
    margin: 6px 0;
    color: var(--muted)
}

/* Highlights band */
.highlights {
        width: 100%;
    float: left;
    position: relative;
    padding: 28px 0;
    padding-bottom: 40px;
    background: #0c223f;
    color: #eaf2fb;
    background-image: url('../images/keyhighlights.jpg');
    background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.highlights .highlights_Para
{
    width: 100%;
    float: left;
    color: #fff;
    text-align: center;
    font-size: 14px;
}
.highlights__grid {
    display: block
}

.highlight {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.highlight__icon {
    width: 50px;
    filter: brightness(1.2)
}
.highlight__text
{
    background-color: #0000007d;
    font-size: 12px;
    text-align: center;
        border-radius: 12px;
    padding: 10px 8px;
    line-height: 16px;

}
/* Calculators */
.calc-grid {
    display: block
}

.calc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    box-shadow: var(--shadow)
}

.calc-card__icon {
    font-size: 22px
}

.calc-card__title {
    font-weight: 600
}

/* Footer */
.site-footer {
    color: #dbe7f4;
    padding: 36px 0 10px
}

.footer__grid {
    display: block
}

.footer__title {
    color: #fff;
    margin: 0 0 8px
}

.footer__bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .15)
}

.footer__legal {
    font-size: 13px;
    opacity: .85
}

/* Responsive */
@media (max-width:1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .calc-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .highlights__grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .two-col,
    .two-col--reverse {
        grid-template-columns: 1fr
    }
}

@media (max-width:720px) {
    .navbar__inner { height: auto; padding: 10px 0; grid-template-columns: auto auto 1fr }
    .nav-toggle { display: block; justify-self: end }
    .nav-menu { position: absolute; left: 0; right: 0; top: 64px; background: #fff; border-bottom: 1px solid var(--border); flex-direction: column; gap: 0; display: none; justify-content: flex-start }
    .nav-menu.is-open { display: flex }
    .nav-menu__item { border-top: 1px solid var(--border) }
    .header-actions { padding: 10px; justify-self: end }
    .carousel { height: 140px; }
    .carousel__btn { width: 36px; height: 36px; font-size: 18px }
    .hero__title { font-size: 26px }
    .feature-grid { grid-template-columns: 1fr }
    .calc-grid { grid-template-columns: repeat(2, 1fr) }
    .highlights__grid { grid-template-columns: repeat(2, 1fr) }
    .footer__grid { grid-template-columns: repeat(2, 1fr) }
}

@media (max-width:480px) {
    .calc-grid {
        grid-template-columns: 1fr
    }

    .highlights__grid {
        grid-template-columns: 1fr
    }

    .footer__grid {
        grid-template-columns: 1fr
    }
}


.LoginOpts a {
    background-color: #5689f6 !important;
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    width: 81px;
    padding: 3px 0px;
    border: 0px;
}

#offer {
    background-color: #fff;
    padding-top: 0px;
}

.two-col__content {
    background-color: #f0f0ee;
    ;
}

.two-col__content .section__title {
    font-weight: bold;
}

.two-col__content>p {
    font-style: italic;
    font-size: 12px;
}

.two-col__content>span {
    font-size: 12px;
    font-weight: bold;
}
.Section_Head
{
    width:100%;
    float:left;
    text-align: center;
    color: #0e3e84;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
}

#calculators .section__subtitle
{
    color: #0e3e84;
}
#calculators .calc-card__icon img
{
    width: 35px;
}
#calculators .calc-card__title
{
    color:#6b71f2;
    font-size: 12px;
    line-height: 16px;
}
#calculators .calc-card 
{
    height: 100%;
}



#services .section__title
{
    color:#0e3e84;
    font-weight:bold;
}
#services .two-col__content
{
    background-color: transparent;
}
.list--bullet strong
{
    width: 100%;
    float: left;
}
.list--bullet li
{
    display: flex;
    align-items: flex-start;
    color:#0e3e84;
    font-size:14px;
    margin-top: 20px;
}
.list--bullet li img
{
    width:32px;
}
.Footer_RedPara
{
    width: 100%;
    float: left;
    text-align: center;
    color:#ff6000;
    font-size: 19px;
    font-style: italic;
}

.Footer_ShortMenu
{
    width: 100%;
    float: left;
    text-align: center;
}
.Footer_ShortMenu ul
{
        display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0px;
}
.Footer_ShortMenu ul li
{
    color:#0e3e84;
    font-size: 16px;
    border-right:1px solid #0e3e84;
    padding: 0px 10px;
    cursor: pointer;
}
.Footer_ShortMenu ul li:last-child{
    border-right: 0px;
}
.site-footer > .container > p
{
        color: #0e3e84;
    font-size: 13px;
    margin-top: 10px;
}
.footer__title
{
    width: 100%;
    float: left;
    font-size: 16px;
    font-weight: bold;
    color:#0e3e84;
    
}
.footer__col .list
{
    width: 100%;
    float: left;
}
.footer__col .list li
{
    display: flex;
    align-items: center;
}
.footer__col .list li img
{
    width:20px;
}
.footer__col .list li span, .footer__col .list li a
{
    width: 100%;
    float: left;
    font-size: 12px;
    margin-left: 10px;
    color:#0e3e84;
}
.footer__col .list li a
{
    margin-left: 0px;
}
.footer__legal
{
    color:#0e3e84;
    font-size: 10px;
    font-weight: 500;
    margin-top:10px;
}

/* Navbar dropdown animation */
.navbar .dropdown-menu {
    --drop-shadow: 0 10px 24px rgba(12,36,64,.12);
    display: block; /* allow animate via visibility */
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: var(--drop-shadow);
    padding: 8px 0;
}
.navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .18s ease, transform .18s ease, visibility 0s;
}
.navbar .dropdown-item { font-size: 14px; }

@media only screen and (min-width:992px) {
   .navbar-expand-lg .navbar-nav{
    justify-content: center;
   }
   .nav-item
   {
    width: auto;
   }
   .navbar .dropdown-item {
        font-size: 10px;
        padding: 4px 9px;
    }
}
@media (max-width: 991.98px) {
    /* Ensure dropdowns render naturally inside the collapsed mobile menu */
    .navbar .dropdown-menu { position: static; transform: none; box-shadow: none; border: 0; padding: 0; display: none; opacity: 1; visibility: visible; }
    .navbar .dropdown-menu.show { display: block; }
    .navbar .dropdown-item { padding-left: 18px; }
}
@media only screen and (max-width:767px) {
    .topbar__link
    {
            gap: 4px;
                font-size: 12px;
    }
    .navbar > .container
    {
        position: relative;
    }
    .navbar-collapse
    {
            position: absolute;
    z-index: 99;
    left: 0;
    top: 53px;
    right: 0;
    background-color: #fff;
    box-shadow: 0px 9px 14px 6px rgba(0,0,0,0.1);
    }
    .nav-item
    {
        padding-left: 15px;
                margin-bottom: 10px;
    }
    .nav-link
    {
            font-size: 15px;
                text-align: left;
    }
     .navbar-collapse .d-grid
     {
        display: flex!important;
        padding: 10px 0px;
     }
    .navbar-collapse .d-grid .btn 
    {
            width: 200px;
    }
    .section__title {
    font-size: 25px;
    }
    .section {
    padding: 30px 0;
}
#trust
{
    margin-bottom: 30px;
}
#trust .two-col__content
{
        margin-top: 22px;

}
#calculators .container > .row > DIV
{
    margin-bottom:10px ;
}
#calculators .calc-card
{
    justify-content: space-between;
}
#services .section__title 
{
    text-align: center;
}
#services .section__title br, .site-footer > .container > p br
{
    display: none;
}
.Footer_RedPara
{
    padding: 0px 10px;
        font-size: 16px;
}
.Footer_ShortMenu ul li
{
        font-size: 14px;
}
.site-footer > .container > p
{
        font-size: 11px;
}
.site-footer .footer__col
{
    margin-bottom: 15px;
}
.footer__col .list li
{
        margin: 2px 0px;
}
}


/**-----------------------------------------------------
                AboutUs Page Styles
-------------------------------------------------------*/
.SectionHead
{
        font-family: 'montserratEB';
        color: #052f48;
}


/* AboutUs page */
.about-page .section__body p { margin-bottom: 12px; color:#0d1729; }
.about-page .hero__content { padding-bottom: 32px; }
.about-page .hero__title { max-width: 840px; }

/* AboutUs: Hero */
.about-hero { color:#fff; padding-top: 18px; }
.about-hero__eyebrow { display:block; color:#e1e8f5; font-weight:600; margin-bottom:8px; }
.about-hero__title { color:#fff; font-size: clamp(28px, 4vw, 40px); line-height:1.2; }
.about-hero__cta { margin-top: 12px; }

/* AboutUs: Summary card */
.about-summary { padding:0px 24px; padding-top: 20px;}
.about-summary__img { object-fit: cover; width:100%; }
.about-summary__title { color:#052f48; margin:0 0 6px; font-family: montserratEB; }
.about-summary__sub { color:#052f48; font-size:16px; margin:0 0 12px; }
.about-summary__body p { color:#263142; font-size:14px; }

/* AboutUs: Why choose cards */
.about-why { background:#f7f9fd;background-image: url(../images/whychooseus_bg.jpg);background-size: 100% 100%;
    background-repeat: no-repeat;}
.about-why__card { border:1px solid var(--border); border-radius:14px; box-shadow: var(--shadow); padding:18px; height:100%; text-align:center; }
.about-why__title { font-family: montserratB; color:#fff; font-size:18px; line-height:1.3; margin:0 0 8px; }
.about-why__text { color:#fff; font-size:14px; margin:0; }
.about-why__card span img{
    width:55px;
    margin:0px auto;
}

/* AboutUs: Skills */
.about-skills__title { color:#0e3e84; margin:0 0 6px; }
.about-skills__sub { color:#6a7687; font-size:13px; margin:0 0 8px; }
.about-skills__list li { font-size:14px; color:#1a2d44; }
.about-page #skills .list--check li
{
    font-size: 14px;
}
.about-page #skills .list--check li::before
{
        top: 3px;
}
.about-page #skills .list--check li strong
{
    width:100%;
    float:left;
}


/* AboutUs: Client services */
.about-services__row .about-services__item { position:relative; padding-bottom:10px; font-weight:600; color:#0d1729;     font-size: 14px;   width: auto;
    display: inline-block; }
.about-services__row .about-services__item:after { content:""; display:block; height:4px; width:100%; background:#0d1729; border-radius:999px; margin:8px auto 0; opacity:.85; }
.about-services__sub { color:#42536a; font-size:13px; border-top: 2px solid rgba(14,62,132,.15); padding-top:10px; }

@media (max-width: 991px){
    .about-summary__img{ height:200px;width: 38%;
    margin: 0px auto; }
}


.smartTools .tool-card
{
    width:100%;
    float:left;
    text-align: center;
    padding: 50px 10px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.smartTools .tool-card h3
{
    width:100%;
    float:left;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}
.smartTools .tool-card p
{
    width:100%;
    float:left;
    text-align: center;
    color: #fff;
    font-size: 14px; 
}
.tool-card--1
{
    background-image: url('../images/tools-card-1.png');
}


/* Strategic Investment Section */
.strategicInvest
{
    width: 100%;
    float: left;
    background-color: #e6e6e6;
}
.strategicInvest-card--img
{
        width: 100%;
    float: left;
    border: 6px solid #fff;
    border-radius: 4px;
    box-shadow: 0px 3px 9px rgba(0, 0, 0, .3);
}
.strategicInvest-card--img img
{
    width: 100%;
    float:left;
}
.strategicInvest-card h5
{
    width: 100%;
    float: left;
    text-align: center;
    color:#000;
    font-size: 14px;
    font-weight: bold;
    margin: 20px 0px;
}


/* Investment Solutions Section */
.investSolution-card
{
    width:100%;
    float:left;
    background-color: #f0fffe;
    border:1px solid #d3d3d3;
        border-radius: 8px;
    padding: 10px 10px;
    height:calc(100% - 57px);
    min-height: 165px;
}
.investSolution-card h4
{
    width: 100%;
    float: left;
    color: #052f48;
    font-size: 12px;
    font-family: 'montserratB';
    margin-top:10px;
}
.investSolution-card h4,
.investSolution-card p
{
    margin-bottom: 0px;
}
.investSolution-card p,
.investSolution-card li
{
width: 100%;
float: left;
font-size: 10px;
    color: #052f48;
}
.investSolution-card ul
{
    width: 100%;
    float: left;
       padding-left: 15px;
}
.investSolution-card li
{
    list-style-type: disc;
    margin:2px 0px;
}
.investSolution .cbtn--primary
{
    font-size: 12px;
}

/**-----------------------------------------------------
                                Contact Page Styles
-------------------------------------------------------*/
.contact-page
{
    color: #052f48;
}
.contact-page .hero .carousel { height: 220px; }
.contact-page .section__subtitle { color: #052f48; }
.contact-page .section__sub_subtitle{ color: var(--blueTxt); }
.contact-page .contact-info .d-flex img { opacity: .9; }
.contact-page .contact-info a { color: #0e3e84; text-decoration: none; }
.contact-page .contact-form .form-label { font-size: 12px; color: #334155; }
.contact-page .contact-form .form-control,
.contact-page .contact-form .form-select { font-size: 14px; }
.contact-page .contact-form .cbtn { padding: 0 22px; height: 44px; }
.SectionHead_Sub
{
    font-family: 'montserratB';
    color: #052f48;
}
.ListStyle--disc
{
    list-style-type: disc;
        list-style-position: inside;
}
.GetInTouch ul li
{
    margin-bottom: 8px;
}
.ContactInfo_row img
{
    width: 24px;
}

@media (max-width: 720px){
    .contact-page .hero .carousel{ height: 140px; }
    .contact-page .contact-form .cbtn
    {
        height: 34px;
        font-size: 12px;
    }
}


/**-----------------------------------------------------
                                Mutual Fund page Styles
-------------------------------------------------------*/
.mf-keybenefits
{
    background: #f7f9fd;
    background-image: url(../images/whychooseus_bg.jpg);
    background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; 
  padding: 30px 0px;
}
.mf-keybenefits h5
{
    color: #fff;
}
.mf-keybenefits .about-why__card
{
    transition: all 0.3s ease-in-out;
    cursor: default;
}
.mf-keybenefits .about-why__card:hover
{
    background-color: #ffa800;
    border-color: #ffa800;
}
.mf-keybenefits .about-why__card:hover h3,
.mf-keybenefits .about-why__card:hover p
{
    color: #000;
}

.mf_typesCntnr
{
    background-color: #fff;
    border-radius: 20px;
        overflow: hidden;
}
.mf_types
{
    background-color: #e3e3e3;
    padding: 20px 0px;
}

.mf_tabsCntnr__tabs .nav-item
{
    border:0px;
}
.mf_tabsCntnr__tabs .nav-link,
.mf_tabsCntnr__tabs .nav-link:hover,
.mf_tabsCntnr__tabs .nav-link:focus
{
    font-size: 12px;
    background-color: #fff;
    border:1px solid #535353;
    border-radius: 0px;
    padding: 5px 5px;
    margin-right: 2px;
    color: #052f48;
    font-weight: 500;
}
.mf_tabsCntnr__tabs .nav-link.active
{
    border-color:#b8b8b8;
    background-color: #b8b8b8;
}
.mf_tabsCntnr__tabs .accordion-item
{
    border:0px;
}
.mf_tabsCntnr__tabs .accordion-body
{
    padding: 10px 0px;
    font-size: 14px;
    color: #000;
}
.disc-list
{
    list-style-type: disc;
    padding-left: 20px!important;
}
.mf_tabsCntnr__tabs .accordion-button
{
    border:1px solid #ccc;
    border-radius: 10px!important;
    margin-bottom: 10px;
        font-size: 12px;
        padding: 10px 10px;
}
.mf_tabsCntnr__tabs .accordion-button::after
{
    background-size: 13px;
    width: 13px;
    height: 13px;
}


.Learn-section
{
    width: 100%;
    float: left;
    padding: 40px 0px;
}
.Learn-box
{
    width: 100%;
    height: 100%;
    float: left;
    border-radius: 13px;
    border: 1px solid #d3d3d3;
    overflow: hidden;
}
.Learn-box h4
{
    background-color: #052f48;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 10px 5px;
    margin-bottom: 0px;
}
.Learn-box ul
{
margin-top: 15px;
    padding: 0px 15px;
}
.Learn-box ul li
{
    font-size: 12px;
    margin-bottom: 5px;
}
.Learn-box .list--check li::before
{
        top: 2px;
}
.Learn-box ul li::marker {
  color: #ffa800; /* Changes the marker color to red */
}
@media (max-width: 991px) {
  .tab-content>.tab-pane {
    display: block;
    opacity: 1;
  }
}
@media only screen and (max-width:767px)
{

    .mf_typesCntnr img
    {
        width: 100%;
        height: 100%;
    }
}
@media only screen and (max-width:551px)
{
    .mf_tabsCntnr__tabs .accordion-body
    {
        padding: 10px 10px;
    }
    .mf_tabsCntnr__tabs .accordion-body
    {
            font-size: 12px;
    }
    .SectionHead
    {
            font-size: 16px;
    }
    #mf-quest .disc-list li
    {
        font-size: 14px;
    }
}

/**-----------------------------------------------------
                                SIP Page Styles
-------------------------------------------------------*/
.custom-disc-list
{
    padding-left: 25px;
}
.types-of-sip-content li span
{
    width: 100%;
    float: left;
    font-family: 'montserratB';
    font-size: 16px;
    position: relative;
}
.types-of-sip-content ul li::marker {
  text-align: end;
}
.custom-disc-list span::before
{
    content:"";
    position: absolute;
    left: -20px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background-color: #000;
}
.sip-lumpsum_invest h3
{
    width: 100%;
    float: left;
    color: #052f48;
    font-size: 22px;
    font-family: 'montserratB';
    background-color: #b2cbff;
    text-align: center;
    padding: 5px 5px;
} 
.sip-lumpsum_diff h5
{
    background-color: #dadadb;
    font-family: 'montserratB';
}
.sip-lumpsum_diff ul li
{
    font-size: 14px;
    margin-bottom: 12px;
}
.sip-lumpsum_diff h5,
.sip-lumpsum_diff ul
{
    padding: 5px 15px;
    color: #0e3e84;
}
.sip-lumpsum_diff > div
{
    background-color: #f1f1f1;
}

@media only screen and (max-width:767px)
{
    .sip-lumpsum_invest h3
    {
        font-size: 18px;
    } 
    .sip-lumpsum_diff h5
    {
      font-size: 16px;  
    }
    .types-of-sip-content li span
    {
            font-size: 14px;
    }
    .custom-disc-list
    {
        font-size: 14px;
    }
    .custom-disc-list span::before
    {
            width: 6px;
    height: 6px;
    }
}
@media only screen and (max-width:551px)
{
    .types-of-sip-content li span
    {
            font-size: 12px;
    }
    .custom-disc-list
    {
        font-size: 12px;
    }
    .sip-lumpsum_invest h3
    {
        font-size: 16px;
    } 
    .sip-lumpsum_diff h5
    {
      font-size: 14px;  
    }
    .sip-lumpsum_diff ul li {
    font-size: 12px;
        margin-bottom: 9px;
        line-height: 13px;
    }
    .sip-lumpsum_diff h5, .sip-lumpsum_diff ul {
    padding: 5px 10px;
    }
}