.container {
  /* background: #f00; */
}

/*************************************************
                BLUE HEADER STARTS HERE
**************************************************/

.blue_header {
  background: var(--blue);
  min-height: 34px;
  display: flex;
  align-items: center;
}

.blue_header_inner {
}

.blue_header_inner {
  color: var(--white);
  align-items: center;
}

.blue_header_right {
}

.blue_header_right ul.no_style {
  display: flex;
  justify-content: flex-end;
}

.blue_header_right ul li {
  font-size: var(--basic);
  margin-right: 40px;
}

.blue_header_right ul li span {
  margin-right: 6px;
}

.blue_header_right ul li:last-child {
  margin-right: 0;
}

.blue_header_right ul li a {
  color: var(--white);
}

.blue_header_right ul li a:hover {
  color: var(--white);
  text-decoration: underline;
}

/*************************************************
                BLUE HEADER ENDS HERE
**************************************************/

/*************************************************
                NAVBAR STARTS HERE
**************************************************/
.nav_holder {
  min-height: 50px;
}

/* .navbar{
    padding: 5px 0;
}

.navbar-brand{
    padding: 0;
}

.navbar-nav{} */

/* .navbar-expand-lg .navbar-nav .nav-link{
    padding: 0 0 5px;
}

.navbar-light .navbar-nav .nav-link{
    color: var(--black);
    position: relative;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--black);
}

.navbar-light .navbar-nav .nav-link:before{
    content: '';
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    position: absolute;
    background: var(--blue);
    transition: all .3s ease-in-out;
}

.navbar-light .navbar-nav .nav-link:hover:before{
    left: 50%;
    transform: translateX(-50%);
    width: 17px;
} */

.nav_holder {
  transition: all 0.5s ease-out;
}
.nav_holder.sticky {
  position: fixed;
  top: 0;
  z-index: 9;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--white);
}

.nav_holder_block {
  padding: 5px 0;
}

.nav_holder_inner {
  display: flex;
  align-items: center;
}

.navbar-nav {
  flex-grow: 1;
  flex-direction: row;
  justify-content: flex-end;
}

.navbar-nav li {
  font-size: var(--basic);
  line-height: var(--basic);
  margin-right: 20px;
  font-family: var(--regular-font);
}

.navbar-nav li.nav-item-last {
  display: none;
}

.navbar-nav li:last-child {
  margin-right: 0;
}

.navbar-nav li a {
  color: var(--black);
  position: relative;
  padding: 0 0 5px 0;
}

.navbar-nav li a:hover {
  color: var(--black);
  position: relative;
}

.navbar-nav li a:before {
  content: "";
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  position: absolute;
  background: var(--blue);
  transition: all 0.3s ease-in-out;
}

.navbar-nav li a:hover:before,
.navbar-nav li a.active:before {
  left: 50%;
  transform: translateX(-50%);
  width: 17px;
}

.rmenubar {
  position: absolute;
  right: 8px;
  top: 50%;
  z-index: 10;
  font-size: 22px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  -webkit-transition: all 0.5s ease-out;
  transform: translateY(-50%);
  display: none;
}

a.header_contact {
  display: none;
}

.mobile_contact.mobile_show {
  max-width: 290px;
  height: 110px;
  background: var(--blue);
  padding: 30px 20px;
  position: absolute;
  top: 50px;
  right: 8px;
  display: flex;
  align-items: center;
  width: 100%;
  transform: scale(0);
  transform-origin: top right;
  transition: all 0.3s ease-in;
  z-index: 112;
}

.mobile_contact.mobile_show.active {
  transform: scale(1);
}

.mobile_contact.mobile_show:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 11px solid var(--blue);
  right: 48px;
  top: -10px;
  z-index: 100;
}

.mobile_contact.mobile_show ul li {
  margin: 0 0 10px 0;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.5px;
  line-height: 1.313rem;
  display: flex;
  align-items: center;
}

.contact_mobile_menu_show ul li a {
  /* padding: 0 10px; */
  color: var(--white);
}
.mobile_contact.mobile_show ul li span img {
  width: 15px;
  height: 15px;
}

.mobile_contact.mobile_show ul li span img {
  margin: 0 6px 0 0;
}

.nav-icon1 {
  width: 35px;
  height: 21px;
  position: relative;
  margin: 50px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.nav-icon1 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--blue);
  border-radius: 0px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.nav-icon1 span:nth-child(1) {
  top: 0px;
}

.nav-icon1 span:nth-child(2) {
  top: 8px;
}

.nav-icon1 span:nth-child(3) {
  top: 16px;
}

.nav-icon1.open span:nth-child(1) {
  top: 6px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  width: 30px;
}

.nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.nav-icon1.open span:nth-child(3) {
  top: 6px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  width: 30px;
}

.contact_mobile_menu_show {
  display: none;
}

/*************************************************
                NAVBAR ENDS HERE
**************************************************/

/*************************************************
                INDEX BANNER STARTS HERE
**************************************************/
.banner {
  height: 600px;
  background: url("../images/index_banner_bg.jpg") center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

.banner.index_banner h2 {
  color: var(--white);
  text-align: center;
  line-height: 1.1;
  margin: 0 0 30px 0;
  letter-spacing: -2px;
}

.banner.index_banner ul {
  display: flex;
  justify-content: center;
}

.banner.index_banner ul li {
  color: var(--white);
  font-size: var(--basic);
  line-height: 1.213rem;
  text-transform: capitalize;
  margin: 0 30px 0 0;
  position: relative;
  padding-left: 16px;
}

.banner.index_banner ul li:last-child {
  margin-right: 0;
}

.banner.index_banner ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--blue);
  position: absolute;
  z-index: 1;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50px;
}

.banner.index_banner .index_banner_button {
  max-width: 143px;
  width: 100%;
  margin: 55px auto 0;
  outline: none;
  outline: 1px solid var(--blue);
  transition: all 0.3s;
  text-align: center;
}

.banner.index_banner .index_banner_button:hover {
  outline-offset: -5px;
  outline: 1px solid var(--white);
  text-decoration: none;
  color: var(--white);
}

/*************************************************
                INDEX BANNER ENDS HERE
**************************************************/

/*************************************************
                AWARDS STARTS HERE
**************************************************/

.awards {
  background: var(--white);
  padding: 120px 0 115px;
  display: none;
}

.awards_heading {
  text-align: center;
}

.awards_heading h4 {
  font-family: "HelveticaNeue-light", sans-serif;
  color: var(--black);
}

.awards_heading h4 span {
  display: block;
  color: var(--black);
  font-size: 1.375rem;
  text-transform: capitalize;
}

.awards_block {
  margin: 26px 0 0 0;
}

.awards_block_thumb {
  display: flex;
  align-items: center;
}

.awards_pic {
  width: 50%;
  padding-right: 7.5px;
}

.awards_content {
  width: 50%;
  padding-left: 7.5px;
}

.awards_content h6 {
  color: #909090;
  margin: 0 0 28px 0;
}

.awards_content p {
  font-size: 0.938rem;
  line-height: 1.35;
  font-family: "HelveticaNeue-bold", sans-serif;
  margin: 0 0 15px 0;
  color: var(--black);
}

.awards_content p small {
  font-size: 0.75rem;
  line-height: 1.35;
}

.awards_content p:last-of-type {
  margin: 0;
}

/*************************************************
                AWARDS ENDS HERE
**************************************************/

/*************************************************
                PRESS-RELEASE STARTS HERE
**************************************************/
.pressRelease {
  margin: 50px 0 0;
}

.pressReleaseInner {
  max-width: 830px;
  margin: 0 auto;
  background: var(--blue);
  color: var(--white);
  /* box-shadow: 0 0 25px -14px var(--vamtam-accent-color-1); */
  text-align: center;
  display: flex;
  padding: 15px;
  justify-content: center;
}

.pressReleaseInner a {
  color: var(--white);
  font-size: 1rem;
}

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

/*************************************************
                PRESS-RELEASE ENDS HERE
**************************************************/

/*************************************************
                FUNDS SPOTLIGHT STARTS HERE
**************************************************/

.funds_spotlight {
  margin: 120px 0 0;
}

.spotlight_slider {
  margin: 21px -15px 0 -15px;
}

