/* responsive.scss */
/* variables.scss */
/* Carousel */
.carousel-item img {
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1d3669;
}

.carousel-overlay-top {
  background: rgba(29, 54, 105, 0);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(29, 54, 105, 0)), to(#1d3669));
  background: linear-gradient(to top, rgba(29, 54, 105, 0), #1d3669);
  top: 0;
}

.carousel-overlay-bottom {
  background: rgba(29, 54, 105, 0);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(29, 54, 105, 0)), to(#1d3669));
  background: linear-gradient(to bottom, rgba(29, 54, 105, 0), #1d3669);
  bottom: 0;
}

.carousel-overlay-left {
  background: rgba(29, 54, 105, 0);
  background: -webkit-gradient(linear, right top, left top, from(rgba(29, 54, 105, 0)), to(#1d3669));
  background: linear-gradient(to left, rgba(29, 54, 105, 0), #1d3669);
  left: 0;
}

.carousel-overlay-right {
  background: rgba(29, 54, 105, 0);
  background: -webkit-gradient(linear, left top, right top, from(rgba(29, 54, 105, 0)), to(#1d3669));
  background: linear-gradient(to right, rgba(29, 54, 105, 0), #1d3669);
  right: 0;
}

.carousel-image {
  display: block;
  width: 100%;
  height: 60vh;
}

.carousel-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 3% 5%;
  color: #ffffff;
}

@media (max-width: 992px) {
  .carousel-content {
    padding: 1.5rem 1rem;
  }
}

.carousel-content > div {
  text-align: left;
}

.carousel-content h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .carousel-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .carousel-content h2 {
    font-size: 1.5rem;
  }
}

.carousel-content h5 {
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 300;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .carousel-content h5 {
    font-size: 1rem;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .carousel-content h5 {
    font-size: .85rem;
  }
}

.carousel-control-next, .carousel-control-prev {
  bottom: 75%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.carousel-cta {
  font-size: 2rem;
  color: #ffffff;
  margin-left: 2rem;
  opacity: 1;
  padding: 1rem;
  z-index: 100;
  -webkit-transition: 0.35s all;
  transition: 0.35s all;
}

.carousel-cta:hover {
  color: #ffffff;
  opacity: .7;
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
  -webkit-transition: 0.35s all;
  transition: 0.35s all;
}

.carousel-indicators {
  right: unset;
  margin-left: 125px;
}

.carousel-indicators--round li {
  border-radius: 19px;
  margin: 0 10px;
  height: 19px;
  max-width: 19px;
  border: 2px solid #2E55A5;
  background-color: transparent;
}

.carousel-indicators .active {
  background-color: #2E55A5;
  max-width: 19px;
  margin: 0 10px;
  height: 19px;
}

/* fund.scss */
.table-fund .table-collapse-icon {
  color: #2E55A5;
  text-align: center;
  width: 60px;
}

.table-fund .table-collapse-icon i {
  -webkit-transition: .25s all ease-in-out;
  transition: .25s all ease-in-out;
}

.table-fund th, .table-fund td {
  vertical-align: middle !important;
}

.table-fund tr.open {
  background-color: rgba(46, 85, 165, 0.05);
}

.table-fund tr.open .table-collapse-icon i {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: .25s all ease-in-out;
  transition: .25s all ease-in-out;
}

.table-fund-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #F5F9FF;
  color: #2E55A5;
  border-radius: 50%;
  text-decoration: none;
  -webkit-transition: .35s all ease-in-out;
  transition: .35s all ease-in-out;
}

.table-fund-cta:hover {
  background-color: #2E55A5;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: .35s all ease-in-out;
  transition: .35s all ease-in-out;
}

.table-fund-classes {
  width: 100%;
}

.table-fund-classes th {
  font-size: .75rem;
  border-top: 0;
  border-bottom: 0;
  background-color: #f9f9f9;
  color: #6B7785;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.table-fund-classes th:first-child {
  width: 60px;
}

.table-fund-classes th:nth-child(2) {
  width: calc(50% - 60px);
}

.table-fund-classes th:nth-child(3) {
  width: 20%;
}

.table-fund-classes th:nth-child(4) {
  width: 15%;
}

.table-fund-classes th:nth-child(5) {
  width: 15%;
}

.table-fund-classes td {
  font-size: .85rem;
}

.table-fund-classes .table-fund-cta {
  width: 40px;
  height: 40px;
  background-color: transparent;
}

.table-fund-classes .table-fund-cta:hover {
  color: #2E55A5;
  opacity: .7;
}

.fund-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fund-title .fund-icon {
  position: relative;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  overflow: hidden;
  margin-right: .75rem;
}

.fund-title .fund-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  #fund-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.table-fund-mobile .fund-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #DFE3EE;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.table-fund-mobile .fund-card:last-child {
  margin-bottom: 0;
}

.table-fund-mobile .fund-card .fund-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: .5rem 1rem;
}

.table-fund-mobile .fund-card .fund-title > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.table-fund-mobile .fund-card ul {
  padding: 0;
  margin: 0;
}

.table-fund-mobile .fund-card ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding: .5rem 1rem;
  border-bottom: 1px solid #DFE3EE;
}

.table-fund-mobile .fund-card ul li:last-child {
  border-bottom: 0;
}

.table-fund-mobile .fund-card ul li .fund-card-label {
  width: 40%;
  font-weight: 600;
}

.table-fund-mobile .fund-card ul li .fund-card-value {
  width: 60%;
  text-align: right;
}

.table-fund-mobile .fund-card .fund-classlist-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #DFE3EE;
  font-weight: 600;
  padding: .5rem 1rem;
}

.table-fund-mobile .fund-card .fund-classlist-toggle.open i, .table-fund-mobile .fund-card .fund-classlist-toggle.open svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: .35s all ease-in-out;
  transition: .35s all ease-in-out;
}

.table-fund-mobile .fund-card .fund-classlist-toggle i, .table-fund-mobile .fund-card .fund-classlist-toggle svg {
  color: #2E55A5;
  -webkit-transition: .35s all ease-in-out;
  transition: .35s all ease-in-out;
}

.table-fund-mobile .fund-card .fund-classlist {
  background-color: #F5F9FF;
  padding: 1rem;
}

.table-fund-mobile .fund-card .fund-classlist .fund-card-attrs {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(46, 85, 165, 0.25);
}

.table-fund-mobile .fund-card .fund-classlist .fund-card-attrs:last-child {
  border-bottom: 0;
}

/* loader.scss */
.loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4rem 0;
}

.loader-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.loader-ripple div {
  position: absolute;
  border: 4px solid #2E55A5;
  opacity: 1;
  border-radius: 50%;
  -webkit-animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
          animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader-ripple div:nth-child(2) {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

@-webkit-keyframes loader-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

@keyframes loader-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

/* fund.scss */
.table-fund .table-collapse-icon {
  color: #2E55A5;
  text-align: center;
  width: 60px;
}

.table-fund .table-collapse-icon i {
  -webkit-transition: .25s all ease-in-out;
  transition: .25s all ease-in-out;
}

.table-fund th, .table-fund td {
  vertical-align: middle !important;
}

.table-fund tr.open {
  background-color: rgba(46, 85, 165, 0.05);
}

.table-fund tr.open .table-collapse-icon i {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: .25s all ease-in-out;
  transition: .25s all ease-in-out;
}

.table-fund-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #F5F9FF;
  color: #2E55A5;
  border-radius: 50%;
  text-decoration: none;
  -webkit-transition: .35s all ease-in-out;
  transition: .35s all ease-in-out;
}

.table-fund-cta:hover {
  background-color: #2E55A5;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: .35s all ease-in-out;
  transition: .35s all ease-in-out;
}

.table-fund-classes {
  width: 100%;
}

.table-fund-classes th {
  font-size: .75rem;
  border-top: 0;
  border-bottom: 0;
  background-color: #f9f9f9;
  color: #6B7785;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.table-fund-classes th:first-child {
  width: 60px;
}

.table-fund-classes th:nth-child(2) {
  width: calc(50% - 60px);
}

.table-fund-classes th:nth-child(3) {
  width: 20%;
}

.table-fund-classes th:nth-child(4) {
  width: 15%;
}

.table-fund-classes th:nth-child(5) {
  width: 15%;
}

.table-fund-classes td {
  font-size: .85rem;
}

.table-fund-classes .table-fund-cta {
  width: 40px;
  height: 40px;
  background-color: transparent;
}

.table-fund-classes .table-fund-cta:hover {
  color: #2E55A5;
  opacity: .7;
}

.fund-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fund-title .fund-icon {
  position: relative;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  overflow: hidden;
  margin-right: .75rem;
}

.fund-title .fund-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  #fund-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.table-fund-mobile .fund-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #DFE3EE;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.table-fund-mobile .fund-card:last-child {
  margin-bottom: 0;
}

.table-fund-mobile .fund-card .fund-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: .5rem 1rem;
}

