@import url("/public/fonts/fonts.css");
/*** SPACERS ***/
/*** USE MIXINS FOR SPACERS 5-9 THAT CHANGE BELOW TABLET ***/
/*** COLORS ***/
.blue {
  color: #007588 !important;
}
.blue > strong > a {
  color: #007588 !important;
}
.blue > a {
  color: #007588 !important;
}

.green {
  color: #398c6d !important;
}

.grey {
  color: #747474 !important;
}

.grey-bg {
  background-color: #eef5f6 !important;
}

.blue-bg {
  background-color: #007588 !important;
}

/*** FONTS ***/
body {
  font-family: "Proxima Nova", Arial, sans-serif !important;
  color: #383838 !important;
  overflow-x: hidden;
}

/*** HEADERS ***/
h1 {
  font: 56px/56px "Proxima Nova", Arial, sans-serif;
  margin-bottom: 16px;
}

h2 {
  font: 45px/0.99 "Proxima Nova Bold", Arial, sans-serif;
  margin-bottom: 32px;
  color: #007588;
}

h3 {
  font: 30px/36px "Proxima Nova Semibold", Arial, sans-serif;
  margin-bottom: 16px;
}

h4 {
  font: 24px/29px "Proxima Nova Semibold", Arial, sans-serif;
  margin-bottom: 16px;
}

h5 {
  font: 24px/29px "Proxima Nova Semibold", Arial, sans-serif;
  margin-bottom: 16px;
}

h6 {
  font: 20px/24px "Proxima Nova Bold", Arial, sans-serif;
}

@media (max-width: 767px) {
  h1 {
    font: 40px/40px "Proxima Nova", Arial, sans-serif;
  }
}
/*** FONTS ***/
p {
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: 24px;
  line-height: 28px;
}

.large,
.large p {
  font-size: 24px;
  line-height: 28px;
}

h1.large {
  font-size: 75px;
  margin-bottom: 24px;
  line-height: 75px;
}

.medium {
  font-size: 20px;
  line-height: 24px;
}

.small {
  font-size: 15px;
  line-height: 18px;
}

.x-small {
  font-size: 13px;
  line-height: 16px;
}

.bold,
strong {
  font-family: "Proxima Nova Bold", Arial, sans-serif !important;
}

.semibold {
  font-family: "Proxima Nova Semibold", Arial, sans-serif !important;
}

.light {
  font-family: "Proxima Nova Light", Arial, sans-serif !important;
}

.regular {
  font-family: "Proxima Nova", Arial, sans-serif !important;
}

.label {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  font-family: "Proxima Nova Bold", Arial, sans-serif;
  letter-spacing: 0.5px;
}
.label.green-bg {
  background-color: #52bc7f;
  padding: 4px 8px;
  color: #fff;
  display: inline-block;
}

.label-sm {
  text-transform: uppercase;
  font: 14px/17px "Proxima Nova Bold", Arial, sans-serif;
  letter-spacing: 0.4px;
}

.label-xs {
  text-transform: uppercase;
  font: 13px/16px "Proxima Nova Bold", Arial, sans-serif;
}

a,
a:hover {
  color: #175b69;
}

.caption {
  font-size: 14px !important;
  line-height: 20px !important;
  margin-bottom: 24px;
  color: #747474;
  font-style: italic;
}
.caption img {
  display: block;
}

.quote {
  font-size: 90px;
  margin-bottom: 0;
}

.italic {
  font-style: italic;
}

/*** LISTS ***/
li {
  padding-left: 16px;
  margin-bottom: 8px;
}

/*** BUTTONS ***/
button,
.btn {
  border-radius: 20px !important;
  border: none;
  padding: 8px 16px;
  outline: none;
}
button:focus, button:hover,
.btn:focus,
.btn:hover {
  outline: none !important;
}
button:hover,
.btn:hover {
  text-decoration: underline;
}
button,
.btn {
  /*** button colors ***/
}
button.blue,
.btn.blue {
  background-color: #007588;
  color: #fff !important;
  border: 2px solid #007588;
}
button.outline,
.btn.outline {
  border: 2px solid #007588;
  color: #007588;
  background-color: transparent;
}
button.outline.white,
.btn.outline.white {
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
}
button.outline.green,
.btn.outline.green {
  border: 2px solid #52bc7f;
  color: #fff !important;
  background-color: transparent;
}
button.green,
.btn.green {
  background-color: #52bc7f;
  color: #fff !important;
  border: 2px solid #52bc7f;
}

/*** GLOBAL ELEMENTS ***/
.arrow::after {
  content: url("/public/images/teal_arrow_r.svg");
  padding-left: 8px;
  vertical-align: -15%;
}

.back-arrow::before {
  content: url("/public/images/teal_arrow_l.svg");
  padding-right: 8px;
  vertical-align: -15%;
}

.green-arrow::after {
  content: url("/public/images/green_arrow_r.svg");
  vertical-align: -15%;
}

.white-arrow::after {
  content: url("/public/images/white_arrow_r.svg");
  padding-left: 8px;
}

.lock::before {
  content: url("/public/images/white_lock.svg");
  padding-right: 8px;
}

.green-lock::before {
  content: url("/public/images/green_lock.svg");
  padding-right: 8px;
}

.divider {
  border-top: 6px solid #e7e7e7;
  margin-top: 48px;
  padding-top: 32px;
}

.logo-download a {
  font-family: "Proxima Nova Bold", Arial, sans-serif;
  color: #383838;
  text-decoration: none;
}
.logo-download a:hover {
  text-decoration: underline;
}
.logo-download a::after {
  content: "";
  background-image: url("/public/images/green_download.svg");
  width: 25px;
  height: 25px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-bottom: 4px;
  margin-left: 8px;
}

.stat-flex {
  display: flex;
  margin-top: 64px;
}
.stat-flex .stat {
  flex-basis: 25%;
  text-align: center;
  padding-right: 16px;
  padding-left: 16px;
}
.stat-flex .stat p {
  font-size: 13px;
  line-height: 16px;
}
.stat-flex .stat strong {
  color: #398c6d;
  display: block;
  font-size: 44px;
  line-height: 36px;
  font-family: "Proxima Nova Semibold", Arial, sans-serif;
}
.stat-flex .stat img {
  margin-top: 0;
  margin-bottom: 0;
  width: 72px;
}

/*** INPUTS ***/
input {
  font-family: "Proxima Nova", Arial, sans-serif;
  color: #383838;
}
input::placeholder {
  color: #747474;
}

input,
input:focus {
  outline: none;
}

/*** FLOATS ***/
.left,
.left-75,
.left-50,
.left-33 {
  float: left;
}

.right,
.right-75,
.right-50,
.right-33 {
  float: right;
}

.right-75,
.left-75,
.right-75 p,
.left-75 p,
.right-50,
.left-50,
.right-50 p,
.left-50 p,
.right-33,
.left-33,
.right-33 p,
.left-33 p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 24px;
  color: #747474;
  font-style: italic;
}
.right-75 img,
.left-75 img,
.right-75 p img,
.left-75 p img,
.right-50 img,
.left-50 img,
.right-50 p img,
.left-50 p img,
.right-33 img,
.left-33 img,
.right-33 p img,
.left-33 p img {
  margin-bottom: 8px !important;
}

.right-75,
.right-50,
.right-33 {
  margin-left: 24px;
}

.left-75,
.left-50,
.left-33 {
  margin-right: 24px;
}

.right-75,
.left-75 {
  width: calc(75% - 12px);
}
.right-75 img,
.left-75 img {
  width: 100%;
  box-shadow: 2px 3px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

.right-50,
.left-50 {
  width: calc(50% - 12px);
}
.right-50 img,
.left-50 img {
  width: 100%;
  box-shadow: 2px 3px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

.right-33,
.left-33 {
  width: calc(30% - 12px);
}
.right-33 img,
.left-33 img {
  width: 100%;
  box-shadow: 2px 3px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

.caption img {
  margin-bottom: 8px !important;
}

.clear {
  clear: both;
}

.overflow-hidden {
  overflow: hidden;
}

/*** TABLE ***/
table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 3px 8px 0 rgba(0, 0, 0, 0.2);
  margin-top: 48px;
  margin-bottom: 48px;
}
table thead tr {
  background-color: #1b6875;
  color: #fff;
  font-family: "Proxima Nova Bold", Arial, sans-serif;
}
table thead tr th {
  padding: 16px 48px;
}
table tbody tr:last-child {
  border-bottom: none;
}
table tr {
  border-bottom: 2px solid #f4f4f4;
}
table tr td {
  padding: 16px 48px;
  color: #175b69;
  border-right: 2px solid #f4f4f4;
}
table tr td.blue {
  background-color: #1b6875;
  color: #fff;
  font-family: "Proxima Nova Bold", Arial, sans-serif;
}
table tr {
  /*
      td:first-child {
          background-color: $blue-2;
          padding: $spacer-02 $spacer-04;
          color: #fff;
          font-family: $font-bold;
      }
      */
}

@media (max-width: 767px) {
  thead th {
    padding: 4px 8px !important;
  }
  tr,
  tr td {
    padding: 4px 8px !important;
  }
}
.custom-tooltip {
  position: relative;
}

.custom-tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: #fff;
  color: #585858;
  font-size: 14px;
  line-height: 17px;
  text-align: left;
  padding: 15px;
  border-radius: 5px;
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  top: 38px;
}

.custom-tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

.custom-tooltip:hover .tooltiptext {
  visibility: visible;
}

@media (max-width: 767px) {
  .custom-tooltip .tooltiptext {
    max-width: 275px;
    left: auto;
    right: 0;
    transform: none;
  }
}
/* Position */
.center {
  display: block;
  margin: 16px auto;
}

.whitespace-prewrap {
  white-space: pre-wrap;
}

* {
  margin: 0;
  padding: 0;
}

.carousel-container {
  padding-bottom: 128px;
  padding-top: 96px;
}
.carousel-container .carousel-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}
.carousel-container .carousel-wrapper .carousel-headline {
  margin-bottom: 32px;
}
.carousel-container .carousel-wrapper .item {
  margin-bottom: 48px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  display: flex;
  flex-wrap: nowrap;
  width: 100vw;
  padding: 0;
  padding-left: 260px;
  border-radius: 0;
  transition: all 1s;
  align-items: center;
}
.carousel-container .carousel-wrapper .item .contentbox {
  z-index: 4;
  background-color: #1b6875;
  padding: 48px;
  color: #fff;
  border-radius: 6px;
  position: absolute;
  width: 380px;
  height: 380px;
  left: 0;
}
.carousel-container .carousel-wrapper .item .contentbox .small {
  margin-bottom: 0;
  min-width: 40px;
}
.carousel-container .carousel-wrapper .item .contentbox .carousel-item-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.carousel-container .carousel-wrapper .item .contentbox .carousel-item-flex .bold {
  padding-right: 32px;
}
.carousel-container .carousel-wrapper .item .contentbox a {
  color: #fff;
}
.carousel-container .carousel-wrapper .item .contentbox a:hover {
  text-decoration: underline;
}
.carousel-container .carousel-wrapper .item .inner {
  transition: transform 0.75s ease-in-out;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.carousel-container .carousel-wrapper .item .inner .inner__item {
  margin: 0 20px;
  transition: width 0.3s ease-in, height 0.3s ease-in, opacity 0.3s ease-in 0.9s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 660px;
  visibility: visible;
  opacity: 1;
}
.carousel-container .carousel-wrapper .item .inner .inner__item img {
  width: 100%;
  aspect-ratio: 900/600;
  object-fit: cover;
  object-position: center;
  display: block;
}
.carousel-container .carousel-wrapper .item .btn {
  position: absolute;
  padding: 0;
}
.carousel-container .carousel-wrapper .item .btn--left {
  z-index: 3;
  left: 0;
  bottom: -48px;
}
.carousel-container .carousel-wrapper .item .btn--right {
  z-index: 3;
  right: 0;
  bottom: -48px;
}
.carousel-container .carousel-wrapper .item .btn img:first-child {
  display: none;
}
.carousel-container .carousel-wrapper .item .btn.first img:last-child, .carousel-container .carousel-wrapper .item .btn.last img:last-child {
  display: none;
}
.carousel-container .carousel-wrapper .item .btn.first img:first-child, .carousel-container .carousel-wrapper .item .btn.last img:first-child {
  display: block;
}
.carousel-container .carousel-wrapper .item .btn:hover {
  text-decoration: none;
}
.carousel-container .carousel-wrapper .item .btn:focus {
  box-shadow: none;
}
.carousel-container .carousel-wrapper .item .carousel-indicators {
  bottom: -32px;
}
.carousel-container .carousel-wrapper .item .carousel-indicators button {
  background-color: #1b6875;
  padding: 2px 72px;
  margin-left: 8px;
  margin-right: 8px;
  opacity: 0.4;
  cursor: default;
}
.carousel-container .carousel-wrapper .item .carousel-indicators button.active {
  opacity: 1;
}
.carousel-container .slide-data:first-child {
  display: block;
}
.carousel-container .slide-data {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 96px);
  transition: all 0.3s ease;
  opacity: 0;
  display: none;
}
.carousel-container .slide-data.active {
  animation: slider-data-move 0.3s cubic-bezier(0.39, 0.89, 0.89, 1);
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  display: block;
}
.carousel-container .slide-data .label-xs {
  font-family: "Proxima Nova", Arial, sans-serif;
  margin-bottom: 32px;
}
.carousel-container .slide-data h3 {
  font-size: 21px;
  line-height: 23px;
}
.carousel-container .slide-data p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
}
.carousel-container .slide-data a {
  text-decoration: none;
  font-family: "Proxima Nova Bold", Arial, sans-serif;
}
.carousel-container .slide-data a:hover {
  text-decoration: underline;
}
.carousel-container .slide-data .partner-profiles .blue,
.carousel-container .slide-data .partner-profiles .green {
  color: #fff !important;
}
.carousel-container .slide-data .partner-profiles .label {
  font-size: 13px;
  line-height: 16px;
}
.carousel-container .slide-data .partner-profiles p:nth-child(n+4) {
  display: none;
}
.carousel-container .slide-data .stats {
  margin-bottom: 16px;
}
.carousel-container .slide-data .stats img {
  margin-right: 16px;
  margin-top: 0;
  max-width: 50px;
}
.carousel-container .slide-data .stats p {
  overflow: visible !important;
  font-size: 23px;
  line-height: 1.25;
  margin-bottom: 2rem;
  display: block;
}
.carousel-container .slide-data .stats p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .carousel-container .carousel-wrapper .item .carousel-indicators button {
    padding: 2px 64px;
  }
}
@media (max-width: 991px) {
  .carousel-container .carousel-wrapper .item {
    padding-left: 100px;
  }
  .carousel-container .carousel-wrapper .item .carousel-indicators button {
    padding: 2px 32px;
  }
}
@media (max-width: 767px) {
  .carousel-container {
    padding-left: 0px;
    padding-right: 0px;
    margin-left: 0px;
    margin-right: 0px;
    max-width: 100%;
    overflow: hidden;
  }
  .carousel-container .carousel-wrapper .carousel-headline {
    padding-left: 15px;
    padding-right: 15px;
  }
  .carousel-container .carousel-wrapper .item {
    padding-left: 0;
    display: block;
    width: 100%;
  }
  .carousel-container .carousel-wrapper .item .contentbox {
    position: relative;
    width: 94%;
    margin-left: 3%;
    margin-top: -20px;
    height: 300px;
    padding: 24px;
  }
  .carousel-container .carousel-wrapper .item .contentbox .slide-data {
    width: calc(100% - 48px);
  }
  .carousel-container .carousel-wrapper .item .contentbox .slide-data .stats p {
    font-size: 20px;
    display: block;
    width: 100%;
    float: left;
  }
  .carousel-container .carousel-wrapper .item .contentbox .slide-data .stats img {
    margin-top: -14px;
  }
  .carousel-container .carousel-wrapper .item .inner .inner__item {
    margin: 0;
    min-width: 100%;
  }
  .carousel-container .carousel-wrapper .item .carousel-indicators {
    bottom: 16px;
  }
  .carousel-container .carousel-wrapper .item .carousel-indicators button {
    padding: 2px 16px;
    margin-left: 4px;
    margin-right: 4px;
  }
  .carousel-container .carousel-wrapper .item .btn--left {
    left: 24px;
    bottom: 0px;
  }
  .carousel-container .carousel-wrapper .item .btn--right {
    right: 24px;
    bottom: 0px;
  }
}
@media (max-width: 420px) {
  .item .contentbox .slide-data p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
  }
}
@media (max-width: 340px) {
  .item .carousel-indicators {
    display: none;
  }
}
@keyframes slider-data-move {
  0% {
    transform: translateY(-45%);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%);
    opacity: 1;
  }
}
.portfolio-section-spacer {
  padding-top: 96px;
  padding-bottom: 128px;
}

