* {
  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: #595959;
}

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

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

p {
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #595959;
  font-size: .9rem;
  line-height: normal;
}

a {
  text-decoration: none;
  cursor: pointer;
}

/***SECTION + CONTAINS***/
section.padSml {
  padding: 7.5rem 0;
}

section.padMed {
  padding: 8.5rem 0;
}

section.padLrg {
  padding: 10rem 0;
}

@media all and (max-width: 1024px) {
  section.padSml {
    padding: 6.5rem 0;
  }
  section.padMed {
    padding: 7.5rem 0;
  }
  section.padLrg {
    padding: 9rem 0;
  }
}

@media all and (max-width: 767px) {
  section.padSml {
    padding: 5rem 0;
  }
  section.padMed {
    padding: 6rem 0;
  }
  section.padLrg {
    padding: 7.5rem 0;
  }
}

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

.contain.--med, .--med.container {
  max-width: 1120px;
}

.contain.--sml, .--sml.container {
  max-width: 715px;
}

.white-bg {
  background-color: #F3F3F3;
}

.flex_wrapper {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
}

.flex_wrapper.--space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex_wrapper.--item-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.plx-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0% 100%);
  top: 0px;
  left: 0px;
}

.plx-wrap .plx-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  left: 0px;
  top: 0px;
  height: 100vh;
  width: 100%;
}