.table-fund-mobile .fund-card .fund-title > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.table-fund-mobile .fund-card ul {
  padding: 0;
  margin: 0;
}

.table-fund-mobile .fund-card ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding: .5rem 1rem;
  border-bottom: 1px solid #DFE3EE;
}

.table-fund-mobile .fund-card ul li:last-child {
  border-bottom: 0;
}

.table-fund-mobile .fund-card ul li .fund-card-label {
  width: 40%;
  font-weight: 600;
}

.table-fund-mobile .fund-card ul li .fund-card-value {
  width: 60%;
  text-align: right;
}

.table-fund-mobile .fund-card .fund-classlist-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #DFE3EE;
  font-weight: 600;
  padding: .5rem 1rem;
}

.table-fund-mobile .fund-card .fund-classlist-toggle.open i, .table-fund-mobile .fund-card .fund-classlist-toggle.open svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: .35s all ease-in-out;
  transition: .35s all ease-in-out;
}

.table-fund-mobile .fund-card .fund-classlist-toggle i, .table-fund-mobile .fund-card .fund-classlist-toggle svg {
  color: #2E55A5;
  -webkit-transition: .35s all ease-in-out;
  transition: .35s all ease-in-out;
}

.table-fund-mobile .fund-card .fund-classlist {
  background-color: #F5F9FF;
  padding: 1rem;
}