#menu-search img {
  width: 16px;
  height: 16px;
}

.search-input {
  position: absolute;
  top: 66px;
  right: -20px;
  display: none;
  background: #f2f2f2;
  border-top: 6px solid #51BC7F;
  padding: 1.5rem 1rem;
  z-index: 2;
  width: 280px;
  box-shadow: 0 0px 10px 5px rgba(0, 0, 0, 0.1);
}
.search-input input {
  height: 40px;
  padding: 0 10px 0 35px;
  width: 250px;
  border: 1px solid #adadad;
  margin: 0 auto;
  display: block;
  background: url(/public/images/search.svg) left center #fff;
  background-size: 16px;
  background-repeat: no-repeat;
  background-position-x: 10px;
}
.search-input input:focus {
  outline: none;
}
.search-input .close-search {
  border: none;
  width: 13px;
  height: 25px;
  display: none;
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  margin-right: 0;
  border-radius: 0px !important;
  padding: 0;
}
.search-input .close-search img {
  width: 100%;
}
.search-input .close-search:hover {
  opacity: 0.75;
}
.search-input.show {
  display: block;
}
.search-input .search-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40px;
  margin-bottom: -30px;
  font-size: 12px;
  padding: 0 1rem;
  background: #f2f2f2;
  width: 100%;
  line-height: 40px;
  display: none;
}
.search-input.large-search {
  display: block;
  top: 0;
  position: fixed;
  right: auto;
  transform: translate(-50%, 125px);
  width: 100%;
  max-width: 500px;
  left: 50%;
  padding: 1.5rem 1rem;
  background: #fff;
  animation: slide-search 0.5s cubic-bezier(0.39, 0.9, 0.6, 1);
  animation-fill-mode: forwards;
}
.search-input.large-search input {
  width: 100%;
}
.search-input.large-search .close-search {
  display: block;
}
.search-input.large-search .search-stats.show {
  display: block;
}
.search-input.large-search .search-results {
  position: relative;
  box-shadow: none;
  border: none;
}
.search-input.large-search .search-results a {
  border-bottom: 1px solid #f2f2f2;
  padding: 1rem;
}
.search-input.large-search .search-results a p {
  width: 450px;
}

.search-results {
  position: absolute;
  top: 15px;
  width: 100%;
  background: #fff;
  max-height: 55vh;
  overflow: hidden;
  overflow-y: scroll;
  border: 1px solid #adadad;
  box-shadow: 0 0px 10px 5px rgba(0, 0, 0, 0.075);
  display: none;
}
.search-results.show {
  display: block;
}
.search-results a {
  width: 100%;
  padding: 0.75rem 1rem;
  margin: 0;
  border-top: 0;
  border-bottom: 1px solid #adadad;
  display: block;
  text-decoration: none;
}
.search-results a p {
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  width: 215px;
  overflow: hidden;
}
.search-results a p em {
  font-weight: bold;
}
.search-results a p:last-child {
  font-size: 12px;
  color: #676868;
  margin-top: 5px;
}
.search-results a:first-child {
  border-top: none;
}
.search-results a:last-child {
  border-bottom: none;
}
.search-results a:hover {
  background: #f2f2f2;
}

@media (max-width: 991px) {
  .search-input {
    right: 0;
    padding: 0.75rem 0.5rem;
  }
  .search-results {
    top: 5px;
  }
}
@media (max-width: 576px) {
  .search-input.large-search {
    width: 300px;
    max-width: 100%;
  }
  .search-input.large-search .search-results a p {
    width: 250px;
  }
}
@keyframes slide-search {
  0% {
    transform: translate(-50%, 125px);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 100px);
    opacity: 1;
  }
}
.search-overlay {
  background-color: rgba(30, 37, 43, 0.75);
  min-width: 100%;
  min-height: 100%;
  z-index: 3;
  position: fixed;
  top: 0;
  left: 0;
}

.three-column-component {
  padding: 48px 0;
}
.three-column-component .three-column-header {
  text-align: left;
  margin-bottom: 32px;
  color: #175b69;
}
.three-column-component .three-column-header p {
  margin-bottom: 16px;
}
.three-column-component .three-column-header h2, .three-column-component .three-column-header h3, .three-column-component .three-column-header h4 {
  margin-bottom: 16px;
}
.three-column-component .three-column-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (min-width: 721px) {
  .three-column-component .three-column-row > div {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }
}
@media (max-width: 720px) {
  .three-column-component .three-column-row > div {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 24px;
  }
}
.three-column-component .column-item h3 {
  color: #175b69;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.three-column-component .column-item .column-text {
  color: #175b69;
}
.three-column-component .column-item .column-text p {
  margin-bottom: 16px;
  line-height: 1.6;
}
.three-column-component .column-item .column-text a {
  color: #175b69;
  font-weight: bold;
  text-decoration: none;
}
.three-column-component .column-item .column-text a:hover {
  text-decoration: underline;
}

.slider-tb-component {
  padding: 48px 0;
}
.slider-tb-component h2 {
  text-align: center;
  margin-bottom: 32px;
}
.slider-tb-component .slider-tb-wrapper {
  display: flex;
  gap: 32px;
}
@media (max-width: 768px) {
  .slider-tb-component .slider-tb-wrapper {
    flex-direction: column;
  }
}
.slider-tb-component .slider-tb-nav {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .slider-tb-component .slider-tb-nav {
    flex: 0 0 100%;
  }
}
.slider-tb-component .slide-nav-item {
  position: relative;
  padding: 24px 24px 24px 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
  border-left: 4px solid transparent;
}
.slider-tb-component .slide-nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: transparent;
  transition: background-color 0.3s;
}
.slider-tb-component .slide-nav-item.active::before {
  background-color: #fff;
}
.slider-tb-component .slide-nav-item.active .slide-nav-arrow {
  opacity: 1;
  color: #fff;
}
.slider-tb-component .slide-nav-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.slider-tb-component .slide-nav-content {
  flex: 1;
}
.slider-tb-component .slide-nav-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  margin: 0 0 8px 0;
  transition: color 0.3s;
}
.slider-tb-component .slide-nav-subtitle {
  font-size: 0.875rem;
  color: #fff;
  opacity: 0.9;
  margin: 0;
  line-height: 1.4;
}
.slider-tb-component .slide-nav-arrow {
  opacity: 0;
  font-size: 1.5rem;
  color: #fff;
  margin-left: 16px;
  transition: opacity 0.3s, color 0.3s;
}
.slider-tb-component .slider-tb-content {
  flex: 1;
  background-color: #fff;
  padding: 32px;
  border-radius: 8px;
  position: relative;
}
.slider-tb-component .slide-tb-panel {
  display: none;
}
.slider-tb-component .slide-tb-panel.active {
  display: block;
}
.slider-tb-component .slide-text {
  color: #175b69;
  line-height: 1.6;
}
.slider-tb-component .slide-text p {
  margin-bottom: 16px;
}
.slider-tb-component .slide-text a {
  font-weight: bold;
}
.slider-tb-component .slide-text button {
  color: var(--theme-color);
  border-color: var(--theme-color);
}
.slider-tb-component .slide-text button:hover {
  background-color: var(--theme-color);
  color: #fff;
}
.slider-tb-component.slider-tb-dark {
  --theme-color: #007588;
}
.slider-tb-component.slider-tb-dark .slider-tb-nav {
  background-color: #007588;
}
.slider-tb-component.slider-tb-light {
  --theme-color: #52BC7F;
}
.slider-tb-component.slider-tb-light .slider-tb-nav {
  background-color: #52BC7F;
}

