@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

*, a {
  -webkit-tap-highlight-color: transparent !important;
}

body, html {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  color: #66757C;
}

@media screen and (max-width: 980px) {
  body, html {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  body, html {
    font-size: 16px;
  }
}

a {
  text-decoration: none;
  color: #66757C;
  transition: color .3s ease;
}

nav a {
  cursor: pointer;
}

a, div {
  -webkit-tap-highlight-color: transparent;
}

a[href^="tel"] {
  color: inherit;
}

h2 {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 3rem;
  line-height: 1.2em;
  color: #005076;
}

h3 {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.2em;
  color: #005076;
}

h4 {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2em;
  color: #005076;
}

p {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.4em;
  color: #66757C;
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

p.lg {
  font-size: 1.2rem;
}

p.lg2 {
  font-size: 1.7rem;
  color: #005076;
}

.container {
  width: calc(100% - 2rem);
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.secPadding {
  padding: 7.5rem 0;
}

.global-btn {
  display: inline-block;
  border: solid 1px #fff;
  padding: 14px 20px;
  transition: all .3s ease;
}

.global-btn span {
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #fff;
  padding-right: 90px;
  background: url(/i/svg/arrow-right.svg) 100% 50%/16px 16px no-repeat;
  transition: all .3s ease;
}

.global-btn:hover {
  border-color: #fff;
  background: #fff;
}

.global-btn:hover span {
  color: #005076;
  background-image: url(/i/svg/arrow-bl.svg);
}

.global-btn.bl {
  border-color: #005076;
}

.global-btn.bl span {
  color: #005076;
  background-image: url(/i/svg/arrow-bl.svg);
}

.global-btn.bl:hover {
  border-color: #005076;
  background-color: #005076;
}

.global-btn.bl:hover span {
  color: #fff;
  background-image: url(/i/svg/arrow-right.svg);
}

.two-col {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.two-col > div {
  width: 50%;
  max-width: 668px;
}

.two-col.wh * {
  color: #fff;
}

.inner .s1 {
  height: 100vh;
  min-height: 900px;
  position: relative;
  overflow: hidden;
  background: url(/i/hero.png) no-repeat top/cover;
}

.inner .s1 .container {
  position: absolute;
  bottom: 7.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
}

.inner .s1 h1 {
  font-size: 1.7rem;
  font-weight: 300;
}

.inner .s1 h2 {
  font-size: 1.8rem;
}

/***** PLX ******/
.plx-container {
  position: relative;
}

.plx-container .plx-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.plx-container .plx-bg {
  background: url(/i/hero.png) no-repeat center/cover;
  position: absolute;
  inset: 0;
  height: 130%;
  top: -5%;
  will-change: transform;
}

.full-height {
  height: 100vh;
  min-height: 900px;
}

.gradient {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, transparent 36.5%, rgba(0, 0, 0, 0.83) 100%);
}

.card-sec {
  display: flex;
  align-items: center;
}

.card-sec > div {
  width: 50%;
  position: relative;
  height: 504px;
}

.card-sec .left {
  background: url(/i/quote-thumbnail-1.jpg) no-repeat center/cover;
}

.card-sec .right {
  background-color: #fff;
}

.card-sec .right > div {
  max-width: 577px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 0 1rem;
}

.card-sec .right .quote {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.3rem;
}

.card-sec .right .quote span {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(102, 117, 124, 0.3);
}

.card-sec .right .quote img {
  display: block;
  width: 31px;
}

.card-sec .right h4 {
  color: #66757C;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2rem;
  font-size: 16px;
}

.card-sec .right p {
  font-size: 1.2rem;
}

/***** HEADER *****/
header {
  width: 100%;
  position: fixed;
  transition: background-color .3s ease;
  z-index: 101;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  border-bottom: solid 1px rgba(255, 255, 255, 0.4);
  /* Mobile */
}

header .container {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  gap: 2rem;
}

header .wrapper {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}

header .invest-portal {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  line-height: 23px;
  font-weight: 300;
  position: relative;
  padding-bottom: 2rem;
}

header .invest-portal::after {
  content: '';
  position: absolute;
  display: block;
  width: 0px;
  height: 4px;
  background-color: #fff;
  bottom: 0;
  left: 0;
  transition: width .3s ease;
}

header .invest-portal:hover::after {
  width: 100%;
}

header .logo {
  display: block;
  width: 383px;
  height: 73px;
  background: url(/i/svg/logo.svg) no-repeat center/contain;
  position: relative;
  z-index: 1;
}

header nav .wrapper {
  text-align: right;
}

header nav ul {
  list-style: none;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  align-items: center;
}

header nav ul li a {
  display: inline-block;
  font-weight: 300;
  font-size: 18px;
  line-height: 23px;
  padding: 2rem 0;
  color: #fff;
  margin-left: 1.5rem;
  transition: color .5s ease;
  cursor: pointer;
  position: relative;
}

header nav ul li a::after {
  content: '';
  position: absolute;
  display: block;
  width: 0px;
  height: 4px;
  background-color: #fff;
  bottom: 0;
  left: 0;
  transition: width .3s ease;
}

header nav ul li a:hover::after,
header nav ul .selNav a::after {
  width: 100%;
}

header .menu_container {
  display: none;
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  right: 0;
  height: 20px;
}

header .menu_container #menu_btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  width: 44px;
  height: 20px;
}

header .menu_container #menu_btn i {
  transition-delay: .6s;
  transition: all 0.2s ease-out;
  height: 1px;
  width: 44px;
  background-color: #fff;
  position: absolute;
  border-radius: 2px;
  left: 0;
}

header .menu_container #menu_btn i:nth-child(1) {
  top: 0;
}