.table-fund-mobile .fund-card .fund-classlist .fund-card-attrs {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(46, 85, 165, 0.25);
}

.table-fund-mobile .fund-card .fund-classlist .fund-card-attrs:last-child {
  border-bottom: 0;
}

/* news.scss */
.news-carousel-title {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-bottom: 2rem;
}

.news-carousel-title p {
  max-width: 60%;
}

.news-carousel-title p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .news-carousel-title p {
    max-width: 100%;
  }
}

.news-carousel-item-image {
  position: relative;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
}

.news-carousel-item-image img {
  background-color: #2E55A5;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.news-carousel-item-content-date {
  display: block;
  font-size: .9rem;
  opacity: .9;
  margin-bottom: .25rem;
}

.news-carousel-item-content-title {
  a {
    color: #2E55A5;
  }
  color: #2E55A5;
}

.news-carousel-item-content-text {
  margin-top: 25px;
}

@media (max-width: 768px) {
  .news-carousel .swiper-button-next, .news-carousel .swiper-button-prev {
    display: none;
  }
}

.news-carousel .swiper-button-next {
  right: -45px;
}

.news-carousel .swiper-button-prev {
  left: -45px;
}

.news-carousel .swiper-pagination {
  width: 100%;
}

.news-carousel .swiper-pagination-bullet {
  margin: 0 4px;
}

/* search.scss */
.plugin-search {
  position: relative;
}

.plugin-search__icon {
  display: none;
  
  svg {
    pointer-events: none;
  }
}

.plugin-search__form {
 margin: 5px 0;
}

.plugin-search__close {
  display: none;

  svg {
    pointer-events: none;
  }
}

