/* index page css */

@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
.ul,
ol,
.ol,
li,
p,
.p {
    padding: 0;
    margin: 0;
}

.dropdown-toggle::after {
    display: none;
}

@font-face {
    font-family: 'noto_serif_jpblack';
    src: url('../fonts/notoserifjp-black-webfont.woff2') format('woff2'), url('../fonts/notoserifjp-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'noto_serif_jpbold';
    src: url('../fonts/notoserifjp-bold-webfont.woff2') format('woff2'), url('../fonts/notoserifjp-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'noto_serif_jplight';
    src: url('../fonts/notoserifjp-light-webfont.woff2') format('woff2'), url('../fonts/notoserifjp-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'noto_serif_jpmedium';
    src: url('../fonts/notoserifjp-medium-webfont.woff2') format('woff2'), url('../fonts/notoserifjp-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* @font-face {
    font-family: 'noto_serif_jpsemibold';
    src: url('../fonts/notoserifjp-semibold-webfont.woff2') format('woff2'),
         url('../fonts/notoserifjp-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

} */

@font-face {
    font-family: 'noto_serif_jpsemibold';
    src: url('../fonts/NotoSerifJP-SemiBold-Alphabetic.eot');
    src: url('../fonts/NotoSerifJP-SemiBold-Alphabetic.eot?#iefix') format('embedded-opentype'), url('../fonts/NotoSerifJP-SemiBold-Alphabetic.woff2') format('woff2'), url('../fonts/NotoSerifJP-SemiBold-Alphabetic.woff') format('woff'), url('../fonts/NotoSerifJP-SemiBold-Alphabetic.ttf') format('truetype'), url('../fonts/NotoSerifJP-SemiBold-Alphabetic.svg#NotoSerifJP-SemiBold-Alphabetic') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'noto_serif_jpregular';
    src: url('../fonts/notoserifjp-regular-webfont.woff2') format('woff2'), url('../fonts/notoserifjp-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Conv_Proxima Nova Font';
    src: url('../fonts/Proxima Nova Font.eot');
    src: local('☺'), url('../fonts/Proxima Nova Font.woff') format('woff'), url('../fonts/Proxima Nova Font.ttf') format('truetype'), url('../fonts/Proxima Nova Font.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

:root {
    --theme-color: #F4C75F;
    --text-color-primary: #6c6c6c;
    --text-color-dark: #0F0F0F;
}

.text-theme {
    color: var(--theme-color) !important;
}

.bg-theme {
    background: var(--theme-color) !important;
}

.bg-white {
    background: #fff !important;
}

.text-theme-primary {
    color: var(--text-color-primary) !important;
}

.text-theme-dark {
    color: var(--text-color-dark) !important;
}

.bg-theme-dark {
    background: var(--text-color-dark) !important;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    color: var(--text-color-primary);
    background: #fff;
    font-family: 'Inter', sans-serif;
    padding: 0;
    margin: 0;
}

h1 {
    font-size: 3.725rem;
    line-height: 1;
    font-family: 'noto_serif_jpsemibold', serif;
}

h4 {
    font-size: 1.863rem;
    line-height: 1.1;
    font-family: 'noto_serif_jpsemibold', serif;
    letter-spacing: 0.2px;
}

h3 {
    /* font-size: 1.125rem; */
    font-size: 1.563rem;
    line-height: 2.188rem;
    font-family: 'noto_serif_jpsemibold', serif;
    text-align: center;
    color: var(--text-color-dark);
    margin: 0 0 45px 0;
}

h6 {
    font-size: 1.125rem;
    line-height: 1.6rem;
    font-family: 'Inter', sans-serif;
}

p {
    font-size: 0.938rem;
    line-height: 1.6rem;
    color: var(--text-color-primary)
}

input:focus {
    box-shadow: none !important
}

button:focus {
    outline: none
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.commonbtn {
    border-radius: 0;
    text-align: center;
    padding: 18px 32px;
    background: var(--theme-color);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none !important;
    text-transform: uppercase;
    display: inline-block;
    min-width: 175px;
    min-height: 55px;
}

.commonbtn:hover {
    background: #fff;
    color: var(--theme-color);
}

.animatedbtn {
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--theme-color);
    border-radius: 0px;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    padding: 18px 32px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    min-width: 175px;
    min-height: 55px;
}

.animatedbtn:hover,
.animatedbtn:focus {
    color: #fff;
    outline: 0;
    text-decoration: none;
}

.animatedbtn {
    border-radius: 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease-in-out;
}

.animatedbtn:after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 100%;
    background: var(--text-color-dark);
    z-index: -1;
    transition: width 0.4s ease-in-out;
}

.animatedbtn:hover {
    color: #fff;
}

.animatedbtn:hover:after {
    width: 110%;
}

/*========================Header======================*/

.header {
    background: var(--text-color-dark);
    padding: 16px 0px;
    height: 70px;
}

/* .logo {margin-top: -5px} */

.logo {
    margin-top: -14px
}

.logo img {
    /* max-height: 40px; */
    height: 100%;
    transition: all 0.5s ease-out;
}

.cmenu {
    height: auto;
    font-size: 13px;
    position: relative;
    font-weight: normal;
    -webkit-transition: all 0.5s ease-out;
    margin-top: 6px;
}

.cmenu ul {
    margin: 0;
    padding: 0;
}

.cmenu ul li {
    list-style: none;
    display: inline-block;
}

.cmenu ul li a {
    color: #fff;
    position: relative;
    padding: 5px 0;
    display: block;
    margin-left: 25px;
    font-weight: 500;
    border-radius: 0px;
    text-transform: uppercase;
}

.cmenu ul li a:hover,
.cmenu ul li.active a {
    color: var(--theme-color);
    text-decoration: none;
}

.cmenu ul li ul {
    margin: 50px 0 0;
    padding: 0;
    position: absolute;
    z-index: 99999;
    background: #fff;
    box-shadow: 1px 1px 3px 0px #0000004a;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    top: 48px;
    opacity: 0;
    visibility: hidden;
}

.cmenu ul li ul li {
    width: 100%;
    padding: 0 15px;
    text-align: left;
    list-style: none;
    position: relative;
}

.cmenu ul li ul li:last-child {
    border-bottom: none;
}

.cmenu ul li ul a {
    color: #000;
    display: block;
    padding: 0px;
    position: relative;
    margin-left: 0px
}

.cmenu ul li ul a {
    text-transform: capitalize;
    font-size: 15px;
}

.cmenu ul li ul li:hover a {
    color: #000;
}

.cmenu ul li ul li:hover a {
    color: var(--theme-color);
}

.cmenu ul li:hover ul {
    margin: 0px 0 0;
    opacity: 1;
    visibility: visible;
    line-height: 25px;
    -webkit-transition: all 0.5s ease-out;
    padding: 45px 10px 45px 45px
}

/* .cmenu ul li ul.showNow{
    margin:0px 0 0;
    line-height: 25px;  
    padding:45px 10px 45px 45px;
    opacity: 1; visibility: visible;
    display: block;
} */

/*.cmenu ul li:hover ul li ul{opacity:0; visibility: hidden;}*/

.cmenu ul li ul li {
    line-height: 25px;
    padding: 10px 15px 10px;
}

/*.cmenu ul li:first-child{display: none}
.cmenu ul li ul li:first-child{}*/

.rmenubar {
    display: none;
}

.mysidenav {
    display: none;
}

.header.sticky {
    position: fixed;
    top: 0;
    z-index: 111;
    background: var(--text-color-dark);
    transition: all 0.5s ease-out;
    left: 0;
    right: 0;
    width: 100%
}

.header.lightbg {
    background: #fff
}

.header.lightbg .cmenu ul li a {
    color: #000
}

.cmenu ul li ul li:hover a,
.header.lightbg ul li ul li:hover a {
    color: var(--theme-color)
}

.header .lightlogo {
    display: inline-block
}

.header .darklogo {
    display: none;
}

.header.lightbg .lightlogo {
    display: none
}

.header.lightbg .darklogo {
    display: inline-block;
}

/*========================Dropdown menu======================*/

.cmenu .image {
    width: 100%;
    max-width: 335px;
    /* height:206px; */
    overflow: hidden;
    margin-bottom: 20px;
    transition: 0.5s ease all;
    position: relative;
}

.cmenu .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cmenu .image .category {
    background: #fff;
    color: var(--theme-color);
    position: absolute;
    top: -60px;
    left: 22px;
    z-index: 9;
    text-transform: uppercase;
    width: 100%;
    max-width: 70px;
    height: 32px;
    line-height: 34px;
    text-align: center;
    border-radius: 20px;
    font-size: 13px;
    transition: 0.5s ease all;
}

.cmenu .image:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 12px rgb(41 26 85 / 25%);
}

.cmenu .image:hover .category {
    top: 22px;
}

.cmenu h4 {
    font-size: 1.563rem;
    text-transform: capitalize;
}

.cmenu .col-md-4:last-child h4 {
    font-size: 1.25rem;
    text-transform: capitalize;
}

.cmenu p {
    margin-top: 15px;
    text-align: left;
}

.cmenu a {
    text-decoration: none
}

.cmenu a h4:hover {
    color: var(--theme-color) !important
}

.cmenu .dropdownmenu h6 {
    font-size: 0.938rem;
    margin-top: 0.875rem;
    font-family: 'noto_serif_jpsemibold';
}

.cmenu .dropdownmenu h6 img {
    height: 0.8rem;
    transition: 0.5s ease all;
    margin-top: -2px;
}

.cmenu .dropdownmenu .resrceblck p {
    max-width: 75%
}

.cmenu .dropdownmenu .resrceblck:first-child {
    margin-bottom: 35px
}

.cmenu .dropdownmenu h6:hover img {
    transform: rotate(48deg);
}

/*========================Banner======================*/

.bannersec {
    background: url(../images/indexbnr.png);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 710px;
    position: relative;
}

.bnrlogo {
    position: absolute;
    bottom: 48px
}

.bnrlogo img {
    max-height: 44px;
    height: 100%
}

.bannertext {
    margin-top: -30px
}

.bannersec .container,
.bannersec .row {
    height: 100%;
    min-height: 710px
}

.bannersec h1 {
    margin-bottom: 25px;
    letter-spacing: 1px
}

.bannersec h6 {
    margin-bottom: 45px;
    font-weight: 500
}

.bannersec .animatedbtn:hover {
    color: var(--theme-color)
}

.bannersec .animatedbtn:after {
    background: #fff;
}

.slidersec {
    min-height: 710px;
    position: relative;
}

.slidersec_new {
    background: url(../images/new_slider_image.jpg) center center no-repeat;
    display: flex;
    align-items: center;
}

.slidersec_new h1 {
    color: var(--text-color-dark);
    font-size: 4.375rem;
    line-height: 5.25rem;
}

.slidersec_new p {
    padding: 20px 0 30px;
    color: var(--text-color-dark);
}

.slidersec_new .animatedbtn {
    max-width: 192px;
    width: 100%;
    height: 55px;
    border-radius: 100vmax;
    background: var(--text-color-dark);
    color: var(--theme-color);
    text-transform: uppercase;
    border: none;
    box-shadow: none;
    font-size: 13px;
    height: 55px;
    font-weight: 700;
}

.slidersec_new .animatedbtn:hover {
    color: var(--text-color-dark);
}

.slidersec_new .animatedbtn:after {
    background: #fff;
}

.slidersec h6 {
    font-weight: 400;
    line-height: 1.6
}

.sldrimg {
    width: 100%;
    height: 710px;
    overflow: hidden;
}

.sldrimg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.bannertext1,
.bannertext3,
.bannertext4 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%
}

.bannertext1 h1 {
    margin-bottom: 25px;
    letter-spacing: 1px
}

.bannertext1 h6 {
    margin-bottom: 45px;
}

.bannertext1 .animatedbtn:hover {
    color: var(--theme-color)
}

.bannertext1 .animatedbtn:after {
    background: #fff;
}

.bnrlogo1 {
    position: absolute;
    bottom: -97px;
}

.bnrlogo1 img {
    max-height: 44px;
    height: 100%
}

.bnrlogo2 {
    position: absolute;
    bottom: 48px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.bnrlogo2 img {
    max-height: 44px;
    height: 100%
}

.bannertext2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.bannertext2 h1 {
    margin-bottom: 25px;
    letter-spacing: 2.4px;
    font-size: 4.875rem;
    line-height: 1.2;
}

.bannertext2 h6 {
    margin-bottom: 45px;
}

.bannertext2 .animatedbtn {
    background: #fff;
    color: var(--theme-color)
}

.bannertext3 h1 {
    margin-bottom: 50px;
    letter-spacing: 1px;
    max-width: 80%;
}

.bannertext3 h6 {
    margin-bottom: 20px;
    max-width: 82%;
}

.rghtpnl {
    position: relative;
}

.rghtpnl {
    margin-left: 90px
}

.rghtpnl img {
    height: 145px;
    width: auto;
    margin-left: -60px
}

.rghtpnl h2 {
    text-transform: uppercase;
    color: #fff;
    font-size: 45px;
    margin: 0;
    line-height: 44px;
    letter-spacing: 1px;
    margin-top: 35px;
    margin-left: -15px;
}

.rghtpnl h6 {
    margin-left: -13px;
    max-width: 64%;
    margin-top: 5px;
}

.carousel-indicators {
    bottom: 10px
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}

.bannertext4 h1 {
    margin-bottom: 11px;
    letter-spacing: 1px;
    max-width: 80%;
}

.bannertext4 h6 {
    margin-bottom: 20px;
    max-width: 82%;
}

.bannertext4 .animatedbtn {
    background: #fff;
    color: var(--theme-color)
}

.bannertext4 .bnrlogo1 {
    bottom: -250px;
}

/*========================Approach Section======================*/

.approachsec {
    padding: 135px 0px 140px
}


.approachsec .container>p span {
    position: relative;
    z-index: 2;
    color: var(--text-color-dark);
}


.approachsec .container>p span:before {
    content: "";
    width: 100%;
    height: 3px;
    background: var(--theme-color);
    bottom: 3px;
    left: 0;
    position: absolute;
    z-index: -1;
}

p.sub-heading {
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 0.02rem;
    max-width: 100% !important;
}

.approachsec h1 {
    margin-bottom: 70px;
    letter-spacing: 1px
}

.approachsec h4 {
    margin-bottom: 20px
}

.approachsec .image {
    width: 100%;
    /* max-width: 408px; */
    height: 250px;
    overflow: hidden;
    margin: 0 auto 40px;
    transition: 0.5s ease all;
    max-width: 100%;
    /* max-height: 250px;*/
}

.approachsec .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.approachsec .image:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 12px rgb(41 26 85 / 25%);
}

.approachsec p {
    max-width: 90%
}

/*========================Video Section======================*/

.vdosec {
    padding: 105px 0 50px
}

.vdosec .vdoimg {
    /* width: 100%; */
    /* max-width: 625px; */
    /* height: 720px; */
    /* overflow: hidden; */
    margin: 0 auto 25px;
    position: relative;
    transition: 0.5s ease all;
    box-shadow: 0 5px 5px rgb(41 26 85 / 15%);
    padding: 56.25% 0 0 0;
}

.vdosec .vdoimg img,
.vdosec .vdoimg iframe {
    /*width: 100%;
    height: 100%;
     object-fit: cover; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vdosec .vdoimg:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 12px rgb(41 26 85 / 25%);
}

.plybtn {
    position: absolute;
    height: 75px;
    width: 75px;
    border-radius: 50%;
    line-height: 75px;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0f0f0f4f;
    border: 0;
    z-index: 9;
    color: #fff;
    font-size: 1.5rem;
}

.plybtn i {
    color: #fff;
    margin-left: 6px;
}

.plybtn:focus {
    outline: none
}

/*========================News Section======================*/

.newssec {
    /* padding: 85px 0 132px */

    padding: 85px 0 140px
}

.newssec .d-flex {
    margin-bottom: 20px
}

.newssec .mrbtn h4 img {
    width: 1rem;
    height: 0.938rem;
    transition: 0.3s ease all
}

.newssec a.mrbtn h4 {
    color: var(--theme-color)
}

.newssec a.mrbtn h4:hover {
    color: var(--text-color-dark) !important
}

.newssec .mrbtn:hover img {
    transform: rotate(48deg);
    filter: invert(56%) sepia(99%) saturate(1566%) hue-rotate(165deg) brightness(0%) contrast(0%);
}

.newssec .image {
    width: 100%;
    max-width: 408px;
    height: 250px;
    overflow: hidden;
    margin: 0 auto 0;
    transition: 0.5s ease all;
    position: relative;
}

.newssec .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.newssec .image .category {
    background: #fff;
    color: var(--theme-color);
    position: absolute;
    top: -60px;
    left: 22px;
    z-index: 9;
    text-transform: uppercase;
    width: 100%;
    max-width: 70px;
    height: 32px;
    line-height: 34px;
    text-align: center;
    border-radius: 20px;
    font-size: 13px;
    transition: 0.5s ease all;
}

.newssec .image:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 12px rgb(41 26 85 / 25%);
}

.newssec .image:hover .category {
    top: 22px;
}

.newssec p {
    margin-top: 25px
}

.newssec a {
    text-decoration: none
}

.newssec a.text-theme-dark {
    margin-top: 25px;
    display: block;
}

.newssec a h4:hover {
    color: var(--theme-color) !important
}

/*========================Contact Section======================*/

.contactsec {
    padding: 122px 0 118px;
    overflow: hidden;
    position: relative;
}

.contactsec h1 {
    margin-bottom: 3.438rem;
    text-transform: capitalize;
    color: var(--text-color-dark) !important;
}

.contactsec:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/contact-bg1.png);
    width: 40%;
    height: 190px;
    background-repeat: no-repeat;
    background-size: contain;
}

.contactsec:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -5px;
    /* background: url(../images/contact-bg-btm.png); */
    background: url(../images/contact-bg1.png) right bottom;
    width: 41%;
    height: 128px;
    background-repeat: no-repeat;
    z-index: 1;
    background-size: contain;
}

.bg-animation1 {
    position: absolute;
    top: 0;
    left: 0;
}

.bg-animation2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.contactsec input,
.contactsec textarea {
    background: transparent;
    border-radius: 0;
    border: 0;
    /* border-bottom: 1px solid #fff; */

    border-bottom: 1px solid var(--text-color-dark);
    padding: 22px 20px 22px 30px;
    position: relative;
    /* color: #fff; */
    color: var(--text-color-dark);
}

.contactsec input {
    margin-bottom: 2.588rem
}

.contactsec textarea {
    padding-top: 10px
}

.contactsec .animatedbtn {
    /* background: #fff; */
    background: var(--text-color-dark);
    color: var(--theme-color);
    outline: none;
    border: 0;
    padding: 0.938rem 1.563rem;
    /* max-width: 9.563rem; */
    margin-top: 3.2rem;
    max-width: 155px;
    width: 100%;
    height: 55px;
    border-radius: 100vmax;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
}

.contactsec input::placeholder,
.contactsec textarea::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    /* color: #fff; */
    color: var(--text-color-dark);
    opacity: 1;
    /* Firefox */
}

.contactsec input:-ms-input-placeholder,
.contactsec textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    /* color: #fff; */

    color: var(--text-color-dark);
}