header .menu_container #menu_btn i:nth-child(2) {
  top: 10px;
}

header .menu_container #menu_btn i:nth-child(3) {
  top: 20px;
}

/****** HEADER ACTIVE ******/
header.active .logo {
  background-image: url(/i/svg/logo-cl.svg);
}

header.active nav {
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100vh;
  min-height: -webkit-fill-available;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
}

header.active nav .wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  width: 100%;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

header.active nav .invest-portal {
  color: #005076;
  font-size: 1.3rem;
  line-height: 1.5em;
  padding-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translate(0%, 100%);
  transition: opacity .3s ease, transform .3s ease;
}

header.active nav .invest-portal.fade {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
}

header.active nav .invest-portal::after {
  background-color: #005076;
}

header.active nav ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

header.active nav ul li a {
  display: inline-block;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.5em;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(0%, 100%);
  position: relative;
  margin: 0;
  padding-bottom: 10px;
  text-transform: none;
  transition: opacity .3s ease, transform .3s ease;
  color: #005076;
}

header.active nav ul li a::after {
  background-color: #005076;
}

header.active nav ul li a.fade {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
}

header.active nav ul li a:hover::after,
header.active nav ul .selNav a::after {
  background-color: #005076;
}

header.active #menu_btn i {
  top: 5px;
  background-color: #005076;
}

header.active #menu_btn i:nth-child(1) {
  transform: rotate(45deg);
  width: 40px;
  top: 5px;
}

header.active #menu_btn i:nth-child(3) {
  transform: rotate(-45deg);
  width: 40px;
  top: 5px;
}

header.active #menu_btn i:nth-child(2) {
  display: none;
}

header.scroll:not(.active) {
  background: #fff;
  border-bottom: solid 1px rgba(0, 80, 118, 0.3);
}

header.scroll:not(.active) .logo {
  background-image: url(/i/svg/logo-cl.svg);
}

header.scroll:not(.active) .invest-portal {
  color: #005076;
}

header.scroll:not(.active) .invest-portal::after {
  background-color: #005076;
}

header.scroll:not(.active) nav ul li a {
  color: #005076;
}

header.scroll:not(.active) nav ul li a:hover::after,
header.scroll:not(.active) nav ul .selNav a::after {
  background-color: #005076;
}

header.scroll:not(.active) .menu_container #menu_btn i {
  background: #005076;
}

.inner header {
  background: linear-gradient(0deg, rgba(0, 80, 118, 0.39) 0%, rgba(0, 80, 118, 0.39) 100%), rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18.4px);
}