@media only screen and (min-width: 1200px) {
  .plugin-search {
    padding: 8px;
  }

  .plugin-search__icon {
    display: block;
    height: 24px;
    cursor: pointer;
  }

  .plugin-search__form  {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin: 0;
    display: none;

    input {
      padding-right: 36px;
    }
  }

  .plugin-search__close {
    display: block;
    cursor: pointer;
    height: 24px;
    width: 24px;
    margin: 6px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .plugin-search.open .plugin-search__form {
    display: block;
  }
}

.search-results {
  min-height: 50vh;
}

.search-results ul {
  list-style: none;
  padding: 0;
}

.search-results-item {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  -webkit-box-shadow: 0px 0.7px 0.7px rgba(0, 0, 0, 0.01), 0px 2px 2px rgba(0, 0, 0, 0.015), 0px 4.8px 4.8px rgba(0, 0, 0, 0.02), 0px 16px 16px rgba(0, 0, 0, 0.03);
          box-shadow: 0px 0.7px 0.7px rgba(0, 0, 0, 0.01), 0px 2px 2px rgba(0, 0, 0, 0.015), 0px 4.8px 4.8px rgba(0, 0, 0, 0.02), 0px 16px 16px rgba(0, 0, 0, 0.03);
  -webkit-transition: .35s all ease-in-out;
  transition: .35s all ease-in-out;
}

.search-results-item a {
  text-decoration: none;
  -webkit-transition: .25s all ease-in-out;
  transition: .25s all ease-in-out;
}

.search-results-item a:hover {
  -webkit-transition: .25s all ease-in-out;
  transition: .25s all ease-in-out;
}

.search-results-item p:last-child {
  margin-bottom: 0;
}

.search-results-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0px 1.1px 1.4px rgba(0, 0, 0, 0.021), 0px 3.1px 4px rgba(0, 0, 0, 0.03), 0px 7.5px 9.6px rgba(0, 0, 0, 0.039), 0px 25px 32px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 1.1px 1.4px rgba(0, 0, 0, 0.021), 0px 3.1px 4px rgba(0, 0, 0, 0.03), 0px 7.5px 9.6px rgba(0, 0, 0, 0.039), 0px 25px 32px rgba(0, 0, 0, 0.06);
  -webkit-transition: .35s all ease-in-out;
  transition: .35s all ease-in-out;
}

.search-no-results {
  padding: 1.5rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  -webkit-box-shadow: 0px 0.7px 0.7px rgba(0, 0, 0, 0.01), 0px 2px 2px rgba(0, 0, 0, 0.015), 0px 4.8px 4.8px rgba(0, 0, 0, 0.02), 0px 16px 16px rgba(0, 0, 0, 0.03);
          box-shadow: 0px 0.7px 0.7px rgba(0, 0, 0, 0.01), 0px 2px 2px rgba(0, 0, 0, 0.015), 0px 4.8px 4.8px rgba(0, 0, 0, 0.02), 0px 16px 16px rgba(0, 0, 0, 0.03);
  -webkit-transition: .35s all ease-in-out;
  transition: .35s all ease-in-out;
}

.search-no-results p {
  margin-bottom: 0;
}

.pagenav {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.pagenav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.pagenav li {
  margin-right: .25rem;
}

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

.pagenav li a {
  text-decoration: none;
  -webkit-transition: .35s all ease-in-out;
  transition: .35s all ease-in-out;
}

.pagenav li a:hover {
  background-color: #2E55A5;
  color: #ffffff;
  opacity: .75;
  -webkit-transition: .35s all ease-in-out;
  transition: .35s all ease-in-out;
}

.pagenav li a, .pagenav li span {
  border-radius: 6px;
  padding: .75rem 1rem;
}

.pagenav li.active span {
  background-color: #2E55A5;
  color: #ffffff;
}

@media only screen and (min-width: 769px) {
  #fund-tabs .nav-item a {
    min-height: 100px;
    text-align: center;
  }
}

/* tabs.scss */
#fund-tabs .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#fund-tabs .nav-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.75rem;
  text-decoration: none;
  color: #7b8392;
  border-bottom: 5px solid #f6f6f7;
  -webkit-transition: .35s all ease-in-out;
  transition: .35s all ease-in-out;
}


#fund-tabs .nav-item a:hover, #fund-tabs .nav-item a:focus {
  background-color: rgba(46, 85, 165, 0.05);
  border-color: rgba(46, 85, 165, 0.2);
  -webkit-transition: .35s all ease-in-out;
  transition: .35s all ease-in-out;
}

#fund-tabs .nav-item a.active {
  color: #2E55A5;
  background-color: rgba(46, 85, 165, 0.1);
  border-color: #2E55A5;
}

/* tag.scss */
.tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: .4rem .6rem;
  border-radius: 4px;
}

.tag-green {
  background-color: rgba(28, 136, 101, 0.1);
  color: #1c8865;
  border-color: rgba(28, 136, 101, 0.3);
}

