@font-face {
  font-family: 'Nyght Serif';
  src: url("../fonts/NyghtSerif-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Nyght Serif';
  src: url("../fonts/NyghtSerif-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Nyght Serif';
  src: url("../fonts/NyghtSerif-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Nyght Serif';
  src: url("../fonts/NyghtSerif-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Nyght Serif';
  src: url("../fonts/NyghtSerif-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Nyght Serif';
  src: url("../fonts/NyghtSerif-Dark.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url("../fonts/NHaasGroteskDSPro-15UltTh.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url("../fonts/NHaasGroteskDSPro-25Th.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url("../fonts/NHaasGroteskDSPro-45Lt.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url("../fonts/NHaasGroteskDSPro-55Rg.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url("../fonts/NHaasGroteskDSPro-75Bd.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

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

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

body, html {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  overscroll-behavior: none;
  color: #2E3E49;
}

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

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

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

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

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

a {
  text-decoration: none;
}

p {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #2E3E49;
  letter-spacing: 0.6px;
}

h1 {
  font-family: "Nyght Serif", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 6.25rem;
  line-height: 6.5rem;
  color: #fff;
}

h2 {
  font-family: "Nyght Serif", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 4.75rem;
  line-height: 5.25rem;
  color: #2E3F57;
}

h3 {
  font-family: "Nyght Serif", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 2.5rem;
  line-height: 3rem;
  color: #2E3E49;
}

h3 span {
  color: #B27328;
}

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

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

.secPadding {
  padding: 7.5rem 0;
}

/****** GLOBAL *****/
.intro {
  background: #fff;
}

.intro .container {
  max-width: 1020px;
}

.intro h3 {
  margin-bottom: 2rem;
  text-indent: 150px;
}

.intro p {
  max-width: 600px;
  margin-left: auto;
}

#about .intro p, #risk .intro p {
  max-width: 620px;
}

#approach .intro p {
  max-width: 625px;
}

.global-btn {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  width: max-content;
  align-items: center;
  border: solid 1px #DB9900;
  border-radius: 12px;
  padding: 19px 20px;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.6px;
  color: #fff;
  position: relative;
}

.global-btn .text {
  position: relative;
  padding-right: 80px;
  background-image: url(/i/svg/arrow-btn.svg);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: 100%;
  transition: all .5s ease;
}

.global-btn.cl {
  color: #2E3E49;
}

.global-btn.cl .text {
  background-image: url(/i/svg/arrow-right-full-color.svg);
}

.global-btn:hover .text {
  padding-right: 0;
  padding-left: 80px;
  background-position: 0;
}

/****** Hero ******/
.inner .s1 {
  height: 100vh;
  max-height: 700px;
  background: url(/i/hero1.png) no-repeat center/cover;
  position: relative;
  overflow: hidden;
}

.inner .s1 .container {
  position: relative;
  top: 60%;
  transform: translateY(-50%);
  max-width: 1020px;
}

.inner .s1 h1, .inner .s1 p {
  color: #fff;
}

.inner .s1 h1 {
  font-family: "Nyght Serif", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 6.25rem;
  line-height: 7rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.inner .s1 p {
  font-size: 2rem;
  line-height: 2.5rem;
}

#about .s1 {
  background-image: url(/i/About_Hero.jpg);
}

#team .s1 {
  background-image: url(/i/Team_Hero_New2.jpg);
}

#strategies .s1 {
  background-image: url(/i/Process_Hero_New.jpg);
  background-position: 70%;
}

#approach .s1 {
  background-image: url(/i/Managing_Hero.jpg);
}

#contact .s1 {
  background-image: url(/i/Contact_Hero.jpg);
  background-position: 81%;
}

.white-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
  height: 200px;
  z-index: 1;
  transform-box: fill-box;
  transform-origin: 50% 100%;
}

.img-overlay {
  overflow: hidden;
  position: relative;
}

.img-overlay .container, .img-overlay .container-inner {
  position: relative;
  z-index: 1;
}

.img-overlay::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #9BA0A5;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}

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

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 .logo {
  display: block;
  width: 358px;
  height: 80px;
  background: url(/i/svg/logo-wh.svg) no-repeat center/contain;
  position: relative;
  z-index: 10;
  transition: width .3s ease, height .3s ease;
}

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;
  gap: 2rem;
}

header nav ul li a {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 1.2px;
  color: #fff;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.6px;
  transition: background .3s ease;
}

header nav ul li a::before {
  content: '';
  position: absolute;
  display: block;
  display: block;
  width: 40px;
  height: 40px;
  background: url(/i/svg/circle-navlink.svg) no-repeat center/contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s ease;
}

header nav ul li a:hover::before {
  opacity: 1;
}

header nav ul .selNav > a {
  color: #DB9900;
}

header .menu-open {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

header .menu-open p {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  transition: color .3s ease;
}

header .menu-open:hover p {
  color: #B27328;
}

header .menu-close {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

header .menu-close p {
  color: #2E3E49;
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-right: 20px;
  transition: color .3s ease;
}

header .menu-close p::after {
  content: '';
  position: absolute;
  display: block;
  width: 10px;
  height: 13px;
  background: url(/i/svg/arrow-right-yellow.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

header .menu-close:hover p {
  color: #B27328;
}

header.scroll:not(.active) {
  background: #fff;
}

header.scroll:not(.active) .logo {
  background-image: url(/i/svg/logo-color.svg);
  width: 300px;
  height: 65px;
}

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

header.scroll:not(.active) nav ul .selNav > a {
  color: #DB9900;
}

header.scroll:not(.active) .menu-open p {
  color: #2E3E49;
}

header.scroll:not(.active) .menu-open rect {
  fill: #2E3E49;
}

/****** HEADER ACTIVE ******/
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: left;
}

header.active nav ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0 3rem;
}

header.active nav ul li a {
  font-family: "Nyght Serif", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 2rem;
  line-height: 2.4rem;
  padding: 0;
  margin-bottom: 1.2rem;
  color: #2E3E49;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transform: translate(0%, 100%);
  transition: all .3s ease;
}

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

header.active nav ul li a:hover {
  color: #DB9900;
}

header.active nav ul .selNav a {
  color: #DB9900;
}

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

header.active .logo {
  opacity: 0;
  visibility: hidden;
}

header.active .menu-close {
  display: block;
}

footer {
  background: #CCCCCC;
  position: relative;
}

footer img {
  width: 100%;
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  pointer-events: none;
}

footer .top {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
  padding: 8rem 0 0;
  position: relative;
  z-index: 1;
}

footer .top .contact-info p {
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #0F1B47;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

footer .top .contact-info a {
  display: block;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.6px;
  color: #0F1B47;
  margin-bottom: 1rem;
  transition: color .3s ease;
}

footer .top .contact-info a:hover {
  color: #B27328;
}

footer .top .contact-info a:last-of-type {
  margin-bottom: 0;
}

footer .top ul {
  list-style: none;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 556px;
  column-gap: 1rem;
  row-gap: 10px;
}

footer .top ul li {
  width: 48%;
}

footer .top ul li:nth-child(1), footer .top ul li:nth-child(3), footer .top ul li:nth-child(5) {
  width: 40%;
}

footer .top ul li a {
  display: block;
  font-family: "Nyght Serif", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: 1.2px;
  padding: 0;
  color: #0F1B47;
  text-align: left;
  transition: color .3s ease;
}

footer .top ul li a:hover {
  color: #B27328;
}

footer .bottom {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin-top: 11rem;
  padding-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

footer .bottom p, footer .bottom a {
  font-size: 15px;
  line-height: 22px;
  letter-spacing: .45px;
  color: #0F1B47;
  transition: color .3s ease;
}

footer .bottom a {
  text-decoration: underline;
}

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

.btn-cookie-preferences {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif !important;
  font-size: 15px !important;
  text-decoration: underline;
  color: #0F1B47 !important;
  transition: color 0.3s ease;
}

.btn-cookie-preferences:hover {
  color: #B27328;
}

.cookie-disclaimer {
  color: #0f1b47;
}

.cookie-disclaimer p {
  color: #0f1b47;
}

body .cookie-disclaimer {
  background-color: #ffff;
  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: #0F1B47;
}

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

body .cookie-disclaimer .c-disclaimer.c-on {
  display: flex;
  justify-content: space-between;
  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: #DB9900;
  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: #DB9900;
  color: #fff;
}

body .cookie-disclaimer .c-content a:nth-child(6), body .cookie-disclaimer .c-content button:nth-child(6) {
  color: #fff;
  background-color: #2E3F57 !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: 12px;
  padding: .5rem 1rem;
  text-align: center;
}

@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: 1100px) {
  header .menu-open {
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: flex;
  }
  header nav {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
  }
  .white-shape {
    height: 110px;
  }
}

@media screen and (max-width: 980px) {
  h2 {
    font-size: 3.5rem;
    line-height: 4.5rem;
  }
  h3 {
    font-size: 2rem;
    line-height: 2.6rem;
  }
  .inner .s1 h1 {
    font-size: 5rem;
    line-height: 5.5rem;
    margin-bottom: 1rem;
  }
  .inner .s1 p {
    font-size: 1.7rem;
    line-height: 2.3rem;
  }
  .intro h3 {
    text-indent: 100px;
  }
  footer .top {
    padding: 5rem 0 0;
  }
  footer .top .nav-links {
    display: none;
  }
  footer .bottom {
    margin-top: 8rem;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 2.2rem;
    line-height: 3.2rem;
  }
  h3 {
    font-size: 1.7rem;
    line-height: 2.3rem;
  }
  .inner .s1 h1 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
  .inner .s1 p {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }
  .white-shape {
    height: 60px;
  }
  .global-btn {
    padding: 15px 16px;
  }
  .global-btn .text {
    background-size: 20px;
    padding-right: 60px;
  }
  .secPadding {
    padding: 5rem 0;
  }
  .intro h3 {
    text-indent: 0px;
  }
  header .menu-close p {
    font-size: 13px;
    line-height: 16px;
  }
  header .menu-close p::after {
    top: 44%;
  }
  header .menu-open p {
    font-size: 16px;
    line-height: 20px;
  }
  header.active nav ul li a {
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin-bottom: 1rem;
  }
  header .logo, header.scroll:not(.active) .logo {
    width: 300px;
    height: 50px;
  }
  footer img {
    bottom: 2rem;
  }
  footer .top {
    text-align: center;
    width: 100%;
  }
  footer .top .contact-info {
    width: 100%;
  }
  footer .top .contact-info p {
    font-size: 13px;
    margin-bottom: 1rem;
  }
  footer .top .contact-info a {
    margin-bottom: 10px;
  }
  footer .bottom {
    margin-top: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    text-align: center;
    gap: 10px;
    padding-bottom: 6rem;
  }
}