footer .top {
  background: #012231;
}

footer .top .tp {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 5rem 0 3rem 0;
}

footer .top .tp .logo {
  display: block;
  width: 383px;
  height: 73px;
  background: url(/i/svg/logo.svg) no-repeat center/contain;
  position: relative;
  z-index: 1;
}

footer .top .tp .right {
  text-align: left;
}

footer .top .tp .right h3 {
  color: #fff;
  font-weight: 300;
  margin-bottom: 2rem;
}

footer .top .bt {
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  padding: 2rem 0;
}

footer .top .bt ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 3rem;
}

footer .top .bt ul li a {
  font-size: 0.9rem;
  line-height: 1.2em;
  color: #fff;
  transition: opacity .3s ease;
}

footer .top .bt ul li a:hover {
  opacity: 0.7;
}

footer .bottom {
  background: #00151F;
  text-align: center;
  padding: 1rem 0;
}

footer .bottom p, footer .bottom a {
  font-size: 0.9rem;
  line-height: 1.2em;
  color: rgba(255, 255, 255, 0.5);
}

footer .bottom a {
  transition: color .3s ease;
}

footer .bottom a:hover {
  color: #fff;
}

footer .bottom p span {
  display: inline-block;
  margin: 0 5px;
}

footer .bottom p br {
  display: none;
}

#fund .s2 {
  padding: 13rem 0 7.5rem 0;
}

#fund .s2 .container {
  max-width: 1000px;
}

#fund .s2 h3 {
  margin-bottom: 2rem;
}

#fund .s2 .fund-name {
  margin-bottom: 3rem;
}

#fund .s2 .perf-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#fund .s2 .tmonthly {
  min-width: 1000px;
}

#fund .s2 .tnav {
  min-width: 1000px;
}

#fund .s2 .fidholder {
  color: #005076;
}

#fund .s2 .fidholder .finfo {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #6e9cc4;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.4em;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

#fund .s2 .fidholder .fund-name {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  line-height: 1.2em;
  color: #005076;
  border: 0;
}

#fund .s2 .fidholder .subnav {
  border-bottom: solid 1px rgba(0, 80, 118, 0.3);
  margin-bottom: 2.5rem;
}

#fund .s2 .fidholder .subnav a {
  display: inline-block;
  padding: 0 4px 10px;
  margin-right: 1.5rem;
  margin-bottom: -1px;
  color: #6e9cc4;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-bottom: solid 3px transparent;
}

#fund .s2 .fidholder .subnav a.sel {
  border-bottom-color: #6e9cc4;
}

#fund .s2 .fidholder .perf-title {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  line-height: 1.2em;
  color: #005076;
  border: 0;
}

#fund .s2 .fidholder .tmonthly {
  width: 100%;
  font-size: 0.9rem;
}

#fund .s2 .fidholder .tmonthly td {
  padding: 12px 8px;
  text-align: center;
}

#fund .s2 .fidholder .tmonthly tr.header td {
  background: #f5f6f7;
  color: #005076;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

#fund .s2 .fidholder .tmonthly td.year {
  font-weight: 700;
  color: #005076;
  text-align: left;
  padding-left: 4px;
}

#fund .s2 .fidholder .tmonthly td.yearly {
  background: #dde9f1;
  font-weight: 600;
}

#fund .s2 .fidholder .tmonthly tr.header .yearly {
  background: #cbdcea;
}

#fund .s2 .fidholder .tmonthly tbody tr td:not(.year):not(.yearly) {
  color: #6b6b6b;
}

#fund .s2 .fidholder .tmonthly tr.odd td {
  background: #f7f8f9;
}

#fund .s2 .fidholder .tmonthly tr.even td {
  background: #fff;
}

#fund .s2 .fidholder .tmonthly tr.odd td.yearly,
#fund .s2 .fidholder .tmonthly tr.even td.yearly {
  background: #dde9f1;
}

#fund .s2 .fidholder .tmonthly tr.more {
  display: none;
}