.spotlight_slides_blocks {
}

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

.spotlight_slides_blocks {
  /* background: #f00; */
}

.slides_inner {
  text-align: center;
  background: var(--white);
  padding: 20px 20px 20px;
  min-height: 522px;
  height: 100%;
}

.slides_inner_top_part {
  min-height: 220px;
}

.slides_inner .company_logo_holder {
  margin: 0;
}

.slides_inner .company_logo_holder img {
  display: block;
  margin: 0 auto;
}

.slides_inner .company_name_holder {
  margin: 14px 0 0 0;
}

.slides_inner .company_name_holder img {
  display: block;
  margin: 0 auto;
}

.slides_inner .company_ratings_holder {
  margin: 13px 0 0 0;
}

.slides_inner .company_ratings_holder img {
  display: block;
  margin: 0 auto;
}

.slides_inner p.latest_rate {
  color: var(--grey-primary);
  font-family: var(--regular-font);
  font-size: var(--basic);
  line-height: 1.213rem;
  margin: 20px 0 28px;
}

.slides_inner .company_details_holder {
  /* min-height: 200px; */
}

.slides_inner .company_details_holder h5 {
  text-transform: capitalize;
  color: var(--black);
  line-height: 1.2;
}

.slides_inner .company_details_holder p {
  font-size: var(--basic);
  line-height: 1.213rem;
  color: var(--grey-primary);
  margin: 10px 0 0 0;
}

.spotlight_slider_button.button_blue {
  max-width: 143px;
  height: 40px;
  width: 100%;
  font-size: 0.938rem;
  line-height: 40px;
  display: block;
  margin: 20px auto 10px;

  transition: all 0.3s;
}

.spotlight_slider_button.button_blue:hover {
  outline-offset: -5px;
  outline: 1px solid var(--white);
  text-decoration: none;
  color: var(--white);
}

/*************************************************
                FUNDS SPOTLIGHT ENDS HERE
**************************************************/

/*************************************************
                SUBSCRIBE STARTS HERE
**************************************************/

.subscribe_blue {
  background: var(--blue);
  margin: 0 0 0;
}

.subscribe_blue_block {
  padding: 120px 75px;
  justify-content: space-between;
  align-items: center;
}

.managers_modal_body .subscribe_blue_left p {
  color: #ffffff;
}
.managers_modal_body .footer_bottom p {
  color: #ffffff;
}

.subscribe_blue_left h4 {
  color: var(--white);
}

.subscribe_blue_left h4 span {
  display: block;
  font-size: var(--basic);
  line-height: 19.4px;
}

.subscribe_blue_left p {
  font-size: var(--basic);
  line-height: 19.4px;
  letter-spacing: 0.5px;
  color: #fff;
  margin: 30px 0 0 0;
}

.subscribe_form {
  background: #fff;
  padding: 30px;
  max-width: 360px;
  float: right;
  width: 100%;
}

.subscribe_form .form_block {
  margin: 0 0 13px;
}

.subscribe_form .form_block label {
  font-size: 0.75rem;
  line-height: 1;
  margin: 0 0 4px 0;
}

.subscribe_form .form_block input[type="text"],
.subscribe_form .form_block input[type="tel"],
.subscribe_form .form_block input[type="email"] {
  width: 100%;
  height: 40px;
  background: #f6f6f6;
  padding: 0 14px;
  border: 0px none;
}

.subscribe_form .form_block_accept_terms span {
  font-size: 0.75rem;
}

.subscribe_form .form_block.form_block_accept_terms {
  margin-bottom: 30px;
}

/*************************************************
                SUBSCRIBE ENDS HERE
**************************************************/

/*************************************************
                FEATURED LIST STARTS HERE
**************************************************/
.feature_list {
  margin: 0 0 119px 0;
}

.feature_list_inner {
  padding: 0 75px;
}

.feature_list_block {
}

.feature_list_block .feature_block {
  padding: 30px;
  background: var(--white);
  height: 100%;
}

.feature_list_block .feature_block h5 {
  font-size: 1.625rem;
  padding: 0 0 10px 0;
}

.feature_list_block .feature_block p {
  color: var(--grey-primary);
  padding: 0 0 20px 0;
}

.feature_list_block .feature_block a {
  font-size: var(--basic);
  color: var(--blue);
  font-family: var(--regular-font);
  text-decoration: underline;
}

.feature_list_block .feature_block a:hover {
  text-decoration: none;
}

/*************************************************
                FEATURED LIST ENDS HERE
**************************************************/

/*************************************************
                RECENT WEBINARS STARTS HERE
**************************************************/
.recent_webinars {
  margin: 0 0 120px 0;
}

.recent_webinars h4 br {
  display: none;
}

.recent_webinars_slider {
  margin: 21px -15px 0 -15px;
}

.webinars_blocks {
}

.webinars_inner {
  background: #fff;
}

.webinars_thumbnail {
  height: 150px;
  overflow: hidden;
  position: relative;
}

.webinars_thumbnail img {
  display: block;
  width: 100%;
  object-fit: cover;
}

button.play_video {
  /* background: url(../images/podcast_play.png) 0 0  no-repeat; */
  width: 34px;
  height: 34px;
  border-radius: 50%;
  /* background-size: cover; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  text-align: center;
  line-height: 34px;
  outline: none;
  border: 0px none;
}

.webinars_details {
  padding: 10px 20px 20px;
}

button.play_video .fa {
  color: var(--blue);
  font-size: 15px;
}

h6.webinars_date {
  font-size: var(--basic);
  color: var(--grey-primary);
  margin: 0 0 18px;
}

h5.webinars_heading {
  font-size: 1.25rem;
  line-height: 1.375;
  font-family: "HelveticaNeue-bold", sans-serif;
  margin: 0 0 10px 0;
}

p.webinars_description {
  color: var(--grey-primary);
}

.webinars_details button.tag {
  width: 88px;
  height: 26px;
  border-radius: 100vmax;
  line-height: 26px;
  text-align: center;
  font-size: var(--basic);
  color: var(--black);
  background: transparent;
  border: 1px solid var(--black);
  margin: 32px 0 0 0;
  transition: all 0.4s ease-in-out;
}

.webinars_details button.tag:hover {
  background: var(--black);
  color: var(--white);
}

/*************************************************
                RECENT WEBINARS ENDS HERE
**************************************************/

/*************************************************
                FOOTER STARTS HERE
**************************************************/

.footer {
  background: var(--black-primary);
  padding: 120px 0 0 0;
}

.footer_inner {
}

.footer_left {
  display: flex;
}

.footer_contact {
  width: 40%;
}

.footer_contact ul.no_style {
  margin: 30px 0 0 0;
}

.footer_contact ul li {
  font-size: var(--basic);
  line-height: 19.4px;
  letter-spacing: 0.5px;
  color: #fff;
  margin: 0 0 24px 0;
}

.footer_links {
  display: flex;
  width: 60%;
  padding-left: 20px;
}

.footer_links ul {
  width: 50%;
}

.footer_links ul li {
  font-size: var(--basic);
  line-height: 19.4px;
  margin: 0 0 15px 0;
  font-family: var(--regular-font);
}

.footer_links ul li a {
  color: var(--white);
  text-decoration: none;
}

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

.footer_right {
  background: var(--white);
  padding: 30px;
}

.footer_right h5 {
  font-size: 1.625rem;
  color: var(--black);
  margin: 0 0 15px 0;
}

.footer_right form {
}

.footer_right .form_block {
  margin: 0 0 13px;
}

.footer_right .form_block label {
  font-size: 0.75rem;
  font-family: var(--regular-font);
  margin: 0 0 5px 0;
  display: block;
}

.footer_right .form_block input[type="text"],
.footer_right .form_block input[type="tel"],
.footer_right .form_block select {
  width: 100%;
  height: 40px;
  background: #f6f6f6;
  padding: 0 14px;
  border: 0px none;
  outline: none;
}

.footer_right .form_block select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../images/custom-dropdown-arrow.svg") 96% center no-repeat
    #f6f6f6;
}

.form_block_accept_terms {
  display: flex;
}

.form_block_accept_terms input[type="checkbox"] {
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  border-radius: 0px !important;
}