.contactsec input::-ms-input-placeholder,
.contactsec textarea::-ms-input-placeholder {
    /* Microsoft Edge */
    /* color: #fff; */

    color: var(--text-color-dark);
}

.contactsec .form-group img {
    position: absolute;
    top: 10px;
    left: 14px;
    width: 21px;
    height: 21px
}

.contactsec .form-control:focus {
    background: transparent;
    outline: none;
    box-shadow: none;
    color: #fff;
    border-color: #fff;
}

.speech_section {
    padding: 70px 0 80px;
}

.speech_section img {
    display: block;
    margin: 0 auto 40px;
}

.speech_section_text {
    text-align: center;
    color: var(--text-color-dark);
    z-index: 3;
}

.speech_section_text h5 {
    margin: 0 0 10px 0;
    font-family: 'noto_serif_jpsemibold', serif;
    /* color: var(--text-color-dark); */
}

.speech_section_text p {
    color: var(--text-color-dark);
}

/*========================Footer Section======================*/

.footer {
    background: var(--text-color-dark);
    padding: 100px 0 50px
}

.footer h2 {
    font-weight: 600;
    font-size: 2.513rem;
    font-family: 'Conv_Proxima Nova Font';
    margin-bottom: 0.875rem
}

.footer .ftlfttxt {
    margin-top: 6.25rem
}