#fund .s2 .fidholder .tmonthly.show-all tr.more {
  display: table-row;
}

#fund .s2 .fidholder .nav-head {
  margin: 3rem 0 5px;
  padding-bottom: 14px;
  font-size: 1rem;
  color: #005076;
  border-bottom: solid 1px rgba(0, 80, 118, 0.3);
}

#fund .s2 .fidholder .nav-head #nav-date {
  font-weight: 400;
}

#fund .s2 .fidholder .nav-head select[name=MONTHS] {
  font-size: 0.9rem;
  padding: 6px 10px;
}

#fund .s2 .fidholder .tnav {
  width: 100%;
  font-size: 0.95rem;
}

#fund .s2 .fidholder .tnav td {
  padding: 14px 8px;
  text-align: right;
  color: #005076;
}

#fund .s2 .fidholder .tnav td.f {
  text-align: left;
}

#fund .s2 .fidholder .tnav tr.h td {
  font-weight: 600;
  color: #005076;
  border-bottom: solid 1px rgba(0, 80, 118, 0.3);
  padding-bottom: 12px;
}

#fund .s2 .fidholder .tnav tr.sh td {
  background: #e9edf1;
  color: #005076;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 12px 14px;
}

#fund .s2 .fidholder .tnav tr:not(.h):not(.sh) td {
  border-bottom: solid 1px #e6e8ea;
}

#fund .s2 .fidholder .btn-download {
  display: inline-block;
  margin-top: 1rem;
  color: #6e9cc4;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

#fund .s2 .fidholder .btn-download:hover {
  text-decoration: underline;
}

#fund .s2 .fidholder .btn-show {
  display: inline-block;
  margin-top: 1rem;
  color: #6e9cc4;
  font-size: 0.8rem;
  cursor: pointer;
}

#fund .s2 .fidholder .btn-show:before {
  content: "Show all";
}

#fund .s2 .fidholder .disc-bottom-strat {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  line-height: 1.6em;
  color: #6b6b6b;
}

.btn-cookie-preferences {
  font-family: "Manrope", sans-serif !important;
  font-size: 0.9rem !important;
  line-height: 1.2em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5) !important;
  transition: color 0.3s ease;
}

.btn-cookie-preferences:hover {
  color: #fff !important;
}

.cookie-disclaimer {
  color: #66757C;
}

.cookie-disclaimer p {
  color: #66757C;
}

body .cookie-disclaimer {
  background-color: #F4F4F4;
  border-radius: 10px;
  width: 90% !important;
  max-width: 1320px !important;
  position: fixed;
  bottom: 20px !important;
  z-index: 1000;
  left: 50%;
  transform: translateX(-50%);
}

body .cookie-disclaimer * {
  text-transform: none !important;
}

body .cookie-disclaimer .btn-agree {
  color: #005076;
}

body .cookie-disclaimer .btn-preferences {
  background: #005076;
  color: #fff;
}