.form_block_accept_terms span {
  color: var(--black);
  letter-spacing: 0.5px;
  font-weight: bold;
  margin: 0 0 0 8px;
}

.call_back_button {
  height: 40px;
  line-height: 40px;
  width: 100%;
  display: block;
  font-size: 15px;
  transition: all 0.3s;
}

.call_back_button:hover {
  outline-offset: -5px;
  outline: 1px solid var(--white);
  text-decoration: none;
  color: var(--white);
}

.footer_bottom {
  padding: 60px 0 60px 0;
  color: var(--white);
}

.footer_bottom_inner {
  border-top: 1px solid #363535;
  padding-top: 20px;
}

.footer_bottom p {
  margin: 0 0 15px 0;
}

.footer_bottom h6 {
  line-height: 19.4px;
  font-family: var(--regular-font);
}

/*************************************************
                FOOTER ENDS HERE
**************************************************/

/*************************************************
                PODCAST PAGE STARTS HERE
**************************************************/
.podcast_banner {
  background: url(../images/podcasts.jpg) center center no-repeat;
}

.podcastdetails {
  text-align: center;
}

.podcastdetails_heading_block {
  padding: 80px 0 30px;
}

.podcastdetails_heading_block h4 {
  text-align: center;
}

.podcast_schedule {
  margin: 0 0 80px;
}

.podcast_schedule_inner p {
  color: var(--grey-primary);
}

.podcast_table_holder {
  margin: 20px 0 0 0;
  /* border-collapse: separate;
    border-spacing: 0 1em; */
  overflow-x: auto;
}

.podcast_table {
  width: 1110px;
}

/* .podcast_table_holder table, .podcast_table_holder th, .podcast_table_holder td {
    border: 1px solid black;
  } */

/* .podcast_table_holder table{
    border-spacing: 10px;
} */

.podcast_table tr {
  height: 53px;
  border-bottom: 5px;
}

.podcast_table tr:nth-of-type(odd) {
  background: #eff8ff;
}

.podcast_table tr:nth-of-type(even) {
  background: #fff;
}

.podcast_table tr td {
  font-size: var(--basic);
}

.listen_podcast {
  background: transparent;
  border: 2px solid var(--blue);
  width: 100%;
  height: 53px;
  color: var(--blue);
  font-size: var(--basic);
  font-family: "HelveticaNeue-bold", sans-serif;
}

.listen_podcast .fa {
  color: var(--blue);
  margin-right: 10px;
}

.podcast_date {
  padding: 0 17px;
  font-family: "HelveticaNeue-bold", sans-serif;
  width: 214px;
  border-right: 2px solid #f6f6f6;
}

.podcast_name {
  padding: 0 17px;
  width: 700px;
}
/*************************************************
                PODCAST PAGE ENDS HERE
**************************************************/

/*************************************************
                FAQ PAGE STARTS HERE
**************************************************/
.faq_banner {
  background: url(../images/faq.jpg) center center no-repeat;
}

.faq_body {
  margin: 80px 0 95px;
}

.faq_filter .nav {
  flex-direction: column;
}

.faq_filter .nav li {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-family: var(--light-font);
  position: relative;
}

.faq_filter .nav li a {
  color: var(--grey-primary);
  transition: all 0.3s ease-in-out;
  position: relative;
  padding: 0 0 0 26px;
}

.faq_filter .nav li a:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--grey-primary);
  z-index: 1;
}
.faq_filter .nav li a.activeNow:before,
.faq_filter .nav li a:hover:before {
  background: var(--blue);
}

.faq_filter .nav li a.activeNow,
.faq_filter .nav li a:hover {
  text-decoration: none;
  color: var(--blue);
}

.faq_body .accordion .card-header {
  padding: 0px;
}

.faq_body .accordion .category {
  margin: 0 0 10px 0;
}

.faq_body .accordion .card {
  border: var(--border-radius-none);
}

.faq_body .accordion .card-header h2 button {
  /* padding: 15px 20px 20px 15px; */
  padding: 15px 56px 15px 20px;
  background: var(--grey-third);
  border-radius: var(--border-radius-none);
  font-family: var(--basic);
  font-family: var(--bold-font);
  color: var(--blue);
  text-decoration: none;
  position: relative;
}

.faq_body .accordion .card-header h2 button:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  background: url(../images/accordian_caret.png) 0px 0px no-repeat;
  z-index: 1;
  right: 20px;
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.faq_body .accordion .card-header h2 button.collapsed {
  color: var(--black);
  text-decoration: none;
}

.faq_body .accordion .card-header h2 button.collapsed:before {
  transform: translateY(-50%) rotate(-180deg);
}

/* .faq_body .accordion .category.active h2 button.collapsed{
    color: var(--black);
} */

.faq_body .accordion .card-header h2 button.collapsed:hover {
  text-decoration: none;
  color: var(--blue);
}

.faq_body .accordion .card-body {
  background: var(--grey-third);
  padding: 0 20px 35px;
}

.faq_body .accordion .card-body p {
  color: var(--grey-primary);
  margin-bottom: 20px;
}

.faq_body .accordion .card-body p:last-child {
  margin-bottom: 0;
}

.category {
  display: none;
}

.category.activeNow {
  display: block;
  -webkit-animation: fadeIn 0.65s ease forwards;
  animation: fadeIn 0.65s ease forwards;
}
/*************************************************
                FAQ PAGE ENDS HERE
**************************************************/

/*************************************************
                INSIGHTS PAGE STARTS HERE
/************************************************/

.insightsPage {
  background: var(--white);
}

.insights_banner {
  background: url(../images/insights_banner.jpg) center center no-repeat;
}

.insights_body {
  padding: 80px 0 60px 0;
  background: var(--white);
}

.insights_inner {
  padding: 0 75px;
}

.insights_filter {
  margin: 0 0 10px;
}

.insights_filter ul.nav.nav-pills {
}

.insights_filter ul.nav.nav-pills li {
  margin: 0 10px 0 0;
}

.insights_filter ul.nav.nav-pills li a {
  padding: 8px 12px;
  background: transparent;
  border: 1px solid #000000;
  border-radius: 100vmax;
  transition: all 0.3s;
  display: block;
  transition: all 0.3s ease-in-out;
  color: var(--black);
}

.insights_filter ul.nav.nav-pills li a:hover,
.insights_filter ul.nav.nav-pills li a.active {
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
  text-decoration: none;
}

.insights_article {
}

.insights_article .article_inner {
  padding: 30px 0;
  border-top: 1px solid #f7f7f7;
  border-bottom: 1px solid #f7f7f7;
}

.article_thumb {
}

.article_thumb h6.photo_courtesy {
  font-size: 14px;
  font-weight: normal;
  font-family: "ProximaNova-Regular", Helvetica;
  color: var(--grey-primary);
  margin: 0;
  text-align: left;
  margin: 3px 0 0 0;
}

.article_text {
  padding: 0 0;
}

.article_text h2.article_header {
  font-size: 1.25rem;
  line-height: 1.375rem;
  font-family: var(--bold-font);
  margin: 0 0 10px;
}

.article_text p,
.article_text p a {
  color: var(--grey-primary);
  margin: 0 0 15px;
  line-height: 1rem;
}

.article_text p a {
  text-decoration: underline;
}

.article_bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 20px 0 0 0;
}

.article_text .article_button {
  max-width: 154px;
  width: 100%;
  outline: none;
  outline: 1px solid var(--blue);
  transition: all 0.3s;
  text-align: center;
}

.article_text .article_button:hover {
  outline-offset: -5px;
  outline: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
}

h6.published_date {
  font-size: var(--basic);
  color: var(--grey-primary);
}

/*.article_inner{
    display: none;
}*/

.article_inner.activeNow {
  display: flex;
  -webkit-animation: fadeIn 0.65s ease forwards;
  animation: fadeIn 0.65s ease forwards;
}
/*************************************************
                INSIGHTS PAGE ENDS HERE
/************************************************/

/*************************************************
                WEBINARS PAGE STARTS HERE
/************************************************/
.webinars_banner {
  background: url(../images/webinars_banner.jpg) 0px 0px no-repeat;
}

.webinars_gallery {
  margin: 80px 0 40px;
}