.slider-lr-component {
  padding: 48px 0;
}
.slider-lr-component .slider-lr-title {
  text-align: center;
  margin-bottom: 32px;
  color: #175b69;
}
.slider-lr-component .col-lg-12 {
  position: relative;
}
.slider-lr-component .slider-lr-wrapper {
  position: static;
  min-height: 400px;
}
@media (max-width: 991px) {
  .slider-lr-component .slider-lr-wrapper {
    display: block;
  }
}
.slider-lr-component .slide-lr {
  display: none;
  width: 100%;
}
.slider-lr-component .slide-lr.active {
  display: block;
}
.slider-lr-component .slide-content-wrapper {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.slider-lr-component .slide-top-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .slider-lr-component .slide-top-content {
    flex-direction: column;
  }
}
.slider-lr-component .slide-image {
  flex: 0 0 50%;
  background-color: #ddd;
}
@media (max-width: 768px) {
  .slider-lr-component .slide-image {
    flex: 0 0 100%;
  }
}
.slider-lr-component .slide-image img {
  width: 100%;
  height: auto;
  display: block;
}
.slider-lr-component .slide-text-content {
  flex: 0 0 50%;
  color: #175b69;
}
.slider-lr-component .slide-text-content h3 {
  color: #175b69;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.slider-lr-component .slide-text-content .slide-text {
  line-height: 1.6;
}
.slider-lr-component .slide-text-content .slide-text p {
  margin-bottom: 16px;
  line-height: 1.6;
}
.slider-lr-component .slide-text-content .slide-text a {
  color: #175b69;
  font-weight: bold;
}
.slider-lr-component .slide-additional-component {
  width: 100%;
}
.slider-lr-component .slide-additional-component .stats-component {
  padding: 0;
}
.slider-lr-component .slide-additional-component .stats-component .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .slider-lr-component .slide-additional-component .stats-component .row {
    grid-template-columns: 1fr;
  }
}
.slider-lr-component .slide-additional-component .stats-component .row > div {
  max-width: 100%;
}
.slider-lr-component .slide-additional-component .stats-component .stat-item {
  text-align: center;
  padding: 24px;
  background-color: transparent;
}
.slider-lr-component .slide-additional-component .stats-component .stat-item .stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: #398c6d;
  margin-bottom: 8px;
}
.slider-lr-component .slide-additional-component .stats-component .stat-item .stat-description {
  font-size: 0.875rem;
  color: #175b69;
  line-height: 1.4;
}
.slider-lr-component .slide-additional-component .dropdown-component {
  padding: 0;
}
.slider-lr-component .slide-additional-component .dropdown-component h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #007588;
}
.slider-lr-component .slide-additional-component .dropdown-component .dropdown-item {
  border: none;
  border-bottom: 1px solid #747474;
  margin-bottom: 0;
}
.slider-lr-component .slide-additional-component .dropdown-component .dropdown-item:last-child {
  border-bottom: none;
}
.slider-lr-component .slide-additional-component .dropdown-component .dropdown-item.active .dropdown-toggle {
  background-color: transparent;
}
.slider-lr-component .slide-additional-component .dropdown-component .dropdown-toggle {
  background-color: transparent;
  border: none;
  padding: 24px 0;
  width: 100%;
  text-align: left;
  position: relative;
}
.slider-lr-component .slide-additional-component .dropdown-component .dropdown-toggle:focus {
  outline: none;
  box-shadow: none;
}
.slider-lr-component .slide-additional-component .dropdown-component .dropdown-toggle .dropdown-icon {
  display: none;
}
.slider-lr-component .slide-additional-component .dropdown-component .dropdown-toggle h4 {
  font-size: 18px;
  font-weight: bold;
  color: #007588;
  margin: 0;
  padding-right: 96px;
}
.slider-lr-component .slide-additional-component .dropdown-component .dropdown-toggle h4:after {
  content: "";
  background-image: url("/public/images/dropdown_arrow.svg");
  background-size: 14px 8px;
  display: inline-block;
  transition: all 0.5s;
  width: 14px;
  height: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.slider-lr-component .slide-additional-component .dropdown-component .dropdown-item.active .dropdown-toggle h4:after {
  transform: translateY(-50%) rotate(180deg);
}
.slider-lr-component .slide-additional-component .dropdown-component .dropdown-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  padding: 0;
}
.slider-lr-component .slide-additional-component .dropdown-component .dropdown-content p {
  color: #175b69;
  line-height: 1.6;
}
.slider-lr-component .slide-additional-component .dropdown-component .dropdown-item.active .dropdown-content {
  max-height: 1000px;
  opacity: 1;
  padding: 0 0 32px 0;
}
.slider-lr-component .btn-lr-nav {
  position: absolute;
  top: 350px;
  background-color: transparent;
  border: 2px solid #175b69;
  color: #175b69;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;
  padding: 0;
  z-index: 10;
  box-sizing: border-box;
}
.slider-lr-component .btn-lr-nav span {
  line-height: 1;
  display: block;
}
.slider-lr-component .btn-lr-nav:hover {
  background-color: #175b69;
  color: #fff;
}
.slider-lr-component .btn-lr-nav:focus {
  outline: none;
  box-shadow: none;
}
.slider-lr-component .btn-lr-nav.btn-lr-prev {
  left: -70px;
}
@media (max-width: 1199px) {
  .slider-lr-component .btn-lr-nav.btn-lr-prev {
    left: -50px;
  }
}
@media (max-width: 991px) {
  .slider-lr-component .btn-lr-nav.btn-lr-prev {
    position: static;
    transform: none;
    left: auto;
  }
}
.slider-lr-component .btn-lr-nav.btn-lr-next {
  right: -70px;
}
@media (max-width: 1199px) {
  .slider-lr-component .btn-lr-nav.btn-lr-next {
    right: -50px;
  }
}
@media (max-width: 991px) {
  .slider-lr-component .btn-lr-nav.btn-lr-next {
    position: static;
    transform: none;
    right: auto;
  }
}
.slider-lr-component .slider-lr-controls {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.slider-lr-component .slider-lr-controls .slide-indicators {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.slider-lr-component .slider-lr-controls .slide-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s;
}
.slider-lr-component .slider-lr-controls .slide-indicators .indicator.active {
  background-color: #175b69;
}
.slider-lr-component .slider-lr-controls .slide-indicators .indicator:hover {
  background-color: #007588;
}

.dropdown-component {
  padding: 48px 0;
}
.dropdown-component h2 {
  text-align: center;
  margin-bottom: 32px;
  color: #175b69;
}
.dropdown-component .dropdown-items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.dropdown-component.dropdown-side-by-side .dropdown-items > div {
  flex: 0 0 calc(50% - 16px);
}
@media (max-width: 768px) {
  .dropdown-component.dropdown-side-by-side .dropdown-items > div {
    flex: 0 0 100%;
  }
}
.dropdown-component.dropdown-full-width .dropdown-items > div {
  flex: 0 0 100%;
}
.dropdown-component .dropdown-item {
  background-color: #fff;
  border: 1px solid #175b69;
  border-radius: 4px;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.dropdown-component .dropdown-item.active .dropdown-toggle {
  background-color: transparent;
}
.dropdown-component .dropdown-item.active .dropdown-toggle h4:after {
  transform: translateY(-50%) rotate(180deg);
}
.dropdown-component .dropdown-item.active .dropdown-content {
  max-height: 1000px;
  opacity: 1;
  padding: 24px;
}
.dropdown-component .dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s;
  position: relative;
}
.dropdown-component .dropdown-toggle h4 {
  margin: 0;
  color: #175b69;
  font-size: 1.125rem;
  font-weight: bold;
  flex: 1;
  padding-right: 48px;
}
.dropdown-component .dropdown-toggle h4:after {
  content: "";
  background-image: url("/public/images/dropdown_arrow.svg");
  background-size: 14px 8px;
  display: inline-block;
  transition: all 0.5s;
  width: 14px;
  height: 8px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.dropdown-component .dropdown-toggle .dropdown-icon {
  display: none;
}
.dropdown-component .dropdown-toggle:hover {
  background-color: rgba(0, 130, 150, 0.05);
}
.dropdown-component .dropdown-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  padding: 0 24px;
}
.dropdown-component .dropdown-content .dropdown-answer {
  color: #175b69;
  line-height: 1.6;
}
.dropdown-component .dropdown-content .dropdown-answer p {
  margin-bottom: 16px;
}
.dropdown-component .dropdown-content .dropdown-documents {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dropdown-component .dropdown-content .dropdown-documents .document-link {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #175b69;
  text-decoration: none;
  padding: 16px;
  background-color: #f5f5f5;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.dropdown-component .dropdown-content .dropdown-documents .document-link:hover {
  background-color: rgba(0, 130, 150, 0.1);
  text-decoration: underline;
}
.dropdown-component .dropdown-content .dropdown-documents .document-link .document-icon {
  font-size: 1.5rem;
}
.dropdown-component .dropdown-content .dropdown-documents .document-link .document-name {
  font-weight: 500;
}

.stats-component {
  padding: 32px 0;
}
.stats-component .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .stats-component .row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .stats-component .row {
    grid-template-columns: 1fr;
  }
}
.stats-component .stat-col {
  display: flex;
  flex-direction: column;
}
.stats-component .stat-item {
  text-align: center;
  padding: 24px;
  border-bottom: 3px dotted #175b69;
}
.stats-component .stat-item .stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: #175b69;
  margin-bottom: 16px;
  font-family: "Proxima Nova Bold", Arial, sans-serif;
}
.stats-component .stat-item .stat-description {
  font-size: 1rem;
  color: #175b69;
  line-height: 1.4;
}

.fund-characteristics-component {
  padding: 48px 0;
  background-color: #007588;
  color: white;
}
.fund-characteristics-component .fund-characteristics-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 48px;
  color: white;
}
@media (max-width: 991px) {
  .fund-characteristics-component .fund-characteristics-title {
    font-size: 2rem;
    margin-bottom: 32px;
  }
}
.fund-characteristics-component .fund-characteristics-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fund-characteristics-component .characteristic-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 2px solid #52bc7f;
}
.fund-characteristics-component .characteristic-item:last-child {
  border-bottom: 2px solid #52bc7f;
}
@media (max-width: 767px) {
  .fund-characteristics-component .characteristic-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 0;
  }
}
.fund-characteristics-component .characteristic-item .characteristic-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}
@media (max-width: 991px) {
  .fund-characteristics-component .characteristic-item .characteristic-title {
    font-size: 1.1rem;
  }
}
.fund-characteristics-component .characteristic-item .characteristic-value {
  font-size: 1.25rem;
  color: white;
}
@media (max-width: 991px) {
  .fund-characteristics-component .characteristic-item .characteristic-value {
    font-size: 1.1rem;
  }
}
.fund-characteristics-component .fund-characteristics-footer {
  margin-top: 32px;
  padding-top: 24px;
  color: white;
  font-size: 19px;
  line-height: 22px;
}
@media (max-width: 991px) {
  .fund-characteristics-component .fund-characteristics-footer {
    font-size: 16px;
    line-height: 20px;
    margin-top: 24px;
  }
}
.fund-characteristics-component .fund-characteristics-footer p {
  margin-bottom: 16px;
  color: white;
}
.fund-characteristics-component .fund-characteristics-footer p:last-child {
  margin-bottom: 0;
}
.fund-characteristics-component .fund-characteristics-footer a {
  color: #52bc7f;
  text-decoration: underline;
}
.fund-characteristics-component .fund-characteristics-footer a:hover {
  color: white;
}
.fund-characteristics-component .fund-characteristics-footer strong {
  font-weight: bold;
}
.fund-characteristics-component .fund-characteristics-footer em {
  font-style: italic;
}

/*** NAV ***/
header {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
}
header .logo {
  height: 60px;
  margin-top: 16px;
  margin-bottom: 16px;
  margin-right: 48px;
}
header .menu-flex {
  display: flex;
  position: relative;
  z-index: 4;
}
header .menu-flex .menu-logo {
  margin-right: auto !important;
}
header .menu-flex .menu-link,
header .menu-flex .menu-link:hover {
  color: #007588;
  text-decoration: none;
  margin-right: 24px;
  padding-right: 8px;
  padding-left: 8px;
  line-height: 92px;
}
header .menu-flex .menu-link:hover,
header .menu-flex .menu-link:hover:hover {
  border-bottom: 6px solid #52bc7f;
  padding-bottom: 29px;
}
header .menu-flex .menu-dropdown {
  background-color: #fff;
  border-radius: 0 0 3px 3px;
  box-shadow: 2px 5px 11px 0 rgba(0, 0, 0, 0.15);
  padding: 24px;
  padding-bottom: 16px;
  position: absolute;
  top: 86px;
  border-top: 6px solid #52bc7f;
  display: none;
  width: 200px;
  z-index: 1;
}
header .menu-flex .menu-dropdown a {
  color: #007588;
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}
header .menu-flex .menu-dropdown a:hover {
  text-decoration: underline;
}
header .menu-flex .menu-item:hover .menu-dropdown {
  display: block;
}
header .menu-flex .menu-buttons {
  display: flex;
  align-items: center;
}
header .menu-flex .menu-buttons button {
  margin-left: 16px;
}
header .menu-flex .menu-buttons #searchIcon,
header .menu-flex .menu-buttons #searchIconMobile,
header .menu-flex .menu-buttons #menu-search {
  height: 22px;
  cursor: pointer;
}
header .menu-flex .menu-buttons #searchInput {
  position: absolute;
  right: 0;
  border-top: 6px solid #52bc7f;
  padding: 20px;
  background: #fff;
  display: none;
  border-radius: 0 0 3px 3px;
  box-shadow: 2px 5px 11px 0 rgba(0, 0, 0, 0.15);
}
header .menu-flex .menu-buttons #searchInput input {
  color: #383838 !important;
  padding: 8px 16px;
  padding-right: 32px;
  background-image: url(https://images.ctfassets.net/4oaw9man1yeu/1atfkTaYHbrLqpgZKe5OpX/8b9314aa3a7acd989e89a55d4882a902/search.svg);
  display: inline-block;
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  vertical-align: middle;
  border: 1px solid #747474;
  margin: 1px;
}
header .menu-flex .menu-buttons #searchInput input:focus {
  border: 2px solid #007588;
  border-radius: 2px;
  margin: 0;
}
header .menu-flex .menu-buttons #searchInput input::placeholder {
  font-style: italic;
}
header .menu-flex .menu-buttons #searchInput.activeSearch {
  top: 61px;
  display: block;
}
header .menu-flex .menu-buttons #searchIconMobile {
  margin-right: 32px;
  cursor: pointer;
}
header #menu-mobile,
header #mobile-menu-links {
  display: none;
}