.footer .ftlfttxt .animatedbtn {
    background: #fff;
    /* color: var(--theme-color); */
    color: var(--text-color-dark);
    padding: 0.938rem 1.563rem;
    height: 3.438rem;
    width: 100%;
    max-width: 9.563rem;
    line-height: 1.75rem;
    margin-top: 1.475rem;

    border-radius: 100vmax;
    max-width: 127px;
    height: 55px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.footer .ftlfttxt .animatedbtn:hover {
    /* color: #fff */
}

.footer .ftlfttxt .animatedbtn:after {
    background: var(--theme-color);
}

.ftlfttxt p {
    margin-bottom: 1.25rem;
    max-width: 85%;
    line-height: 1.5;
    color: #fff
}

.footer .ftrghtpnl {
    padding-left: 4.125rem
}

.ftrghtpnl .col-md-6:nth-child(2) ul,
.ftrghtpnl .col-md-6:nth-child(4) ul..ftrghtpnl .col-md-6:nth-child(4) h4 {
    padding-left: 20px
}

.footer ul {
    margin: 0;
    padding: 0;
    margin-top: 1.463rem;
}

.footer ul li {
    list-style: none;
    font-size: 0.938rem;
    font-weight: 200;
    margin-bottom: 0.825rem;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: all .3s linear;
}

.footer ul li a:hover {
    color: var(--theme-color);
}

.footer .ftrghtpnl .col-md-6:nth-child(2) h4,
.footer .ftrghtpnl .col-md-6:nth-child(3) h4 {
    margin-top: 2.1rem
}

.fticon {
    display: inline-block;
    margin-top: 0.62rem
}

.fticon a i {
    width: 25px;
    height: 25px;
    line-height: 28px;
    background: #fff;
    color: var(--theme-color);
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 10px;
}

.footer p {
    color: #fff
}

.footer .ftrghtpnl h4 a {
    text-decoration: none
}

.cpyrghtsec {
    padding-top: 3.5rem
}

.cpyrghtsec ul {
    margin-top: 0rem;
}

.cpyrghtsec ul li {
    display: inline-block;
    margin-bottom: 0px;
    margin-right: 1.9rem
}

.cpyrghtsec p {
    font-size: 0.938rem;
    font-weight: 200;
    color: #fff
}

.cpyrghtsec a {
    text-decoration: none
}

.modal.inside {
    background: rgba(0, 0, 0, .8);
}

.modal.inside .modal-body {
    padding: 15px !important;
    height: max-content;
}

.modal.inside .modal-header {
    border: 0 !important;
}

.modal.inside .close {
    right: 6px;
    top: 3px;
    font-weight: 900;
    font-size: 14px;
    /* background: #fff; */
    position: absolute;
    z-index: 99;
    opacity: 1;
    /* border-radius: 50%; */
    /* width: 20px; */
    /* height: 20px; */
    color: #000;
}

.modal-body {
    height: 500px;
}

.modal-body iframe {
    width: 100%;
    height: 100%;
}

.modal-header button:focus {
    outline: none;
    border: none
}

.modal-header .close {
    margin: -0.5rem -0.5rem -1rem auto !important;
}



.case_gold {
    background: #F8F8F8;
    padding: 153px 0;
}

.case_gold_inner {
    align-items: center;
}

.case_gold_left {
    position: relative;
}

.case_gold_left img {
    max-width: 100%;
    height: auto;
}

.case_gold_left .graph_details_box {
    text-align: center;
    position: absolute;
    width: 100%;
    max-width: 528px;
    height: 328px;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.case_gold_left .graph_details_box .graph_details_box-hd {
    color: #0F0F0F;
    font-size: 15px;
    margin: 17px 0 7px;
    font-family: 'Inter', sans-serif;
}

.case_gold_left .graph_details_box img.graph-img {
    height: 280px;
    width: auto;
    max-width: 528px;
    object-fit: contain;
}

.case_gold_right h1 {
    color: var(--text-color-dark);
    padding: 0 0 30px 0;
}

.case_gold_right p {
    font-size: 15px;
    line-height: 24px;
    color: #0F210E;
}

.case_gold_right p:first-child {
    font-weight: 700;
}

.case_gold_right p.bold_para {
    font-weight: 700;
    margin: 0 0 30px 0;
}

/*==============================================Inner pages===========================================*/

/*========================News======================*/

.innerbnr {
    background: var(--theme-color);

    /* color: #fff; */

    color: var(--text-color-dark);
    min-height: 285px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.innerbnr h1 {
    font-size: 3.838rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.innerbnr p {
    /* color: #fff */

    color: var(--text-color-dark);
}

.bnrcntnt {
    padding-top: 110px;
    padding-bottom: 110px
}

.bnrcntnt .animatedbtn {
    margin-top: 10px
}

.bnrcntnt h6 {
    font-weight: 400;
    margin-top: 20px
}

.innerbnr p {
    font-size: 1.125rem;
    line-height: 1.6
}

.newssec h4 {
    min-height: 5.625rem
}

.newssec.innewssec p {
    margin-top: 20px;
    margin-bottom: 40px;
}

.pagination .page-item .page-link {
    border-radius: 0;
    background: #EFF3F7;
    color: #000;
    width: 35px;
    height: 35px;
    line-height: 21px;
    border: 0;
    margin: 0px 10px;
}

.pagination .page-item.active .page-link {
    color: #fff !important;
    background: var(--theme-color) !important;
}

.pagination .page-link:focus {
    box-shadow: 0 0 0 0.08rem rgb(51 165 43);
}

.pagination .active a,
/* .page-item.disabled .page-link, */

.pagination .page-item:hover a {
    color: #fff !important;
    background: var(--theme-color) !important
}

.more_news_btn {
    background: var(--theme-color);
    width: 144px;
    height: 55px;
    display: block;
    color: var(--text-color-dark);
    font-weight: 700;
    letter-spacing: .5px;
    border-radius: 100vmax;
    padding: 0;
    margin: 50px auto 0;
    line-height: 55px;
    min-width: auto;
}

/*========================Contact Us======================*/

.incontactsec {
    padding: 95px 0 110px
}

.incontactsec input,
.incontactsec textarea {
    background: transparent;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #000 !important;
    padding: 22px 20px 22px 30px;
    position: relative;
    color: #000 !important;
}

.incontactsec input {
    margin-bottom: 2.65rem
}

.incontactsec textarea {
    padding-top: 10px
}

.incontactsec .animatedbtn {
    background: var(--theme-color);
    /* color: #fff; */
    outline: none;
    border: 0;
    padding: 0.938rem 1.563rem;
    height: 3.438rem;
    width: 100%;
    max-width: 9.563rem;
    margin-top: 2.8rem;

    color: var(--text-color-dark);
    border-radius: 100vmax;
    max-width: 144px;
    height: 55px;
    font-weight: 700;
    letter-spacing: .5px;
}

.incontactsec .animatedbtn:hover {
    color: var(--theme-color);
}

.incontactsec input::placeholder,
.incontactsec textarea::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000;
    opacity: 1;
    /* Firefox */
}

.incontactsec input:-ms-input-placeholder,
.incontactsec textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000;
}

.incontactsec input::-ms-input-placeholder,
.incontactsec textarea::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #000;
}

.incontactsec .form-group img {
    position: absolute;
    top: 10px;
    left: 14px;
    width: 21px;
    height: 21px
}

.incontactsec .form-control:focus {
    background: transparent;
    outline: none;
    box-shadow: none;
    color: #fff;
    border-color: #fff;
}

/*========================About======================*/

.inteamsec {
    padding: 135px 0px 50px
}

.inteamsec h1 {
    margin-bottom: 70px;
    letter-spacing: 1px
}

.inteamsec h4 {
    font-size: 1.563rem;
    margin-bottom: 20px
}

.inteamsec .image {
    width: 100%;
    max-width: 408px;
    height: 375px;
    overflow: hidden;
    margin: 0 auto 40px;
    transition: 0.5s ease all
}

.inteamsec .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.inteamsec .image:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 12px rgb(41 26 85 / 25%);
}

.imgcntntsec {
    padding: 90px 0 100px
}

.imgcntntsec .image {
    width: 100%;
    max-width: 625px;
    height: 615px;
    overflow: hidden;
    margin: 0 auto 40px;
    transition: 0.5s ease all
}

.imgcntntsec .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.imgcntntsec .image:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 12px rgb(41 26 85 / 25%);
}

.imgcntntsec .abtcntnt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0px 85px;
}

.imgcntntsec .abtcntnt h4 {
    margin-bottom: 20px
}

/*========================First Quarter======================*/

.quartersec {
    padding-top: 80px;
    padding-bottom: 125px;
    background: #F5F5F5;
}

.quartersec .pagination {
    margin-top: 25px
}

.searchbx {
    margin-bottom: 1.875rem
}

.searchbx input {
    width: 89% !important;
    min-height: 55px;
    border-radius: 0;
    border: 0;
}

.searchbx .frmbtn {
    width: 11%;
    background: var(--theme-color);
    color: #fff;
    border-radius: 0px;
    min-height: 55px;
    border: 0;
    text-transform: uppercase;
    font-size: 0.813rem;
}

.searchbx .frmbtn:hover {
    background: var(--text-color-dark)
}

.quartercrd {
    background: #fff;
    padding: 50px 40px;
    margin-bottom: 30px
}

.quartercrd .image {
    width: 100%;
    max-width: 760px;
    /* height: 395px; */
    height: auto;
    overflow: hidden;
    margin: 0 0 35px;
    transition: 0.5s ease all;
}

.quartercrd .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quartercrd .image:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 12px rgb(41 26 85 / 25%);
}

.quartercrd p {
    line-height: 1.5
}

.quartercrd h4,
.quartercrd p {
    margin-bottom: 20px
}

.quartercrd .animatedbtn {
    height: 33px;
    padding: 7px 10px;
    border-radius: 25px;
    min-width: 157px;
    margin-top: 0px;
    min-height: 33px;
}

/*.quartercrd .animatedbtn:hover{background: var(--text-color-dark);}*/

.fundlist {
    background: #fff;
    padding: 35px
}

.fundname {
    padding-bottom: 20px;
    border-bottom: 1px solid #6c6c6c2e;
    padding-top: 20px
}

.fundlist .fundname:first-child {
    padding-top: 0
}

.fundlist .fundname:nth-last-child(2) {
    padding-bottom: 0;
    border-bottom: none
}

.fundname h6 {
    font-size: 1.1rem;
    font-family: 'noto_serif_jpsemibold';
    margin-bottom: 10px
}

a.mrbtn {
    text-decoration: none
}

a.mrbtn h6 {
    color: var(--theme-color)
}

a.mrbtn h6:hover {
    color: var(--text-color-dark) !important
}

.mrbtn h6:hover img {
    transform: rotate(48deg);
}

.mrbtn h6,
.fundlist .rdmre h6 {
    font-size: 0.938rem;
    font-family: 'noto_serif_jpsemibold';
}

.mrbtn h6 img,
.fundlist .rdmre h6 img {
    height: 0.813rem;
    transition: 0.3s ease all;
}

.mrbtn h6:hover img {
    filter: invert(56%) sepia(99%) saturate(1566%) hue-rotate(165deg) brightness(0%) contrast(0%);
}

.fundlist .rdmre h6 {
    margin-top: 35px
}

.rdmre h6 {
    color: var(--theme-color)
}

.rdmre a:hover {
    text-decoration: none
}

.rdmre a:hover h6 {
    color: var(--text-color-dark) !important
}

.rdmre h6:hover img {
    filter: invert(56%) sepia(99%) saturate(1566%) hue-rotate(165deg) brightness(0%) contrast(0%);
    transform: rotate(48deg);
}

.quartersec .mobile-slider {
    background: #fff;
    padding: 30px 20px;
    margin-bottom: 10px
}

.quartersec .mobile-slider .fundname {
    border-bottom: none;
}