ul.webinars_gallery_block {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-left: -1%;
  margin-right: -1%;
}

li.webinars_gallery_item {
  margin-bottom: 20px;
  background: #fafafa;
  width: 23%;
  margin: 0 1%;
}

.webinars_video_block {
  min-height: 150px;
  position: relative;
}

.webinars_video_block img {
  width: 100%;
  height: 150px;
  position: relative;
  object-fit: cover;
}

.webinars_video_det {
  padding: 20px 20px 38px;
}

.webinars_video_det h5 {
  font-size: 1.25rem;
  line-height: 1.375rem;
  font-family: var(--bold-font);
}

.webinars_video_det p {
  line-height: 1rem;
  color: var(--grey-primary);
  margin: 10px 0 20px 0;
}

.webinars_video_det h6.video_date {
  font-size: 0.75rem;
  color: var(--black);
  font-family: var(--regular-font);
}
/*************************************************
                WEBINARS PAGE ENDS HERE
/************************************************/

/*************************************************
                BLOG PAGE STARTS HERE
/************************************************/

.blog-details {
  background: var(--white);
}

.blog-section h5 {
  font-size: 1.625rem;
  line-height: 1.875rem;
}

.blog-section {
  background-color: #fff;
}

.blog-section h5,
.blog-section h4 {
  margin: 40px 0 20px 0;
}

.blog-section p {
  font-weight: 400;
  color: #909090;
  margin-bottom: 20px;
}

.blog-section .author-box h3 {
  font-family: var(--bold-font);
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
}

.blog-section .author-box img {
  border-radius: 100%;
  overflow: hidden;
}

.blog-section .author-box p {
  font-family: var(--regular-font);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
}

.blog-section p.date {
  font-family: var(--regular-font);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #909090;
  margin-bottom: 0;
}

.blog-slider {
  margin: 80px 0;
  background-color: #fff;
}

.blog-slider h2 {
  font-family: var(--bold-font);
  font-weight: 700;
  font-size: 35px;
  line-height: 43px;
  color: #000000;
  margin-bottom: 30px;
}

.blog-slider .suggested-blog .img-box {
  max-height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-slider .suggested-blog .img-box p {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #fff;
  padding: 6px 10px;
  font-family: var(--regular-font);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  color: #000000;
  border: 0.5px solid #000000;
  border-radius: 35px;
}
.blog-slider .suggested-blog .img-box img {
  width: 100%;
}
.blog-slider .suggested-blog .slider-box {
  /* max-width: 260px; */
  padding: 0 20px;
}
.blog-slider .suggested-blog .slider-box h2 {
  font-family: var(--bold-font);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
  margin-top: 10px;
  margin-bottom: 0;
  min-height: 90px;
}
.blog-slider .suggested-blog .slider-box .flot-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.blog-slider .suggested-blog .slick-list {
  margin-left: -70px;
}

.suggested-blog .spotlight_slides_blocks .flot-box a {
  font-family: var(--bold-font);
}
/*************************************************
                BLOG PAGE ENDS HERE
/************************************************/

/*************************************************
                SUBSCRIBE PAGE STARTS HERE
/************************************************/

.modal-dialog {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  margin: 0;
}

.modal-dialog .modal-body {
  min-height: 200px;
}

.subscribe {
  /* padding: 80px 0; */
  padding: 50px 0;
}

.subscribe .subscribe_inner {
}

.subscribe .subscribe_form_holder {
  /* max-width: 300px; */
}

.subscribe_form_holder h5 {
  text-align: center;
  color: var(--black);
  margin: 0 0 5px 0;
}

.subscribe_form_holder p {
  font-size: 0.75rem;
  line-height: 1.063rem;
  margin: 0 0 30px;
  color: var(--black);
  text-align: center;
}

.subscribe_inner .subscribe_form {
  width: 100%;
  padding: 0;
}

.subscribe_form .form-group {
  margin: 0 0 10px 0;
}

.subscribe_form .form-group label {
  font-size: 0.75rem;
  color: var(--black);
  margin: 0 0 4px 0;
  letter-spacing: 0.5px;
}

.errpop {
  margin: 10px 0 0 0;
  color: #f00;
  font-size: 1rem;
}

.subscribe_form .form-group.form-check {
  display: flex;
  align-items: center;
}

.subscribe_form .form-group.form-check label {
  margin: 0;
}

.subscribe .subscribe_form .form-group {
  margin: 10px 0 10px 0;
}

.subscribe .subscribe_form .form-group-double {
  display: flex;
  justify-content: space-between;
}

.subscribe .subscribe_form .form-group-double .form-group-big {
  width: 59%;
}

.subscribe .subscribe_form .form-group-double .form-group-small {
  width: 39%;
}

.subscribe .subscribe_form input[type="text"].form-control,
.subscribe .subscribe_form input[type="email"].form-control,
.subscribe .subscribe_form select.form-control,
.subscribe .subscribe_form input[type="tel"].form-control {
  /* max-width: 300px; */
  width: 100%;
  height: 39px;
  padding: 8px 14px;
  background: #f6f6f6;
  width: 100%;
  border-radius: 0px !important;
  border: 0px none;
}

button.continue_btn {
  width: 100%;
  margin: 20px 0;
  transition: all 0.3s;
}

button.continue_btn:hover {
  outline-offset: -5px;
  outline: 1px solid var(--white);
  text-decoration: none;
  color: var(--white);
}

.subscribe p a {
  text-decoration: underline;
  color: var(--black);
}

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

#registermsgModal h6 {
  text-align: center;
}

h6.already_user {
  text-align: center;
}

.subscribe_form .form-group input[type="checkbox"]#exampleCheck1 {
  position: relative;
  margin-top: 0;
  margin-right: 10px;
}

.forgot_password_box {
}

.forgot_password_box input[type="email"] {
  width: 100%;
}

button.reset_send {
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

#contactConfirm .modal-content {
  text-align: center;
  padding-top: 30px;
}

#contactConfirm .modal-content h5 {
  margin-bottom: 20px;
}

#contactConfirmNew .modal-content {
  text-align: center;
  padding-top: 30px;
}

#contactConfirmNew .modal-content h5 {
  margin-bottom: 20px;
}
/*************************************************
                SUBSCRIBE PAGE ENDS HERE
/************************************************/

/*************************************************
                ADVANTAGE PAGE STARTS HERE
**************************************************/
.advantage_banner {
  background: url(../images/advantage.jpg) center center no-repeat;
}

.innerpage_banner.advantage_banner h1 {
  padding-top: 230px;
  padding-bottom: 66px;
  font-family: var(--medium-font-new);
}

.advantage_body {
  /* margin: 80px 0 95px; */
  background: var(--white);
  padding: 120px 0;
}

.advantage_inner {
}

.advantage_headings {
  text-align: center;
}

.advantage_headings h4 {
  font-family: var(--light-font-new);
  color: var(--black);
  /* font-size: 2.5rem; */
  margin: 0 0 20px 0;
}

.advantage_headings h4 span {
  display: block;
  color: var(--black);
  font-size: 1.375rem;
  font-family: var(--bold-font);
  padding: 15px 0 0 0;
}

.advantage_headings h5 {
  font-family: var(--regular-font);
  letter-spacing: 0.5px;
  font-size: 0.875rem;
  line-height: 1.213rem;
}

.advantage_items {
  margin: 40px 0 0 0;
  display: flex;
  justify-content: space-between;
}

.advantage_items_blocks {
  width: 19%;
}

.inner_advantage {
  border-radius: var(--border-radius-none);
  background: #eff8ff;
  min-height: 173px;
  cursor: pointer;
  text-align: center;
  padding: 30px;
  transition: all 0.3s;
}

.inner_advantage img.advantage_icon {
  display: block;
  margin: 0 auto 20px;
  /* height: 77px; */
  /* width: auto; */
  width: 44px;
  height: 44px;
}

.inner_advantage h5 {
  font-size: 0.875rem;
  line-height: 1;
  color: var(--blue);
  transition: all 0.3s;
  font-family: var(--bold-font);
  margin: 0 0 23px 0;
}

.inner_advantage:hover,
.active .inner_advantage {
  background: var(--blue);
  color: var(--white);
}