@media (max-width: 1199px) {
  header .logo {
    margin-right: 24px;
  }
  header .menu-flex .menu-link {
    margin-right: 8px;
    line-height: 72px;
  }
  header .menu-flex .menu-link:hover {
    margin-right: 8px;
  }
  header .menu-flex .menu-buttons button {
    margin-right: 16px;
  }
}
@media (max-width: 991px) {
  #menu-desktop {
    display: none;
  }
  #menu-mobile {
    display: block !important;
  }
  #menu-mobile .menu-button {
    left: auto;
    top: 34px;
    right: 24px;
    bottom: auto;
    display: inline-flex;
    width: 28px;
    height: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    background-color: #ffffff;
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }
  #menu-mobile .menu-button .nav-bar {
    width: 100%;
    border-top: 2px solid #1b6875;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  #menu-mobile .menu-button .bar-one {
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    transform-origin: center;
  }
  #menu-mobile .menu-button .bar-two {
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    transform-origin: center;
  }
  #menu-mobile .menu-button .bar-three {
    transition: 0.5s ease-in-out;
    transform-origin: center;
  }
  #menu-mobile .menu-button.active {
    height: 28px;
  }
  #menu-mobile .menu-button.active .bar-one {
    transform: rotate(45deg) translate(0, 1px);
    margin-top: 13px;
  }
  #menu-mobile .menu-button.active .bar-two {
    transform: rotate(-45deg) translate(0, -1px);
    margin-bottom: 13px;
  }
  #menu-mobile .menu-button.active .bar-three {
    display: none;
  }
  #mobile-menu-links.slideDown {
    display: flex;
    flex-direction: column;
  }
  #mobile-menu-links.slideUp {
    display: none;
  }
  #mobile-menu-links .mobile-nav-actions {
    padding: 32px 0;
  }
  #mobile-menu-links .mobile-nav-actions a {
    text-decoration: none;
  }
  #mobile-menu-links .mobile-nav-actions button {
    display: inline-flex;
    align-items: center;
  }
  #mobile-menu-links .mobile-nav-actions button::before {
    margin-right: 8px;
  }
  #mobile-menu-links .mobile-row {
    border-top: 1px solid #e7e7e7;
    position: relative;
    cursor: pointer;
  }
  #mobile-menu-links .mobile-row:first-child {
    border-top: none;
  }
  #mobile-menu-links .mobile-row p {
    position: relative;
    width: max-content;
    margin-bottom: 24px;
    padding-top: 24px;
    color: #175b69;
  }
  #mobile-menu-links .mobile-row:hover p:after {
    content: "";
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    background: #52bc7f;
    height: 3px;
    width: 100%;
    -webkit-transition: max-height 0.5s linear;
    -moz-transition: max-height 0.5s linear;
    -ms-transition: max-height 0.5s linear;
    -o-transition: max-height 0.5s linear;
    transition: height 0.5s linear;
  }
  #mobile-menu-links .mobile-row a {
    text-decoration: none;
  }
  #mobile-menu-links .mobile-row .down-arrow {
    border: solid #1b6875;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    right: 21px;
    top: 28px;
    border-radius: 2px;
  }
  #mobile-menu-links .mobile-row.down .down-arrow {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    top: 32px;
  }
  #mobile-menu-links .mobile-row.active-row p:after {
    content: "";
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    background: #52bc7f;
    height: 3px;
    width: 100%;
    -webkit-transition: max-height 0.5s linear;
    -moz-transition: max-height 0.5s linear;
    -ms-transition: max-height 0.5s linear;
    -o-transition: max-height 0.5s linear;
    transition: height 0.5s linear;
  }
  #mobile-menu-links .mobile-row .menu-buttons {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  #mobile-menu-links .mobile-row .menu-buttons button {
    margin-right: 32px;
  }
  #mobile-menu-links .mobile-nav-col {
    max-height: 0;
    -webkit-transition: max-height 0.5s linear;
    -moz-transition: max-height 0.5s linear;
    -ms-transition: max-height 0.5s linear;
    -o-transition: max-height 0.5s linear;
    transition: height 0.5s linear;
    overflow: hidden;
  }
  #mobile-menu-links .mobile-nav-col.open {
    padding-bottom: 32px;
    max-height: 100vh;
    -webkit-transition: max-height 0.5s linear;
    -moz-transition: max-height 0.5s linear;
    -ms-transition: max-height 0.5s linear;
    -o-transition: max-height 0.5s linear;
    transition: max-height 0.5s linear;
  }
  #mobile-menu-links .mobile-nav-col .mobile-nav-links {
    display: flex;
    flex-direction: column;
  }
  #mobile-menu-links .mobile-nav-col .mobile-nav-links .menu-link-mobile {
    color: #175b69;
    text-decoration: none;
    margin-bottom: 16px;
    font-family: "Proxima Nova", Arial, sans-serif;
  }
  #mobile-menu-links .mobile-nav-col .mobile-nav-links .menu-link-mobile:hover {
    text-decoration: underline;
  }
  #mobile-menu-links .mobile-nav-col .mobile-nav-links .menu-link-mobile:last-child {
    margin-bottom: 0;
  }
}
/* mobile menu animations*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 3s;
  -webkit-animation-duration: 3s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  display: none;
}

.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  display: flex;
}

@keyframes slideDown {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(0%);
  }
  65% {
    transform: translateY(0%);
  }
  80% {
    transform: translateY(0%);
  }
  95% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-50%);
  }
  50% {
    -webkit-transform: translateY(0%);
  }
  65% {
    -webkit-transform: translateY(0%);
  }
  80% {
    -webkit-transform: translateY(0%);
  }
  95% {
    -webkit-transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(-100%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(-100%);
  }
}
/*** DEFAULT HEADER ***/
.default-header {
  background-color: #eef5f6;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .default-header {
    padding-top: 72px;
  }
}
.default-header {
  padding-bottom: 96px;
}
@media (max-width: 991px) {
  .default-header {
    padding-bottom: 72px;
  }
}
.default-header {
  background-size: 101%;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.default-header .label {
  margin-bottom: 32px;
}
.default-header.image {
  background-size: 101%, cover;
  background-repeat: no-repeat;
  background-position: bottom -1px center, center;
  height: 335px;
  padding-bottom: unset;
}

.header-text {
  padding-top: 48px;
}
.header-text.no-image {
  display: none;
}

.image-hero {
  background: linear-gradient(180deg, transparent 0%, #ffffff 100%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.image-hero .image-hero-text {
  margin-top: 270px;
}

@media (min-width: 1999px) {
  .default-header {
    padding-bottom: 400px;
  }
  .default-header.image {
    height: 700px;
  }
  .default-header-curve {
    height: 320px;
  }
  .default-header-curve.image {
    margin-top: -310px;
  }
}
@media (max-width: 767px) {
  .default-header.image {
    height: 225px;
  }
}
/*** DEFAULT PAGE TEMPLATE ***/
.page-content .left,
.page-content .left p,
.page-content .right,
.page-content .right p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 24px;
  color: #747474;
  font-style: italic;
}
.page-content img {
  max-width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
  box-shadow: 2px 3px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}
.page-content ul,
.page-content ol {
  overflow: auto;
}

.page-markdown {
  margin-top: 96px;
  margin-bottom: 96px;
}

.page-richtext {
  margin-top: 96px;
  margin-bottom: 128px;
}

@media (max-width: 991px) {
  .page-content .left-33,
  .page-content .right-33 {
    width: calc(50% - 12px);
  }
}
@media (max-width: 767px) {
  .page-content .left-75,
  .page-content .right-75,
  .page-content .left-50,
  .page-content .right-50,
  .page-content .left-33,
  .page-content .right-33 {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
/*** POST ***/
.post {
  margin-top: 96px;
  margin-bottom: 128px;
}
.post .post-content .post-sharing {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post .post-content .post-sharing .label {
  margin-bottom: 0;
}
.post .post-content .post-sharing .post-share a {
  text-decoration: none;
  margin-left: 16px;
}
.post .post-content .post-image {
  margin-top: 32px;
  margin-bottom: 8px;
  border-radius: 6px;
  width: 100%;
  box-shadow: 2px 3px 8px 0 rgba(0, 0, 0, 0.2);
}
.post .post-content .post-title {
  margin-top: 48px;
  margin-bottom: 32px;
  font: 32px/36px "Proxima Nova Bold", Arial, sans-serif;
}
.post .post-content .post-info {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.post .post-content .post-info p {
  margin-bottom: 0;
}
.post .post-content .post-info .post-author {
  display: flex;
  align-items: center;
}
.post .post-content .post-info .post-author .post-author-image {
  height: 28px;
  width: 28px;
  border-radius: 100%;
  background-size: cover;
  background-position: center;
  margin-right: 8px;
}
.post .post-content .post-info .post-author a {
  text-decoration: none;
}
.post .post-content .post-info .post-author a:hover {
  text-decoration: underline;
}
.post .post-content .post-info .post-author .post-divider {
  margin-left: 16px;
  margin-right: 16px;
}
.post .post-content .post-tags .tag {
  background-color: #eef5f6;
  padding: 8px;
  border-radius: 3px;
  display: inline-block;
  font-family: "Proxima Nova Bold", Arial, sans-serif;
  text-decoration: none;
  margin-right: 16px;
  margin-bottom: 16px;
}
.post .post-content .post-tags .tag:hover {
  text-decoration: underline;
}
.post .post-sidebar .sidebar-section #subForm input {
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: 0;
  box-shadow: inset -1px 1px 5px 0 rgba(0, 0, 0, 0.22);
  border: none;
}
.post .post-sidebar .sidebar-section #subForm input::placeholder {
  font-style: italic;
}
.post .post-sidebar .sidebar-section #subForm button {
  margin-top: 24px;
  display: block;
}
.post .post-sidebar .sidebar-menu .accordion-item {
  position: relative;
}
.post .post-sidebar .sidebar-menu .accordion-item .accordion-button {
  padding: 0;
  background-color: transparent;
  color: #175b69;
  width: 100%;
  text-align: left;
}
.post .post-sidebar .sidebar-menu .accordion-item .accordion-button::after {
  content: url("/public/images/teal_chevron.svg");
  position: absolute;
  width: 16px;
  right: 0;
  transition: transform 0.1s;
}
.post .post-sidebar .sidebar-menu .accordion-item .accordion-button:hover {
  text-decoration: none;
}
.post .post-sidebar .sidebar-menu .accordion-item .accordion-button[aria-expanded=true]::after {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  top: 9px;
  transition: transform 0.1s;
}
.post .post-sidebar .sidebar-menu .accordion-item a {
  display: block;
  margin-bottom: 16px;
}

.sidebar-section {
  border-top: 6px solid #007588;
  padding-top: 32px;
  padding-bottom: 80px;
}
.sidebar-section:first-child {
  margin-top: 80px;
}

@media (max-width: 991px) {
  #subForm input {
    margin-right: 16px;
  }
}
/*** HOME PAGE ***/
.home-hero-bg {
  background-color: #1b6875;
}
.home-hero-bg #home-carousel .carousel-item {
  position: relative;
  aspect-ratio: 900/600;
  overflow: hidden;
}
.home-hero-bg #home-carousel .carousel-item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 900/600;
  object-fit: cover;
  object-position: center;
}
.home-hero-bg #home-carousel .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.home-hero-bg #home-carousel .home-hero-content {
  position: absolute;
  top: 50%;
  color: #fff;
  left: 50%;
  z-index: 2;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.home-hero-bg #home-carousel .home-hero-content h1 {
  font-family: "Proxima Nova Bold";
  line-height: 0.99;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .home-hero-bg #home-carousel .home-hero-content h1 {
    font-size: 75px;
  }
}
.home-hero-bg .home-hero-wrapper {
  z-index: 2;
}
.home-hero-bg .home-hero-wrapper .home-hero {
  border-radius: 6px;
  background-color: none;
  box-shadow: none;
  color: #fff;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -145px;
  margin-left: 16px;
  margin-right: 16px;
}
.home-hero-bg .home-hero-wrapper .home-hero .home-hero-left {
  padding: 48px;
}
.home-hero-bg .home-hero-wrapper .home-hero .home-hero-left h1 {
  font-size: 46px;
  line-height: 46px;
  color: #fff;
  margin-bottom: 0;
}
.home-hero-bg .home-hero-wrapper .home-hero .home-hero-right {
  height: 260px;
  background-color: #fff;
}
.home-hero-bg .home-hero-wrapper .home-hero .home-hero-right embed {
  border-left: 1px solid #d5d5d5;
}

.home-hero-links {
  padding-top: 32px;
  padding-bottom: 16px;
}
.home-hero-links p {
  margin-bottom: 0;
}
.home-hero-links a {
  margin-left: 16px;
  margin-right: 16px;
  margin-bottom: 16px;
}

.home-alert {
  padding: 24px 0;
}
.home-alert .home-alert-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-alert .home-alert-flex img {
  padding-right: 16px;
}
.home-alert .home-alert-flex a,
.home-alert .home-alert-flex p {
  color: #fff;
  font-family: "Proxima Nova Semibold", Arial, sans-serif;
  margin-bottom: 0;
}

.home-section-1-header {
  padding-top: 96px;
  padding-bottom: 96px;
}

.home-section-1 {
  padding-top: 0;
  padding-bottom: 96px;
}
.home-section-1 > .container > .row {
  display: flex;
  align-items: center;
}
.home-section-1.default-header {
  background-position: top center;
}
.home-section-1 .home-section-1-right img {
  width: 100%;
}
.home-section-1 .home-section-1-links {
  padding-top: 64px;
}
.home-section-1 .home-section-1-links p {
  margin-bottom: 0;
}
.home-section-1 .home-section-1-links a {
  margin-left: 16px;
  margin-right: 16px;
  margin-bottom: 16px;
}