/***** 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;
}

@media screen and (max-width: 767px) {
  body, html {
    -webkit-text-size-adjust: 100%;
  }
}

header {
  position: fixed;
  width: 100%;
  z-index: 101;
  background-color: rgba(255, 255, 255, 0);
  top: 0;
  padding: 1.5rem 0;
  will-change: padding, background-color;
  transition: all .4s ease;
}

header .logo {
  position: relative;
  z-index: 101;
  width: 167px;
  height: auto;
  aspect-ratio: 166/45;
  background: url(/i/logo-wt.svg) center/cover no-repeat;
  will-change: background-image;
  transition: background-image .15s ease;
}

header .wrapper {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.5rem;
}

header .wrapper .nav-links {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 5px;
  max-width: 700px;
}

header .wrapper .nav-links li, header .wrapper .nav-links li > a {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: .6rem;
  color: #fff;
  line-height: 1em;
  white-space: nowrap;
  transition: color .3s ease;
  position: relative;
}

header .wrapper .nav-links li > a:hover::after {
  transform: scaleX(1);
}

header .wrapper .nav-links li > a::after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  bottom: -.2rem;
  width: 100%;
  height: 0;
  border-bottom: 1px solid #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

header .wrapper .nav-links li.selNav > a::after {
  transform: scaleX(1);
}

header .wrapper .nav-links .client-login {
  display: none;
}

header .wrapper .nav-links li.client-login > a {
  padding: .6rem .8rem;
  border: 1px solid;
}

header ul {
  list-style: none;
}

header.scroll {
  padding: 1rem 0;
  background-color: #fff;
}

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

header.scroll .wrapper .nav-links li, header.scroll .wrapper .nav-links li > a {
  color: #293F80;
}

header.scroll .wrapper .nav-links li:hover, header.scroll .wrapper .nav-links li > a:hover {
  color: #4292E8;
}

header.scroll .wrapper .nav-links li > a::after {
  border-bottom-color: #4292E8;
}

header.scroll .wrapper .nav-links li.selNav > a {
  color: #4292E8;
}

header.scroll .menu_container #menu_btn i {
  background-color: #293F80;
}

header .menu_container {
  display: none;
  position: relative;
  width: 32px;
  height: 13px;
  z-index: 1000;
  cursor: pointer;
}

header .menu_container #menu_btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

header .menu_container #menu_btn i {
  transition: all 0.2s ease-out;
  height: 1px;
  width: 32px;
  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: 6px;
}

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

header .mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 0;
  overflow: hidden;
  background-color: #293F80;
  transition: height .5s ease-in-out;
}

header .mobile-nav .client-login {
  display: none;
}

header .mobile-nav .mobile-wrapper {
  height: 100vh;
  width: 100%;
  padding: 140px 1rem;
}

header .mobile-nav li::before, header .mobile-nav .nav-links > li:last-child::after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  height: 0;
  width: 100%;
  border-top: 1px solid #fff;
  transform: scaleX(0);
  will-change: transform;
  transform-origin: left center;
  transition: transform .25s ease;
}

header .mobile-nav .nav-links > li:last-child::after {
  top: auto;
  bottom: 0;
}

header .mobile-nav li.fade::before, header .mobile-nav .nav-links > li.fade:last-child::after {
  transform: scaleX(1);
}

header .mobile-nav .nav-links > li.fade:last-child::after {
  transition-delay: .1s;
}

header .mobile-nav li, header .mobile-nav li > a {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  line-height: 1em;
  position: relative;
  transition: color .3s ease;
  white-space: nowrap;
}

header .mobile-nav li:hover, header .mobile-nav li.selNav > a, header .mobile-nav li > a:hover, header .mobile-nav li > a.selNav > a {
  color: #4292E8;
}

header .mobile-nav li > a {
  display: inline-block;
  padding: calc(10px + 1vh) 0;
  opacity: 0;
}

header .mobile-nav li.fade > a {
  opacity: 1;
  transition: opacity 1s ease .35s;
}

@media all and (max-width: 980px) {
  header .wrapper .nav-links {
    display: none;
  }
  header .menu_container {
    display: block;
  }
}

@media all and (max-width: 767px) {
  header .logo {
    width: 50%;
    max-width: 150px;
  }
}

#bio header {
  padding: 1rem 0;
  background-color: #fff;
}

#bio header .logo {
  background-image: url(/i/logo-clr.svg);
}

#bio header .wrapper .nav-links li, #bio header .wrapper .nav-links li > a {
  color: #293F80;
}

#bio header .wrapper .nav-links li:hover, #bio header .wrapper .nav-links li > a:hover {
  color: #4292E8;
}

#bio header .menu_container #menu_btn i {
  background-color: #293F80;
}

.--menu-open {
  overflow: hidden;
}

.--menu-open header .mobile-nav {
  height: 100vh;
  transition: height .75s ease-in-out;
}

.--menu-open header .logo {
  background-image: url(/i/logo-wt.svg) !important;
}

.--menu-open header .menu_container #menu_btn i {
  width: 90%;
  top: 50%;
  left: 50%;
  background-color: #fff;
}

.--menu-open header .menu_container #menu_btn i:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.--menu-open header .menu_container #menu_btn i:nth-child(2) {
  opacity: 0;
}

.--menu-open header .menu_container #menu_btn i:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

footer {
  background-color: #041029;
  padding: 4.8rem 0;
}

footer .contain, footer .container {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
}

footer .logo {
  position: relative;
  width: 55%;
  max-width: 232px;
  height: 100%;
  aspect-ratio: 166/45;
  background: url(/i/logo-wt.svg) center/cover no-repeat;
}

footer .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 620px;
  padding-left: 3.5%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

footer .nav-links {
  list-style-type: none;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem 10%;
}

footer .nav-links > li {
  width: 45%;
}

footer .nav-links li, footer .nav-links li > a {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: #fff;
  transition: color .3s ease;
  text-transform: uppercase;
}

footer .nav-links li:hover, footer .nav-links li > a:hover {
  color: #4292E8;
}

footer .nav-links .client-login {
  display: none;
}

footer .legal {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4rem;
  flex-wrap: wrap;
  gap: .5rem;
}

footer .legal p, footer .legal a {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: .6rem;
  line-height: normal;
  color: #fff;
}

footer .legal p.copyright {
  width: 100%;
}

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

footer .legal a:hover {
  color: #4292E8;
}

@media all and (max-width: 1024px) {
  footer .legal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .legal .copyright {
    width: 100%;
  }
}

@media all and (max-width: 767px) {
  footer .contain, footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
  }
  footer .logo {
    width: 95%;
    max-width: 240px;
  }
  footer .right {
    padding-left: 0;
    border-left: 0;
  }
}

#disclaimer .s2 {
  padding: 9rem 0 7.5rem 0;
}

#disclaimer .s2 h1 {
  font-size: 2rem;
  line-height: 1.3em;
  font-weight: 400;
  color: #293F80;
  margin-bottom: 2rem;
}

#disclaimer .s2 h3 {
  font-weight: 400;
  margin-bottom: 1rem;
}

#disclaimer .s2 p {
  margin-bottom: 1rem;
}

#disclaimer .s2 p:last-of-type {
  margin-bottom: 0;
}

#disclaimer .s2 p.md {
  font-size: 1.1rem;
  font-weight: 500;
}

#disclaimer .s2 a {
  color: #595959;
  transition: color .3s ease;
  text-decoration: underline;
}

#disclaimer .s2 a:hover {
  color: #4292E8;
}

#disclaimer .s2 ul {
  list-style: none;
  padding-left: 1rem;
}

#disclaimer .s2 ul li {
  position: relative;
  padding-left: 15px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

#disclaimer .s2 ul li::before {
  content: '';
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #595959;
  top: 9px;
  left: 0;
}

#disclaimer .s2 ol {
  padding-left: 1rem;
}

#disclaimer .s2 ol li {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

@media all and (max-width: 767px) {
  #disclaimer .s2 {
    padding: 9rem 0 5rem;
  }
  #disclaimer .s2 h1 {
    font-size: 1.7rem;
  }
}

.btn-cookie-preferences {
  color: #fff !important;
  font-size: 0.6rem !important;
  transition: color .3s ease;
}

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

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

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

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

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-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-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  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-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-weight: 200;
  font-size: 1.5rem;
  line-height: 1.2em;
  letter-spacing: normal;
}

body .cookie-disclaimer h2 {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
}

body .cookie-disclaimer h3 {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.2em;
}

body .cookie-disclaimer h3.c-on {
  color: #4292E8 !important;
}

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

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

body .cookie-disclaimer .btn-preferences, body .cookie-disclaimer .c-nav .btn-close-pref a, body .cookie-disclaimer .c-nav .btn-close-pref button {
  background-color: #293F80;
  color: #fff;
}

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

body .cookie-disclaimer .btn-close {
  background-image: url(/i/close.svg);
  width: 50px;
  height: 50px;
  top: 0;
  right: 0;
}

@media screen and (max-width: 1300px) {
  body .cookie-disclaimer {
    left: 0 !important;
    width: 100% !important;
    transform: none !important;
    bottom: 0 !important;
  }
  body .cookie-disclaimer .btn-close {
    width: 40px;
    height: 40px;
  }
  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;
  }
}

.inner .hero {
  position: relative;
  height: 828px;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.inner .hero h1 {
  color: #FFF;
  font-size: 0.9em;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 1em;
}

.inner .hero h2 {
  font-size: 4.6em;
  font-weight: 200;
  line-height: 1.1em;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.inner .hero p {
  color: #fff;
  max-width: 525px;
  font-size: 0.9em;
  font-weight: 400;
  margin-top: 1.5em;
  opacity: 0;
}

.inner .hero .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.inner .hero .cover > div {
  box-sizing: border-box;
  background: linear-gradient(302deg, #11213F 5.23%, #295280 83.28%);
  width: 25%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 400% 100%;
  background-repeat: no-repeat;
  background-position: 0% 0%;
  height: 100%;
}

.inner .hero .cover > div:nth-child(2) {
  left: 25%;
  background-position: 33.33% 0%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.inner .hero .cover > div:nth-child(3) {
  left: 50%;
  background-position: 66.66% 0%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.inner .hero .cover > div:nth-child(4) {
  left: 75%;
  background-position: 100% 0%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.inner .hero.on .cover > div {
  width: 0;
  transition: width 1s ease-out 0.2s;
}

.inner .hero.on h2 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 0.5s ease 1s;
}

.inner .hero.on p {
  opacity: 1;
  transition: opacity 0.5s ease 1.5s;
}

#team .hero {
  background: url(/i/team-hero.jpg) no-repeat center/cover;
}

#about-pillar .hero {
  background: url(/i/about-hero.jpg) no-repeat center/cover;
}

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

#our-strategy .hero {
  background: url(/i/strategy-hero.jpg) no-repeat center/cover;
}

#deal-flow .hero {
  background: url(/i/deal-flow-hero.jpg) no-repeat center/cover;
}

#about-ils .hero {
  background: url(/i/about-ils-hero.jpg) no-repeat center/cover;
}

@media all and (max-width: 600px) {
  .inner .hero {
    max-height: 600px;
  }
  .inner .hero h2 {
    font-size: 2.5em;
  }
}
