* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

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

body, html {
  font-family: aktiv-grotesk-extended, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  color: #404E65;
}

@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;
}

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

a[href^="tel"] {
  color: inherit;
  text-decoration: none !important;
  -webkit-appearance: none;
}

p {
  font-family: aktiv-grotesk-extended, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.5em;
  color: #404E65;
}

p.lg {
  font-family: kaisei-decol, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.4em;
  color: #224F73;
}

h2 {
  font-family: kaisei-decol, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2.75rem;
  line-height: 1.29em;
  color: #224F73;
}

h3 {
  font-family: kaisei-decol, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2.45rem;
  line-height: 1.32em;
  color: #224F73;
}

h2.sm {
  font-family: kaisei-decol, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.4em;
  color: #224F73;
}

.container {
  width: calc(100% - 2rem);
  max-width: 1420px;
  margin: 0 auto;
}

.container-inner {
  width: calc(100% - 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.secPadding {
  padding: 7.5rem 0;
}

.global-btn {
  display: inline-flex;
}

.global-btn .arrow {
  width: 80px;
  height: 80px;
  border: solid 1px rgba(88, 132, 187, 0.5);
  position: relative;
  border-radius: 3px;
  transition: all .5s ease;
}

.global-btn .arrow img {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .5s ease;
}

.global-btn .txt {
  border: solid 1px rgba(88, 132, 187, 0.5);
  border-radius: 3px;
  padding: 0 2.5rem;
  border-left: none;
  transition: all .5s ease;
}

.global-btn .txt p {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  transition: color .5s ease;
}

.global-btn:hover .arrow img {
  left: 60%;
}

.global-btn:hover .arrow, .global-btn:hover .txt {
  border-color: #1A9FE3;
}

.global-btn:hover .txt p {
  color: #1A9FE3;
}

.inner .s1 {
  height: 100vh;
  max-height: 600px;
  min-height: 600px;
  position: relative;
}

.inner .s1 .container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5rem;
}

.inner .s1 h1 {
  font-family: aktiv-grotesk-extended, sans-serif;
  font-style: normal;
  font-weight: 100;
  font-size: 5.5rem;
  line-height: 1.02em;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -2.2px;
}

#our-platform .s1 {
  background: url(/i/our-platform-hero.png) no-repeat center/cover;
}

#strategies .s1 {
  background: url(/i/Strategy-hero.png) no-repeat center/cover;
}

#leadership .s1 {
  background: url(/i/Team-hero.png) no-repeat center/cover;
}

#careers .s1 {
  background: url(/i/Careers-Hero.png) no-repeat center/cover;
}

#contact .s1 {
  background: url(/i/Contact-hero.png) no-repeat center/cover;
}

/***** HEADER *****/
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 102;
  padding: 2rem 0;
  transition: background-color .3s ease;
}

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: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  gap: 2rem;
}

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

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

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

header nav ul li {
  margin-left: 2rem;
}

header nav ul li a {
  display: inline-block;
  position: relative;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 20px;
  color: #fff;
}

header nav ul li a::before {
  content: '';
  position: absolute;
  display: block;
  width: 13px;
  height: 13px;
  background: #1A9FE3;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity .3s ease;
}

header nav ul .selNav > a::before, header nav ul li a:hover::before {
  opacity: 1;
}

header nav ul .contact {
  padding-left: 2rem;
  border-left: solid 1px rgba(255, 255, 255, 0.5);
}

header nav ul .login a {
  padding-right: 20px;
  transition: color .3s ease;
}

header nav ul .login a::after {
  content: '';
  position: absolute;
  display: block;
  width: 10px;
  height: 11px;
  background: url(/i/svg/lock.svg) no-repeat center/contain;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

header nav ul .login a::before {
  display: none;
}

header nav ul .login a:hover {
  color: #1A9FE3;
}

header nav .bottom-nav {
  display: none;
}

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

header .menu_container #menu_btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  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.scroll:not(.active) {
  background: #fff;
  padding: 1.5rem 0;
}

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

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

header.scroll:not(.active) nav ul .contact {
  border-color: rgba(64, 78, 101, 0.5);
}

header.scroll:not(.active) .menu_container #menu_btn i {
  background-color: #404E65;
}

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

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

header.active nav .wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  width: calc(100% - 2rem);
  text-align: left;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}

header.active nav ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}

header.active nav ul li {
  display: block;
  width: 100%;
  margin-left: 0;
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  padding: 1.1rem 0;
}

header.active nav ul li a {
  font-size: 1rem;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translate(0%, 100%);
  transition: all .3s ease;
}

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