.home-section-3 {
  background-color: #eef5f6;
  padding-top: 96px;
  padding-bottom: 128px;
}
.home-section-3 .home-areas {
  padding-top: 64px;
}
.home-section-3 .home-areas .home-area {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 3px 4px 11px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.home-section-3 .home-areas .home-area > img {
  width: 100%;
  aspect-ratio: 480/292;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 6px 6px 0 0;
}
.home-section-3 .home-areas .home-area .home-area-flex {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home-section-3 .home-areas .home-area .home-area-flex .home-area-arrow {
  display: flex;
  justify-content: space-between;
  padding: 16px;
}
.home-section-3 .home-areas .home-area .home-area-flex .home-area-arrow img {
  align-self: flex-start;
  margin-top: 8px;
}
.home-section-3 .home-areas .home-area .home-area-flex .home-area-arrow a {
  text-decoration: none;
}
.home-section-3 .home-areas .home-area .home-area-flex .home-area-arrow a h5 {
  margin-bottom: 0;
}
.home-section-3 .home-areas .home-area .home-area-flex .home-area-arrow a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .home-hero-bg .home-hero-wrapper .home-hero {
    margin-top: -72px;
    margin-left: 0;
    margin-right: 0;
  }
  .home-hero-bg .home-hero-wrapper .home-hero .home-hero-left {
    padding: 32px 24px;
  }
  .home-hero-bg .home-hero-wrapper .home-hero .home-hero-left h1 {
    font-size: 38px;
    line-height: 40px;
  }
  .home-hero-links {
    padding-bottom: 0;
  }
  .home-hero-links a {
    display: table;
    margin-left: 0;
    margin-bottom: 32px;
  }
  .home-section-1 .home-section-1-left {
    order: 1;
  }
  .home-section-1 .home-section-1-right {
    margin-bottom: 64px;
    text-align: center;
    order: 0;
  }
  .home-section-1 .home-section-1-right img {
    width: 100%;
  }
  .home-section-1 .home-section-1-links {
    text-align: left !important;
    order: 2;
    padding-top: 32px;
  }
  .home-section-1 .home-section-1-links a {
    display: table;
    margin-left: 0;
    margin-bottom: 32px;
  }
  .home-section-1 .home-section-1-links a:last-child {
    margin-bottom: 0;
  }
  .home-section-3 .home-areas .home-area {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .home-hero-bg #home-carousel .carousel-item {
    max-height: 300px;
  }
  .home-hero-bg #home-carousel .carousel-item img {
    width: auto !important;
  }
}
/*** ABOUT PAGE ***/
.about-section-1 {
  margin-top: 64px;
  margin-bottom: 96px;
}
.about-section-1 .about-section-1-img .caption {
  margin-bottom: 0;
}
.about-section-1 .about-section-1-img .caption img {
  margin-top: 0;
}
.about-section-1 .about-section-1-text {
  padding-left: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-section-1 .about-section-1-text strong {
  color: #175b69;
  font-size: 18px;
  line-height: 22px;
  padding-bottom: 4px;
  display: inline-block;
}
.about-section-1 .about-section-1-text strong:hover {
  text-decoration: underline;
}
.about-section-1 .about-section-1-text ul {
  padding-left: 0;
  margin-bottom: 8px;
  margin-top: 24px;
}
.about-section-1 .about-section-1-text ul li {
  background: url("/public/images/green_arrow_circle_r.svg") no-repeat top left;
  background-size: 32px;
  margin: 0;
  padding: 0 0 16px 48px;
  list-style: none;
  font-size: 14px;
  line-height: 18px;
}
.about-section-1 .about-section-1-text ul li:last-child {
  margin-bottom: 0;
}
.about-section-1 .about-section-1-text .btn {
  margin-right: 32px;
}

.about-timeline {
  background-color: #f9f9f9;
  padding-top: 96px;
  padding-bottom: 128px;
}
.about-timeline .about-timeline-header {
  margin-bottom: 64px;
}
.about-timeline .about-timeline-text {
  padding-bottom: 48px;
  border-left: 3px solid #007588;
}
.about-timeline .about-timeline-text ul {
  padding-left: 0;
  margin-left: -20px;
  margin-top: -9px;
  margin-bottom: 8px;
}
.about-timeline .about-timeline-text ul li {
  background: url("/public/images/timeline_bullet.svg") no-repeat top 8px left;
  background-size: 13px;
  margin: 0;
  padding: 0 0 0 32px;
  list-style: none;
}
.about-timeline .about-timeline-text ul li h4 {
  margin-bottom: 0;
}
.about-timeline .about-timeline-text p {
  padding-left: 16px;
}
.about-timeline .about-timeline-text.last {
  border-left: 3px solid transparent;
  padding-bottom: 0;
}
.about-timeline .about-timeline-img {
  padding-bottom: 48px;
  margin-top: -9px;
}
.about-timeline .about-timeline-img .caption {
  padding-left: 64px;
  padding-right: 32px;
}
.about-timeline .about-timeline-img .caption img {
  margin-top: 0;
}
.about-timeline .about-timeline-img:last-child {
  padding-bottom: 0;
}

.about-awards {
  padding-top: 96px;
  padding-bottom: 64px;
}
.about-awards .about-awards-flex {
  display: flex;
  justify-content: center;
}
.about-awards .about-awards-flex img {
  padding: 8px;
  align-self: center;
}

@media (max-width: 767px) {
  .about-section-1 {
    margin-top: 32px;
  }
  .about-section-1 .about-section-1-text {
    padding-left: 0;
    padding-top: 32px;
  }
  .about-timeline .about-timeline-text {
    padding-bottom: 24px;
  }
  .about-timeline .about-timeline-text.last {
    padding-bottom: 24px;
  }
  .about-timeline .about-timeline-img {
    border-left: 3px solid #007588;
  }
  .about-timeline .about-timeline-img .caption {
    padding-left: 20px;
    padding-right: 0;
  }
  .about-timeline .about-timeline-img.last {
    border-left: 3px solid transparent;
  }
}
/*** RESOURCE ARCHIVE PAGE ***/
.resource-archive-header {
  padding-top: 96px;
  margin-bottom: 64px;
}
.resource-archive-header .resource-archive-right > p {
  color: #175b69;
  margin-left: 64px;
  font-size: 18px;
  line-height: 22px;
}
.resource-archive-header .label.green-bg {
  margin-bottom: 32px;
}
.resource-archive-header a {
  text-decoration: underline;
}
.resource-archive-header .blog-img {
  margin-left: 64px;
}
.resource-archive-header .blog-img img {
  width: 100%;
  box-shadow: 3px 4px 11px 0 rgba(0, 0, 0, 0.15);
  border-radius: 6px;
}
.resource-archive-header .blog-img .caption {
  margin-top: 8px;
}
.resource-archive-header .embedded-resource {
  display: flex;
  box-shadow: 3px 4px 11px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 32px;
  margin-left: 64px;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  border-radius: 3px;
}
.resource-archive-header .embedded-resource:hover {
  transform: scale(1.015);
}
.resource-archive-header .embedded-resource .embedded-resource-img {
  background-size: cover;
  background-position: center;
  flex-basis: 70%;
  background-repeat: no-repeat;
}
.resource-archive-header .embedded-resource .embedded-resource-text {
  padding: 24px;
  background-color: #fff;
  border-radius: 0 3px 3px 0;
  width: 100%;
  position: relative;
}
.resource-archive-header .embedded-resource .embedded-resource-text .label-xs {
  margin-bottom: 8px;
}
.resource-archive-header .embedded-resource .embedded-resource-text h6 {
  color: #383838;
}
.resource-archive-header .embedded-resource .embedded-resource-text h6:hover {
  text-decoration: underline;
}
.resource-archive-header .embedded-resource .embedded-resource-text .green-arrow {
  position: absolute;
  right: 20px;
  bottom: 16px;
}

.resource-filters {
  display: flex;
  padding-bottom: 64px;
}
.resource-filters .resource-filter {
  margin-right: 32px;
}
.resource-filters .resource-filter select {
  background-color: #eef5f6;
  padding: 8px 16px;
  outline: none;
  border: none;
  border-radius: 3px;
  box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.08);
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  background-image: url("/public/images/teal_chevron.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 10px;
  min-width: 180px;
}

.resource-cards button {
  margin-top: 64px;
}

.resource-add-info {
  margin-top: 96px;
}
.resource-add-info.default-header {
  background-position: top center;
  padding-bottom: 0;
}
.resource-add-info .page-content {
  padding-top: 128px;
  padding-bottom: 64px;
}
.resource-add-info .page-content hr {
  color: #52bc7f;
  height: 6px;
  margin-top: 64px;
  margin-bottom: 24px;
  opacity: 1;
}

@media (max-width: 1199px) {
  .resource-archive-header .resource-archive-right p {
    margin-left: 0;
  }
  .resource-archive-header .embedded-resource,
  .resource-archive-header .blog-img {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .resource-archive-header .resource-archive-right {
    margin-top: 48px;
  }
}
@media (max-width: 767px) {
  .resource-archive-header .embedded-resource {
    flex-direction: column;
  }
  .resource-archive-header .embedded-resource .embedded-resource-img {
    flex-basis: auto;
    height: 175px;
  }
  .resource-filters {
    flex-wrap: wrap;
    padding-bottom: 48px;
  }
  .resource-filters .resource-filter {
    margin-bottom: 24px;
  }
}
/*** RESOURCE CARD ***/
.resource-card-col {
  margin-bottom: 32px;
}
.resource-card-col .resource-card {
  border-radius: 3px;
  box-shadow: 3px 4px 11px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.resource-card-col .resource-card:hover {
  transform: scale(1.015);
}
.resource-card-col .resource-card a {
  text-decoration: none;
  color: #383838;
}
.resource-card-col .resource-card .resource-card-tag {
  background-color: #e7e7e7;
  padding: 8px;
  position: absolute;
  top: 0;
  left: 32px;
  font-family: "Proxima Nova Semibold", Arial, sans-serif;
  border-radius: 0 0 4px 4px;
}
.resource-card-col .resource-card .resource-card-img img {
  width: 100%;
  border-radius: 3px 3px 0 0;
}
.resource-card-col .resource-card .resource-card-text {
  padding: 32px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}
.resource-card-col .resource-card .resource-card-text .no-topic {
  margin-top: 32px;
}
.resource-card-col .resource-card .resource-card-text h6 {
  color: #383838 !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0;
}
.resource-card-col .resource-card .resource-card-text .label-xs {
  margin-bottom: 16px;
}
.resource-card-col .resource-card .resource-card-text .resource-card-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 32px;
}
.resource-card-col .resource-card .resource-card-text .x-small {
  color: #868686;
  position: absolute;
  bottom: 32px;
}
.resource-card-col .resource-card .resource-card-text .x-small a {
  color: #868686 !important;
}
.resource-card-col .resource-card .resource-card-text .x-small a:hover {
  text-decoration: underline !important;
}
.resource-card-col .resource-card .resource-card-text .green-arrow {
  position: absolute;
  right: 20px;
  bottom: 16px;
}

/*** RESOURCES SECTIONS ***/
.resources-section {
  margin-bottom: 96px;
  padding-top: 96px;
}
.resources-section:first-of-type {
  padding-top: 64px;
}
.resources-section .resources-section-header {
  margin-bottom: 48px;
}
.resources-section .resources-section-header h2 {
  margin-bottom: 0;
}
.resources-section .text-end {
  text-align: right !important;
}
.resources-section .btn-all-resources {
  text-decoration: none;
  font-size: 18px;
  display: inline-block;
  padding: 8px 32px;
  border: 2px solid #007588;
  border-radius: 20px;
  margin-top: 8px;
  transition: all 0.2s ease-in-out;
}
.resources-section .btn-all-resources:hover {
  background-color: #007588;
  color: #fff !important;
}

.resource-card {
  border-radius: 3px;
  transition: all 0.2s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.resource-card h3 a {
  text-decoration: none;
}
.resource-card:hover {
  transform: scale(1.015);
}
.resource-card .resource-card-image-wrapper {
  position: relative;
}
.resource-card .resource-card-image-wrapper img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
.resource-card img {
  width: 100%;
  border-radius: 3px 3px 0 0;
}
.resource-card .resource-card-content {
  padding-top: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 24px;
}
.resource-card .resource-card-content h4 {
  margin-bottom: 16px;
}
.resource-card .resource-card-content h4 a {
  text-decoration: none;
  color: #007588;
}
.resource-card .resource-card-content h4 a:hover {
  text-decoration: underline;
}
.resource-card .resource-card-content .resource-card-description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.resource-card .resource-card-content p {
  margin-bottom: 16px;
}
.resource-card .resource-card-content .resource-card-meta {
  margin-top: auto;
}
.resource-card .resource-card-content .resource-card-meta .small {
  margin-bottom: 16px;
}
.resource-card .resource-card-content .resource-card-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background-image: url("/public/images/green-arrow_r_light.png");
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 991px) {
  .resources-section {
    margin-bottom: 64px;
  }
  .resources-section .resources-section-header {
    margin-bottom: 32px;
  }
}
/*** CATEGORY PAGE ***/
.resources-category-content {
  padding-top: 64px;
}
.resources-category-content .resource-card {
  box-shadow: 3px 4px 11px 0 rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  transition: all 0.2s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.resources-category-content .resource-card:hover {
  transform: scale(1.015);
}
.resources-category-content .resource-card .resource-card-image-wrapper {
  position: relative;
}
.resources-category-content .resource-card .resource-card-image-wrapper img {
  width: 100%;
  border-radius: 3px 3px 0 0;
  display: block;
}
.resources-category-content .resource-card .resource-card-image-wrapper .category-label {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: #398c6d;
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  line-height: 14px;
  font-family: "Proxima Nova Bold", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  border-radius: 2px;
}
.resources-category-content .resource-card img {
  width: 100%;
  border-radius: 3px 3px 0 0;
}
.resources-category-content .resource-card .resource-card-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 60px;
}
.resources-category-content .resource-card .resource-card-content h4 {
  margin-bottom: 16px;
}
.resources-category-content .resource-card .resource-card-content h4 a {
  text-decoration: none;
  color: #007588;
}
.resources-category-content .resource-card .resource-card-content h4 a:hover {
  text-decoration: underline;
}
.resources-category-content .resource-card .resource-card-content p {
  font-size: 15px;
  line-height: 20px;
  color: #747474;
  margin-bottom: 16px;
}
.resources-category-content .resource-card .resource-card-content .resource-card-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 24px;
  height: 24px;
  background-image: url("/public/images/teal_arrow_r.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 991px) {
  .resources-category-content {
    padding-top: 48px;
  }
}
/*** EVENTS ***/
.event-content,
.event-sidebar {
  margin-top: -96px;
}

.event {
  background-color: #fff;
  border-left: 32px #fff0b6 solid;
  padding: 32px;
  box-shadow: 3px 4px 11px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 48px;
  border-radius: 6px;
}
.event .label-sm,
.event h4 {
  margin-bottom: 8px;
}
.event p.small {
  margin-bottom: 0;
  margin-top: 32px;
}
.event .event-logo {
  align-self: flex-start;
  width: 100%;
}
.event .event-logo-mobile {
  display: none;
}
.event .event-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.event .event-details a {
  margin-top: auto;
}

.past-events {
  margin-top: 96px;
  padding-top: 48px;
  color: #175b69;
  margin-bottom: 128px;
}
@media (max-width: 991px) {
  .past-events {
    margin-bottom: 96px;
  }
}
.past-events p {
  font-size: 18px;
  line-height: 22px;
}

.event-sidebar .sidebar-section:first-child {
  margin-top: 0;
}

@media (max-width: 991px) {
  .event-sidebar {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .event .event-logo-mobile {
    display: block;
    max-width: 150px;
    margin-bottom: 16px;
    margin-top: 16px;
  }
  .event .event-details {
    margin-top: 32px !important;
  }
  .event .event-details .event-logo {
    display: none;
  }
  .event .event-details a {
    margin-left: auto;
  }
}
/*** PRESS ARCHIVE ***/
.press-header a.bold {
  text-decoration: none;
  margin-right: 32px;
  margin-bottom: 8px;
  display: inline-block;
}
.press-header a.bold:hover {
  text-decoration: underline;
}
.press-header a.bold::before {
  content: "";
  background-image: url("/public/images/green_arrow_circle_r.svg");
  width: 25px;
  height: 25px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-bottom: 4px;
  margin-right: 8px;
}

.press .left .blog-img {
  max-width: 400px;
  margin-right: 64px;
}
.press .left .blog-img img {
  margin-top: 0;
  margin-bottom: 8px;
}
.press h3 {
  padding-top: 64px;
}
.press .press-h3 {
  padding-top: 0;
  margin-top: 32px;
  margin-bottom: 48px;
}
.press .press-card {
  background-color: #fff;
  border-left: 32px #52bc7f solid;
  padding: 32px;
  box-shadow: 3px 4px 11px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 48px;
  border-radius: 6px;
  position: relative;
}
.press .press-card .press-card-description {
  margin-bottom: 64px;
}
.press .press-card .press-card-button {
  position: absolute;
  right: 32px;
  bottom: 32px;
}
.press .news-card {
  background-color: #fff;
  border-left: 32px #007588 solid;
  padding: 32px;
  box-shadow: 3px 4px 11px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 48px;
  border-radius: 6px;
  position: relative;
}
.press .news-card h4 {
  margin-bottom: 64px;
}
.press .news-card .news-card-button {
  position: absolute;
  right: 32px;
  bottom: 32px;
}
.press .press-sidebar .sidebar-section:first-child {
  margin-top: 32px;
}

@media (max-width: 1199px) {
  .press .left .blog-img {
    width: 100%;
    max-width: unset;
  }
}
/*** PRESS RELEASE ***/
.press-release {
  margin-top: 96px;
  margin-bottom: 128px;
}
.press-release .label {
  margin-bottom: 40px;
}
.press-release h1 {
  margin-bottom: 64px;
}
.press-release .press-release-info {
  margin-bottom: 24px;
}
.press-release .press-release-footer h4 {
  margin-top: 32px;
}

/*** PARTNER PROFILE ***/
.partner-profile {
  margin-top: 96px;
  margin-bottom: 128px;
}
.partner-profile .label {
  margin-bottom: 40px;
}
.partner-profile h1 {
  margin-bottom: 24px;
}
.partner-profile .label.green {
  padding-top: 24px;
  margin-bottom: 8px;
}
.partner-profile h3 {
  margin-bottom: 24px;
}
.partner-profile .partner-featured-story .partner-featured-story-bg {
  background-color: #eef5f6;
  padding-left: 48px;
  padding-right: 48px;
  padding-bottom: 64px;
}
.partner-profile .partner-featured-story img {
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 0;
}
.partner-profile .partner-featured-story .caption {
  color: #175b69;
  padding-top: 16px;
}
.partner-profile .partner-stories .label {
  margin-top: 32px;
}
.partner-profile .partner-stories img {
  max-width: 75%;
  display: block;
}
.partner-profile .partner-stories .divider {
  padding-top: 0;
}
.partner-profile .partner-sidebar .partner-logo {
  max-width: 200px;
}
.partner-profile .partner-sidebar .small {
  margin-bottom: 8px;
  margin-top: 24px;
}
.partner-profile .partner-sidebar .icon-flex {
  display: flex;
  align-items: center;
}
.partner-profile .partner-sidebar .icon-flex img {
  padding-right: 8px;
  width: 40px;
}
.partner-profile .partner-sidebar .icon-flex.partner-return img {
  width: 40px;
  padding: 0px 12px 0px 4px;
}
.partner-profile .partner-sidebar .partner-socials img {
  padding-right: 24px;
}
.partner-profile .partner-sidebar .sidebar-section {
  margin-top: 64px;
}

.sidebar-news h4 {
  margin-bottom: 32px;
}
.sidebar-news a:last-child p {
  margin-bottom: 0;
}

.sidebar-testimonial {
  border-top: 6px solid #52bc7f;
  padding-top: 48px;
}
.sidebar-testimonial .quote {
  color: #52bc7f;
}
.sidebar-testimonial p {
  font-style: italic;
  padding-left: 16px;
  margin-bottom: 32px;
}
.sidebar-testimonial p.quote-author {
  font-style: normal;
}

@media (max-width: 1199px) {
  .partner-profile .partner-sidebar .icon-flex.partner-return img {
    width: 40px !important;
  }
}
@media (max-width: 767px) {
  .partner-profile .partner-featured-story .partner-featured-story-bg {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 16px;
  }
  .partner-profile .label.green {
    padding-top: 8px;
  }
}
/*** PRODUCTS & SERVICES ***/
.products-hero {
  padding-top: 96px;
  padding-bottom: 128px;
  position: relative;
}
.products-hero img:first-child {
  margin-top: 0;
}
.products-hero .label {
  margin-bottom: 32px;
}
.products-hero h1 {
  margin-bottom: 32px;
}
.products-hero table {
  font-size: 16px;
}
.products-hero table thead tr {
  font-size: 14px;
}
.products-hero table thead tr th {
  padding: 10px 32px;
}
.products-hero table tr td {
  background-color: #fff;
  padding: 10px 32px;
  color: #175b69;
}
.products-hero table tr td:first-child {
  font-family: "Proxima Nova", Arial, sans-serif;
}
.products-hero a.bold {
  text-decoration: none;
  margin-right: 32px;
  margin-bottom: 8px;
  display: inline-block;
}
.products-hero a.bold:hover {
  text-decoration: underline;
}
.products-hero a.bold::before {
  content: "";
  background-image: url("/public/images/green_arrow_circle_r.svg");
  width: 25px;
  height: 25px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-bottom: 4px;
  margin-right: 8px;
}
.products-hero .products-hero-right {
  padding-left: 64px;
}
.products-hero .products-hero-right .label-sm {
  margin-bottom: 0;
}
.products-hero .products-hero-right p {
  margin-bottom: 24px;
}
.products-hero .products-portfolio a {
  position: absolute;
  bottom: -40px;
  display: block;
  left: 0;
  right: 0;
  text-align: center;
}
.products-hero .products-portfolio a:hover h4 {
  text-decoration: underline;
}
.products-hero .products-portfolio a button {
  border-radius: 6px !important;
  padding: 24px 64px;
}
.products-hero .products-portfolio a button h4 {
  margin-bottom: 0;
  display: inline-block;
}
.products-hero .products-portfolio a button::after {
  content: "";
  background-image: url("/public/images/green_arrow_circle_r.svg");
  width: 25px;
  height: 25px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-bottom: 5px;
  margin-left: 16px;
}
.products-hero .investing-card-grid {
  margin-top: 48px;
}
.products-hero .investing-card-grid .investing-card-column {
  display: flex;
}
.products-hero .investing-card-grid .investing-card {
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  width: 100%;
  height: 100%;
  border: 4px solid #007588;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.products-hero .investing-card-grid .investing-card:hover {
  transform: translateY(-4px);
}
.products-hero .investing-card-grid .investing-card p {
  margin-bottom: 16px;
}
.products-hero .investing-card-grid .investing-card .investing-card-cta {
  margin-top: auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  color: #175b69;
}
.products-hero .investing-card-grid .investing-card .investing-card-cta::after {
  content: "";
  background-image: url("/public/images/green-arrow_r_light.png");
  width: 48px;
  height: 48px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}
.products-hero .investing-card-grid .investing-card-product {
  background-color: #007588;
  color: #fff;
}
.products-hero .investing-card-grid .investing-card-service {
  background-color: #fff;
  color: #007588;
}
.products-hero .investing-card-grid .investing-card-service p:not(.label) {
  color: #000;
}

.products-section-1 {
  padding-top: 128px;
  padding-bottom: 96px;
}
.products-section-1 form .d-flex {
  flex-wrap: wrap;
  justify-content: space-between;
}
.products-section-1 form .d-flex > p {
  flex-basis: 47%;
}
.products-section-1 form input,
.products-section-1 form select,
.products-section-1 form textarea {
  margin-bottom: 0;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.products-section-1 form select {
  outline: none;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  background-image: url("/public/images/teal_chevron.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 10px;
}
.products-section-1 form select:focus-visible {
  outline: none;
}
.products-section-1 form textarea:focus {
  outline: none;
}
.products-section-1 form input[type=submit] {
  border-radius: 20px !important;
  border: none;
  padding: 8px 16px;
  outline: none;
  background-color: #1b6875;
  color: #fff;
  border: 2px solid #1b6875;
  width: auto;
  font-family: "Proxima Nova Bold", Arial, sans-serif;
  font-size: 14px;
}
.products-section-1 .product-tabs {
  box-shadow: 3px 4px 11px 0 rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 48px;
}
.products-section-1 .product-tabs #productTabs {
  display: flex;
  border-bottom: 0;
  width: calc(100% + 0.5px);
}
.products-section-1 .product-tabs #productTabs li {
  padding: 0;
  margin: 0;
  flex: 1;
}
.products-section-1 .product-tabs #productTabs li:first-child button {
  border-left: none;
}
.products-section-1 .product-tabs #productTabs li:last-child button {
  border-right: none;
}
.products-section-1 .product-tabs #productTabs li button {
  border: none;
  border-radius: 0 !important;
  width: 100%;
  padding-top: 24px;
  box-shadow: 0 10px 0 #f5f1ec;
  border-right: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7;
  background-color: #fff;
  color: #747474;
}
.products-section-1 .product-tabs #productTabs li button.active {
  box-shadow: 0 10px 0 #ca9869;
}
.products-section-1 .product-tabs #productTabs li button.active h4 {
  color: #383838;
}
.products-section-1 .product-tabs #productTabs li button:hover {
  text-decoration: none;
}
.products-section-1 .product-tabs #productTabs li button h4 {
  margin-bottom: 4px;
}
.products-section-1 .product-tabs #productTabContent {
  padding: 48px;
}
.products-section-1 .product-tabs #productTabContent table {
  font-size: 14px;
}
.products-section-1 .product-tabs #productTabContent table thead tr {
  font-size: 14px;
}
.products-section-1 .product-tabs #productTabContent table thead tr th {
  padding: 10px 16px;
}
.products-section-1 .product-tabs #productTabContent table tr td {
  background-color: #fff;
  padding: 10px 16px;
  color: #175b69;
}
.products-section-1 .product-tabs #productTabContent table tr td:first-child {
  font-family: "Proxima Nova", Arial, sans-serif;
}
.products-section-1 .product-tabs #productTabContent p:last-child {
  margin-bottom: 0;
}
.products-section-1 .product-tabs #productTabContent .left {
  padding-right: 32px;
  max-width: 40%;
}
.products-section-1 .product-tabs-mobile {
  display: none;
  padding-top: 16px;
}
.products-section-1 .product-tabs-mobile .accordion-item {
  margin-top: 8px;
}
.products-section-1 .product-tabs-mobile .accordion-item .product-accordion-btn {
  border: none;
  border-radius: 6px;
  width: 100%;
  background-color: #eef5f6;
  color: #747474;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
}
.products-section-1 .product-tabs-mobile .accordion-item .product-accordion-btn img {
  transition: all 0.5s;
}
.products-section-1 .product-tabs-mobile .accordion-item .product-accordion-btn:hover {
  text-decoration: none;
  color: #383838;
}
.products-section-1 .product-tabs-mobile .accordion-item .product-accordion-btn[aria-expanded=true] {
  color: #383838;
}
.products-section-1 .product-tabs-mobile .accordion-item .product-accordion-btn[aria-expanded=true] img {
  transform: rotate(180deg);
}
.products-section-1 .product-tabs-mobile .accordion-item .product-accordion-btn h4 {
  margin-bottom: 8px;
}
.products-section-1 .product-tabs-mobile .accordion-item .product-accordion-btn p {
  margin-bottom: 0;
}
.products-section-1 .product-tabs-mobile .accordion-item .accordion-collapse .left {
  float: none;
}