.tag-red {
  background-color: rgba(244, 67, 54, 0.1);
  color: #f44336;
  border-color: rgba(244, 67, 54, 0.3);
}

/* video.scss */
.video-js .vjs-progress-holder {
  background-color: rgba(255, 255, 255, 0.75);
}

.video-js .vjs-load-progress {
  background-color: rgba(255, 255, 255, 0.75);
}

.video-js .vjs-play-progress {
  background-color: #ffffff;
}

.video-js .vjs-control-bar {
  background-color: rgba(46, 85, 165, 0.85);
}

.video-js .vjs-big-play-button {
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background: rgba(46, 85, 165, 0.85);
  border: 0;
  color: #ffffff;
  top: calc(50% - 1.5em);
  left: calc(50% - 1.5em);
  -webkit-transition: .35s all ease-in-out;
  transition: .35s all ease-in-out;
}

@media (max-width: 768px) {
  .video-js .vjs-big-play-button {
    width: 1.5em;
    height: 1.5em;
    top: calc(50% - .75em);
    left: calc(50% - .75em);
  }
}

.video-js .vjs-big-play-button:hover {
  background: #2E55A5;
  -webkit-transition: .35s all ease-in-out;
  transition: .35s all ease-in-out;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
}

.video-js .vjs-big-play-button:focus, .video-js:hover .vjs-big-play-button {
  background: rgba(46, 85, 165, 0.85);
}

.video-poster {
  overflow: hidden;
}

.video-poster img {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-lightbox {
  max-width: 80%;
}

@media (max-width: 768px) {
  .video-lightbox {
    max-width: 100%;
  }
}

.video-lightbox .modal-header {
  border: 0;
  padding-right: .5rem;
}

.video-lightbox .modal-header .close {
  color: #ffffff;
}

.video-lightbox .modal-body {
  padding: 0;
}

.video-lightbox .modal-content {
  background: transparent;
  border: 0;
}

.video-list-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  height: 42px;
}

@font-face {
  font-family: 'Museo Sans';
  src: url("/static/fonts/MuseoSans-300.woff") format("woff"), url("/static/fonts/MuseoSans-300.woff2") format("woff2"), url("/static/fonts/MuseoSans-300.otf") format("otf");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Museo Sans';
  src: url("/static/fonts/MuseoSans-500.woff") format("woff"), url("/static/fonts/MuseoSans-500.woff2") format("woff2"), url("/static/fonts/MuseoSans-500.otf") format("otf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Museo Sans';
  src: url("/static/fonts/MuseoSans-700.woff") format("woff"), url("/static/fonts/MuseoSans-700.woff2") format("woff2"), url("/static/fonts/MuseoSans-700.otf") format("otf");
  font-weight: 700;
  font-style: normal;
}

html, body {
  font-family: 'Museo Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

body {
  padding-top: 84px;
}

.nav-quaestio {
  background-color: #2E55A5;
  padding: .75rem 1.5rem;
  font-style: normal;
  font-weight: 500;
}

.nav-quaestio .form-inline .form-control {
  max-width: 170px;
}

.subnav-quaestio {
  background-color: #2E55A5;
  height: 45px;
  margin-top: 102px;
}

.navbar-logo {
  height: 50px;
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1080px) {
  .navbar-nav {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.navbar-nav .nav-link {
  font-size: .85rem;
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
}

.navbar-nav .plugin-search {
  margin-left: .5rem;
  margin-right: .5rem;
}

@media (max-width: 1080px) {
  .navbar-nav .plugin-search {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 1080px) {
  .navbar-nav .pri-logo {
    padding-top: 1rem;
  }
}

.navbar-nav .pri-logo img {
  width: 120px;
}

#language-dropdown {
  padding-left: 1rem;
}

@media (max-width: 1080px) {
  #language-dropdown {
    padding-left: 0;
  }
}

#language-dropdown .dropdown-toggle:after {
  *display: none;
  border-bottom-color: #ffffff;
  border-top-color: #ffffff;
}

#language-dropdown img {
  width: 28px;
}

@media only screen and (min-width: 1200px) {
  .subnav-quaestio {
    margin-top: 185px;
  }
}

h2 {
  font-size: 30px;
  line-height: 30px;
}

h2.quaestio-header {
  line-height: 34px;
}

@media only screen and (min-width: 1200px) {
  h2 {
    font-size: 40px;
    line-height: 40px;
  }
}

@media only screen and (min-width: 1200px) {
  h2.quaestio-header {
    line-height: 48px;
  }
}

h2 {
  font-style: normal;
  font-weight: 500;
  color: #2E55A5;
}

h2.quaestio-header {
  font-weight: 700;
}

h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #2E55A5;
}