.quartersec .mobile-slider .owl-nav,
.quartersec .mobile-slider .owl-dots {
    display: none !important;
}

.quartersec .mobile-slider p {
    font-size: 14px
}

/*========================Risk Definition======================*/

.risksec {
    padding-top: 80px;
    padding-bottom: 90px;
}

.risksec h4 {
    margin-bottom: 20px
}

.riskbx {
    margin-bottom: 35px
}

.riskbx .image {
    width: 100%;
    max-width: 625px;
    height: 365px;
    overflow: hidden;
    transition: 0.5s ease all;
}

.riskbx .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.riskbx .image:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 12px rgb(41 26 85 / 25%);
}

/*========================Fund family======================*/

section.news-bnr {
    background: #EFF3F7;
    padding: 80px 0px 110px;
}

.news-bnr h1 {
    font-size: 2.188rem;
    text-align: center;
    font-weight: bold;
    color: #000;
    margin-bottom: 40px;
    margin-top: 10px;
}

.custom-table table {
    border-right: 2px solid #eff3f7;
}

.custom-table th {
    background: #000;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.5;
    vertical-align: middle !important;
    border: 2px solid #eff3f7;
    padding: 23px 15px;
}

.custom-table tr td {
    font-size: 0.938rem;
    font-weight: normal;
    background: #fff;
    border: 2px solid #eff3f7;
    color: #424E5A;
}

.custom-table tbody tr td:nth-child(1) {
    text-align: left;
    border-left: 0;
}

.custom-table tbody tr td:last-child {
    border-right: 0;
}

.info-tble th:first-child {
    width: 66%
}

.info-tble td:first-child {
    width: 20%
}

.info-tble td:nth-child(2) {
    width: 46%
}

.box-img img {
    height: 180px;
    width: auto;
    display: block;
    display: table;
    margin: 15px auto 35px;
}

.table-responsive.custom-table {
    overflow: hidden;
}

.overview-table th {
    font-size: 1.25rem;
    padding: 23px 15px;
    font-weight: bold;
    background: #000;
    color: #fff;
    line-height: 1.6;
    vertical-align: middle !important;
    border: 2px solid #eff3f7;
    width: 25%;
}

.overview-table td {
    color: var(--text-color-primary);
    font-size: 0.938rem;
    font-weight: normal;
    background: #fff;
    vertical-align: middle !important;
    border: 2px solid #EFF3F7
}

.overview-table tr td a {
    font-weight: 600;
    font-size: 1.125rem;
    color: #000;
    text-decoration: none;
}

.table-responsive.overview-table {
    /* margin-bottom: 100px; */
    margin-bottom: 70px;
}

h4.fundfamily-graphtext {
    text-align: center;
    color: #000;
    font-size: 2.188rem;
    margin: 0 0 40px 0;
}

.overview-img {
    display: table;
    margin: 0px auto;
}

.overview-img img {
    /* height: 650px; */
    width: auto;
    max-width: 100%;
    height: auto;
}

.black-box {
    background: #000
}

.black-box h6 {
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    padding: 0px 15px;
    font-size: 1.25rem;
    min-height: 60px;
    line-height: 60px;
}

.white-box {
    background: #fff;
    min-height: 116px;
    padding: 10px 20px;
    margin-top: 2px;
}

.white-box.box-auto {
    background: transparent;
    text-align: right;
    ;
    color: #000;
    margin-top: 50px;
    margin-bottom: 30px
}

.white-box p {
    font-size: 0.938rem;
    font-weight: normal;
    color: var(--text-color-primary);
    line-height: 1.6;
}

.box-auto {
    min-height: auto;
    margin-top: 25px;
    margin-bottom: 10px;
}

.white-box h5 {
    font-weight: bold;
    font-size: 1.25rem;
}

.table-text {
    font-weight: 300;
    font-size: 1rem;
    color: #000000;
}

.half-table td {
    text-align: left !important;
}

.box-img .green-btn {
    width: 100%;
}

.fund_api.news-bnr td {
    padding: 28px 22px;
    vertical-align: middle;
}

.fund_api.news-bnr .table-responsive.overview-table {
    margin-bottom: 50px;
}

.fund_api.news-bnr .subhd h5 {
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    color: #000;
    font-size: 1.25rem;
}

.news-bnr.fund_api a.animatedbtn {
    width: 100%;
    min-height: 55px;
    line-height: 40px;
    font-weight: 600;
    padding: 15px 32px;
}

.no-gutters .col-md-6:first-child .black-box,
.no-gutters .col-md-6:first-child .white-box {
    margin-right: 2px
}

.no-gutters .col-md-8 .black-box {
    margin-right: 2px
}

.no-gutters .col-md-4 .white-box {
    margin-right: 2px;
    padding: 20px 0px 0px;
    line-height: 0;
}

/*========================Terms and Condition======================*/

.termsec {
    padding: 80px 0px 100px
}

.termsec h4 {
    margin-bottom: 20px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 26px;
    text-transform: uppercase;
}

.termsec a {
    word-break: break-all;
    font-weight: 500;
    text-decoration: none;
}

.performancefrme {
    padding: 80px 0px 100px
}

.zoom-fade {
    animation-name: zoom-fade;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes zoom-fade {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.9);
    }
}

/*======================= index page transition_card  =====================*/

.transition_card_holder {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    z-index: 112;
    top: 0;
    left: 0;
}

.transition_card {
    max-width: 684px;
    background: #fff;
    /* padding: 90px 72px; */
    padding: 58px 72px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 113;
    transform: translate(-50%, -50%);
}

.transition_card .cros_button {
    width: 15px;
    height: 15px;
    position: absolute;
    right: 24px;
    top: 24px;
    z-index: 114;
    cursor: pointer;
}

.transition_card h6 {
    text-transform: uppercase;
    font-size: 0.813rem;
    line-height: 1.313rem;
    color: #33A52B;
    font-family: 'Inter', sans-serif;
}

.transition_card h6.leave_site {
    margin: 30px 0 0 0;
    text-transform: uppercase;
    color: #000000;
    text-align: center;
    font-size: 13px;
}

.transition_card h5 {
    font-family: 'noto_serif_jpsemibold', serif;
    font-size: 1.763rem;
    line-height: 1.5;
    color: #000;
    padding: 15px 0 40px;
}

.transition_card h5 a {
    color: #000;
    text-decoration: underline !important;
}

/******************************************************************/

/************** model-portfolios starts here *********************/

.model_portfolio_inner {}

.model_portfolio_inner h4 {
    font-size: 3.125rem;
    line-height: 1.2;
    font-family: 'noto_serif_jpsemibold';
    color: var(--text-color-dark);
}

.model_portfolio_inner h5 {
    font-size: 1.563rem;
    line-height: 1.2;
    font-family: 'noto_serif_jpsemibold';
}

.ourmodels {
    padding: 140px 0;
}

.ourmodels_heading_row {}

.ourmodels_heading {}

.ourmodels_heading h4 {
    text-align: center;
    padding: 0 0 70px 0;
}

.our_models_list {}

.our_model_list_item {}

.our_models_list .model_img {
    max-width: 100%;
}

.our_models_list .model_img img {
    max-width: 100%;
    height: auto;
    margin: 0 0 40px 0;
    width: 1145px;
}

.our_model_list_item h5 {
    color: var(--text-color-dark);
    padding: 0 0 15px 0;
    min-height: 60px;
}

.our_model_list_item h5 span {
    display: block;
}

.our_model_list_item h6.model_tag {
    font-size: 0.813rem;
    line-height: 1.313rem;
    padding: 0 0 15px 0;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.our_model_list_item h6.model_tag a {
    color: var(--theme-color);
    text-decoration: none;
}

.our_model_list_item h6.model_tag a:hover {
    text-decoration: underline;
}

.our_model_list_item p.model_description {
    line-height: 1.6;
    color: var(--text-color-dark);
    padding: 0 0 20px 0;
}

.our_model_list_item .model_features {
    list-style-type: none;
}

.our_model_list_item .model_features li {
    display: flex;
    min-height: 44px;
    line-height: 44px;
    padding: 0 10px;
    justify-content: space-between;
    color: #000;
    border-bottom: 1px solid #C8C8C8;
}

.our_model_list_item .model_features li:nth-child(odd) {
    background: #F5F5F5;
}

.our_model_list_item h6.traded_quality {
    font-size: 0.938rem;
    line-height: 1.5rem;
    padding: 20px 0 0 0;
    font-weight: normal;
}

.our_model_list_item h6.traded_quality span.last_update {
    display: block;
}

.strategies_button_block {
    margin: 60px 0 0 0;
    text-align: center;
}

.strategies_button_block .strategies_button {
    max-width: 288px;
    width: 100%;
}

.howto_invest {
    padding: 0 0 114px 0;
}

.howto_invest_heading {
    justify-content: space-between;
    align-items: center;
    margin: 0 0 97px 0;
    padding: 0 15px;
}

.howto_invest_heading h5 {
    color: var(--theme-color);
}

.howto_invest_heading .mrbtn h5 img {
    width: 1rem;
    height: 0.938rem;
    transition: 0.3s ease all;
}

.howto_invest_heading .mrbtn:hover h5 img {
    transform: rotate(48deg);
    filter: invert(56%) sepia(99%) saturate(1566%) hue-rotate(165deg) brightness(0%) contrast(0%);
}

.invest_process {
    align-items: center;
    margin-bottom: 26px;
}

.invest_process .text_part {}

.invest_process .text_part h5 {
    color: var(--text-color-dark);
    line-height: 1.2;
    padding: 0 0 20px 0;
}

.invest_process .text_part p {
    padding: 0 0 25px 0;
    max-width: 520px;
    color: #0F210E;
}

.invest_process .video_part img {
    max-width: 100%;
    height: auto;
    width: 100%;
}

.mob_show_desk_none {
    display: none;
}

.subscribe_btn_holder {
    justify-content: center;
}

.subscribe_btn_holder_inner {
    text-align: center;
}

.subscribe_btn_holder .animatedbtn {
    background: var(--theme-color);
    color: #fff;
    outline: none;
    border: 0;
    padding: 0.938rem 1.563rem;
    height: 3.438rem;
    width: 100%;
    max-width: 135px;
    margin-top: 60px;
    min-width: initial;
    margin-left: auto;
    margin-right: auto;
}

.our_approach_new {
    background: #F6F6F6;
}

.our_approach_new_inner {
    align-items: center;
}

.our_approach_new_left {
    padding: 0;
}

.our_approach_new_left h4 {
    color: var(--text-color-dark);
}

.our_approach_new_left {
    padding: 0
}

.our_approach_new_left_inner {
    max-width: 66%;
    /* padding:0 17% */
    margin: 0 auto;
}

.our_approach_new_left_inner p {
    padding: 25px 0 0 0;
    color: #0F210E;
}

.our_approach_new_right {
    padding: 0;
}

.our_approach_new_right img {
    max-width: 100%;
    height: auto;
    width: 100%;
}

.meet_the_team {
    background: #fff;
    padding: 140px 0;
}

.meet_the_team_heading {}

.meet_the_team_text {}

.meet_the_team_text h4 {
    text-align: center;
    padding: 0 0 70px 0;
}

.team_member_gallery {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}

.team_member_gallery li {
    width: 32%;
    text-align: center;
}

.team_member_gallery li img {
    max-width: 100%;
    margin: 0 0 30px 0;
}

.team_member_gallery li h5 {
    color: #000;
    padding: 0 0 12px 0
}

.team_member_gallery li h6 {
    color: #000;
    font-size: 0.938rem;
    color: #6C6C6C;
    font-weight: normal;
}

.our_method {
    background: #F6F6F6;
}

.our_method_inner {
    padding: 98px 0;
    align-items: center;
}

.our_method_left img {
    max-width: 100%;
    height: auto;
}

.our_method_right {
    padding-left: 55px;
}

.our_method_inner h4 {
    color: #0F0F0F;
}

.our_method_inner p {
    padding: 30px 0 0 0;
    color: #0F210E;
}

.our_method_inner ul {
    list-style-type: none;
    padding: 30px 0 0 0;
}

.our_method_inner ul li {
    font-size: 0.938rem;
    color: #0F210E;
    line-height: 1.6;
    padding: 0 0 20px 20px;
    position: relative;
}

.our_method_inner ul li:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    top: 9px;
    left: 5px;
    background: #000;
}