.inner_advantage:hover img.advantage_icon,
.active .inner_advantage img.advantage_icon {
  filter: invert(0) sepia(0) saturate(1) hue-rotate(0deg) brightness(5);
}

.inner_advantage:hover h5,
.active .inner_advantage h5 {
  color: var(--white);
}

.inner_advantage span {
  /* width: 18px; */
  /* height: 18px; */
  /* border-radius: 50%; */
  display: inline-block;
  /* margin: 0 auto; */
  /* position: relative; */
  /* font-size: 1rem; */
  transition: all 0.3s;
  /* font-family: var(--bold-font); */
}

.inner_advantage:hover span {
  filter: invert(0) sepia(0) saturate(1) hue-rotate(0deg) brightness(5);
}

.active .inner_advantage span {
  transform: rotate(-45deg);
  filter: invert(0) sepia(0) saturate(1) hue-rotate(0deg) brightness(5);
}

.inner_advantage span:hover {
  /* background: var(--blue); */
}

.detail_advantage {
  display: flex;
  margin: 60px 0;
  align-items: center;
  display: none;
}

.detail_advantage_mobile {
  display: none;
}

.detail_advantage_left {
  width: 60%;
}

.detail_advantage_left h5 {
  /* font-size: 1.875rem;
    line-height: 2.25rem; */
  font-family: var(--light-font);
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  font-size: 1.625rem;
}

/* .detail_advantage_left h5:before{
    content: "";
    width: 100%;
    height: 4px;
    background: var(--blue);
    bottom: 0px;
    left: 0;
    bottom: 0;
    position: absolute;
} */

.detail_advantage_left p {
  /* margin: 15px 0 0 0; */
  max-width: 440px;
  font-size: 1.125rem;
  line-height: 1.375rem;
  letter-spacing: 0.5px;
}

/*
.detail_advantage_left p{
    font-size: 1.563rem;
    line-height: 2.063rem;
} */

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

.detail_advantage_right {
  width: 40%;
  /* text-align: right; */
  text-align: center;
  animation: 0.5s ease-out 0s 1 slideInFromLeft;
}

/*************************************************
                ADVANTAGE PAGE STARTS HERE
**************************************************/

/*************************************************
                OUR-MANAGERS PAGE STARTS HERE
**************************************************/
.manager_banner {
  background: url(../images/manager_banner.jpg) center center no-repeat;
}

.manager_body {
  margin: 80px 0 0 0;
}

.each_advantage .mobile_visible {
  display: none;
}
/*************************************************
                OUR-MANAGERS PAGE ENDS HERE
**************************************************/

/*************************************************
                MUTUAL FUNDS PAGE STARTS HERE
**************************************************/

.mutual_funds_banner {
  background: url(../images/mutual_funds_banner.jpg) center center no-repeat;
}

.innerpage_banner.mutual_funds_banner h1 {
  padding-top: 256;
  padding-bottom: 40px;
}

.mutual_funds_body {
  padding: 120px 0;
}

.mutual_funds_body .mutual_funds_row {
  align-items: center;
  margin: 0 0 120px 0;
}

.mutual_funds_body .mutual_funds_row:last-child {
  margin: 0;
}

.mutual_funds_text_block {
  padding: 0 15px 0 50px;
}

.mutual_funds_text_block h4 {
  padding: 0 0 20px 0;
}

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

.mutual_funds_text_block ul li {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-family: var(--regular-font);
  position: relative;
  padding: 0 0 0 16px;
  margin-bottom: 10px;
}

.mutual_funds_text_block ul li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--blue);
}

.mutual_funds_pic_block {
  min-height: 600px;
  padding-left: 0;
  padding-right: 0;
}

.mutual_funds_pic_block img {
  height: 600px;
  width: auto;
  object-fit: cover;
}

.mutual_funds_row.reverse_order .mutual_funds_text_block {
  order: 2;
}

.mutual_funds_row.reverse_order .mutual_funds_pic_block {
  order: 1;
}

/*************************************************
                MUTUAL FUNDS PAGE ENDS HERE
**************************************************/

/*************************************************
                PORTFOLIO MANAGERS PAGE STARTS HERE
**************************************************/

.managerspage {
  background: var(--white);
}

.managers_banner {
  background: url(../images/portfolio_managers_banner.jpg) center center
    no-repeat;
}

.managers_banner h1 {
  font-family: var(--medium-font-new);
  /* padding-top: 256;*/
  padding-bottom: 40px;
}

.managers_body {
  padding: 120px 0;
  background: #fff;
}

.managers_body .managers_row {
  margin: 0 0 120px 0;
}

.managers_body .managers_row:last-child {
  margin: 0;
}

.managers_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 40px;
}

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

.managers_logo_holder img {
  max-width: 196px;
}

.managers_company_details {
}

.managers_company_details p {
  max-width: 404px;
  line-height: 1.25rem;
  letter-spacing: 0.5px;
}

.managers_company_details p span {
  width: 13px;
  height: 10px;
  display: inline-block;
  margin-right: 9px;
}

.managers_right {
  padding-left: 0;
  padding-right: 0;
}

.managers_thumb_row {
  display: flex;
  position: relative;
}

.managers_thumb {
  width: 30%;
  width: 200px;
  margin-right: 20px;
}

.managers_pic img {
  width: 100%;
  min-height: 347px;
  object-fit: cover;
}

.managers_info {
}

.managers_info h5 {
  font-size: 1.125rem;
  line-height: 1;
  color: var(--black);
  font-family: var(--medium-font-new);
  padding: 20px 0 4px 0;
}

.managers_info h6 {
  font-size: 0.875;
  line-height: 1.125rem;
  color: var(--black);
  font-family: var(--regular-font);
  color: var(--grey-primary);
  padding: 0 0 20px 0;
}

.managers_info a {
  font-size: 0.875rem;
  color: var(--blue);
  text-decoration: underline;
  font-family: var(--bold-font);
}

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

.managers_thumb_row .slick-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 1;
  color: transparent;
  border-radius: 50%;
  border: 0px none;
  outline: none;
  background-size: cover;
}

.managers_thumb_row .slick-next.slick-arrow {
  right: 8px;
  top: -60px;
  background: url(../images/slider-arrow-right-nor.svg) 0 0 no-repeat;
}

.managers_thumb_row .slick-next.slick-arrow:hover {
  background: url(../images/slider-arrow-right-hov.svg) 0 0 no-repeat;
}

.managers_thumb_row .slick-prev.slick-arrow {
  right: 56px;
  top: -60px;
  background: url(../images/slider-arrow-left-nor.svg) 0 0 no-repeat;
}

.managers_thumb_row .slick-prev.slick-arrow:hover {
  background: url(../images/slider-arrow-left-hov.svg) 0 0 no-repeat;
}

.managers_thumb_row ul.slick-dots {
  list-style-type: none;
  display: flex;
  justify-content: center;
  margin: 30px 0 0 0;
}

.managers_thumb_row ul.slick-dots li {
  margin: 0 6px 0 0;
  list-style-type: none;
}

.managers_thumb_row ul.slick-dots li button {
  width: 8px;
  height: 8px;
  background: var(--grey-secondary-one);
  border-radius: 50px;
  color: transparent;
  border: 0px none;
  outline: none;
}

.managers_thumb_row ul.slick-dots li.slick-active button {
  background: var(--grey-primary);
}

.managers_modal {
  display: none;
  position: fixed !important;
  z-index: 999999 !important;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: scroll;
  /* border: 10px solid red;*/
}