.products-section-2 {
  padding-top: 96px;
  padding-bottom: 96px;
}
.products-section-2 h1,
.products-section-2 h2,
.products-section-2 h3,
.products-section-2 h4 {
  margin-bottom: 8px;
}
.products-section-2 h4 {
  margin-top: 32px;
}
.products-section-2 img {
  max-width: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
}

.products-section-3 {
  background-color: #1b6875;
  padding-top: 96px;
  padding-bottom: 96px;
  color: #fff;
}
.products-section-3 .products-pdfs {
  margin-top: 16px;
  padding-left: 64px;
  padding-right: 64px;
  display: flex;
  flex-wrap: wrap;
}
.products-section-3 .products-pdfs .bold {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  padding-top: 48px;
  padding-left: 16px;
  padding-right: 16px;
  text-decoration: none;
  flex-basis: 33%;
}
.products-section-3 .products-pdfs .bold:hover {
  text-decoration: underline;
}
.products-section-3 .products-pdfs .bold::before {
  content: "";
  background-image: url("/public/images/green_download.svg");
  width: 48px;
  height: 48px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.products-section-4 {
  padding-bottom: 32px;
}

.products-section-5 {
  background-color: #eef5f6;
  padding-top: 96px;
  padding-bottom: 96px;
}
.products-section-5 .left-50,
.products-section-5 .caption {
  margin-right: 64px;
}
.products-section-5 .left-50 img,
.products-section-5 .caption img {
  margin-top: 0;
}
.products-section-5 h2 {
  margin-bottom: 48px;
}
.products-section-5 h4 {
  margin-top: 24px;
  margin-bottom: 8px;
}
.products-section-5 h4:first-child {
  margin-top: 16px;
}

.products-section-6 {
  padding-top: 96px;
  padding-bottom: 96px;
}
.products-section-6 .products-section-6-content {
  margin-bottom: 24px;
}
.products-section-6 .products-logos {
  margin-top: 32px;
  text-align: center;
}
.products-section-6 .products-logos img {
  max-width: 100%;
}

.products-faq-header {
  padding-top: 200px;
}
.products-faq-header.default-header {
  background-position: top center;
  padding-bottom: 0;
}
.products-faq-header .products-faq {
  border-top: 6px solid #1b6875;
}
.products-faq-header .products-faq h2 {
  margin-top: 24px;
  margin-bottom: 32px;
}
.products-faq-header .products-faq #faq-accordion .accordion-button {
  background-color: transparent;
  width: 100%;
  padding: 0;
  border-radius: 0 !important;
  position: relative;
}
.products-faq-header .products-faq #faq-accordion .accordion-button p {
  padding-right: 96px;
}
.products-faq-header .products-faq #faq-accordion .accordion-button p:after {
  content: "";
  background-image: url("/public/images/dropdown_arrow.svg");
  background-size: 14px 8px;
  display: inline-block;
  transition: all 0.5s;
  width: 14px;
  height: 8px;
  position: absolute;
  right: 48px;
  top: 8px;
}
.products-faq-header .products-faq #faq-accordion .accordion-button[aria-expanded=true] p:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.products-faq-header .products-faq #faq-accordion .accordion-body {
  padding-right: 96px;
}

.products-section-1-2-wrapper img {
  box-shadow: none;
}

@media (max-width: 1199px) {
  .products-section-1 .product-tabs #productTabContent .left {
    max-width: 50%;
  }
}
@media (max-width: 991px) {
  .products-hero .products-hero-right {
    margin-top: 32px;
    padding-left: 12px;
  }
  .products-section-1 .product-tabs #productTabContent .left {
    float: none;
    max-width: unset;
    margin-bottom: 32px;
  }
  .products-section-3 .products-pdfs {
    padding-left: 0;
    padding-right: 0;
  }
  .products-section-3 .products-pdfs .bold {
    flex-basis: 50%;
  }
  .products-faq {
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .products-hero .products-portfolio a button {
    padding: 16px;
    margin-left: 32px;
    margin-right: 32px;
  }
  .products-section-1 form .d-flex {
    display: block !important;
  }
  .products-section-1 .product-tabs {
    display: none;
  }
  .products-section-1 .product-tabs-mobile {
    display: block;
  }
  .products-section-3 .products-pdfs .bold {
    flex-basis: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .products-faq #faq-accordion .accordion-button p {
    padding-right: 48px;
  }
  .products-faq #faq-accordion .accordion-button p:after {
    right: 0;
  }
  .products-faq #faq-accordion .accordion-body {
    padding-right: 0;
  }
}
/*** INVESTING OVERVIEW ***/
.investing-hero-col {
  display: flex;
  flex-direction: column;
}
.investing-hero-col .investing-hero {
  margin-top: 48px;
  border-radius: 3px;
  box-shadow: 2px 3px 8px 0 rgba(0, 0, 0, 0.15);
  height: 100%;
  padding: 24px 32px 32px 32px;
  border-top: 24px solid #8dd4dd;
  margin-left: 4px;
  margin-right: 4px;
  margin-bottom: 128px;
}
.investing-hero-col .investing-hero h4 {
  color: #175b69;
  margin-bottom: 24px;
}
.investing-hero-col .investing-hero strong {
  color: #175b69;
  font-size: 18px;
  line-height: 22px;
  padding-bottom: 4px;
  display: inline-block;
}
.investing-hero-col .investing-hero ul {
  padding-left: 0;
  margin-bottom: 0;
}
.investing-hero-col .investing-hero ul li {
  background: url("/public/images/green_arrow_circle_r.svg") no-repeat top left;
  background-size: 32px;
  margin: 0;
  padding: 0 0 16px 48px;
  list-style: none;
  font-size: 14px;
  line-height: 18px;
}
.investing-hero-col .investing-hero ul li:last-child {
  margin-bottom: 0;
}
.investing-hero-col .investing-hero ul li a {
  color: #383838;
  text-decoration: none;
}
.investing-hero-col .investing-hero ul li a:hover strong {
  text-decoration: underline;
}

