/* Variable Declaration */

:root{
  --transition: all .3s ease-in-out;
}

/* Cards with Filter CSS */

.cards_container .cards span{
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 2.5rem 1fr 2.5rem 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  justify-items: start;
}

.cards_with_filter  .sticky_content {
  position: sticky;
  top: 80.5px;
  display: block;
  background: #fff;
  z-index: 8;
  width: 100%;
  height: auto;
  padding:10px 0;
}
.cards_container .cards span > *:nth-child(1){
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.cards_container .cards span > *:nth-child(2){
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.cards_container .cards span > *:nth-child(3){
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.cards_container .cards .card{
  background: var(--white_color);
  border: 5px solid #ebebeb;
  border-radius: 30px;
  -webkit-box-shadow: 6px 9px 15px 4px #0000001a;
  box-shadow: 6px 9px 15px 4px #0000001a;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 100%;
  padding: 40px 30px 24px;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  width: 100%;
}

.cards_with_filter .filter_content_container .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 34px;
  /*   margin-bottom: 103px; */
  row-gap: 20px;
}
.cards_with_filter .cards_container{
  margin-top:103px;
}
.cards_with_filter .content-wrapper {
  max-width: 1230px;
}
.cards_with_filter .filter_content_container .filter_container .dropdown {
  display: inline-block;
  position: relative;
}
.cards_with_filter .filter_content_container .filter_container .dropdown .dropdown-content {
  background-color: #f9f9f9;
  -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
  display: none;
  max-height: 200px;
  min-width: 180px;
  overflow-y: auto !important;
  position: absolute;
  width: 100%;
  z-index: 4;
}
.cards_with_filter .filter_content_container .filter_container .dropdown .dropdown-content a {
  color: #000;
  display: block;
  padding: 12px 16px;
  text-decoration: none;
}
.cards_with_filter .filter_content_container .filter_container .dropdown button.dropbtn {
  background: none;
  cursor: pointer;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 500;
  line-height: 25.2px;
  min-width: 226px;
  padding: 10px 40px 10px 15px;
  position: relative;
  text-align: left;
  border:1px solid var(--black_color);
}
.cards_with_filter .filter_content_container .filter_container .dropdown button.dropbtn:after {
  background: url(https://45530977.fs1.hubspotusercontent-na1.net/hubfs/45530977/Dropdown%20Arrow.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 14px;
  position: absolute;
  right: 16px;
  top: 36%;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  width: 14px;
  pointer-events:none;
}
.cards_with_filter .filter_content_container .filter_container .dropdown.active button.dropbtn:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.cards_with_filter .cards .hs_cos_wrapper.card .logo_container {
  margin-bottom: 46px;
  /*   max-width: 180px; */
  width: 100%;
}
.cards_with_filter .cards .hs_cos_wrapper.card .logo_container img{
  width:100%;
  height:auto;
  aspect-ratio:3/1;
  object-fit:contain;
}
.cards_with_filter .cards .hs_cos_wrapper.card .fund_name_container {
  margin-bottom: 10px;
}
.cards_with_filter .cards .hs_cos_wrapper.card .fund_description_container {
  margin-bottom: 40px;
}
.cards_with_filter .cards .hs_cos_wrapper.card .fund_description_container h3,
.cards_with_filter .cards .hs_cos_wrapper.card .fund_description_container h4,
.cards_with_filter .cards .hs_cos_wrapper.card .fund_description_container br{
  display:none;
}
.cards_with_filter .cards .hs_cos_wrapper.card .fund_description_container p{
  margin-bottom:0px;
}

.cards_with_filter .cards .hs_cos_wrapper.card{
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.cards_with_filter .cards .hs_cos_wrapper.card:hover{
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.cards_with_filter .cards .hs_cos_wrapper.card .heading_container h4 {
  font-family: Montserrat;
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  margin: 0;
  text-align: left;
}
.cards_with_filter .cards .hs_cos_wrapper.card .cta_container a.cta_button {
  background: var(--secondary_color);
  border-radius: 80px;
  color: var(--white_color);
  display: inline-block;
  padding: 10px 25.5px;
  text-transform: uppercase;
  border:1px solid var(--secondary_color);
}
.cards_with_filter .cards .hs_cos_wrapper.card .cta_container a.cta_button:hover{
  background:transparent;
  color:var(--secondary_color);
}

.cards_width_filter .error-message #no-result {
  color: red;
  font-size: 24px;
  font-weight: 500;
}

@media(max-width:1024px){
  .cards_with_filter  .sticky_content{
    top:69px;
  }
  body.dynamic-fund-page section.individual_fund_section .fund_overview .row-fluid .content_container {
    max-width: 100% !important;
  }
}
@media(min-width:768px) and (max-width:1024px){
  .cards_container .cards span{
    grid-column-gap: 1rem;
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .cards_container .cards .card{
    padding:40px 30px;
    max-width:none;
  }
  body.dynamic-fund-page section.individual_fund_section .fund_overview .row-fluid {
    flex-direction: column;
    row-gap: 40px;
  }
}

@media (max-width: 767px) {
  /*   .cards_with_filter .filter_content_container .filters{
  margin-bottom:60px;
} */
  .cards_with_filter .filter_content_container .filters{
    flex-direction:column;
  }
  .cards_container .cards_container{
    margin-top:60px;
  }
  .cards_container .cards span{
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .cards_container .cards .card{
    padding:40px 30px;
  }
  body.dynamic-fund-page section.individual_fund_section .fund_overview .row-fluid {
    flex-direction: column;
    row-gap: 40px;
  }
}



/* *******************Individual Page******************* */

/* Typography */

body.dynamic-fund-page section.individual_fund_section h1{
  color:var(--primary_color);
  font-size: 58px;
  font-weight: 500 !important;
  letter-spacing: -1px;
  line-height: 79.99px;
  text-align: left;
  margin:0px;
}
body.dynamic-fund-page section.individual_fund_section h2{
  color:var(--primary_color);
  font-size: 40px;
  font-weight: 600;
  text-align: left;
  margin:0;
}
body.dynamic-fund-page section.individual_fund_section h3{
  color:var(--primary_color);
  font-size:28px;
  line-height:36px;
  font-weight:600;
}
body.dynamic-fund-page section.individual_fund_section h4{
  color:var(--primary_color);
  font-size:22px;
  line-height:26.4px;
  font-weight:600;
}
body.dynamic-fund-page section.individual_fund_section h5{
  color:var(--primary_color);
  font-size:20px;
  line-height:24px;
  font-weight:700 !important;
	margin-top: 15px
}
body.dynamic-fund-page section.individual_fund_section h6{
  color:var(--primary_color);
  font-size:18px;
  line-height:21.6px;
  font-weight:600;
}
body.dynamic-fund-page section.individual_fund_section p{
  color:var(--body_color);
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 26px;
  margin-bottom: 0;
  text-align: left;
}

body.dynamic-fund-page section.individual_fund_section .small p{
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 26px;
  text-align: left;
  margin-bottom:0px;
}
.body-container-wrapper .fund_overview li {
  font-size: 16px;
}

@media(min-width:768px) and (max-width:1024px){
  body.dynamic-fund-page section.individual_fund_section h1{
    font-size:50px;
    line-height:60px;
  }
  body.dynamic-fund-page section.individual_fund_section h2{
    font-size:30px;
    line-height:39px;
  }
  body.dynamic-fund-page section.individual_fund_section h3{
    font-size:24px;
    line-height:28.8px;
  }
  body.dynamic-fund-page section.individual_fund_section h4{
    font-size:18px;
    line-height:21.6px;
  }
  body.dynamic-fund-page section.individual_fund_section p{
    font-size: 22px;
    line-height: 28px;
  }
}

@media(max-width:767px){
  body.dynamic-fund-page section.individual_fund_section h1{
    font-size:30px;
    line-height:36px;
  }
  body.dynamic-fund-page section.individual_fund_section h2{
    font-size:24px;
    line-height:31.2px;
  }
  body.dynamic-fund-page section.individual_fund_section h3{
    font-size:19px;
    line-height:26px;
  }
  body.dynamic-fund-page section.individual_fund_section h4{
    font-size:18px;
    line-height:26px;
  }
  body.dynamic-fund-page section.individual_fund_section p{
    font-size: 18px;
    line-height: 24px;
  }
}

body.dynamic-fund-page .all-text-white,
body.dynamic-fund-page .all-text-white a,
body.dynamic-fund-page .all-text-white h1,
body.dynamic-fund-page .all-text-white h2,
body.dynamic-fund-page .all-text-white h3,
body.dynamic-fund-page .all-text-white h4,
body.dynamic-fund-page .all-text-white h5,
body.dynamic-fund-page .all-text-white h6,
body.dynamic-fund-page .all-text-white p,
body.dynamic-fund-page .all-text-white span,
body.dynamic-fund-page .all-text-white li {
  color: var(--white_color) !important;
}


body.dynamic-fund-page section.individual_fund_section .banner_section{
  position:relative;
}
body.dynamic-fund-page section.individual_fund_section .banner_section::after{
  background: url(https://45530977.fs1.hubspotusercontent-na1.net/hubfs/45530977/Banner%20Vector.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 384px;
  height: 495px;
  pointer-events: none;
}
section.individual_fund_section .banner_section .fund_name_and_category{
  max-width:1000px;
  width:100%;
}
section.individual_fund_section .banner_section .fund_name_and_category .fund_name{
  margin-bottom:50px;
}
section.individual_fund_section .content_container{
  width:100%;
  position:relative;
  z-index:2;
}



@media(min-width:768px) and (max-width:1024px){
  section.individual_fund_section .banner_section .fund_name_and_category .fund_name {
    margin-bottom: 30px;
  }
}


@media(max-width:767px){
  section.individual_fund_section .banner_section .fund_name_and_category .fund_name {
    margin-bottom: 20px;
  }
}





/* Fund Overview Styling */

section.individual_fund_section .fund_overview .content_container .heading_container{
  margin-bottom:50px;
}
section.individual_fund_section .fund_overview .content_container .overview_container.small p:not(:last-child) {
  margin-bottom: 40px;
}

@media(min-width:768px) and (max-width:1024px){
  section.individual_fund_section .fund_overview .content_container .heading_container {
    margin-bottom: 30px;
  }
}

@media(max-width:767px){
  section.individual_fund_section .fund_overview .content_container .heading_container {
    margin-bottom: 20px;
  }
}



/* Fund Material Styling */

section.individual_fund_section .fund_material .content_container .heading_container{
  margin-bottom:42px;
}
section.individual_fund_section .fund_material .content_container .material_container .materials{
  column-count: 2;
  width: 100%;
}
section.individual_fund_section .fund_material .content_container .material_container .materials .material{
  margin-bottom:27px;
}
section.individual_fund_section .fund_material .content_container .material_container .materials .material a{
  color: #002a54;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  padding-bottom: 4px;
  position: relative;
  text-align: left;
  display:inline-block;
}
section.individual_fund_section .fund_material .content_container .material_container .materials .material a:before{
  background: #002a54;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  width: 115%;
}
section.individual_fund_section .fund_material .content_container .material_container .materials .material a.cta_button {
  background: unset;
  border: unset;
  border-radius: unset;
  padding: 0 0 4px;
}
section.individual_fund_section .disclosure_text {
  padding: 60px 0 45px;
}
body.dynamic-fund-page section.individual_fund_section .disc_main_text p {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 15px;
}


@media(min-width:768px) and (max-width:1024px){
  section.individual_fund_section .fund_material .content_container .heading_container{
    margin-bottom:30px;
  }
}

@media(max-width:767px){
  section.individual_fund_section .fund_material .content_container .heading_container{
    margin-bottom:20px;
  }
  section.individual_fund_section .fund_material .content_container .material_container .materials{
    column-count:auto;
  }
  section.individual_fund_section .fund_material .content_container .material_container .materials .material a{
    font-size:18px;
    line-height:24px;
  }
  section.individual_fund_section .fund_material .content_container .material_container .materials .material:last-child{
    margin-bottom:0px;
  }
}



/* Firm Overview */


body.dynamic-fund-page section.individual_fund_section .firm_overview{
  position:relative;
}
/* body.dynamic-fund-page section.individual_fund_section .firm_overview::before{
position: absolute;
left: 0;
right: 0;
max-width: 726px;
border:1px solid #000000;
width: 70%;
content: '';
margin: 0 auto;
bottom:52px;
} */
section.individual_fund_section .firm_overview .content_container .heading_container{
  margin-bottom:30px;
}
section.individual_fund_section .firm_overview .content_container{
  display:flex;
  justify-content:space-between;
  gap:30px;
}
section.individual_fund_section .firm_overview .content_container .logo_video_container {
  max-width: 620px;
  width: 100%;
}
section.individual_fund_section .firm_overview .content_container .logo_container {
  max-width: 400px;
  margin: 0 auto;
}

section.individual_fund_section .firm_overview .content_container .logo_video_container .video_container iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}
section.individual_fund_section .firm_overview .content_container .logo_container img{
  height:auto;
}

@media(min-width:768px) and (max-width:1024px){
  section.individual_fund_section .firm_overview .content_container{
    flex-direction:column;
    row-gap:40px;
  }
  section.individual_fund_section .firm_overview .content_container .heading_container{
    margin-bottom:20px;
  }
  section.individual_fund_section .firm_overview .content_container .logo_container{
    max-width:none;
  }
  body.dynamic-fund-page section.individual_fund_section .firm_overview::before{
    bottom:20px;
  }
}

@media(max-width:767px){
  section.individual_fund_section .firm_overview .content_container .heading_container{
    margin-bottom:20px;
  }
  section.individual_fund_section .firm_overview .content_container{
    flex-direction:column;
    row-gap:40px;
  }
  section.individual_fund_section .firm_overview .content_container .logo_container{
    max-width:none;
  }
  body.dynamic-fund-page section.individual_fund_section .firm_overview::before{
    bottom:20px;
  }
}




/* Get In Touch */


section.individual_fund_section .get_in_touch_section{
  position:relative;
  z-index:1;
  overflow:hidden;
}

section.individual_fund_section .get_in_touch_section::after{
  background: url(https://45530977.fs1.hubspotusercontent-na1.net/hubfs/45530977/Banner%20Vector.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 384px;
  height: 495px;
  pointer-events: none;
}
section.individual_fund_section .get_in_touch_section .content_container .heading_container{
  margin-bottom:50px;
}
section.individual_fund_section .get_in_touch_section .content_container .description_container{
  margin-bottom:70px;
}

section.individual_fund_section .get_in_touch_section .content_container .cta_container a.cta_button{
  background: var(--primary_color);
  padding: 10px 62.5px;
  border-radius: 80px;
  display: inline-block;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.600000023841858px;
  text-align: center;
  border:1px solid var(--primary_color);
}
section.individual_fund_section .get_in_touch_section .content_container .cta_container a.cta_button:hover{
  background: transparent;
  color: #fff;
}
@media(max-width:767px){
  section.individual_fund_section .get_in_touch_section .content_container .heading_container{
    margin-bottom:40px;
  }
  section.individual_fund_section .get_in_touch_section .content_container .description_container{
    margin-bottom:40px;
  }
}

/* Related Fund Cards */


section.individual_fund_section .related_fund_card_section .content_container .heading_container {
  margin-bottom: 56px;
}
section.individual_fund_section .related_fund_card_section .content_container .cards_container .cards .card .fund_name_container{
  margin-bottom:40px;
}
section.individual_fund_section .related_fund_card_section .content_container .cards_container .cards .card .fund_name_container h3{
  margin: 0;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
section.individual_fund_section .related_fund_card_section .content_container .cards_container .cards .card .product_category h4{
  margin: 0;
}
section.individual_fund_section .related_fund_card_section .content_container .cards_container .cards .card .ticker_container p{
  color: #009cde;
  margin: 0;
}
section.individual_fund_section .related_fund_card_section .content_container .cards_container .cards .card .cta_container{
  margin-top:40px;
}
section.individual_fund_section .related_fund_card_section .content_container .cards_container .cards .card .cta_container a.cta_button{
  background: #009cde;
  border: 1px solid #009cde;
  border-radius: 80px;
  color: #fff;
  display: inline-block;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.600000023841858px;
  line-height: 16px;
  padding: 10px 25.5px;
  text-align: center;
  text-transform: uppercase;
}
section.individual_fund_section .related_fund_card_section .content_container .cards_container .cards .card .product_category{
  margin-bottom:10px;
}
section.individual_fund_section .related_fund_card_section .content_container .cards_container .cards .card .cta_container a.cta_button:hover{
  background: transparent;
  color: #009cde;
}
section.individual_fund_section .related_fund_card_section .content_container .cards_container .cards .card{
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
section.individual_fund_section .related_fund_card_section .content_container .cards_container .cards .card:hover{
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}
section.individual_fund_section .related_fund_card_section .marketplace_button{
  margin-top:130px;
  text-align:center;
}
section.individual_fund_section .related_fund_card_section .marketplace_button a.cta_button{
  background: #002a54;
  border: 1px solid #002a54;
  border-radius: 80px;
  color: #fff;
  display: inline-block;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.600000023841858px;
  line-height: 16px;
  padding: 21px 37.5px;
  text-align: center;
  text-transform:uppercase;
}
section.individual_fund_section .related_fund_card_section .marketplace_button a.cta_button:hover{
  background: transparent;
  color: #002a54;
}

@media(min-width:768px) and (max-width:1024px){
  section.individual_fund_section .related_fund_card_section .marketplace_button{
    margin-top:60px;
  }
}

@media(max-width:767px){
  section.individual_fund_section .related_fund_card_section .content_container .cards_container .cards .card .fund_name_container{
    margin-bottom:30px;
  }
  section.individual_fund_section .related_fund_card_section .content_container .cards_container .cards .card .cta_container{
    margin-top:30px;
  }
  section.individual_fund_section .related_fund_card_section .marketplace_button{
    margin-top:40px;
  }
}



/* Contact Us Section */

section.individual_fund_section .contact_us_section{
  position:relative;
  z-index:1;
  overflow:hidden;
}
section.individual_fund_section .contact_us_section::after{
  background: url(https://45530977.fs1.hubspotusercontent-na1.net/hubfs/45530977/Banner%20Vector.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 384px;
  height: 495px;
  pointer-events: none;
}
section.individual_fund_section .contact_us_section::before{
  background: url(https://45530977.fs1.hubspotusercontent-na1.net/hubfs/45530977/Second%20Vector.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 235px;
  height: 204px;
  pointer-events: none;
}
section.individual_fund_section .contact_us_section .content_container .heading_container{
  margin-bottom:50px;
}
section.individual_fund_section .contact_us_section .content_container .cta_container{
  margin-top:70px;
}
section.individual_fund_section .contact_us_section .cta_container a.cta_button{
  background: #002a54;
  border: 1px solid #002a54;
  padding: 10px 62.5px;
  border-radius: 80px;
  display: inline-block;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.600000023841858px;
  text-align: center;
}
section.individual_fund_section .contact_us_section .cta_container a.cta_button:hover{
  background: transparent;
  color: #002a54;
}

@media(max-width:767px){
  .cards_with_filter .filter_content_container .filter_container .dropdown{
    width:fit-content;
  }
  .cards_with_filter .filter_content_container .filter_container .dropdown button.dropbtn{
    font-size:16px;
    padding-top:6px;
    padding-bottom:6px;
    max-width:210px;
  }
  .cards_with_filter .sticky_content .heading_container{
    position:relative;
    cursor:pointer;
  }
  /* 	.heading_container:after{
  background:url(https://45530977.fs1.hubspotusercontent-na1.net/hubfs/45530977/Filter%20Icon.svg);
  background-repeat:no-repeat;
  background-size:contain;
  background-position:center;
  content: "";
  height: 24px;
  right: 0;
  width: 24px;
  display: block;
  position: absolute;
  top: 0px;
} */
  body .cards_with_filter .sticky_content .heading_container h2{
    font-size:20px;
    margin-bottom:0px;
  }
  .cards_with_filter .sticky_content .filter_content_container{
    display:none;
    margin-top:20px;
  }
  .cards_with_filter .cards_container{
    margin-top:40px;
  }
  .cards_with_filter .sticky_content.active{
    padding-bottom:20px;
    border-bottom:1px solid #000;
  }
}
.cards_with_filter .sticky_content .heading_container h2{
  font-size:32px;
  font-weight:600;
  margin-bottom:0px;
}
.cards_with_filter .filter_content_container {
  margin-top: 20px;
}

body.dynamic-fund-page section.individual_fund_section .related_fund_card_section.hidden-section .content_container {
  display: none;
}
body.dynamic-fund-page section.individual_fund_section .related_fund_card_section.hidden-section .marketplace_button {
  margin-top: 0;
}
body.dynamic-fund-page section.individual_fund_section .related_fund_card_section.hidden-section .marketplace_button .normal_cta,
.custom_marketplace_button {
  display: none;
}
body.dynamic-fund-page section.individual_fund_section .related_fund_card_section.hidden-section .marketplace_button .custom_marketplace_button {
  display: block;
}
body.dynamic-fund-page section.individual_fund_section .disclosure_text {
  border-bottom: 40px solid #009cde;
}
body.dynamic-fund-page section.individual_fund_section .disclosure_text .disc_main_text p a {
    font-size: inherit;
    font-weight: inherit;
}

.banner_section {
  background:#002a54;
}

.banner_section .fund_hero_grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.banner_section .fund_hero_left {
  flex: 1;
}

.banner_section .product_name {
  /*   font-size: 56px;
  font-weight: 500;
  line-height: 1.1; */
  margin: 0;
  color: #fff;
}

.banner_section .fund_hero_right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.banner_section .material_btn {
  background: #009cde;
  color: #fff;
  padding: 26px 37px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 24px;
  font-weight: 500;
  gap: 10px;
}

.banner_section .fund_hero_right .material_cta a.cta_button[title] {
  font-size: 24px;
  font-weight: 500;
  border-radius: 0;
  padding: 30px 70px 30px 30px;
  display: block;
  text-align: left;
  position: relative;
  transition: all 0.25s ease;
  border: unset;
}

.banner_section .material_btn:hover,
.banner_section .fund_hero_right .material_cta a.cta_button[title]:hover{
  background: #007bb0;
  transform: translateY(-2px);
}
.banner_section .fund_hero_right .material_cta a.cta_button[title]:before {
  position: absolute;
  content: '';
  background: url(https://am.flxnetworks.com/hubfs/FLX%20Files%202025/download%20btn%20icon.png) no-repeat center;
  width: 32px;
  height: 32px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.banner_section .download_icon {
  width: 18px;
  height: 18px;
  background: url("/hubfs/download-icon.svg") no-repeat center;
  background-size: contain;
}
.banner_section .download_icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  background: url("https://am.flxnetworks.com/hubfs/FLX%20Files%202025/download%20btn%20icon.png")
    no-repeat center;
  background-size: contain;
}

/* Responsive */

/* Section background like light blue band */
body.dynamic-fund-page section.individual_fund_section .fund_overview {
  background-color: #f5fbff;
  padding: 48px 0 56px;
}

/* White card */
body.dynamic-fund-page section.individual_fund_section .fund_overview .overview_container.overview_new {
  background-color: #ffffff;
  padding: 32px 40px 60px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
}

/* Heading spacing */
body.dynamic-fund-page section.individual_fund_section .fund_overview .heading_container {
  margin-bottom: 40px;
}
body.dynamic-fund-page section.individual_fund_section .fund_overview .heading_container h2{
  font-weight:600 !important;
}
/* Rows (Fund Objective / Description) */
body.dynamic-fund-page section.individual_fund_section .fund_overview .overview_row {
  margin-bottom: 32px;
}

body.dynamic-fund-page section.individual_fund_section .fund_overview .overview_row:last-child {
  margin-bottom: 0;
}

/* Labels */
body.dynamic-fund-page section.individual_fund_section .fund_overview .overview_label h3{
  color: #101828;
  font-weight:500!important;
  margin: 0;
}

/* Text */
body.dynamic-fund-page section.individual_fund_section .fund_overview .overview_text p{
  font-size: 18px;
  line-height: 23px;
}

/* Videos grid under the card */
body.dynamic-fund-page section.individual_fund_section .fund_overview .overview_videos {
  display: flex;
  gap: 5%;
  margin-top: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

body.dynamic-fund-page section.individual_fund_section .fund_overview .overview_videos .overview_video {
    flex-basis: 47.5%;
}

/* Each video block */
body.dynamic-fund-page section.individual_fund_section .fund_overview .overview_video .video_container {
  background-color: #dcdcdc; /* fallback if iframe has no bg */
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
body.dynamic-fund-page section.individual_fund_section .fund_overview .overview_video .video_container iframe {
  width: 100%;
  height: 100%;
}

/* Video title under thumbnail */
body.dynamic-fund-page section.individual_fund_section .fund_overview .overview_video .video_title {
  margin: 0;
  margin-bottom: 15px;
  font-weight: 500 !important;
}

/* Responsive: stack videos on mobile */


/* Section background (light band) */
body.dynamic-fund-page section.individual_fund_section .firm_overview {
  background-color: #f5fbff;   /* light blue like other cards */
  padding: 32px 0;
}

/* White card + layout */
body.dynamic-fund-page section.individual_fund_section .firm_overview .firm_overview_inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background-color: #ffffff;
  padding: 24px 32px;
}

/* Logo box */
body.dynamic-fund-page section.individual_fund_section .firm_overview .firm_logo_wrapper {
  flex: 0 0 auto;
}

body.dynamic-fund-page section.individual_fund_section .firm_overview .firm_logo_box {
  width: 200px;
  height: 200px;
  background-color: transparent; /* grey placeholder if logo not full */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body.dynamic-fund-page section.individual_fund_section .firm_overview .firm_logo_box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Text side */
body.dynamic-fund-page section.individual_fund_section .firm_overview .overview_container {
  flex: 1 1 auto;
}

body.dynamic-fund-page section.individual_fund_section .firm_overview .heading_container {
  margin-bottom: 8px;
}

body.dynamic-fund-page section.individual_fund_section .firm_overview .heading_container h1,
body.dynamic-fund-page section.individual_fund_section .firm_overview .heading_container h2,
body.dynamic-fund-page section.individual_fund_section .firm_overview .heading_container h3 {
  /*   color: #002b5c;  /* navy heading */
  margin: 0; */
}

/* Body text */
body.dynamic-fund-page section.individual_fund_section .firm_overview .overview_text p{
  font-size: 18px;
  line-height: 23px;
}
body.dynamic-fund-page section.individual_fund_section .firm_overview .overview_text p:not(:last-child) {
  margin-bottom: 10px;
}
@media(min-width:768px) and (max-width:1024px){
  body.dynamic-fund-page section.individual_fund_section .fund_overview .overview_videos .overview_video {
    flex-basis: 48.5%;
}
  body.dynamic-fund-page section.individual_fund_section .fund_overview .overview_videos {
    gap: 3%;
  }
}

/* Responsive: stack on mobile */
@media (max-width: 767px) {
  body.dynamic-fund-page section.individual_fund_section .firm_overview .firm_overview_inner {
    flex-direction: column;
    align-items: flex-start;
  }

  body.dynamic-fund-page section.individual_fund_section .firm_overview .firm_logo_box {
    width: 120px;
    height: 120px;
  }
  .banner_section .fund_hero_grid {
    flex-direction: column;
    text-align: center;
  }
  body.dynamic-fund-page section.individual_fund_section .fund_overview .overview_videos {
    gap: 30px;
  }
  .banner_section .fund_hero_right {
    grid-template-columns: 1fr;
  }
  .banner_section .fund_hero_right .material_cta a.cta_button[title] {
    padding-right: 100px;
  }
}