.managers_modal_content {
  max-height: 90vh;
  overflow-y: auto;

  background-color: #fff;
  margin: auto;
  padding: 40px;
  padding-bottom: 20px;
  border: 0;
  width: 80%;
  max-width: 720px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.managers_modal_header {
  display: flex;
  justify-content: space-between;
  margin: 0 0 40px 0;
}

.managers_header_left {
  width: 30%;
}

.managers_header_left img {
}

.managers_header_right {
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 15px;
}

.managers_modal_logo_part {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.managers_modal_logo_part img {
  margin-bottom: 10px;
}

.managers_modal_logo_part img:last-child {
  margin-bottom: 0px;
}

.managers_modal_logo_part img.height_150 {
  height: 150px;
  width: auto;
}

.managers_modal_info_part {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.managers_modal_info_part h5 {
  font-size: 1.125rem;
  line-height: 1;
  color: var(--black);
  font-family: var(--medium-font-new);
}

.managers_modal_info_part h6 {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-family: var(--regular-font);
  color: var(--grey-primary);
  padding: 5px 0 0 0;
}

.managers_modal_body p,
.managers_modal_body ul {
  line-height: 1.25rem;
  color: var(--grey-primary);
  margin-bottom: 10px;
}

.managers_modal_body ul {
  list-style-position: inside;
}

.managers_modal_body ul li {
  padding: 10px 0;
}

.managers_modal_body p:last-child {
  margin-bottom: 10px;
}

.crs_manager_modal {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 30px;
  height: 30px;
}

.crs_manager_modal a {
  font-family: var(--light-font);
  font-size: 26px;
  color: var(--blue);
  width: 24px;
  height: 2px;
  background: var(--blue);
  display: block;
  transform: rotate(45deg);
  top: 50%;
  position: relative;
  text-align: center;
}

.crs_manager_modal a:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--blue);
  display: block;
  transform: rotate(-95deg);
  top: 0;
  left: 0;
}

.crs_manager_modal a,
.crs_manager_modal a:hover {
  text-decoration: none;
}

.special_subscribe .subscribe_blue_left h4 {
  font-family: var(--light-font-new);
}

.special_subscribe .subscribe_blue_left p {
  margin: 20px 0 0 0;
}
/*************************************************
                PORTFOLIO MANAGERS PAGE ENDS HERE
**************************************************/

/*************************************************
                FUND DOCUMENTS PAGE STARTS HERE
**************************************************/

.fund_document_banner {
  background: url(../images/fund_documents_banner.jpg) center center no-repeat;
}

.fund_document_banner h1 {
  font-family: var(--medium-font-new);
  /* padding-top: 256;*/
  padding-bottom: 40px;
}

.fund_document_body {
  padding: 120px 0;
  background: var(--grey);
}

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

.fund_blocks_holder .fund_block {
  background: #fff;
  padding: 40px;
  width: 32%;
  text-align: center;
  margin: 0 0 20px 0;
}

.fund_blocks_holder .fund_block h5 {
  font-family: var(--light-font-new);
  font-size: 1.625rem;
  color: var(--black);
  margin: 20px 0;
  text-transform: capitalize;
}

.fund_blocks_holder .fund_block button.view_documents,
.fund_blocks_holder .fund_block a.view_documents {
  max-width: 176px;
  width: 100%;
  margin: 0 auto;
  outline: 1px solid var(--blue);
  transition: all 0.3s;
}

.fund_blocks_holder .fund_block button.view_documents:hover,
.fund_blocks_holder .fund_block a.view_documents:hover {
  outline-offset: -5px;
  outline: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
}

.fund_text_holder {
  display: flex;
}

.fund_text_left,
.fund_text_right {
  width: 50%;
  margin: 20px 0 0 0;
}

.fund_text_left {
  padding: 0 10px 0 0;
}

.fund_text_right {
  padding: 0 0 0 10px;
}

.fund_text_left p,
.fund_text_right p {
  margin: 0 0 15px 0;
  font-size: 0.75rem;
  line-height: 0.875rem;
  color: var(--black);
}

.fund_blocks_holder .slick-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 1;
  color: transparent;
  border-radius: 50%;
  border: 0px none;
  outline: none;
  background-size: cover;
}

.fund_blocks_holder .slick-next.slick-arrow {
  right: 0;
  top: -60px;
  background: url(../images/slider-arrow-right-nor.svg) 0 0 no-repeat;
}

.fund_blocks_holder .slick-next.slick-arrow:hover {
  background: url(../images/slider-arrow-right-hov.svg) 0 0 no-repeat;
}

.fund_blocks_holder .slick-prev.slick-arrow {
  right: 48px;
  top: -60px;
  background: url(../images/slider-arrow-left-nor.svg) 0 0 no-repeat;
}

.fund_blocks_holder .slick-prev.slick-arrow:hover {
  background: url(../images/slider-arrow-left-hov.svg) 0 0 no-repeat;
}

.fund_blocks_holder ul.slick-dots {
  list-style-type: none;
  display: flex;
  justify-content: center;
  margin: 30px 0 0 0;
}

.fund_blocks_holder ul.slick-dots li {
  margin: 0 6px 0 0;
  list-style-type: none;
}

.fund_blocks_holder ul.slick-dots li button {
  width: 8px;
  height: 8px;
  background: var(--grey-secondary-one);
  border-radius: 50px;
  color: transparent;
  border: 0px none;
  outline: none;
}

.fund_blocks_holder ul.slick-dots li.slick-active button {
  background: var(--grey-primary);
}
/*************************************************
                FUND DOCUMENTS PAGE ENDS HERE
**************************************************/

/*************************************************
                OUR FUNDS PAGE STARTS HERE
**************************************************/

.ourfunds_banner {
  background: url(../images/our_funds_banner.jpg) center center no-repeat;
}

.ourfunds_banner h1 {
  font-family: var(--medium-font-new);
  /* padding-top: 256;*/
  padding-bottom: 40px;
}

/* .ourfunds_body .container{
    overflow: scroll;
} */

.ourfunds_body {
  padding: 120px 0 20px;
}
.inRisk {
  padding-bottom: 40px;
  line-height: 1.6;
}

.ourfunds_table {
  width: 1140px;
}

.table-sm td,
.table-sm th {
  padding: 0;
  vertical-align: top;
}

.table-sm th {
  background: var(--blue);
  min-height: 55px;
  line-height: 55px;
  padding: 0 16px;
  font-family: var(--bold-font);
  font-size: 1.125rem;
  color: var(--white);
}
.ourfunds_table {
  background: #fff;
}

.ourfunds_table > tr:nth-child(even) {
  /* background: var(--white); */
}

.ourfunds_table tbody > tr.even {
  background: #eff8ff;
}

.ourfunds_table tr th:nth-child(1),
.ourfunds_table tr td:nth-child(1) {
  width: 276px;
}

.ourfunds_table tr th:nth-child(2),
.ourfunds_table_inner tr td:nth-child(1) {
  width: 284px;
}

.ourfunds_table tr th:nth-child(3),
.ourfunds_table tr td:nth-child(2) {
  width: 117px;
}

.ourfunds_table tr th:nth-child(4),
.ourfunds_table tr td:nth-child(3) {
  width: 463px;
}

.ourfunds_table tr td:nth-child(1),
.ourfunds_table_inner tr td:nth-child(1),
.ourfunds_table_inner tr td:nth-child(2),
.ourfunds_table_inner tr td:nth-child(3) {
  padding: 16px;
}

.ourfunds_table h5 {
  font-size: 0.875rem;
  font-family: var(--bold-font);
  color: var(--black);
}

.ourfunds_table tr td:nth-child(1) img {
  margin: 17px 0 0;
}

.ourfunds_table_inner tr td:nth-child(1) p,
.ourfunds_table_inner tr td:nth-child(2) p,
.ourfunds_table_inner tr td:nth-child(3) p {
  font-size: 0.75rem;
}

.table-bordered td table.ourfunds_table_inner tr:first-child td,
.table-bordered td table.ourfunds_table_inner tr:last-child td {
  border-top: 0px none;
  border-bottom: 0px none;
}

.table-bordered td table.ourfunds_table_inner tr td:first-child {
  border-left: 0px none;
}

.table-bordered td table.ourfunds_table_inner tr td:last-child {
  border-right: 0px none;
}

/*************************************************
                OUR FUNDS PAGE ENDS HERE
**************************************************/

/*************************************************
                STF FUNDS PAGE STARTS HERE
**************************************************/
.stf_banner {
  background: url(../images/stf_banner.jpg) center center no-repeat;
}

.stf_body {
  padding: 120px 0;
}

/*************************************************
                STF FUNDS PAGE ENDS HERE
**************************************************/

/*************************************************
                CONTACT PAGE STARTS HERE
**************************************************/
.contact_banner {
  background: url(../images/contact_banner.jpg) center center no-repeat;
}

.contact_banner h1 {
  font-family: var(--medium-font-new);
  /* padding-top: 256;*/
  padding-bottom: 40px;
}