h5 {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #5A5C61;
}

h5.card-title {
  font-weight: 700;
  color: #2E55A5;
}

h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #2E55A5;
}

p {
  font-size: 14px;
  line-height: 22px;
  color: #5A5C61;
}

p.card-text {
  line-height: 24px;
}

p.arial-20 {
  font-family: arial, sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #4F6686;
}

p.carousel-p {
  padding-left: 225px;
  padding-right: 225px;
}

.quaestio-chevron-down {
  color: #ffffff;
  font-size: 40px;
  margin: 40px 0;
}

section {
  margin-bottom: 75px;
}

.quaestio-inner-title {
  margin: 0 75px;
}

.quaestio-inner-subtitle {
  margin: 20px 200px;
}

.quaestio-inner-textbox {
  margin: 50px 185px;
}

@media only screen and (min-width: 1200px) {
  .quaestio-inner-title {
    margin: 0 100px;
  }
  .quaestio-inner-subtitle {
    margin: 20px 300px;
  }
  .quaestio-inner-textbox {
    margin: 50px 275px;
  }
}

.card {
  padding-left: 0;
  padding-right: 0;
  -webkit-box-shadow: 0px 0px 3px 0px grey;
          box-shadow: 0px 0px 3px 0px grey;
}

.card-body {
  padding: 40px 25px 40px 25px;
}

@media only screen and (min-width: 1200px) {
  .card-body {
    padding: 40px 160px 40px 80px;
  }
}

footer {
  background-color: #2E55A5;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 26px;
  padding: 50px 0 35px 0;
}

footer .custom-select {
  width: 100px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  padding: .375rem 1rem .375rem 1.5rem;
  background: transparent url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='white' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
}

footer .custom-select option {
  color: #2E55A5;
}

.quaestio-footer-text {
  margin-top: 15px;
}

.quaestio-linkedin {
  margin-top: 5px;
  font-size: 31px;
}

.quaestio-envelope {
  font-size: 31px;
  margin-left: 5px;
}

.footer-languages {
  position: absolute;
  bottom: 0;
}

.fund-slider-item {
  background-color: rgba(46, 85, 165, 0.7);
  padding: 40px;
  width: 400px;
}

#chi-siamo p {
  color: #2E55A5;
}

.quaestio-nav-link {
  opacity: 0.4;
}

.quaestio-nav-link.active {
  opacity: 1;
}

blockquote {
  padding: 25px 100px;
}

blockquote p {
  font-weight: 700;
  line-height: 24px;
}

.text-blue, .text-blue p {
  color: #2E55A5 !important;
}

.footer-logo {
  height: 60px;
}

@media only screen and (min-width: 1200px) {
  .footer-logo {
    height: 75px;
  }
}

#fund-swiper-container .swiper-slide {
  height: auto;
}

#fund-swiper-container h6 {
  font-size: 14px;
}

#fund-swiper-container .fund-slider-item {
  background-color: #fff;
  width: 275px;
  border: 2px solid #2e55a5;
  padding: 40px 40px 0 40px;
}

#fund-swiper-container .fund-slider-item.swiper-slide-active {
  background-color: #2e55a5;
}

#fund-swiper-container .fund-slider-item.swiper-slide-active h6, #fund-swiper-container .fund-slider-item.swiper-slide-active p {
  color: #fff;
}

#fund-swiper-container .fund-slider-item h6, #fund-swiper-container .fund-slider-item p {
  color: #2e55a5;
}

.swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%232e55a5'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%232e55a5'%2F%3E%3C%2Fsvg%3E");
}

@media only screen and (min-width: 768px) {
  .swiper-button-next {
    right: -45px;
  }
  .swiper-button-prev {
    left: -45px;
  }
}

.color-blue {
  color: #5979BA;
}