.products-section-1 {
  padding-top: 96px;
  padding-bottom: 128px;
}
.products-section-1 .products-tabs {
  border-radius: 6px;
  margin-top: 48px;
  background-color: #fff;
  overflow: hidden;
}
.products-section-1 .products-tabs .tab-content {
  padding: 48px;
}
.products-section-1 .products-tabs .tab-content h3 {
  color: #007588 !important;
}
.products-section-1 .products-tabs #investingTabs {
  display: flex;
  border-bottom: 0;
  width: calc(100% + 0.5px);
}
.products-section-1 .products-tabs #investingTabs li {
  padding: 0;
  margin: 0;
  flex: 1;
}
.products-section-1 .products-tabs #investingTabs li:first-child button {
  border-left: none;
}
.products-section-1 .products-tabs #investingTabs li:last-child button {
  border-right: none;
}
.products-section-1 .products-tabs #investingTabs li button {
  border: none;
  border-radius: 0 !important;
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  box-shadow: 0 10px 0 #e2f0e8;
  border-right: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7;
  background-color: #fff;
  color: rgba(0, 117, 136, 0.6);
}
.products-section-1 .products-tabs #investingTabs li button.active {
  box-shadow: 0 10px 0 #52bc7f;
}
.products-section-1 .products-tabs #investingTabs li button.active h3 {
  color: #007588;
}
.products-section-1 .products-tabs #investingTabs li button:hover {
  text-decoration: none;
}
.products-section-1 .products-tabs #investingTabs li button h3 {
  margin-bottom: 0px;
}
.products-section-1 .products-tabs #investingTabContent {
  padding: 48px;
  background-color: #fff;
}
.products-section-1 .products-tabs #investingTabContent table {
  font-size: 14px;
}
.products-section-1 .products-tabs #investingTabContent table thead tr {
  font-size: 14px;
}
.products-section-1 .products-tabs #investingTabContent table thead tr th {
  padding: 10px 16px;
}
.products-section-1 .products-tabs #investingTabContent table tr td {
  background-color: #fff;
  padding: 10px 16px;
  color: #175b69;
}
.products-section-1 .products-tabs #investingTabContent table tr td:first-child {
  font-family: "Proxima Nova", Arial, sans-serif;
}
.products-section-1 .products-tabs #investingTabContent .tab-pane hr {
  height: 3px;
  margin-top: 32px;
  margin-bottom: 32px;
  background-color: #e7e7e7;
  opacity: 1;
}
.products-section-1 .products-tabs #investingTabContent p:last-child {
  margin-bottom: 0;
}
.products-section-1 .tab-pane-links a {
  margin-right: 48px;
  padding-bottom: 4px;
  display: inline-block;
}
.products-section-1 .tab-pane-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.products-section-1 .tab-pane-mobile-links a {
  color: #175b69;
}
.products-section-1 .tab-pane-desktop-layout .tab-pane-block {
  padding: 0 24px;
}
.products-section-1 .tab-pane-desktop-layout .tab-pane-block:not(:first-child) {
  margin-top: 32px;
}
.products-section-1 .tab-pane-desktop-layout .tab-pane-desktop-split {
  display: flex;
  flex-direction: column;
}
.products-section-1 .footer-contact {
  margin-top: 32px;
}
.products-section-1 .footer-contact p {
  margin-bottom: 8px;
  color: #fff;
}
.products-section-1 .footer-contact a {
  color: #fff;
  text-decoration: none;
}
.products-section-1 .products-tabs-mobile {
  display: none;
  padding-top: 16px;
}
.products-section-1 .products-tabs-mobile .accordion-item {
  margin-top: 8px;
}
.products-section-1 .products-tabs-mobile .accordion-item .investing-accordion-btn {
  border: none;
  border-radius: 6px;
  width: 100%;
  background-color: #fff;
  color: #747474;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
}
.products-section-1 .products-tabs-mobile .accordion-item .investing-accordion-btn img {
  transition: all 0.5s;
}
.products-section-1 .products-tabs-mobile .accordion-item .investing-accordion-btn:hover {
  text-decoration: none;
  color: #383838;
}
.products-section-1 .products-tabs-mobile .accordion-item .investing-accordion-btn[aria-expanded=true] {
  color: #383838;
}
.products-section-1 .products-tabs-mobile .accordion-item .investing-accordion-btn[aria-expanded=true] img {
  transform: rotate(180deg);
}
.products-section-1 .products-tabs-mobile .accordion-item .investing-accordion-btn h4 {
  margin-bottom: 0;
}
.products-section-1 .products-tabs-mobile .accordion-item .investing-accordion-btn p {
  margin-bottom: 0;
}
.products-section-1 .products-tabs-mobile .accordion-item .accordion-collapse .card-body {
  padding-top: 0;
}
.products-section-1 .products-tabs-mobile .accordion-item .accordion-collapse h3 {
  color: #007588 !important;
  margin-top: 32px;
}
.products-section-1 .products-tabs-mobile .accordion-item .accordion-collapse p {
  font-size: 20px;
  line-height: 24px;
}

.portfolio-by-the-numbers-table table {
  margin: 0 auto;
}

.investing-section-2 {
  padding-top: 96px;
}
.investing-section-2 iframe {
  padding-top: 64px;
}
.investing-section-2 img {
  width: 100%;
  padding-right: 24px;
  padding-left: 24px;
}

@media (max-width: 1199px) {
  .products-section-1 .products-tabs button h3 {
    font: 24px/29px "Proxima Nova Semibold", Arial, sans-serif;
  }
  .portfolio-by-the-numbers-table table {
    width: 80% !important;
  }
}
@media (max-width: 991px) {
  .products-section-1 .products-tabs #investingTabContent .tab-pane p:last-child {
    margin-bottom: 0;
  }
  .products-tabs-mobile .accordion-item p:last-child {
    margin-bottom: 0;
  }
  .products-tabs-mobile .accordion-item hr {
    height: 3px;
    margin-top: 16px;
    margin-bottom: 16px;
    background-color: #e7e7e7;
    opacity: 1;
  }
  .portfolio-by-the-numbers-table table {
    width: 100% !important;
  }
  .products-section-1 .products-tabs .tab-content,
  .products-section-1 .products-tabs #investingTabs {
    display: none;
  }
  .products-section-1 .products-tabs-mobile {
    display: block;
  }
}
@media (max-width: 767px) {
  .investing-hero {
    margin-bottom: 96px;
  }
  .investing-hero .investing-hero-col .investing-hero {
    margin-bottom: 0;
    margin-top: 32px;
  }
}
/*** IMPACT PAGE ***/
.impact-header p.large {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.impact-section-2 {
  background-color: #eef5f6;
  padding-top: 96px;
  padding-bottom: 96px;
}
.impact-section-2 .right-33,
.impact-section-2 .right-50,
.impact-section-2 .right-75 {
  margin-left: 96px;
}

.impact-section-3 {
  padding-top: 96px;
  padding-bottom: 64px;
}
.impact-section-3 .impact-section-3-flex {
  display: flex;
  margin-bottom: 64px;
  align-items: center;
}
.impact-section-3 .impact-section-3-flex .impact-section-3-img {
  margin-right: 64px;
  flex-basis: 50%;
}
.impact-section-3 .impact-section-3-flex .impact-section-3-img > div {
  background-position: center;
  background-size: cover;
  height: 330px;
  box-shadow: 2px 3px 4px 0 rgba(0, 0, 0, 0.15);
  border-radius: 6px;
}
.impact-section-3 .impact-section-3-flex .impact-section-3-text {
  flex-basis: 50%;
}
.impact-section-3 .impact-section-3-flex .impact-section-3-text p {
  margin-bottom: 0;
}
.impact-section-3 .impact-section-3-flex .impact-section-3-text button {
  margin-top: 32px;
}

.impact-section-4 {
  background-color: #1b6875;
  padding-top: 96px;
  padding-bottom: 96px;
  color: #fff;
}
.impact-section-4 iframe {
  margin-top: 48px;
}

@media (max-width: 991px) {
  .impact-section-2 .right-33,
  .impact-section-2 .right-50,
  .impact-section-2 .right-75 {
    float: none;
    width: 100%;
    padding-left: 64px;
    padding-right: 64px;
    margin-left: 0;
    margin-bottom: 32px;
  }
  .impact-section-3 .impact-section-3-flex {
    display: block;
  }
  .impact-section-3 .impact-section-3-flex .impact-section-3-img {
    margin-bottom: 24px;
    margin-right: 0;
  }
  .impact-section-3 .impact-section-3-flex .impact-section-3-img > div {
    margin-bottom: 24px;
  }
  .impact-section-3 .impact-section-3-flex .impact-section-3-text button {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .impact-section-2 .right-33 {
    padding-left: 0;
    padding-right: 0;
  }
}
/*** TEAM/BOARD PAGE ***/
.team-header-img {
  padding-left: 64px;
}
.team-header-img img {
  margin-top: 0;
}

.team-card-header h3 {
  margin-top: 64px;
  margin-bottom: 64px;
}

.team-content {
  padding-top: 96px;
}
.team-content img {
  box-shadow: unset;
  border-radius: 0;
}
.team-content .right-50 {
  padding-left: 48px;
}
.team-content .divider {
  margin-top: 96px;
}

.team-card-wrapper {
  margin-bottom: 48px;
}
.team-card-wrapper .team-card {
  padding-left: 8px;
  padding-right: 8px;
  height: 100%;
  position: relative;
}
.team-card-wrapper .team-card .flip-container {
  margin-bottom: 24px;
}
.team-card-wrapper .team-card .flip-card,
.team-card-wrapper .team-card .flip-front,
.team-card-wrapper .team-card .flip-back {
  padding-bottom: 100%;
  width: 100%;
  border-radius: 6px;
}
.team-card-wrapper .team-card .flip-card {
  position: relative;
}
.team-card-wrapper .team-card .flip-front,
.team-card-wrapper .team-card .flip-back {
  position: absolute;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.team-card-wrapper .team-card .flip-front {
  z-index: 1;
  background-position: center;
  background-size: cover;
}
.team-card-wrapper .team-card .flip-back {
  background-position: center;
  background-size: cover;
}
.team-card-wrapper .team-card > img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 24px;
}
.team-card-wrapper .team-card h4 {
  margin-bottom: 4px;
}
.team-card-wrapper .team-card h4 a {
  text-decoration: none;
}
.team-card-wrapper .team-card h4 a:hover {
  text-decoration: underline;
}
.team-card-wrapper .team-card p {
  padding-bottom: 48px;
}
.team-card-wrapper .team-card .team-card-flex-wrapper {
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
}
.team-card-wrapper .team-card .team-card-flex-wrapper .team-card-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.team-card-wrapper .team-card .team-card-flex-wrapper .team-card-flex .team-card-socials img {
  height: 32px;
  margin-left: 8px;
}

@media (max-width: 991px) {
  .team-header-img {
    padding-left: 0;
    padding-top: 32px;
  }
  .team-content .team-icon-flex {
    margin-bottom: 24px;
  }
  .team-card {
    height: auto;
  }
}
@media (max-width: 767px) {
  .team-card-wrapper .team-card h4 {
    padding-right: 96px;
  }
  .team-card-wrapper .team-card p {
    padding-bottom: 24px;
  }
  .team-card-wrapper .team-card .team-card-socials {
    position: absolute;
    right: 0;
    top: -72px;
  }
  .team-card-wrapper .team-card .flip-container:hover .flip-card .flip-front {
    opacity: 1 !important;
  }
}
/*** TEAM PROFILE ***/
.team-profile {
  margin-top: 96px;
  margin-bottom: 64px;
}
.team-profile .team-profile-text .label {
  margin-bottom: 48px;
}
.team-profile .team-profile-text h1 {
  margin-bottom: 0;
}
.team-profile .team-profile-text h5 {
  font-family: "Proxima Nova", Arial, sans-serif;
  color: #383838;
  margin-bottom: 32px;
}
.team-profile .team-profile-text .back-arrow {
  margin-top: 64px;
  display: block;
}
.team-profile .team-profile-text .team-profile-img-mobile,
.team-profile .team-profile-text .team-profile-socials-mobile {
  display: none;
}
.team-profile .team-profile-img {
  padding-top: 80px;
  padding-left: 32px;
}
.team-profile .team-profile-img > img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 32px;
  box-shadow: 2px 3px 8px 0 rgba(0, 0, 0, 0.15);
}
.team-profile .team-profile-img .team-profile-socials img {
  width: 48px;
  margin-right: 8px;
  margin-bottom: 8px;
}
.team-profile .team-related-posts h2 {
  margin-bottom: 48px;
}

@media (max-width: 767px) {
  .team-profile .team-profile-text .team-profile-img-mobile {
    display: block;
    width: 100%;
    border-radius: 6px;
    margin-bottom: 24px;
    box-shadow: 2px 3px 8px 0 rgba(0, 0, 0, 0.15);
  }
  .team-profile .team-profile-text .team-profile-socials-mobile {
    display: block;
    margin-top: 64px;
  }
  .team-profile .team-profile-text .team-profile-socials-mobile img {
    width: 48px;
    margin-right: 8px;
    margin-bottom: 8px;
  }
  .team-profile .team-profile-img {
    display: none;
  }
}
/*** FOOTER ***/
.pre-footer {
  margin-bottom: 96px;
}
.pre-footer .related-news {
  margin-top: 96px;
  margin-bottom: 64px;
}
.pre-footer .footer-newsletter-wrapper {
  padding-right: 0;
  margin-top: 64px;
}
.pre-footer .footer-newsletter-wrapper .footer-newsletter-text {
  color: #fff;
  padding: 48px;
  height: 100%;
  border-radius: 8px 0px 0px 8px;
}
.pre-footer .footer-newsletter-wrapper .footer-newsletter-text h2,
.pre-footer .footer-newsletter-wrapper .footer-newsletter-text h3,
.pre-footer .footer-newsletter-wrapper .footer-newsletter-text h4,
.pre-footer .footer-newsletter-wrapper .footer-newsletter-text h5,
.pre-footer .footer-newsletter-wrapper .footer-newsletter-text h6 {
  color: #fff !important;
}
.pre-footer .footer-newsletter-wrapper .footer-newsletter-text #subForm {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-top: 16px;
}
.pre-footer .footer-newsletter-wrapper .footer-newsletter-text #subForm input {
  padding: 6px 16px;
  border-radius: 8px;
  border: 1px solid #e7e7e7;
  width: 100%;
  flex-basis: 70%;
  margin-right: 16px;
  max-width: 300px;
}
.pre-footer .footer-newsletter-wrapper .footer-newsletter-text #subForm input::placeholder {
  font-style: italic;
}
.pre-footer .footer-newsletter-img-wrapper {
  padding-left: 0;
  margin-top: 64px;
}
.pre-footer .footer-newsletter-img-wrapper .footer-newsletter-img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
  border-radius: 0px 8px 8px 0px;
}