.our_method_right .animatedbtn {
    background: var(--theme-color);
    color: #fff;
    outline: none;
    border: 0;
    padding: 0.938rem 1.563rem;
    height: 3.438rem;
    width: 100%;
    max-width: 135px;
    margin-top: 60px;
    min-width: initial;
}

.do_it_yourself {
    background: url(../images/do_it_yourself.jpg) center center no-repeat;
    background-size: cover;
    padding: 200px 0 50px 0;
    text-align: center;
}

.do_it_yourself h4 {
    color: #fff;
    padding: 0 0 10px 0;
}

.do_it_yourself h6 {
    color: #FFFFFF;
    font-size: 0.938rem;
    line-height: 1.6;
    padding: 0 0 60px 0;
    font-weight: normal;
}

.do_it_yourself button[type="submit"].animatedbtn {
    border: 0px none;
    background: #fff;
    color: var(--theme-color);
    display: block;
    margin: 0 auto;
}

img.do_it_img {
    margin: 106px auto 0;
}

.new_banner {
    background: url(../images/new_banner.jpg) center center no-repeat;
    min-height: 716px;
    padding: 228px 0 0 0;
    text-align: center;
    background-size: cover;
}

.new_banner h1 {
    padding: 0 0 26px 0;
}

.new_banner p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #fff;
}

.new_banner .animatedbtn {
    background: #fff;
    color: var(--theme-color);
    margin: 40px auto 0;
}

img.banner_do_it_img {
    margin: 129px auto 0;
    display: block;
}

/******************************************************************/

/************** disclosures starts here *********************/

.new_page_banner {
    min-height: 286px;
    background: url(../images/new_banner_pic.jpg) center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.new_page_banner h1 {
    color: #fff;
    font-size: 3.438rem;
    text-align: center;
}

.disclosure_body {}

.disclosure_text {
    margin: 80px 0 0;
}

.disclosure_text h5 {
    font-size: 1.563rem;
    line-height: 1.2;
    font-family: 'noto_serif_jpsemibold';
    color: #0f0f0f;
}

.disclosure_text p {
    font-size: 0.938rem;
    line-height: 1.6rem;
    color: #000;
}

.disclosure_text_right {}

.disclosure_text_right h5 {}

.disclosure_text_right p {
    padding: 25px 0 0 0;
    word-break: break-all;
}

.disclosure_text_right p:nth-of-type(1) {
    padding: 20px 0 0 0;
}

.disclosure_text_right img {
    width: 100%;
    height: auto;
    margin: 50px auto 0;
}

.disclosure_block {
    margin: 0 0 50px 0;
}

#stickyspymenu {
    /* margin: 0 0 0 0; */
}

#stickyspymenu-sticky-wrapper {
    float: left;
    margin-left: 0px;
}

#stickyspymenu {
    max-width: 250px;
    padding: 0;
    width: 100%;
}

#stickyspymenu ul li {
    margin: 0 0 20px 0;
}

#stickyspymenu ul li a span {
    font-size: 15px;
    line-height: 1.6;
    color: #c6cace;
}

#stickyspymenu ul li a.selected span {
    color: #0f0f0f;
}

.fund_inspection_table {
    max-width: 1280px;
    margin: 90px auto 140px;
}

.fund_inspection_table_holder {
    max-width: 1280px;
    overflow-x: auto;
}

.fund_inspection_table_holder table thead tr th {
    width: 128px;
    background: var(--text-color-dark);
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    padding: 10px 20px;
    min-height: 136px;
    text-transform: uppercase;
    /* text-align: center; */
    border-right: 1px solid #f5f5f5;
}

.fund_inspection_table_holder table thead tr th:first-child {
    width: 248px;
}

.fund_inspfund_inspection_table_holderection_table table tbody {
    border: 1px solid #f5f5f5;
}

.fund_inspection_table_holder table tbody tr {
    background: #fff;
}

.fund_inspection_table_holder table tbody tr:nth-of-type(even) {
    background: #f5f5f5;
}

.fund_inspection_table_holder table tbody tr td {
    width: 128px;
    color: #0F0F0F;
    font-size: 18px;
    line-height: 1.6;
    padding: 14px 12px 14px 20px;
    font-weight: normal;
    border-right: 1px solid #f5f5f5;
}

.fund_inspection_table_holder table tbody tr td:nth-of-type(2) {
    text-transform: uppercase;
}

.fund_inspection_table_holder table tbody tr td:first-child {
    width: 248px;
}

p.fund_inspection_disclaimer {
    font-size: 15px;
    line-height: 1.6;
    color: #6c6c6c;
    margin: 30px 0 0 0;
    max-width: 960px;
}

p.fund_inspection_disclaimer span {
    display: block;
    font-weight: bold;
    color: #0F0F0F;
    margin: 0 0 0 0;
}

/******* common-ground starts here ********/

.common_ground {
    background: #eff3f7;
    padding: 80px 0 0 0;
}

.common_ground h4 {
    font-size: 3.125rem;
    line-height: 1.2;
    font-family: 'noto_serif_jpsemibold';
    color: var(--text-color-dark);
}

.common_ground h5 {
    font-size: 1.563rem;
    line-height: 1.2;
    font-family: 'noto_serif_jpsemibold';
}

.model_asset {
    margin: 140px 0 0 0;
}

h4.model_asset_heading {
    text-align: center;
    padding: 0 0 70px 0;
}

.model_graph_slider {
    display: flex;
    justify-content: space-between;
}

.model_graph_slider .mmodel_graph_block_inner {
    padding-left: 26px;
}

.model_graph_slider .mmodel_graph_block_inner:nth-of-type(1) {
    padding-left: 0;
}

.model_graph_slider .model_graph_block {
    width: 100%;
    padding: 30px 0;
    background: #fff;
}

.model_graph_slider .model_graph_block h5 {
    text-align: center;
    color: #000000;
    padding: 0 0 20px;
}

.piechart_holder {
    padding: 0 30px;
    height: 160px;
}

.model_graph_block ul {
    list-style-type: none;
    padding: 20px 0 0 0;
}

.model_graph_block ul li {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 0 12px 20px;
}

.model_graph_block ul li span.graph_color {
    width: 20px;
    height: 20px;
    display: block;
    margin: 0 5px 0 0;
}

.model_graph_block ul li span.graph_percentage {
    width: 50px;
    display: block;
    margin: 0 5px 0 0;
    font-size: 15px;
    line-height: 1.6;
    color: #0f0f0f;
}

.model_graph_block ul li span.graph_text {
    display: block;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #0f0f0f;
}

li.graph_1 .graph_color {
    background: #93BE0D;
}

li.graph_2 .graph_color {
    background: #79A83D;
}

li.graph_3 .graph_color {
    background: #BEA20D;
}

li.graph_4 .graph_color {
    background: #FDED5C;
}

li.graph_5 .graph_color {
    background: #FDCB5C;
}

li.graph_6 .graph_color {
    background: #FF8F2C;
}

li.graph_7 .graph_color {
    background: #E64657;
}

li.graph_8 .graph_color {
    background: #920C3F;
}

li.graph_9 .graph_color {
    background: #06518A;
}

li.graph_10 .graph_color {
    background: #3AB4E6;
}

li.graph_11 .graph_color {
    background: #3AB4E6;
}

.piechart_holder {
    position: relative;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
}

#conservative,
#moderate,
#balanced,
#growth,
#aggressive {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#conservative path,
#moderate path,
#balanced path,
#growth path,
#aggressive path {
    stroke-width: 0;
}

#conservative text,
#moderate text,
#balanced text,
#growth text,
#aggressive text {
    color: transparent;
}

.quaterly_trade {
    margin: 0 0 0 0;
}

.quaterly_trade_inner {
    display: flex;
    justify-content: space-between;
}

.quarterly_trade_left,
.quarterly_trade_right {
    width: 49.5%;
}

.quarterly_trade_left {}

.black_header {
    background: #0F0F0F;
    padding: 20px;
}