.dot {
  height: 70px;
  width: 70px;
  background-color: #F5F9FF;
  border-radius: 50%;
  display: inline-block;
}

.btn-outline-quaestio {
  color: #7BB3FF;
  background-color: transparent;
  background-image: none;
  border-color: #A0C8FF;
}

.btn-outline-quaestio:not([disabled]):not(.disabled).active, .btn-outline-quaestio:not([disabled]):not(.disabled):active, .show > .btn-outline-quaestio.dropdown-toggle {
  color: #FFF;
  background-color: #5979BA;
  border-color: #5979BA;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom-select-quaestio {
  color: #7BB3FF;
  border-color: #A0C8FF;
}

table.table-bordered-quaestio {
  border: 1px solid #DFE3EE;
}

table.table-bordered-quaestio th {
  background-color: rgba(46, 85, 165, 0.1);
  color: #2E55A5;
}

table.table-bordered-quaestio tr:nth-child(even) {
  background-color: rgba(46, 85, 165, 0.025);
}

table.table-bordered-quaestio th, table.table-bordered-quaestio td {
  padding: .75rem;
  border: 1px solid #DFE3EE;
}

.member-item {
  border-bottom: 2px solid #E3EFFF;
  padding: 16px 0;

  a {
    color: #2E55A5;
  }
  
  a:hover {
    color: #007aff;
  }
}

.team-member-column .member-item {
  border-top: 2px solid #E3EFFF;
}

.office-item {
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) -1px 2px 15px 0px;
          box-shadow: rgba(0, 0, 0, 0.4) -1px 2px 15px 0px;
  margin-bottom: 20px;
}

.fund-slider-item {
  height: 400px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  background-color: #517CBE;
  border-color: #dee2e6 #dee2e6 #517CBE;
  font-weight: 900;
}

.text-white {
  color: #fff;
}

.lang-flag {
  max-height: 24px;
}

table table.table-bordered-quaestio {
  border: 2px solid #A0C8FF;
  margin-top: 20px;
  color: #2E55A5;
}

table table.table-bordered-quaestio > thead > tr > th {
  border: 2px solid #A0C8FF;
}

table table.table-bordered-quaestio > tbody > tr > td {
  border: 2px solid #A0C8FF;
}

table table.table-bordered-quaestio-inside {
  border: 1px solid #A0C8FF;
  margin-top: 20px;
  color: #2E55A5;
  font-size: 14px;
}

table table.table-bordered-quaestio-inside > thead > tr > th {
  border: 1px solid #A0C8FF;
}

table table.table-bordered-quaestio-inside > tbody > tr > td {
  border: 1px solid #A0C8FF;
}

@media only screen and (max-width: 991px) {
  .navbar-nav .col {
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
  }
}

@media only screen and (max-width: 991px) {
  .cookie-message {
    padding: 0 15px 0 15px;
  }
}

@media only screen and (min-width: 992px) {
  .cookie-message {
    padding: 0 85px 0 20px;
  }
}

.author-thumb {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

#news-swiper-container .swiper-slide {
  height: auto;
}

#news-swiper-container .news-slider-item {
  background-color: #fff;
  width: 275px;
  border: 2px solid #2e55a5;
  padding: 20px;
}

#news-swiper-container .news-slider-item h6, #news-swiper-container .news-slider-item p {
  color: #2e55a5;
}

.news-category {
  width: fit-content;
  color: #87B2F9;
  padding-right: 25px;
  padding-left: 10px;
  font-size: 18px;
  position: relative;
}

.news-category::before {
  position: absolute;
  content: '\2022';
  width: 2px;
  height: 2px;
  border-radius: 50px;
  left: 0;
  top: 5.5px;
  font-size: 11px;
}

.link-item {
  cursor: pointer;
}

.news-row {
  max-height: none;
}

@media only screen and (min-width: 768px) {
  .news-row {
    max-height: 150px;
  }
}

.card-body.news-card-body {
  padding: 20px 15px;
}

.profiling-text > ul > li {
  list-style: none;
  font-size: 14px;
  color: #5A5C61;
}

.profiling-accept {
  margin: 1rem 0;
}

@media only screen and (max-width: 767px) {
  .cookie-banner-wrapper {
    padding-top: 30px;
  }
}

.lock-scroll {
  overflow: hidden;
}