body .cookie-disclaimer .c-disclaimer.c-on {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

body .cookie-disclaimer .c-disclaimer.c-on p {
  margin: 0 1rem 0 0;
}

body .cookie-disclaimer .c-disclaimer.c-on > a, body .cookie-disclaimer .c-disclaimer.c-on button {
  min-width: 175px;
  margin: 0 !important;
  background: #005076;
  color: #fff;
}

body .cookie-disclaimer .c-content a:nth-child(5), body .cookie-disclaimer .c-content button:nth-child(5) {
  color: #fff;
  background-color: #d13e3e !important;
}

body .cookie-disclaimer .c-on > button {
  background: #005076;
  color: #fff;
}

body .cookie-disclaimer .c-content a:nth-child(6), body .cookie-disclaimer .c-content button:nth-child(6) {
  color: #fff;
  background-color: #93aac5 !important;
}

body .cookie-disclaimer p, body .cookie-disclaimer div {
  font-size: .8rem;
  line-height: 1.33em;
}

body .cookie-disclaimer a, body .cookie-disclaimer button {
  text-decoration: none;
}

body .cookie-disclaimer ul {
  list-style-type: none;
}

body .cookie-disclaimer .c-content h2 {
  font-weight: 200;
  font-size: 1.5rem;
  line-height: 1.2em;
  letter-spacing: normal;
}

body .cookie-disclaimer h3 {
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.2em;
  color: #005076;
}

body .cookie-disclaimer .btn-agree, body .cookie-disclaimer li > a, body .cookie-disclaimer li > button {
  background-color: #fff;
}

body .cookie-disclaimer li > button {
  width: 100%;
  text-align: left;
  text-decoration: none !important;
}

body .cookie-disclaimer .c-nav .btn-close-pref button {
  text-align: left;
}

body .cookie-disclaimer .btn-agree, body .cookie-disclaimer .btn-preferences {
  padding: .5rem 1rem;
  text-align: center;
}

a.noclick, .noclick > a {
  cursor: context-menu !important;
}

@media screen and (max-width: 1300px) {
  body .cookie-disclaimer {
    left: 0 !important;
    width: 100% !important;
    transform: none !important;
    bottom: 0 !important;
  }
  body .cookie-disclaimer .c-preferences {
    padding-top: 50px;
  }
  body .cookie-disclaimer .c-disclaimer.c-on {
    display: block !important;
  }
  body .cookie-disclaimer .c-disclaimer.c-on > p {
    margin-bottom: 1.5rem;
  }
  body .cookie-disclaimer .c-disclaimer.c-on > a {
    margin-bottom: .5rem !important;
  }
  body .cookie-disclaimer .c-disclaimer.c-on > .btn-agree {
    margin-right: .75rem !important;
  }
}

body.modal_open {
  overflow: hidden;
}

.shade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 52, 76, 0.75);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.shade.show {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: calc(100% - 2rem);
  max-width: 900px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.modal .inner {
  position: relative;
  background: #fff;
  padding: 3.5em 3em;
  max-height: 85vh;
  overflow-y: auto;
}

.modal form {
  max-width: 600px;
  margin: 0 auto;
}

.modal .close {
  position: absolute;
  top: 1.2em;
  right: 1.2em;
  width: 30px;
  height: 30px;
  background: none;
  border: 0;
  cursor: pointer;
}

.modal .close:before, .modal .close:after {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 30px;
  height: 1px;
  background: #0b344c;
}

.modal .close:before {
  transform: rotate(45deg);
}

.modal .close:after {
  transform: rotate(-45deg);
}

.modal h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal .scroll {
  max-height: 40vh;
  overflow-y: auto;
  margin-bottom: 2em;
}

.modal .scroll p {
  font-size: 0.9375em;
  line-height: 1.6em;
  margin-bottom: 1em;
}

.modal .row {
  margin-bottom: 1.5em;
}

.modal .row label {
  display: block;
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  color: #005076;
  margin-bottom: 0.5em;
}

.modal .row input {
  width: 100%;
  padding: 0.85em 1em;
  border: 1px solid #66757C;
  font-family: inherit;
  font-size: 0.9rem;
  color: #66757C;
}

.modal .row input:focus {
  outline: none;
  border-color: #005076;
}

.modal .actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  margin-top: 2em;
}

.modal .btn-forgot, .modal .btn-request {
  font-size: 0.875em;
  color: #005076;
}

.modal .btn-forgot:hover, .modal .btn-request:hover {
  text-decoration: underline;
}

.modal .response {
  margin-top: 1.5em;
  font-size: 0.875em;
  text-align: center;
  color: #ff0000;
}

.modal .response:empty {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .modal {
    max-width: 90%;
  }
  .modal .inner {
    padding: 3em 1.5em;
  }
  .modal .actions {
    flex-wrap: wrap;
    gap: 1em;
  }
  .modal .actions .global-btn {
    min-width: 165px;
  }
}

#login button[type="submit"] {
  background-color: transparent;
  outline: none;
}

#login button[type="submit"]:hover {
  background-color: #005076;
}

.disclaimer .s1 {
  padding: 13rem 0 7.5rem 0;
}

.disclaimer .s1 h3 {
  margin: 3rem 0 1rem 0;
}