.footer {
  color: #fff !important;
  padding-top: 64px;
  padding-bottom: 128px;
}
.footer .footer-logo {
  margin-bottom: 24px;
  display: block;
}
.footer .footer-logo img {
  max-height: 60px;
}
.footer .footer-link {
  text-decoration: none;
  padding-bottom: 8px;
  display: inline-block;
}
.footer .footer-link:hover {
  text-decoration: underline;
}
.footer .footer-phone,
.footer .footer-fax,
.footer .footer-email {
  text-decoration: none;
}
.footer .footer-phone:hover,
.footer .footer-fax:hover,
.footer .footer-email:hover {
  text-decoration: underline;
}
.footer .footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer .footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid #fff;
  margin-top: 32px;
}
.footer .footer-bottom-flex .copyright {
  padding-top: 24px;
}
.footer .footer-bottom-flex .footer-toc {
  padding-top: 24px;
}
.footer .footer-bottom-flex .footer-toc a {
  color: #fff !important;
  text-decoration: none;
  margin-left: 48px;
}
.footer .footer-bottom-flex .footer-toc a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) and (max-width: 991px) {
  .pre-footer .resource-card-col:nth-child(n+4) {
    display: none;
  }
}
@media (max-width: 991px) {
  .pre-footer .related-news {
    margin-top: 64px;
    margin-bottom: 48px;
  }
  .pre-footer .footer-newsletter-wrapper {
    margin-top: 0;
    order: 1;
    padding-right: 12px;
  }
  .pre-footer .footer-newsletter-wrapper .footer-newsletter-text {
    padding: 32px 24px;
    border-radius: 0px 0px 8px 8px;
  }
  .pre-footer .footer-newsletter-img-wrapper {
    margin-top: 0;
    order: 0;
    padding-left: 12px;
  }
  .pre-footer .footer-newsletter-img-wrapper .footer-newsletter-img {
    height: 275px;
    border-radius: 8px 8px 0px 0px;
  }
  .footer {
    padding-top: 48px;
    padding-bottom: 96px;
  }
  .footer .footer-flex {
    flex-wrap: wrap;
  }
  .footer .footer-flex .footer-menu {
    flex-basis: 50%;
    padding-bottom: 48px;
  }
  .footer .footer-flex .footer-menu:nth-child(odd) {
    padding-right: 16px;
  }
  .footer .footer-flex .footer-menu:nth-child(even) {
    padding-left: 16px;
    padding-right: 0;
  }
  .footer .footer-social {
    margin-top: 64px;
  }
  .footer .footer-bottom-flex {
    display: block;
  }
  .footer .footer-bottom-flex .footer-toc {
    padding-top: 48px;
    display: flex;
  }
  .footer .footer-bottom-flex .footer-toc a {
    margin-left: 0;
    margin-right: 0;
    flex-basis: 50%;
  }
}
@media (max-width: 767px) {
  .pre-footer #subForm {
    display: block !important;
  }
  .pre-footer #subForm input {
    margin-bottom: 16px;
  }
}
/*** PORTFOLIO TEMPLATE ***/
.portfolio-nav {
  position: sticky;
  top: 40px;
}

.portfolio-nav a {
  font-size: 14px;
  font-family: "Proxima Nova Bold", Arial, sans-serif;
}

@media (max-width: 1199px) {
  .portfolio-nav a {
    font-size: 13px;
  }
}
#indicator {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 21px;
  background: #51bc7f;
  transition: all 0.5s cubic-bezier(0.39, 0.9, 0.6, 1);
}

#byTheNumbers iframe {
  padding: 2rem 0;
}

#byTheNumbers img {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.impact-sectors-container {
  background-color: #eef5f6;
  padding-top: 96px;
  padding-bottom: 128px;
}

#sectorTabs .nav-item:last-child {
  margin-bottom: 0 !important;
}

#sectorTabs {
  border: none;
}

#sectorTabs .nav-link {
  color: #175b69 !important;
  font-family: "Proxima Nova Bold", Arial, sans-serif !important;
  font-size: 18px !important;
  line-height: 22px !important;
  min-height: 78px !important;
  -webkit-appearance: none;
}

#sectorTabContent .btn.blue {
  font-size: 14px;
  padding: 6px 15px;
}

#sectorTabs .nav-link.active {
  border: 1px solid transparent !important;
  background: #fff !important;
}

.relevant-sdgs-container h5 {
  font-size: 18px;
}

.relevant-sdgs-container h5 img {
  width: 20px;
}

.relevant-sdgs .sdg-icon {
  width: 96px;
  align-self: center;
}

.embed-responsive {
  margin: 2rem 0;
}

@media (max-width: 991px) {
  .default-header {
    padding-bottom: 90px;
  }
  #byTheNumbers iframe {
    padding-bottom: 0;
  }
  .embed-responsive {
    margin-bottom: 0;
  }
  .impact-sectors-container {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  #sectorTabs .nav-link {
    font-size: 16px !important;
  }
  #portfolio-list .accordion-item:last-child {
    margin-bottom: 0 !important;
  }
}
.desktop-filter {
  display: block;
  padding: 0 10px;
  -webkit-appearance: none;
  position: relative;
}

.select-wrapper {
  position: relative;
}
.select-wrapper:after {
  content: "v";
  position: absolute;
  top: 1px;
  left: 85px;
  width: 15px;
  color: #585858;
}
.select-wrapper img {
  margin: 0;
  box-shadow: none;
}

.mobile-filter {
  display: none;
}

@media (max-width: 991px) {
  .desktop-filter {
    display: none;
  }
  .mobile-filter {
    display: block;
  }
  .select-wrapper:after {
    display: none;
  }
}
/*** SDG TEMPLATE ***/
.sdg-page-content p {
  font-size: 18px;
  line-height: 22px;
}

.sdg-accordion .accordion-item {
  border-top: 2px solid #e7e7e7;
  padding: 32px 0;
}

.sdg-accordion h2.title {
  color: #175b69;
  font-size: 32px;
}

.sdg-accordion .card-body {
  padding: 0 48px 0 119px;
}

.sdg-accordion .sdg-stats p.title {
  font-size: 18px;
  color: #175b69;
  font-family: "Proxima Nova Bold", Arial, sans-serif;
}

.sdg-accordion .accordion-item:last-child {
  border-bottom: 2px solid #e7e7e7;
}

.sdg-accordion-btn:hover {
  text-decoration: none;
}

.sdg-accordion .sdg-accordion-label img {
  width: 95px;
  align-self: start;
}

.sdg-accordion .sdg-accordion-label p {
  color: #175b69;
  font-size: 24px;
  line-height: 28px;
  font-family: "Proxima Nova Semibold", Arial, sans-serif;
}

.sdg-accordion-btn .svg-icon svg {
  transition: all 0.5s ease;
  transform: rotate(270deg);
}

.sdg-accordion-btn.collapsed svg {
  transform: rotate(0);
}

.sdg-accordion-btn .svg-icon #Line:last-child {
  transition: all 0.5s ease;
  opacity: 0;
}

.sdg-accordion-btn.collapsed .svg-icon #Line:last-child {
  opacity: 1;
}

.sdg-stat {
  box-shadow: 3px 3px 8px 0 rgba(0, 0, 0, 0.14);
  border-radius: 6px;
}

.sdg-stat-link {
  text-decoration: none;
}

.sdg-stat:hover .sdg-link-arrow {
  animation: 1.5s back-and-forth ease-in-out infinite;
}

.sdg-stat-title img {
  width: 36px;
}

.sdg-stat-title p {
  font-size: 18px;
  color: #175b69;
}

.sdg-stat-detail {
  color: #175b69;
  font-size: 20px;
  padding: 0 0 0 36px;
}

.sda-description {
  color: #175b69;
}

.sda-description img {
  max-width: 100%;
}

@media (max-width: 991px) {
  .sdg-page-content img {
    width: 100%;
  }
  .sdg-accordion .sdg-accordion-label p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .sdg-accordion .card-body {
    padding: 0;
  }
}
.faq-hero {
  padding: 96px 0;
}
.faq-hero .faq-hero-left h1 {
  color: #52bc7f;
  font-weight: 700;
  font-size: 75px;
  line-height: 1.2;
  margin: 0;
}
.faq-hero .faq-hero-left h2 {
  color: #52bc7f;
  font-weight: 700;
  font-size: 75px;
  line-height: 1.2;
  margin: 0;
}
.faq-hero .faq-hero-left p {
  color: #52bc7f;
  font-weight: 700;
  font-size: 75px;
  line-height: 1.2;
  margin: 0;
}
.faq-hero .faq-hero-right h1,
.faq-hero .faq-hero-right h2,
.faq-hero .faq-hero-right h3,
.faq-hero .faq-hero-right h4,
.faq-hero .faq-hero-right h5,
.faq-hero .faq-hero-right h6 {
  color: #007588;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.3;
  margin: 0 0 24px 0;
}
.faq-hero .faq-hero-right h1:last-child,
.faq-hero .faq-hero-right h2:last-child,
.faq-hero .faq-hero-right h3:last-child,
.faq-hero .faq-hero-right h4:last-child,
.faq-hero .faq-hero-right h5:last-child,
.faq-hero .faq-hero-right h6:last-child {
  margin-bottom: 0;
}
.faq-hero .faq-hero-right p {
  color: #007588;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.3;
  margin: 0 0 24px 0;
}
.faq-hero .faq-hero-right p:last-child {
  margin-bottom: 0;
}

.faq-page-section {
  padding: 64px 0;
}
.faq-page-section:first-of-type {
  padding-top: 96px;
}
.faq-page-section .faq-section-title {
  color: #007588;
  font-family: "Proxima Nova Bold", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 32px;
  position: sticky;
  top: 48px;
}
.faq-page-section .faq-page-content .accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #747474;
}
.faq-page-section .faq-page-content .accordion .accordion-item:last-child {
  border-bottom: none;
}
.faq-page-section .faq-page-content .accordion .accordion-button {
  background-color: transparent;
  width: 100%;
  padding: 24px 0;
  border: none;
  border-radius: 0 !important;
  box-shadow: none;
  position: relative;
}
.faq-page-section .faq-page-content .accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-page-section .faq-page-content .accordion .accordion-button p {
  padding-right: 96px;
  margin-bottom: 0;
}
.faq-page-section .faq-page-content .accordion .accordion-button p:after {
  content: "";
  background-image: url("/public/images/dropdown_arrow.svg");
  background-size: 14px 8px;
  display: inline-block;
  transition: all 0.5s;
  width: 14px;
  height: 8px;
  position: absolute;
  right: 48px;
  top: 24px;
}
.faq-page-section .faq-page-content .accordion .accordion-button[aria-expanded=true] p:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faq-page-section .faq-page-content .accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
}
.faq-page-section .faq-page-content .accordion .accordion-collapse {
  border: none;
}
.faq-page-section .faq-page-content .accordion .accordion-body {
  padding: 0 0 32px 0;
  padding-right: 96px;
}
.faq-page-section .faq-page-content .accordion .accordion-body p {
  color: #175b69;
}

@media (max-width: 991px) {
  .faq-hero .faq-hero-left {
    margin-bottom: 32px;
  }
  .faq-hero .faq-hero-left h1,
  .faq-hero .faq-hero-left h2,
  .faq-hero .faq-hero-left p {
    font-size: 50px;
  }
  .faq-hero .faq-hero-right h1,
  .faq-hero .faq-hero-right h2,
  .faq-hero .faq-hero-right h3,
  .faq-hero .faq-hero-right h4,
  .faq-hero .faq-hero-right h5,
  .faq-hero .faq-hero-right h6,
  .faq-hero .faq-hero-right p {
    font-size: 28px;
  }
  .faq-page-section .faq-section-title {
    position: static;
    font-size: 24px;
    margin-bottom: 24px;
  }
  .faq-page-section .faq-page-content {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .faq-hero {
    padding: 48px 0;
  }
  .faq-hero .faq-hero-left {
    margin-bottom: 32px;
  }
  .faq-hero .faq-hero-left h1,
  .faq-hero .faq-hero-left h2,
  .faq-hero .faq-hero-left p {
    font-size: 40px;
  }
  .faq-hero .faq-hero-right h1,
  .faq-hero .faq-hero-right h2,
  .faq-hero .faq-hero-right h3,
  .faq-hero .faq-hero-right h4,
  .faq-hero .faq-hero-right h5,
  .faq-hero .faq-hero-right h6,
  .faq-hero .faq-hero-right p {
    font-size: 24px;
  }
  .faq-page-section {
    padding: 32px 0;
  }
  .faq-page-section:first-of-type {
    padding-top: 48px;
  }
  .faq-page-section .faq-section-title {
    font-size: 20px;
  }
  .faq-page-section .faq-page-content .accordion .accordion-button p {
    font-size: 16px;
  }
  .faq-page-section .faq-page-content .accordion .accordion-button p:after {
    top: 16px;
  }
}

/*# sourceMappingURL=main.css.map */