header.active nav ul li a::before {
  width: 8px;
  height: 8px;
  top: 0.5em;
  left: 0;
  transform: translateY(-50%);
}

header.active nav ul li a:hover::before {
  opacity: 0;
}

header.active nav ul .contact {
  padding-left: 0;
  border-left: none;
}

header.active nav ul .contact, header.active nav ul .login {
  display: none;
}

header.active nav ul .selNav > a {
  padding-left: 1.2rem;
}

header.active nav ul .selNav > a::before {
  opacity: 1;
}

header.active nav .bottom-nav {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  border-top: solid 1px rgba(255, 255, 255, 0.3);
}

header.active nav .bottom-nav > div {
  width: 50%;
  text-align: center;
  padding: 1.2rem 0;
}

header.active nav .bottom-nav > div a {
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

header.active nav .bottom-nav .contact {
  border-right: solid 1px rgba(255, 255, 255, 0.3);
}

header.active nav .bottom-nav .login a {
  padding-right: 20px;
  transition: color .3s ease;
  position: relative;
}

header.active nav .bottom-nav .login a::after {
  content: '';
  position: absolute;
  display: block;
  width: 10px;
  height: 11px;
  background: url(/i/svg/login-wh.svg) no-repeat center/contain;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

header.active #menu_btn i {
  background-color: #fff;
}

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

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

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

footer {
  background: #04162C;
}

footer .top {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: solid 1px #17355A;
  padding: 6rem 0;
}

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

footer .top .right {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4rem;
}

footer .top .right a {
  font-size: 0.9rem;
  line-height: 1.5em;
  color: rgba(205, 226, 252, 0.75);
  transition: color .3s ease;
}

footer .top .right a span {
  display: block;
  color: #fff;
  font-weight: 400;
  padding-bottom: 1rem;
  opacity: 1;
}

footer .top .right a:hover {
  color: #1A9FE3;
}

footer .bottom {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding: 2.5rem 0;
}

footer .bottom p, footer .bottom a {
  font-size: 15px;
  line-height: 20px;
  color: rgba(205, 226, 252, 0.75);
}

footer .bottom a {
  display: inline-block;
  margin-left: 1.4rem;
  color: #fff;
  transition: color .3s ease;
}

footer .bottom a:first-of-type {
  margin-left: 0;
}

footer .bottom a:hover {
  color: #1A9FE3;
}

/***** FORM *****/
form input, form textarea {
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

form input:focus, form textarea:focus, form button:focus, form select:focus {
  outline: none;
}

form input:-webkit-autofill,
form input:-webkit-autofill:hover,
form input:-webkit-autofill:focus,
form textarea:-webkit-autofill,
form textarea:-webkit-autofill:hover,
form textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
}

.btn-cookie-preferences {
  font-family: aktiv-grotesk-extended, sans-serif !important;
  font-size: 15px !important;
  color: #fff !important;
  transition: color 0.3s ease;
  margin-left: 1.4rem;
}

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

.cookie-disclaimer {
  color: #404E65;
}

.cookie-disclaimer p {
  color: #404E65;
}

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: #224F73;
}

body .cookie-disclaimer .btn-preferences {
  background: #224F73;
  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: #224F73;
  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: #224F73;
  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;
}

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 {
  border-radius: 3.5rem;
  padding: .5rem 1rem;
  text-align: center;
}

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

#disclosures .s1 {
  padding: 10rem 0 7.5rem 0;
}

#disclosures .s1 h1 {
  font-family: kaisei-decol, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 1.29em;
  color: #224F73;
  margin-bottom: 2rem;
}

#disclosures .s1 p {
  margin-bottom: 1rem;
}

#disclosures .s1 a {
  color: #224F73;
  transition: color .3s ease;
}

#disclosures .s1 a:hover {
  color: #1A9FE3;
}

#disclosures .s1 .sm {
  font-size: 13px;
  margin-top: 2rem;
}

#disclosures .s1 span {
  font-weight: 600;
}

#disclosures .s1 ul {
  list-style: none;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

#disclosures .s1 ul li {
  font-size: 0.9rem;
  line-height: 1.5em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 13px;
}

#disclosures .s1 ul li::before {
  content: '';
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #404E65;
  position: absolute;
  top: 0.6em;
  left: 0;
}

#disclosures .s1 ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

#disclosures .s1 ol li {
  font-size: 0.9rem;
  line-height: 1.5em;
  margin-bottom: 10px;
  position: relative;
}

#disclosures .s1 .ppmc-flex-table {
  width: 100%;
  font-size: 0.9rem;
  line-height: 1.5em;
  box-sizing: border-box;
  border: 1px solid #404E65;
  margin-bottom: 1rem;
}