.contact_body {
  padding: 120px 0 0;
  background: var(--white);
}

.contact_left {
  width: 61%;
}

.contact_left h4 {
  padding: 0 0 40px 0;
  color: var(--black);
}

.contact_right {
  width: 35%;
}

h5.consultant_heading {
  font-size: 1.625rem;
  line-height: 1;
  font-family: var(--light-font-new);
  color: var(--black);
  padding: 10px 0 30px;
}

.consultant_row {
}

.consult_person {
  display: flex;
  margin: 0 0 20px 0;
  background: var(--grey);
}

.consult_person .person_pic {
  /* pad: 0 20px 0 0; */
  width: 40%;
}

.consult_person .person_pic img {
  /* max-width: 200px;
    height: 237px; */
}

.person_bio {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 60%;
  padding: 0 0 0 20px;
}

.person_bio_top {
}

.person_bio_top h6 {
  font-size: 1.125rem;
  line-height: 1.125rem;
  font-family: var(--medium-font-new);
  margin: 0 0 4px 0;
}

.person_bio_top p {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: var(--grey-primary);
  letter-spacing: 0.5px;
}

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

.person_bio_bottom ul li {
  padding: 0 0 4px 0;
  font-size: 0.875rem;
  line-height: 1.125rem;
  letter-spacing: 0.5px;
}

.person_bio_bottom ul li:first-child {
  color: var(--black);
}

.person_bio_bottom ul li:last-child {
}

.person_bio_bottom ul li:last-child a {
  color: var(--blue);
}

#states *.on {
  fill: var(--blue);
}

span.location_zone {
  font-size: 0.875rem;
  line-height: 1.188rem;
  color: var(--black);
  display: block;
  margin: 10px 0 0 0;
}

p.forgot_passwrd_para {
  margin: 0 0 20px 0;
}

.contact_new_modal {
  display: none;
  position: fixed !important;
  z-index: 999999 !important;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: scroll;
  /* border: 10px solid red;*/
}

.contact_modal_content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border: 0;
  width: 80%;
  max-width: 540px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  border-radius: 0px;
  height: 70vh;
  overflow: scroll;
}

.contact_modal_header {
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px 0;
}

.contact_modal_picture {
  width: 46%;
}

.contact_modal_picture img {
  /* height: 264px;
    object-fit: cover; */
}

.contact_modal_bio {
  width: 54%;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact_modal_bio h6 {
  font-size: 1.125rem;
  line-height: 1;
  font-family: var(--medium-font-new);
  margin: 0 0 4px 0;
}

.contact_modal_bio p {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: var(--grey-primary);
  letter-spacing: 0.5px;
}

.contact_modal_bio span.location_zone {
  font-size: 0.875rem;
  line-height: 1.188rem;
  color: var(--black);
  display: block;
  margin: 10px 0 0 0;
}

.contact_modal_bio ul {
  margin: 20px 0 0 0;
  list-style-type: none;
}

.contact_modal_bio ul li {
  padding: 0 0 4px 0;
  font-size: 0.875rem;
  line-height: 1.125rem;
  letter-spacing: 0.5px;
  color: var(--black);
}

.contact_modal_bio ul li:last-child a {
  color: var(--blue);
}

.client_social_link a {
  width: 24px;
  height: 24px;
  display: inline-block;
  border-radius: 50%;
  margin: 10px 0 20px;
  background: #2878b7;
  text-align: center;
}

.client_social_link .fa {
  font-size: 12px;
  color: #fff;
  line-height: 24px;
}

.contact_modal_body p {
  margin-bottom: 20px;
}

.contact_modal_body p:last-child {
  margin-bottom: 0px;
}

.contact_modal_close {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 30px;
  height: 30px;
}

.contact_modal_close a {
  font-family: var(--light-font);
  font-size: 26px;
  color: var(--blue);
  width: 24px;
  height: 2px;
  background: var(--blue);
  display: block;
  transform: rotate(45deg);
  top: 50%;
  position: relative;
  text-align: center;
}

.contact_modal_close a:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--blue);
  display: block;
  transform: rotate(-95deg);
  top: 0;
  left: 0;
}

.consultant_row .slick-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 1;
  color: transparent;
  border-radius: 50%;
  border: 0px none;
  outline: none;
  background-size: cover;
}

.consultant_row .slick-next.slick-arrow {
  right: 0;
  top: -60px;
  background: url(../images/slider-arrow-right-nor.svg) 0 0 no-repeat;
}

.consultant_row .slick-next.slick-arrow:hover {
  background: url(../images/slider-arrow-right-hov.svg) 0 0 no-repeat;
}

.consultant_row .slick-prev.slick-arrow {
  right: 48px;
  top: -60px;
  background: url(../images/slider-arrow-left-nor.svg) 0 0 no-repeat;
}

.consultant_row .slick-prev.slick-arrow:hover {
  background: url(../images/slider-arrow-left-hov.svg) 0 0 no-repeat;
}

.consultant_row ul.slick-dots {
  list-style-type: none;
  display: flex;
  justify-content: center;
  margin: 30px 0 0 0;
}

.consultant_row ul.slick-dots li {
  margin: 0 6px 0 0;
  list-style-type: none;
}

.consultant_row ul.slick-dots li button {
  width: 8px;
  height: 8px;
  background: var(--grey-secondary-one);
  border-radius: 50px;
  color: transparent;
  border: 0px none;
  outline: none;
}

.consultant_row ul.slick-dots li.slick-active button {
  background: var(--grey-primary);
}

.contact_modal_social_info {
  display: none;
  margin: 0 0 20px;
}

.contact_modal_social_info ul {
  display: flex;
  align-items: center;
}

.contact_modal_social_info ul li:first-child {
  margin-right: 20px;
}

.contact_new {
}

.contect_new_left {
  display: flex;
  align-items: flex-end;
}

.contect_new_right {
}

.contect_new_right h4 {
  color: var(--black);
}

.contect_new_right p {
  font-size: var(--basic);
  line-height: 19.4px;
  letter-spacing: 0.5px;
  color: var(--black);
  margin: 10px 0 30px 0;
}

.contact_form_new {
  justify-content: space-between;
  row-gap: 20px;
}

.contact_form_new input[type="text"],
.contact_form_new input[type="tel"],
.contact_form_new select {
  padding: 15px 25px;
  height: auto;
  width: 28% !important;
  position: relative;
  outline: 0;
  border-radius: 0px;
  height: 50px;
}

.contact_form_new .call_back_button {
  width: auto;
  max-width: 100px;
  display: block;
  width: 100%;
  height: 50px;
}

.contact_blocks {
  background: var(--blue);
  color: #fff;
  padding-top: 70px;
  padding-bottom: 70px;
  margin: 50px 0 0 0;
}

.contact_blocks_inner {
}

.contact_thumb {
  text-align: center;
}

/* .contact_thumb a{
    text-decoration: none;
} */

.contact_thumb h4 {
  font-family: var(--regular-font);
  line-height: 3.375rem;
  padding-bottom: 10px;
}

.contact_thumb p {
  font-size: 0.938rem;
  line-height: 1.25rem;
  font-weight: 300;
  padding: 0 0 16px 0;
}

.contact_thumb a {
  text-decoration: underline;
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
  color: #fff;

  text-decoration: none;
}

.contact_thumb.contact_thumb_news {
  background: url("https://advisorspreferred.com/wp-content/uploads/2020/01/map.png")
    center center no-repeat;
  background-size: auto;
}

.contact_thumb.contact_thumb_insights {
  background: url("https://advisorspreferred.com/wp-content/uploads/2020/01/quote.png")
    center center no-repeat;
  background-size: auto;
}

.contact_thumb.our_funds {
  background: url("https://advisorspreferred.com/wp-content/uploads/2020/01/man.png")
    center center no-repeat;
  background-size: auto;
}
/*************************************************
                CONTACT PAGE ENDS HERE
**************************************************/

/*************************************************
                ABOUT US PAGE STARTS HERE
**************************************************/

.aboutpage_banner {
  background: url(../images/about_us_banner.jpg) center center no-repeat;
}

.aboutpage_banner h1 {
  padding-top: 142px;
  padding-bottom: 20px;
  font-family: var(--medium-font-new);
  font-size: 3.625rem;
  letter-spacing: -2px;
}