.black_header h3 {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

.white_body {
    padding: 32px 20px;
    background: #fff;
    color: #000000;
}

.white_bg {
    background: #fff;
}

.white_body p {
    font-size: 0.938rem;
    line-height: 1.6rem;
}

.white_body ul {
    list-style-type: none;
}

.white_body ul li {
    margin: 0 0 10px 0;
}

.white_body ul li a {
    color: #000000;
    text-decoration: none;
}

.white_body ul li a:hover {
    text-decoration: underline;
}

.subscribe_portfolio {
    max-width: 351px;
    width: 100%;
    margin: 60px auto 0;
    border: 0px none;
    display: block;
}

.subscribe_portfolio {}

.model_allocation {
    padding: 140px 0;
}

.model_allocation_inner {}

.model_allocation_inner h4 {
    text-align: center;
    padding: 0 0 70px 0;
}

.model_allocation_blocks {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.model_allocation_list {
    width: 19%;
    background: #fff;
    padding: 30px 0;
}

.model_allocation_list h5 {
    text-align: center;
    color: #000000;
    padding: 0 0 30px;
}

.model_allocation_list_table {
    width: 100%;
}

.model_allocation_list_table tr {
    min-height: 40px;
}

.model_allocation_list_table thead tr th {
    padding: 20px;
    color: #000;
}

.model_allocation_list_table tr thead th:first-child {
    text-align: left;
}

.model_allocation_list_table tr thead th:last-child {
    text-align: right;
}

.model_allocation_list_table tbody tr {}

.model_allocation_list_table tbody tr td {
    font-size: 0.938rem;
    line-height: 1.6;
    color: #000;
    padding: 10px 20px;
}

.model_allocation_list_table tbody tr td:last-child {
    text-align: right;
}

.model_allocation_list_table tbody tr:nth-child(odd) {
    background: #F5F5F5;
}

.next_update {}

.next_update .white_body {
    display: flex;
}

.next_update .white_body p {}

.next_update .white_body p:nth-of-type(1) {
    padding-right: 25px;
}

.next_update .white_body p:nth-of-type(2) {
    padding-left: 25px;
}

.performance_table_block {
    padding: 140px 0;
}

.performance_table_block h6 {
    font-size: 1.25rem;
    line-height: 1.6;
    text-transform: uppercase;
    padding: 0 0 20px 0;
    color: #0F0F0F;
    font-weight: bold;
}

.performance_table {
    width: 100%;
}

.performance_table thead tr {
    height: 81px;
    line-height: 81px;
    text-transform: uppercase;
    color: #fff;
    font-size: 1.125rem;
    line-height: 81px;
    font-weight: 700;
}

.performance_table thead tr th {
    background: #000;
    padding: 0 20px;
    border-right: 1px solid #f5f5f5;
}

.performance_table tbody tr {
    height: 92px;
    line-height: 92px;
    color: #0F0F0F;
    font-size: 1.25rem;
    line-height: 92px;
    font-weight: normal;
}

.performance_table tbody tr:nth-of-type(odd) {
    background: #fff;
}

.performance_table tbody tr:nth-of-type(even) {
    background: #F5F5F5;
}

.performance_table tbody tr td {
    padding: 0 20px;
    border-right: 1px solid #f5f5f5;
}

/************ login-subscribe-first starts here **********/

.create_account_popup {
    position: fixed;
    background: rgba(0, 0, 0, .7);
    width: 100%;
    height: 100%;
    z-index: 200;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    overflow-y: scroll;
    overflow-x: hidden;
}

#registerModal .modal-content,
#loginModal .modal-content,
#loginmsgModal .modal-content,
#registermsgModal .modal-body {
    /* background: #f1f1f1; */
    padding: 50px 60px;
    overflow-y: auto;
}

#registerModal .modal-content .modal-header,
#loginModal .modal-content .modal-header,
#loginmsgModal .modal-content .modal-header,
#registermsgModal .modal-content .modal-header {
    padding: 0;
    border-bottom: 0px none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#registerModal .modal-content .modal-header button.close,
#loginModal .modal-content .modal-header button.close,
#loginmsgModal .modal-content .modal-header button.close,
#registermsgModal .modal-content .modal-header button.close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    margin: 0 !important;
    padding: 10px;
}

#registerModal .modal-content .modal-header button.close span,
#loginModal .modal-content .modal-header button.close span,
#loginmsgModal .modal-content .modal-header button.close span,
#registermsgModal .modal-content .modal-header button.close span {
    /* position: absolute;
    right: 25px;
    top: 25px; */
}

.create_account {
    /* max-width: 433px; */
    /* background: #f1f1f1; */
    /* padding: 50px 60px; */
    /* position: absolute; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    /* width: 90%; */
    /* top: 70px; */
}

#loginmsgModal .modal-body,
#loginModal .modal-body,
#registermsgModal .modal-body,
#registerModal .modal-body {
    height: auto;
}

#loginmsgModal .modal-footer,
#loginModal .modal-footer,
#registermsgModal .modal-footer {
    display: none;
}

.create_account h5,
#loginmsgModal .modal-body h5,
#registermsgModal .modal-body h5 {
    font-size: 1.563rem;
    line-height: 1.2;
    color: #000;
    padding: 0 0 20px 0;
    font-family: 'noto_serif_jpsemibold';
    text-align: center;
}

.create_account h6,
#loginmsgModal .modal-body h6,
#registermsgModal .modal-body h6 {
    font-size: 0.938rem;
    line-height: 1.6;
    color: #000;
    padding: 0 0 30px 0;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    text-align: center;
}

#loginmsgModal .modal-body p,
#registermsgModal .modal-body p {
    color: var(--green);
}

#loginmsgModal .modal-body p.errmsg,
#registermsgModal .modal-body p.errmsg {
    text-align: center;
    color: #f00;
}

.create_account_form {}

.create_account_form .form-group {
    /* height: 38px; */
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 0 20px 0;
}

#loginmsgModal .modal-body .button_blue.closebtn {
    color: var(--green);
    margin: 30px auto 0;
    display: block;
    max-width: 80px;
    width: 100%;
}

.create_account_form .form-group input[type="text"],
.create_account_form .form-group input[type="email"],
.create_account_form .form-group input[type="tel"],
.create_account_form .form-group input[type="password"] {
    width: 100%;
    /* height: 38px; */
    border: 0px none;
    border-bottom: 1px solid #dbdbdb;
    outline: none;
    background: transparent;
    line-height: 10px;
    height: 38px;
    padding-bottom: 18px;
    padding: 0 36px 18px;
    color: #6c6c6c;
    font-weight: 500;
}

.create_account_form .form-group .no-gap input[type="text"],
.create_account_form .form-group .no-gap input[type="email"],
.create_account_form .form-group .no-gap input[type="tel"] {
    padding-left: 0;
    padding-right: 0;
}

.create_acc_icon {
    width: 21px;
    height: 21px;
    position: absolute;
    top: 0;
    left: 0;
}

.form_edit_text {
    font-size: 0.938rem;
    line-height: 1.6;
    color: #000;
    text-decoration: none;
    position: absolute;
    right: 0;
    font-weight: 500;
}

.form_state {
    width: 57%;
}

.form_postal {
    width: 37%;
}

.finance_proffesional_block {
    display: flex;
}

.finance_proffesional_block label {
    font-size: 0.938rem;
    line-height: 1.6;
    color: #000;
    margin: 0 0 0 10px;
}

a.forgot_password_link {
    font-size: 0.813rem;
    color: #6c6c6c;
    margin: 20px auto 20px;
    text-decoration: underline;
    display: inline-block;
}

a.forgot_password_link:hover {
    text-decoration: none;
}

.create_account_btn {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    border: 0px none;
}

p.accept_policy {
    text-align: center;
    margin: 20px 0;
    font-size: 0.813rem;
    line-height: 1.6;
    color: #6c6c6c;
}

p.accept_policy a {
    text-decoration: underline;
    color: #6c6c6c;
}

p.accept_policy a:hover {
    text-decoration: none;
}

.create_account h6.already_user {
    text-align: center;
    color: #6C6C6C;
    margin: 0;
    padding: 0;
}

h6.already_user a {
    color: var(--theme-color);
    text-decoration: none;
}

h6.already_user a:hover {
    text-decoration: underline;
}

.performance_table_holder {
    overflow-x: auto;
}

#registermsgModal {
    text-align: center;
}

#exampleModalLabel {
    display: none;
}

#registermsgModal h5 {
    font-family: 'noto_serif_jpsemibold', serif;
    text-align: center;
    font-size: 30px;
    line-height: 1.2;
    color: #000;
    padding: 0 0 20px 0;
}

#registermsgModal p {
    font-size: 14px;
    line-height: 1.6;
    color: #6C6C6C;
    text-align: center;
}

#registermsgModal a {
    color: var(--green);
    margin: 20px 0;
    display: inline-block;
}

.button_blue.closebtn {
    background: var(--green);
    width: 100%;
    padding: 10px 0;
    color: #fff !important;
    font-weight: 700;
    border: 1px solid transparent;
    max-width: 320px !important;
    margin: 30px 0;
}

.button_blue.closebtn:hover {
    border: 1px solid var(--green);
    background: transparent;
    color: var(--green) !important;
    text-decoration: none;
}