#disclosures .s1 .ppmc-flex-table .ft-row {
  display: flex;
  align-items: stretch;
}

#disclosures .s1 .ppmc-flex-table .ft-row + .ft-row {
  border-top: 1px solid #404E65;
}

#disclosures .s1 .ppmc-flex-table .ft-row.ft-head .ft-cell {
  font-weight: 700;
}

#disclosures .s1 .ppmc-flex-table .ft-cell {
  padding: 16px 18px;
  box-sizing: border-box;
}

#disclosures .s1 .ppmc-flex-table .ft-cell + .ft-cell {
  border-left: 1px solid #404E65;
}

#disclosures .s1 .ppmc-flex-table .ft-col-1 {
  flex: 0 0 24%;
}

#disclosures .s1 .ppmc-flex-table .ft-col-2 {
  flex: 0 0 44%;
}

#disclosures .s1 .ppmc-flex-table .ft-col-3 {
  flex: 1 1 32%;
}

@media (max-width: 900px) {
  #disclosures .s1 .ppmc-flex-table {
    border: 0;
  }
  #disclosures .s1 .ppmc-flex-table .ft-head {
    display: none;
  }
  #disclosures .s1 .ppmc-flex-table .ft-row {
    flex-direction: column;
    border: 1px solid #404E65;
    margin-bottom: 18px;
  }
  #disclosures .s1 .ppmc-flex-table .ft-row + .ft-row {
    border-top: 1px solid #404E65;
  }
  #disclosures .s1 .ppmc-flex-table .ft-cell {
    width: 100%;
    padding: 14px 16px;
    border-left: 0 !important;
    border-top: 1px solid #404E65;
  }
  #disclosures .s1 .ppmc-flex-table .ft-cell:first-child {
    border-top: 0;
  }
  #disclosures .s1 .ppmc-flex-table .ft-cell::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
  }
  #disclosures .s1 .ppmc-flex-table .ft-col-1,
  #disclosures .s1 .ppmc-flex-table .ft-col-2,
  #disclosures .s1 .ppmc-flex-table .ft-col-3 {
    flex: 1 1 auto;
    width: 100%;
  }
}

@media screen and (max-width: 1357px) {
  header nav ul li {
    margin-left: 1rem;
  }
  header nav ul .contact {
    padding-left: 1rem;
  }
  footer .top .right {
    gap: 2.5rem;
  }
}

@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;
  }
}

@media screen and (max-width: 1250px) {
  h2 {
    font-size: 2.6rem;
  }
  header {
    padding: 1.5rem 0;
  }
  header .menu_container {
    display: block;
  }
  header .contact {
    align-items: center;
  }
  header nav {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
  }
  footer .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5rem;
    padding: 5rem 0;
  }
  footer .bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }
}

@media screen and (max-width: 1100px) {
  * {
    background-attachment: scroll !important;
  }
  .inner .s1 h1 {
    font-size: 4.5rem;
  }
  footer .top {
    padding: 4rem 0;
  }
  footer .top .right {
    display: none;
  }
  #disclosures .s1 h1 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  body, html {
    -webkit-text-size-adjust: 100%;
  }
  .secPadding {
    padding: 5rem 0;
  }
  h2 {
    font-size: 1.8rem;
  }
  p.lg {
    font-size: 1.4rem;
  }
  h2.sm {
    font-size: 1.4rem;
  }
  .global-btn .arrow {
    width: 60px;
    height: 60px;
  }
  .global-btn .txt {
    padding: 0 1.5rem;
  }
  .inner .s1 {
    min-height: 500px;
    max-height: 500px;
  }
  .inner .s1 h1 {
    font-size: 3rem;
  }
  header .logo {
    width: 190px;
  }
  header.active nav ul li a {
    font-size: 0.9rem;
  }
  header.active nav ul li a::before {
    top: 0.7em;
  }
  header.active nav .bottom-nav > div a {
    font-size: 12px;
  }
  footer .top {
    padding: 3rem 0;
  }
  footer .top .logo {
    width: 190px;
  }
  footer .bottom {
    padding: 2rem 0;
  }
  footer .bottom p, footer .bottom a {
    font-size: 13px;
    display: block;
  }
  footer .bottom a {
    margin-left: 0;
    margin-bottom: 10px;
  }
  footer .bottom p {
    max-width: 320px;
    margin: 0 auto;
  }
  .btn-cookie-preferences {
    font-size: 13px !important;
    margin-left: 0;
  }
  #disclosures .s1 {
    padding: 9rem 0 5rem 0;
  }
  #disclosures .s1 h1 {
    font-size: 2.5rem;
  }
}