.disclaimer .s1 ul {
  list-style: none;
  margin-bottom: 1rem;
}

.disclaimer .s1 ul li {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.5em;
  color: #66757C;
  margin-bottom: 10px;
  position: relative;
  padding-left: 0.5rem;
}

.disclaimer .s1 ul li::before {
  content: '';
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #66757C;
  left: 0;
  top: 0.8rem;
  transform: translate(-50%);
}

@media screen and (max-width: 1200px) {
  header {
    padding: 1rem 0;
  }
  header .menu_container {
    display: block;
  }
  header nav {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
  }
  footer .top .tp {
    flex-direction: column;
    justify-content: center;
  }
  footer .top .tp .logo {
    margin: 0 auto;
  }
  footer .top .tp .right {
    text-align: center;
  }
}

@media screen and (max-width: 1100px) {
  .gradient {
    background: linear-gradient(180deg, transparent 15%, rgba(0, 0, 0, 0.83) 100%);
  }
  .two-col {
    flex-direction: column;
  }
  .two-col > div {
    width: 100%;
    max-width: none !important;
  }
  footer .top .bt {
    display: none;
  }
}

@media screen and (max-width: 980px) {
  .card-sec {
    flex-direction: column-reverse;
  }
  .card-sec > div {
    width: 100%;
  }
  .card-sec .right > div {
    max-width: 650px;
  }
}

@media screen and (max-width: 767px) {
  body, html {
    -webkit-text-size-adjust: 100%;
  }
  .secPadding {
    padding: 5rem 0;
  }
  .full-height {
    min-height: 500px;
  }
  h2 {
    font-size: 1.7rem;
  }
  h3 {
    font-size: 1.4rem;
  }
  p {
    font-size: 1rem;
  }
  p.lg {
    font-size: 1.1rem;
  }
  p.lg2 {
    font-size: 1.4rem;
  }
  .global-btn {
    padding: 12px 18px;
  }
  .global-btn span {
    font-size: 13px;
    padding-right: 70px;
  }
  .inner .s1 {
    min-height: 500px;
  }
  .inner .s1 .container {
    bottom: 5rem;
  }
  .inner .s1 h1 {
    font-size: 1.5rem;
  }
  .inner .s1 h2 {
    font-size: 1.2rem;
  }
  .card-sec > div {
    height: auto;
  }
  .card-sec .left {
    height: 450px;
  }
  .card-sec .right > div {
    top: auto;
    transform: none;
    padding: 5rem 1rem;
  }
  .card-sec .right h4 {
    font-size: 14px;
  }
  header .logo {
    width: 240px;
    height: 60px;
  }
  header .invest-portal {
    font-size: 1.2rem;
    line-height: 1.3em;
  }
  header .menu_container {
    top: 50%;
  }
  header .menu_container #menu_btn {
    width: 35px;
    height: 16px;
  }
  header .menu_container #menu_btn i {
    width: 35px;
  }
  header .menu_container #menu_btn i:nth-child(2) {
    top: 8px;
  }
  header .menu_container #menu_btn i:nth-child(3) {
    top: 16px;
  }
  header.active #menu_btn i:nth-child(1),
  header.active #menu_btn i:nth-child(3) {
    width: 30px;
    top: 5px;
  }
  header.active nav ul {
    gap: 0.6rem;
  }
  header.active nav ul li a {
    font-size: 1.2rem;
    line-height: 1.3em;
  }
  footer .top .tp .logo {
    width: 240px;
    height: 60px;
  }
  footer .top .tp .right h3 {
    font-size: 1.3rem;
  }
  footer .bottom p br {
    display: block;
  }
  footer .bottom p span:first-of-type {
    display: none;
  }
  .disclaimer .s1 {
    padding: 10rem 0 5rem 0;
  }
  .disclaimer .s1 ul li {
    font-size: 1rem;
    line-height: 1.4em;
  }
  .disclaimer .s1 ul li::before {
    top: 0.5rem;
  }
}

@media screen and (max-width: 500px) {
  .inner .s1 {
    background: url(/i/about-hero-mobile.jpg) no-repeat center/cover;
  }
}