.aboutpage_banner {
}

.aboutpage_banner_inner {
  max-width: 62%;
}

.about_banner_para {
  display: flex;

  justify-content: space-between;
}

.about_banner_para_block {
  width: 48%;
}

.about_banner_para_block p {
  line-height: 1.213rem;
  color: var(--white);
  padding: 0 0 15px 0;
}

.discover_text {
  font-size: 1rem;
  line-height: 1;
  font-family: var(--bold-font-new);
  background: var(--blue);
  color: var(--white);
  padding: 14.5px 30px;
  display: inline-block;
  margin: 38px 0 144px 0;
}

/*************************************************
                ABOUT US PAGE ENDS HERE
**************************************************/

/*************************************************
                404 PAGE STARTS HERE
**************************************************/
.page_not_found_body {
  padding: 120px 0;
}

.page_not_found {
  text-align: center;
}

.page_not_found .line-1 {
  font-size: 5rem;
  line-height: 1;
  color: var(--blue);
  padding: 0 0 20px 0;
  font-family: var(--bold-font);
}

.page_not_found .line-1 img {
  width: 110px;
  height: 130px;
  filter: invert(40%) sepia(100%) saturate(2855%) hue-rotate(188deg)
    brightness(104%) contrast(104%);
}

.page_not_found .line-2 {
  font-size: 2.625rem;
  line-height: 1.1;
  color: #a1a1a1;
  padding: 0 0 20px 0;
}

.page_not_found .line-3 {
  font-size: 1.5rem;
  line-height: 1.1;
  color: #a1a1a1;
  padding: 0 0 20px 0;
}
/*************************************************
                404 PAGE ENDS HERE
**************************************************/

/*Privacy Page*/
.privacy-page {
  padding: 60px 0;
  background-color: #f2f2f2;
}

.privacy-page h2 {
  font-family: var(--bold-font);
  font-weight: 700;
  font-size: 60px;
  line-height: 68px;
  color: var(--black);
  margin-bottom: 30px;
}

.privacy-page p {
  /*font-family: var(--light-font-new);*/
  font-size: 15px;
  line-height: 20px;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.privacy-page p strong {
  text-decoration: underline;
  font-weight: bold;
}

/*************************************************
               subscribeConfirmBox STARTS HERE
**************************************************/

#subscribeConfirm {
  text-align: center;
}

#subscribeConfirm h5 {
  font-family: var(--thin-font-new);
}

#subscribeConfirm p {
  line-height: 1.25rem;
  color: var(--black);
  padding: 10px 0 20px;
}

#subscribeConfirm .button_blue {
  width: 300px;
  height: 39px;
  display: block;
  width: 100%;
  transition: all 0.3s;
}

#subscribeConfirm .button_blue:hover {
  color: var(--white);
  text-decoration: none;
  outline-offset: -5px;
  outline: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
}

#subscribeConfirm .modal-dialog {
  max-width: 360px;
}

#subscribeConfirm .modal-dialog .modal-content {
  border-radius: 0px;
}

.close_btn_grey {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 0;
}

.close_btn_grey span {
  width: 100%;
  height: 2px;
  background: #c7c7c7;
  display: block;
  position: absolute;
  top: 50%;
  transform: rotate(-47deg) translateY(-50%);
  transform-origin: center center;
}

.close_btn_grey span:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #c7c7c7;
  display: block;
  position: absolute;
  top: 50%;
  transform: rotate(-85deg) translateY(-50%);
  transform-origin: center center;
}

/*************************************************
                subscribeConfirmBox ENDS HERE
**************************************************/

/*************************************************
                INSIGHTS LIST STARTS HERE
**************************************************/
.managers_banner {
  background: url(../images/portfolio_managers_banner.jpg) center center
    no-repeat;
}

.insights_content {
  padding: 60px 0 120px;
}

.insights_items_links_holder {
  margin: 0 0 20px 0;
  /* border-bottom:2px solid #f7f7f7; */
}

.insights_items_links_holder ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  padding: 0 0 7px 0;
  border-bottom: 2px solid #f7f7f7;
  min-width: 390px;
}

.insights_items_links_holder ul li {
  font-size: 14px;
  font-family: var(--regular-font);
  margin-right: 30px;
}

.insights_items_links_holder ul li:last-child {
  margin-right: 0px;
}

.insights_items_links_holder ul li a {
  color: var(--grey-primary);
  padding-bottom: 7px;
  position: relative;
}

.insights_items_links_holder ul li a:hover {
  text-decoration: none;
}

.insights_items_links_holder ul li a:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: var(--black);
  transition: all 0.3s;
}

.insights_items_links_holder ul li a:hover:before,
.insights_items_links_holder ul li a.activeNow:before,
.insights_items_links_holder ul li a.active:before {
  background: var(--blue);
  width: 100%;
}

.insights_list_part {
}

.insights_list_part_inner {
}

.insights_list_header {
  display: flex;
  min-height: 40px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--regular-font);
  font-size: 0.875rem;
  line-height: 2.5rem;
}

.insights_list_header .document_title {
  width: 60%;
  padding: 0 0 0 15px;
}

.insights_list_header .date_time {
  width: 26%;
  padding: 0 0 0 15px;
}

.insights_list_header .document_type {
  width: 14%;
  padding: 0 0 0 15px;
}

.insights_list_row {
}

.insights_list_blocks {
  display: none;
  min-height: 78px;
  align-items: center;
}

.insights_list_blocks.activeNow {
  display: flex;
}

.insights_list_row .insights_list_blocks.activeNow:nth-of-type(even) {
  background: #eff8ff;
}

.items_document_title {
  width: 60%;
  display: flex;
  padding: 0 0 0 15px;
  align-items: center;
}

.items_document_icons_block {
  display: flex;
  align-items: center;
  list-style: none;
}

.items_document_icons_block li {
  width: 24px;
  height: 24px;
  margin: 0 20px 0 0;
}

.items_document_icons_block li a {
  width: 24px;
  height: 24px;
  display: block;
}

.items_document_title h5,
.items_document_title h5 a {
  font-family: var(--medium-font);
  font-size: 1.125rem;
  color: var(--black);
  padding: 0 0 0 10px;
}

.items_date_time {
  width: 26%;
  font-family: var(--regular-font);
  color: var(--grey-primary);
  font-size: 0.875rem;
  padding: 0 0 0 15px;
}

.items_document_type {
  width: 14%;
  font-family: var(--regular-font);
  color: var(--grey-primary);
  font-size: 0.875rem;
  padding: 0 0 0 15px;
}

/*********************** INSIGHTS LIST ENDS HERE **************************/

/******************CUSTOM MODAL STYLING STARTS HERE*******************************/

#messagenewsletterModal .modal-header .close {
  padding: 0.5rem 1rem;
}

#messagenewsletterModal .modal-header {
  border: none;
}

#messagenewsletterModal .modal-body {
  min-height: 50px;
  text-align: center;
  padding-bottom: 2rem;
  font-size: 1rem;
  color: #81a02b;
  padding-top: 0;
}

.leave_site_popup {
}

.leave_site_popup h5 {
  margin: 0 0 20px 0;
}

.leave_site_popup p {
  font-size: 1rem;
  line-height: 1.5rem;
}

.leave_site_popup .button_blue {
  max-width: 143px;
  height: 40px;
  width: 100%;
  font-size: 0.938rem;
  line-height: 40px;
  display: block;
  margin: 20px auto 10px;
  transition: all 0.3s;
  text-align: center;
}

.leave_site_popup .button_blue:hover {
  outline-offset: -5px;
  outline: 1px solid var(--white);
  text-decoration: none;
  color: var(--white);
}

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

/* contact reCaptcha css start */
.recaptcha-container {
  transform: scale(0.85);
  transform-origin: top left;
  width: 304px;
  height: 78px;
  overflow: hidden;
}
/* contact reCaptcha css end */
.form_block_accept_terms span {
  letter-spacing: 0.5px;
  font-weight: 400 !important;
  font-family: inherit;
}
@media (max-width: 767px) {
  .menu_holder_mobile.mobile-active {
    padding: 20px 0 !important;
  }
}