.video_holder_webinar {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video_webinar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.termsec.term_incon {
    padding-bottom: 2px;
}

section.incontactsec.term_incon {
    padding-top: 2px;
}

h1.get_in_touch {
    padding: 2rem 0;
}

.disclaimer {
    text-align: justify;
    padding: 10px 0;
    line-height: 1.4;
}

.disclaimer p {
    line-height: 1.5;
    padding-bottom: 10px;
}

.approach-slider .slick-arrow{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    /* text-indent: -999999px; */
    position: absolute;
    z-index: 2;
    top: 30%;
    transform: translateY(-30%);
    background: #f4c75f;
    color: #000;
    font-size: 1.25rem;
    line-height: 35px;
    z-index: 4;
    transition: all .4s linear;
}

.approach-slider .slick-next.slick-arrow{
    right: 0;
}

.approach-slider .slick-arrow:hover,
.approach-slider .slick-arrow:active{
    background: #dba629;
    color: #fff;
}

/*@media only screen and (max-width: 991px){
	.cmenu{display: none}
	 .rmenubar {
        position: absolute;
        right: 8px;
        top: 25px;
        z-index: 99;
        display: block;
        font-size: 22px;
        background: var(--theme-color);
        padding: 2px 5px;
        border-radius: 0;
        -webkit-transition: all 0.5s ease-out;
    }
    .rmenubar a {
        color: #fff !important;
    }
    .rmenubar a:hover,
    .rmenubar a:focus {
        color: #fff !important;
    }
    .rmenubar:hover {
        background: #eb1c23;
    }
    .mysidenav {
        display: block;
        position: fixed;
        left: -260px;
        top: 0;
        width: 250px;
        height: 100%;
        z-index: 9999;
        background: var(--text-color-dark);
        padding-bottom: 55px;
        box-shadow: 1px 2px 9px 2px #5a5a5a;
        -webkit-transition: all 0.5s ease-out;
    }
    .mysidenav.navopen {
        left: 0;
        -webkit-transition: all 0.5s ease-out;
    }
    .mynavlayr {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 999;
        background: rgba(0, 0, 0, 0.36);
        display: none;
    }
    .mysidenav .sitename {
        width: 100%;
        text-align: center;
        font-size: 22px;
        padding: 7px 0;
        text-transform: uppercase;
        font-weight: bold;
    }
    .mysidenav .sitename .sidbarlogo img {
        height: 50px;
    }
    .sidemenu {
        height: 100%;
        overflow-y: scroll;
        padding: 0;
        font-size: 14px;
        font-weight: 400;
        text-align: left;

    }
    .sidemenu ul {
        margin: 0;
        padding: 0 15px;margin-top: 20px
    }
    .sidemenu ul li {
        list-style: none;
        position: relative;
    }
    .sidemenu ul li li {
        text-transform: capitalize;
    }
    .sidemenu ul li a {
        color: #fff;
        padding: 8px 10px;
        display: block;
    }
    .sidemenu ul li a:hover {
        color: #991b1e;
    }
}*/

.bio-modal .modal-dialog {
    width: 80%;
    max-width: 720px;
    background-color: #fff;
    margin: 0 auto;
}

.bio-modal .modal-dialog .modal-body {
    height: auto;
}

.bio-modal .modal-dialog .modal-header {
    border-bottom: 0px none;
    padding-bottom: 0;
    flex-direction: column;
}

.bio-modal .modal-dialog .modal-header h5,
.bio-modal .modal-dialog .modal-header h6 {
    color: var(--text-color-dark) !important;
    font-family: 'noto_serif_jpsemibold', serif;
    letter-spacing: 0.2px;
    font-size: 1.563rem;
    margin-bottom: 0;
    line-height: 1.1
}

.bio-modal .modal-dialog .modal-header h6 {
    font-size: 1.15rem;
    margin-top: 10px;
}

.bio-modal .modal-dialog .modal-content {
    padding: 40px;
}

.bio-modal .modal-dialog .modal-content p {
    margin: 0 0 15px 0;
}

.bio-modal .modal-dialog .modal-content p:last-child {
    margin: 0 0;
}

.bio-modal .modal-dialog .modal-header .close {
    margin: -0.5rem -0.5rem -1rem auto !important;
    padding-top: 0;
    position: absolute;
    right: 50px;
}

.photo_courtesy {
    font-size: 16px;
    font-weight: normal;
    font-family: 'noto_serif_jpsemibold', serif;
    color: #666;
    margin: 3px 0 15px;
}

@media only screen and (max-width: 1280px) {
    .case_gold_left .graph_details_box {
        top: 41px;
        max-width: 511px;
        height: 320px;
    }

    .case_gold_left .graph_details_box img.graph-img {
        height: 260px;
    }
}

@media only screen and (max-width: 1220px) {
    .case_gold_left .graph_details_box {
        top: 40px;
        /* max-width: 465px;
        height: 286px; */
        max-width: 66%;
        height: 73%;
    }

    .case_gold_left .graph_details_box .graph_details_box-hd {
        margin: 10px 0 7px;
        height: 20px;
    }

    .case_gold_left .graph_details_box img.graph-img {
        height: calc(100% - 40px);
        max-width: 100%;
    }

}

@media only screen and (max-width: 1124px) {

    .case_gold_left .graph_details_box .graph_details_box-hd {
        margin: 7px 0 7px;
        font-size: 14px;
    }
}


@media only screen and (max-width: 1100px) {
    .disclosure_text_right {
        padding-left: 100px;
    }

    .model_allocation_list {
        margin-right: 25px;
    }

    .model_graph_slider .mmodel_graph_block_inner {
        /* margin-left: 25px; */
        /* padding: 0;
        border:4px solid #eff3f7; */
    }
}

@media only screen and (max-width: 1000px) {
    .case_gold_left .graph_details_box {
        top: 32px;
    }
}

@media only screen and (max-width: 992px) {
    .case_gold_left .graph_details_box {
        top: 26px;
    }

    .case_gold_left .graph_details_box img.graph-img {
        height: calc(100% - 33px);
    }

    .case_gold_left .graph_details_box .graph_details_box-hd {
        margin: 4px 0 4px;
        font-size: 11px;
        height: 17px;
    }
}




@media only screen and (max-width: 767px) {
    .case_gold_left .graph_details_box {
        top: 44px;
    }

    .case_gold_left .graph_details_box .graph_details_box-hd {
        font-size: 14px;
    }

    .mynavlayr {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 999;
        background: rgb(0 0 0 / 52%);
        display: none;
    }

    .rmenubar {
        position: absolute;
        right: 8px;
        top: 15px;
        z-index: 999;
        display: block;
        font-size: 22px;
        background: transparent;
        padding: 2px 5px;
        border-radius: 0;
        -webkit-transition: all 0.5s ease-out;
    }

    .rmenubar a {
        color: #fff !important;
    }

    .rmenubar a:hover,
    .rmenubar a:focus {
        color: #fff !important;
    }

    .cmenu {
        position: fixed;
        top: -6px;
        left: -320px;
        width: 320px;
        height: 100%;
        z-index: 999;
        background: #ffffff;
        overflow-y: scroll;
        font-size: 16px;
    }

    .cmenu ul {
        padding-top: 138px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .cmenu ul li {
        display: block;
        padding: 0px;
        margin-bottom: 7px;
    }

    .cmenu ul li ul li {
        margin-bottom: 17px
    }

    .logo {
        margin-top: -14px;
    }

    .cmenu .logo {
        width: 100%;
        background: #5d5d4b;
        padding: 16px 20px;
        margin-bottom: 20px;
        background: var(--text-color-dark);
    }

    .cmenu.navopen {
        left: 0;
        -webkit-transition: all 0.5s ease-out;
    }

    .cmenu ul li ul {
        margin: 0;
        padding: 0;
        position: unset;
        z-index: 999;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 0.5s ease-out;
    }

    .cmenu ul li a {
        color: var(--text-color-dark);
        margin-left: 0px
    }

    .cmenu ul li ul li {
        padding: 0px
    }

    .cmenu ul li ul li {
        border-bottom: 0px
    }

    .cmenu ul li ul li:hover {
        background: transparent;
    }

    .cmenu ul li ul li:hover a {
        color: var(--theme-color)
    }

    .cmenu ul li ul a {
        color: var(--text-color-dark);
    }

    .cmenu .dropdownmenu ul {
        display: none;
        transition: all .3s;
        margin-left: 0px;
        padding-top: 0;
    }

    .dropdownmenu.showmenu ul {
        display: block;
        padding-top: 14px !important;
    }

    .dropdownmenu .fa-angle-down {
        transition: 0.5s ease all
    }

    .dropdownmenu.showmenu .fa-angle-down {
        transform: rotate(-180deg);
    }

    .dropdownmenu a {
        color: var(--text-color-dark);
    }

    .dropdownmenu.showmenu a {
        color: var(--theme-color);
    }

    .dropdownmenu.showmenu ul li a {
        color: var(--text-color-dark);
    }

    .dropdownmenu .col-md-4:last-child {
        display: none
    }

    .cmenu ul li:hover ul {
        padding: 0px;
    }

    /*.resrceblck a.text-theme-dark{color: #fff!important}
.resrceblck p{color: #f5f5f5!important}*/
    .resrceblck h4 {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 15px
    }

    .cmenu .dropdownmenu .resrceblck p {
        max-width: 92%;
        line-height: 20px;
        margin-bottom: 30px
    }

    .cmenu .dropdownmenu .resrceblck {
        margin-bottom: 30px !important;
    }
}

@media only screen and (max-width:767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px
    }

    h1 {
        font-size: 2.5rem;
    }

    h4 {
        font-size: 1.45rem;
        line-height: 1.2;
    }

    h6 {
        font-size: 1rem;
    }

    p {
        font-size: 1rem
    }

    .approachsec {
        padding: 70px 0px 40px;
    }

    .approachsec h1 {
        font-size: 1.875rem;
        margin-bottom: 40px;
    }

    .slidersec {
        height: 710px;
    }

    .slidersec h6 {
        font-size: 0.938rem;
        max-width: 90%
    }

    .bannertext2 {
        text-align: left;
        left: unset;
        right: unset;
    }

    .bannertext1,
    .bannertext2,
    .bannertext3 {
        top: 45%
    }

    .bannertext2 h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .bnrlogo2 {
        left: unset;
        right: unset
    }

    .rghtpnl {
        text-align: center;
    }

    .rghtpnl {
        margin-bottom: 30px;
        margin-left: -60px;
    }

    .rghtpnl h2 {
        font-size: 28px;
        text-align: left;
        margin-left: -15px;
        letter-spacing: 0.5px;
        margin-top: 30px;
        line-height: 38px;
    }

    .rghtpnl h6 {
        display: none;
    }

    .rghtpnl img {
        height: 110px;
    }

    .bannertext3 h1 {
        margin-bottom: 20px
    }

    .bannertext3 h6 {
        max-width: 90%
    }

    .approachsec .image {
        max-width: 100%;
        height: 206px;
        /* margin: 0 auto 20px; */
        margin: 0 auto 15px;
    }

    .approachsec p {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .approachsec .col-md-4:last-child p {
        margin-bottom: 0px
    }

    p.sub-heading {
        font-size: 14px !important;
        margin-bottom: 5px !important;
    }

    .vdosec {
        padding: 0 0 40px;
    }

    .vdosec .vdoimg {
        max-width: 100%;
        height: 206px;
        margin: 0 auto 15px;
        /* margin-top: 15px; */
    }

    .vdosec h4 {
        margin-bottom: 30px;
    }

    .newssec {
        /* padding: 25px 0 35px; */
        padding: 5px 0 45px;
    }

    .newssec h1 {
        font-size: 1.875rem;
    }

    .newssec .d-flex h4 {
        font-size: 0.875rem
    }

    .newssec .d-flex h4 img {
        width: auto;
        height: 0.7rem;
    }

    .newssec .d-flex {
        margin-bottom: 35px;
    }

    .newssec .image {
        max-width: 100%;
        height: 206px;
        /* margin: 0 auto 18px; */
        margin: 0 auto;
    }

    .newssec h4 {
        min-height: fit-content
    }

    .newssec p {
        /* margin-top: 18px;
    margin-bottom: 28px; */
        margin-top: 25px;
        margin-bottom: 22px;
    }

    .contactsec {
        position: relative;
        padding: 60px 0 70px;
    }

    .contactsec h1 {
        margin-bottom: 1.9rem;
    }

    .contactsec input {
        margin-bottom: 1.1rem;
    }

    .bg-animation1 img,
    .bg-animation2 img {
        height: 95px
    }

    .bg-animation1 {
        top: -35px
    }

    .bg-animation2 {
        bottom: -50px
    }

    .footer {
        padding: 70px 0 70px
    }

    .footer .ftrghtpnl {
        padding-left: 0;
    }

    .ftrghtpnl .col-md-12 .col-md-6:nth-child(2) ul {
        margin-top: 0px;
    }

    .footer h2 {
        font-size: 2.188rem;
    }

    .footer .ftlfttxt {
        margin-top: 2.5rem;
    }

    .footer .ftlfttxt .animatedbtn {
        margin-top: 0.805rem;
        margin-bottom: 1.885rem;
    }

    .footer .ftrghtpnl ul {
        display: none;
        transition: all .3s;
    }

    .footer_right_block.show ul {
        display: block
    }

    .ftlfttxt p {
        max-width: 100%
    }

    .footer .ftrghtpnl h4 {
        position: relative;
    }

    .footer .ftrghtpnl h4:before {
        content: "\f107";
        font-family: "FontAwesome";
        position: absolute;
        top: 0;
        right: 0;
        font-size: 15px;
        transition: 0.5s ease all;
    }

    .footer .footer_right_block.show h4:before {
        content: "\f106";
    }

    .cpyrghtsec {
        padding-top: 2.1rem;
    }

    .cpyrghtsec ul li {
        width: 49%;
        font-size: 13px;
        margin-right: 0px
    }

    .cpyrghtsec p {
        font-size: 13px
    }

    .cpyrghtsec ul {
        margin-bottom: 30px;
    }

    .fticon {
        margin-top: 1.75rem
    }

    .ftrghtpnl .col-md-6:nth-child(2) ul,
    .ftrghtpnl .col-md-6:nth-child(4) ul {
        padding-left: 0px
    }

    /*========================Inner Banner======================*/
    .innerbnr h1 {
        font-size: 2.5rem
    }

    /*========================News======================*/
    .newssec.innewssec {
        padding: 70px 0 35px;
    }

    /*========================Contact Us======================*/
    .incontactsec {
        padding: 70px 0 70px
    }

    /*========================About Us======================*/
    .inteamsec {
        padding: 75px 0px 25px;
    }

    .inteamsec p {
        margin-bottom: 20px
    }

    .imgcntntsec .abtcntnt {
        padding: 0px
    }

    .imgcntntsec {
        padding: 25px 0 60px;
    }

    .inteamsec .image {
        height: 310px;
        max-width: 100%;
    }

    .imgcntntsec .image {
        height: 330px;
        max-width: 100%;
        margin-top: 25px
    }

    /*========================First Quarter======================*/
    .quartersec {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .quartercrd {
        padding: 30px 20px
    }

    .quartercrd .image,
    .riskbx .image {
        width: 100%;
        /* height: 150px; */
        overflow: hidden;
        margin: 20px auto 30px;
        max-width: 100%;
    }

    .quartercrd h6 {
        margin-top: -32px
    }

    .searchbx input {
        width: 72% !important
    }

    .searchbx .frmbtn {
        width: 28%
    }

    /*========================Risk Definition======================*/
    .risksec {
        padding-top: 70px;
        padding-bottom: 0px;
    }

    .riskbx {
        margin-bottom: 70px;
    }

    .riskbx .image {
        margin-top: 0
    }

    /*========================Fund Family======================*/
    .overview-img img {
        /* height: 250px; */
        width: auto;
    }

    .overview-table th,
    .overview-table tr td a,
    .overview-table td {
        font-size: 0.875rem
    }

    .table-responsive.custom-table {
        overflow-x: auto;
    }

    .white-box.box-auto {
        text-align: left;
    }

    /* .contactsec:before {
        background: url(../images/contact-bg1-mob.png);
        background-repeat: no-repeat;
        top: -25px;
        left: 8px;
    }
    .contactsec:after {
        background: url(../images/contact-bg-btm-mob.png);
        background-repeat: no-repeat;
        width: 38%;
        height: 55px;
    } */


    .performancefrme {
        padding: 50px 0px
    }

    .slick-list {
        padding: 0 20% 0 0 !important;
    }

    .ourmodels {
        padding: 70px 0;
    }

    .model_portfolio_inner h4 {
        font-size: 1.875rem;
    }

    .model_portfolio_inner h5 {
        font-size: 1.25rem;
    }

    .ourmodels_heading h4 {
        padding: 0 0 40px 0;
    }

    .howto_invest {
        padding: 0 0 70px 0;
    }

    .howto_invest_heading {
        text-align: center;
        justify-content: center;
        margin: 0 0 40px 0;
    }

    .howto_invest_heading a.mrbtn {
        display: none;
    }

    .buy_hold {
        margin-top: 40px;
    }

    .invest_process .text_part p {
        max-width: 100%;
    }

    .mob_show_desk_none {
        display: flex;
    }

    .our_approach_new_left {
        padding: 70px 15px 30px;
    }

    .our_approach_new_left_inner {
        max-width: 100%;
    }

    .meet_the_team {
        padding: 70px 0;
    }

    .meet_the_team_text h4 {
        padding: 0 0 40px 0;
    }

    .team_member_gallery {
        flex-direction: column;
    }

    .team_member_gallery li {
        width: 100%;
        margin: 0 0 27px 0;
    }

    .team_member_gallery li:last-child {
        margin: 0;
    }

    .team_member_gallery li img {
        margin: 0 0 15px 0;
    }

    .team_member_gallery li h5 {
        padding: 0 0 10px 0;
    }

    .our_method_right {
        padding-left: 15px;
    }

    .our_method_inner {
        padding: 70px 0;
    }

    .our_method_left {
        display: none;
    }

    .our_method_right .animatedbtn {
        margin-top: 20px;
    }

    .our_method_right .our_method_pic_mobile {
        display: flex;
        margin: 30px auto;
        width: 100%;
    }

    .do_it_yourself {
        padding: 70px 0 70px 0;
    }

    .do_it_yourself h6 {
        padding: 0 0 40px 0;
    }

    img.do_it_img {
        margin: 70px auto 0;
    }

    /*********** disclaimer starts here **************/
    .disclosure_text {
        margin: 70px 0 0;
    }

    .disclosure_block {
        margin: 0 0 30px 0;
    }

    .disclosure_text_left {
        display: none;
    }

    .disclosure_text_right {
        padding-left: 15px;
    }

    .fund_inspection_table {
        margin: 40px auto 140px;
    }

    .fund_inspection_table_holder table thead tr th {
        font-size: 14px;
        min-height: 110px;
    }

    .fund_inspection_table_holder table tbody tr td {
        font-size: 14px;
    }

    .fund_inspection_table {
        margin: 40px auto 70px;
    }

    /*********** common ground starts here **************/
    .quaterly_trade_inner {
        flex-direction: column;
    }

    .quarterly_trade_left,
    .quarterly_trade_right {
        width: 100%;
    }

    .black_header h3 {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .model_asset {
        margin: 70px 0 0 0;
    }

    h4.model_asset_heading {
        padding: 0 0 40px 0;
    }

    .model_allocation {
        padding: 70px 0;
    }

    .performance_table_block {
        padding: 70px 0;
    }

    .common_ground h4 {
        font-size: 1.875rem;
    }

    .common_ground h5 {
        font-size: 1.25rem;
    }

    .model_allocation_blocks {
        display: block;
    }

    .model_allocation_list {
        width: 100%;
    }

    .piechart_holder {
        padding-bottom: 60%;
    }

    .next_update .white_body {
        flex-direction: column;
    }

    .next_update .white_body p {
        padding: 0 0 25px 0;
    }

    .next_update .white_body p:nth-of-type(2) {
        padding-left: 0;
    }

    .bannertext4 .bnrlogo1 {
        bottom: -97px;
    }
}

@media(min-width: 768px) and (max-width: 1024px) {
    h4 {
        font-size: 1.263rem;
        line-height: 1.3;
    }

    .slidersec .container {
        padding-left: 50px;
        padding-right: 50px
    }

    .bannertext2 h1,
    .bannertext3 h1 {
        font-size: 3.5rem
    }

    .rghtpnl img {
        height: 85px;
        margin-top: 35px;
    }

    .rghtpnl h6 {
        left: 18%;
        top: 92%;
        bottom: unset;
    }

    .rghtpnl h2 {
        font-size: 32px;
    }

    .cmenu {
        font-size: 12px
    }

    .cmenu ul li a {
        margin-left: 16px;
    }

    .logo img {
        max-height: 34px
    }

    .cmenu .image {
        height: 150px
    }

    .cmenu ul li:hover ul li {
        padding: 8px 15px 8px;
    }

    .cmenu ul li:hover ul {
        padding: 45px 20px 45px 10px;
    }

    .cmenu .col-md-4:last-child h4 {
        font-size: 1.15rem;
    }

    .cmenu .dropdownmenu .col-md-4:nth-child(1) p,
    .cmenu .dropdownmenu .col-md-4:nth-child(2) p {
        max-width: 95%;
    }

    .cmenu p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 20px;
    }

    .cmenu .dropdownmenu .resrceblck:first-child {
        margin-bottom: 20px;
    }

    .fund_api.news-bnr td {
        padding: 22px 22px;
    }

    .overview-img img {
        /* height: 350px; */
    }

    .quartersec .animatedbtn {
        min-width: auto !important;
        font-size: 10px;
        line-height: 19px;
        padding: 7px 8px;
    }

    .footer .ftrghtpnl {
        padding-left: 0rem;
    }

    .bannertext3 h6 {
        max-width: 100%;
    }

    .bannertext3 h1 {
        max-width: 100%;
        font-size: 3.0rem;
    }

    .bannertext3 h6 {
        max-width: 100%;
    }

    .rghtpnl {
        margin-left: 0;
    }

    .rghtpnl .row {
        margin-left: 0;
        margin-right: 0;
    }
}

@media only screen and (max-width: 600px) {
    .case_gold_left .graph_details_box {
        top: 32px;
    }

    .case_gold_left .graph_details_box .graph_details_box-hd {
        font-size: 11px;
    }
}

@media only screen and (max-width: 500px) {
        .case_gold_left .graph_details_box .graph_details_box-hd {
        font-size: 10px;
    }
}

@media only screen and (max-width: 450px) {
    .case_gold_left .graph_details_box .graph_details_box-hd {
        font-size: 9px;
    }

    .case_gold_left .graph_details_box {
        top: 25px;
    }
}



/* @media(min-width: 320px) and (max-width: 991px){
.quartercrd {
    display: flex;
}
.quartercrd .order-2{
    -ms-flex-order: 3;
    order: 3;
}
.quartercrd .order-3 {
    -ms-flex-order: 2;
    order: 2;
}
} */

@media(max-width: 1199px) {

    .cmenu ul li.dropdownmenu:hover ul,
    .cmenu ul li.dropdownmenu ul {
        margin: 0px 0 0;
        opacity: 0;
        visibility: hidden;
        line-height: 25px;
        -webkit-transition: all 0.5s ease-out;
        padding: 45px 10px 45px 45px;
    }

    .cmenu ul li.dropdownmenu.showmenu ul {
        margin: 0px 0 0;
        opacity: 1;
        visibility: visible;
        line-height: 25px;
        -webkit-transition: all 0.5s ease-out;
        padding: 45px 10px 45px 45px;
    }
}

@media(max-width: 768px) {

    .bannertext1 h1,
    .bannertext2 h1,
    .bannertext3 h1 {
        font-family: 'Times New Roman', Times, serif;
        /* word-wrap: break-word; */
        /* word-break: break-all; */
        font-size: 2.2rem;
    }

    .bannertext1,
    .bannertext2 {
        width: 100%;
        left: 0;
        padding: 20px;
    }

    .slidersec_new h1 {
        font-size: 2.2rem;
        line-height: 3rem;
    }

    .newssec .col-md-4:last-child p {
        margin-bottom: 0;
    }

    .newssec {
        padding: 50px 0;
    }

    .case_gold {
        padding: 50px 0;
    }

    .case_gold_right h1 {
        padding: 50px 0 30px 0;
    }
}

@media(max-width: 360px) {
    .bnrlogo1 {
        bottom: -50px;
    }

    .cmenu {
        width: 80%;
    }
}