.modal-backdrop.show {
  opacity: .75;
}

#cookie-bar-button {
  background-color: #2E55A5 !important;
}

.cursor-pointer {
  cursor: pointer;
}

.carousel-header {
  .carousel-indicators {
    margin-left: 0;
    margin-right: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .carousel-indicators li {
    cursor: pointer;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
    margin: 0 4px;
  }
  .carousel-indicators .active {
    opacity: 1;
    background: #007aff;
    margin: 0 4px;
  }
}

.no-top-border {
  top-border: none;
}

.section-organization {
  margin-top: 60px;
  h3 {
    text-transform: uppercase;
    margin-bottom: 20px;
  }
}

.chart-shareholder {
  height: 450px;
  max-width: 700px;
  border: 0px solid #DDDDDD;

  .apexcharts-legend-marker {
    flex-shrink: 0;
  }
}

@media only screen and (min-width: 768px) {
  .chart-shareholder {
    height: 350px;

    .apexcharts-legend {
      justify-content: center !important;
      top: 0 !important;
    }
  }
}

.organization-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
}

.organization-member {
  display: flex;
  column-gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
  width: 100%;
  color: #2E55A5;
  font-size: 14px;
 
  box-shadow:
  2px 0 0 0 white,
  0 2px 0 0 #E3EFFF,
  2px 2px 0 0 #E3EFFF,   /* Just to fix the corner */
  2px 0 0 0 transparent inset,
  0 2px 0 0 #E3EFFF inset;

  h6 {
    margin: 0;
  }

  img {
    width: 70px; height: 70px;
    border: 5px solid #2E55A5; 
    border-radius: 50%;
    flex-shrink: 0;
  }

  a {
    font-size: 16px;
    color: #2E55A5;
  }

  a:hover {
    color: #007aff;
  }
}

@media only screen and (min-width: 768px) {
  .organization-member {
    width: calc((100% - 30px) / 2);
  }
}

@media only screen and (min-width: 1024px) {
  .organization-member {
    width: calc((100% - 30px * 2) / 3);
  }
}

.organization-member > div {
  flex-grow: 1;
}

.media-list {
  margin-top: 60px;
  h3 {
    text-transform: uppercase;
  }
}

.list-document {
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  li {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .list-document {
    gap: 30px;

    li {
      width: calc((100% - 30px * 2) / 3);
    }
  }
}

.document-download {
  display: flex;
  align-items: center;
  height: 50px;
  column-gap: 10px;
  padding: 5px 10px;
  border: 2px solid #2E55A5;
  color: #2E55A5;
  border-radius: 5px;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.25;

  svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    fill: currentColor;
  }

  &:hover {
    text-decoration: none;
    background-color: #2E55A5;
    color: white;
  }
}

.section-documents {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #F5F9FF;
  margin-bottom: 0;
}
.section-documents h6 {
  margin-bottom: 1rem;
}
.section-documents .document-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 15px;
  color: #2E55A5;
  background: #ffffff;
  padding: 1rem;
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 0.4px 0.8px rgba(0, 0, 0, 0.02), 0 1.3px 2.7px rgba(0, 0, 0, 0.03), 0 6px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  height: calc(100% - 1.5rem);
  transition: 0.25s all ease-in-out;
}
.section-documents .document-card:hover {
  transform: scale(0.97);
  text-decoration: none;
  box-shadow: 0 0.4px 8px rgba(0, 0, 0, 0.05), 0 1.3px 17px rgba(0, 0, 0, 0.03), 0 6px 32px rgba(0, 0, 0, 0.05);
  transition: 0.25s all ease-in-out;
}

/* General approach for hiding the download button across browsers */
/* Chrome, Edge, and Opera */
video::-internal-media-controls-download-button {
    display: none;
}
/* Firefox */
video::-moz-media-controls-download-button {
    display: none;
}
/* Internet Explorer */
video::-ms-media-controls-download-button {
    display: none;
}
/* Safari */
video::-webkit-media-controls-enclosure {
    overflow: hidden;
}
video::-webkit-media-controls-panel {
    width: calc(100% + 30px); /* Adjust the panel width */
}

body:has(.cms-toolbar) {
  position: relative;
  top: 46px;
}

body:has(.cms-toolbar) .fixed-top {
  top: 46px;
}