@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";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: #375060;
}

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

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

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

html {
  scrollbar-gutter: stable;
}

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

nav a {
  cursor: pointer;
}

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

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

h2 {
  font-family: "literata-variable";
  font-style: normal;
  font-weight: 300;
  font-size: 3rem;
  line-height: 1.2em;
  color: #375060;
}

h3 {
  font-family: "literata-variable";
  font-style: normal;
  font-weight: 300;
  font-size: 1.7rem;
  line-height: 1.2em;
  color: #375060;
}

p {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.45em;
  color: rgba(55, 80, 96, 0.7);
}

p.lg {
  font-family: "literata-variable";
  font-style: normal;
  font-weight: 300;
  font-size: 1.7rem;
  line-height: 1.3em;
  color: #4D748B;
  opacity: 1;
}

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

.secPadding {
  padding: 7.5rem 0;
}

.fadeup {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

.fadeup.in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .8s ease, transform .8s ease;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.btn {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  height: 69px;
  border: 1px solid #fff;
  border-radius: 35px;
  overflow: hidden;
  width: 90px;
  padding: 0 39px 0 35px;
  transition: width .4s ease, background .3s ease, border-color .3s ease;
}

.btn .txt {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  color: #375060;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity .3s ease, max-width .4s ease, margin .4s ease;
}

.btn .ar {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: border-color .3s ease;
}

.btn:hover {
  background-color: #fff;
  width: var(--btn-w, 250px);
}

.btn:hover .txt {
  opacity: 1;
  max-width: 300px;
  margin-right: 1rem;
  color: #65B9EB;
}

.btn:hover .ar {
  border-color: #65B9EB;
}

.btn.cl {
  border-color: #375060;
}

.btn.cl .txt {
  color: #fff;
}

.btn.cl .ar {
  border-color: #65B9EB;
}

.btn.cl:hover {
  background-color: #375060;
}

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

.two-col .left {
  width: 50%;
}

.two-col .left h2 {
  max-width: 570px;
}

.two-col .right {
  width: 50%;
}

.two-col .right p {
  max-width: 690px;
}

.two-col .right .btn {
  margin-top: 2rem;
}

.sub-strategies .wrap {
  border-top: solid 3px #84A9BE;
  margin-top: 2rem;
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.sub-strategies .wrap ul {
  border-bottom: solid 1px rgba(134, 138, 141, 0.3);
  list-style: none;
}

.sub-strategies .wrap ul li {
  font-size: 0.9rem;
  padding: 10px 0;
  border-top: solid 1px rgba(134, 138, 141, 0.3);
}

.sub-strategies .wrap.four {
  grid-template-columns: repeat(4, 1fr);
}

.sub-strategies.different .container {
  display: flex;
  gap: 2rem;
}

.sub-strategies.different h2 {
  min-width: 440px;
}

.sub-strategies.different .wrap {
  width: 100%;
  border: none;
  padding-top: 0;
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
}

.sub-strategies.different .wrap > div {
  border-top: solid 3px #84A9BE;
  padding-top: 2rem;
}

.sub-strategies.different .wrap > div h3 {
  margin-bottom: 1.5rem;
}

.build-career {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.build-career .parallax-bg {
  background: url(/i/build-your-career-parallax-bg.jpg) no-repeat center/cover;
}

.build-career .container {
  position: relative;
  z-index: 1;
}

.build-career h2 {
  margin-bottom: 4rem;
  color: #fff;
}

.build-career .wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.build-career .wrapper .card {
  height: 475px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6.85px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.build-career .wrapper .card h3 {
  position: relative;
  padding-top: 70px;
  color: #fff;
  transition: all .3s ease;
}

.build-career .wrapper .card h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 54px;
  height: 54px;
  background: url(/i/svg/plus-wh.svg) no-repeat center/contain;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.build-career .wrapper .card p {
  opacity: 0;
  visibility: hidden;
  height: 0;
  z-index: 1;
  position: relative;
  font-size: 1rem;
  max-width: 380px;
  color: #fff;
  transform: translateY(20px);
}

.build-career .wrapper .card:last-of-type {
  border-right: none;
}

.build-career .wrapper .card::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 0;
  background: #375060;
  bottom: 0;
  left: 0;
  position: absolute;
  transition: height .5s ease;
}

.build-career .wrapper .card:hover::before {
  height: 100%;
}

.build-career .wrapper .card:hover h3 {
  opacity: 0;
  visibility: hidden;
  height: 0;
  padding: 0;
}

.build-career .wrapper .card:hover p {
  opacity: 1;
  visibility: visible;
  height: auto;
  transform: translateY(0px);
  transition: all .5s ease .2s;
}

.build-career.four h2 {
  margin-bottom: 2rem;
}

.build-career.four .tl {
  color: #fff;
  max-width: 767px;
  margin: 0 auto 4rem auto;
}

.build-career.four .wrapper {
  grid-template-columns: repeat(2, 1fr);
}

.build-career.four .wrapper .card {
  height: 360px;
}

.build-career.four .wrapper .card p {
  max-width: 500px;
}

.leadership {
  background: #375060;
  padding: 6.25rem 0;
}

.leadership h2 {
  display: none;
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.leadership .wrap {
  position: relative;
  display: flex;
  gap: 3rem;
}

.leadership .wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}

.leadership .left,
.leadership .right {
  width: 50%;
}

.leadership .left {
  padding-right: 2rem;
}

.leadership .left h2 {
  display: block;
  color: #fff;
  border: none;
  padding: 0;
  margin: 0;
}

.leadership .left h3 {
  font-size: 1.5rem;
}

.leadership .left .line {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 2rem 0;
}

.leadership .person {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.leadership .pic {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-image: url(/i/bobby.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.leadership .info h3 {
  color: #fff;
}

.leadership .right {
  padding-left: 2rem;
}

.leadership .right p {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.7);
}

.leadership.wh {
  background: #fff;
}

.leadership.wh h2, .leadership.wh h3 {
  color: #375060;
}

.leadership.wh h2 {
  border-color: rgba(55, 80, 96, 0.3);
}

.leadership.wh p {
  color: rgba(55, 80, 96, 0.7);
}

.leadership.wh .left .line {
  background-color: rgba(55, 80, 96, 0.3);
}

.leadership.wh .wrap::before {
  background-color: rgba(55, 80, 96, 0.3);
}

.strategy {
  position: relative;
  overflow: hidden;
  height: 680px;
}

.strategy .parallax-bg {
  background: url(/i/2-col-bg.jpg) no-repeat center/cover;
}

.strategy .container {
  display: flex;
  gap: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.strategy .container > div {
  width: 50%;
  position: relative;
  border-left: 3px solid #FFF;
  background: linear-gradient(0deg, rgba(55, 80, 96, 0.7) 0%, rgba(55, 80, 96, 0.7) 100%), rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6.85px);
  border-left: solid 3px #fff;
  padding: 2rem;
}

.strategy .container > div p {
  color: #fff;
}

.strategy .container > div p + p {
  margin-top: 1rem;
}

.strategy.one .container > div {
  width: auto;
  padding: 2.5rem;
  max-width: 990px;
  margin: 0 auto;
}

.strategy.one .container > div p {
  font-family: "literata-variable";
  font-style: normal;
  font-weight: 300;
  font-size: 1.4rem;
}

.links {
  padding: 6.25rem 0;
}

.links .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  border-top: 1px solid rgba(55, 80, 96, 0.3);
  border-bottom: 1px solid rgba(55, 80, 96, 0.3);
  padding: 1rem 0;
}

.links .card {
  position: relative;
  min-height: 364px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  background: #F4F4F4;
}

.links .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #375060;
  transition: width .5s ease;
  z-index: 0;
}

.links .card > * {
  position: relative;
  z-index: 1;
}

.links .card h3 {
  transition: color .3s ease;
}

.links .card p {
  margin-top: 1.2rem;
  transition: color .3s ease;
}

.links .card p p {
  color: rgba(55, 80, 96, 0.7);
}

.links .card .btn {
  margin-top: auto;
}

.links .card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1rem;
  width: 1px;
  height: 100%;
  background: rgba(55, 80, 96, 0.3);
  z-index: 1;
}

.links .card:hover::before {
  width: 100%;
}

.links .card:hover h3 {
  color: #fff;
}

.links .card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.links .card:hover .btn {
  background-color: #fff;
  border-color: #fff;
  width: var(--btn-w, 250px);
}

.links .card:hover .btn .txt {
  opacity: 1;
  max-width: 300px;
  margin-right: 1rem;
  color: #65B9EB;
}

.links .card:hover .btn .ar {
  border-color: #65B9EB;
}

.quote .wrap {
  max-width: 1164px;
  margin: 0 auto;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(55, 80, 96, 0.3);
  border-bottom: 1px solid rgba(55, 80, 96, 0.3);
}

.quote .mark {
  display: block;
  position: relative;
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: url(/i/svg/quote-mark.svg) no-repeat center/cover;
  margin-top: .5rem;
}

.quote .body {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
}

.quote .q {
  font-family: "literata-variable";
  font-style: normal;
  font-weight: 300;
  font-size: 1.7rem;
  line-height: 1.3em;
  color: #4D748B;
}

.quote .cite {
  font-size: 0.9rem;
  color: #4d748b;
  margin-top: 1.5rem;
}

.inner .s1 {
  position: relative;
  height: 100vh;
  max-height: 525px;
  background: url(/i/leadership-hero.jpg) no-repeat center/cover;
}

.inner .s1 .container {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.inner .s1 .container .heading {
  overflow: hidden;
}

.inner .s1 .container .heading .line {
  overflow: hidden;
}

.inner .s1 .container .heading p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.inner .s1 .container .heading h1 {
  font-family: "literata-variable";
  font-style: normal;
  font-weight: 300;
  transform: translateY(110%);
  font-size: 4rem;
  line-height: 1.35em;
  color: #fff;
}

.inner .s1 .container h2 {
  font-family: "literata-variable";
  font-style: normal;
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
  color: #fff;
  font-size: 1.7rem;
  max-width: 510px;
  padding-bottom: 1rem;
}

#our-businesses .s1 {
  background: url(/i/our-business-hero.jpg) no-repeat left/cover;
}

#fundamental-equities .s1 {
  background: url(/i/fe-hero.jpg) no-repeat left/cover;
}

#equity-arbitrage .s1 {
  background: url(/i/Equity-arb-hero.jpg) no-repeat left/cover;
}

#asia-pacific .s1 {
  background: url(/i/asia-pcific-hero.jpg) no-repeat left/cover;
}

#rates-macro .s1 {
  background: url(/i/rates-macro-hero.jpg) no-repeat left/cover;
}

#commodities .s1 {
  background: url(/i/commodities-hero.jpg) no-repeat right/cover;
}

#systematic-trading .s1 {
  background: url(/i/systematic-hero.jpg) no-repeat left/cover;
}

#credit .s1 {
  background: url(/i/credit-hero.jpg) no-repeat left/cover;
}

#careers .s1 {
  background: url(/i/career-hero.jpg) no-repeat left/cover;
}

#global-presence .s1 {
  background: url(/i/global-pressence-hero.jpg) no-repeat left/cover;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: background-color .3s ease, border-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: center;
  -ms-flex-align: center;
  align-items: center;
}

#header .logo {
  display: block;
  width: 250px;
  height: 31px;
  background: url(/i/svg/logo-wh.svg) no-repeat center/contain;
}

#header nav {
  height: 100%;
}

#header .navList {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  list-style: none;
  gap: 2.5rem;
}

#header .navItem {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 100%;
  cursor: pointer;
}

#header .navItem:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: #65B9EB;
  transition: width .3s ease;
}

#header .navLink {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 0.9rem;
  color: #fff;
  white-space: nowrap;
  padding: 1.7rem 0;
  transition: color .3s ease;
}

#header .navLink:after {
  content: '';
  display: inline-block;
  margin-left: .6rem;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 5px solid currentColor;
  transition: transform .3s ease;
}

#header .navItem.active .navLink,
#header .navItem.current .navLink {
  color: #65B9EB;
}

#header .navItem.active .navLink:after {
  transform: rotate(180deg);
}

#header .navItem.active:after,
#header .navItem.current:after {
  width: 100%;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility 0s linear .35s;
}

.nav-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .35s ease, visibility 0s;
}

#header.scroll:not(.active), #header-mobile.scroll:not(.active) {
  background-color: #fff;
  border-bottom: solid 1px rgba(77, 116, 139, 0.3);
}

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

#header.scroll:not(.active) .navLink, #header-mobile.scroll:not(.active) .navLink {
  color: #375060;
}

#header.scroll:not(.active) .navItem.active .navLink,
#header.scroll:not(.active) .navItem.current .navLink, #header-mobile.scroll:not(.active) .navItem.active .navLink,
#header-mobile.scroll:not(.active) .navItem.current .navLink {
  color: #65B9EB;
}

#header.scroll:not(.active) .menu_container #menu_btn i, #header-mobile.scroll:not(.active) .menu_container #menu_btn i {
  background-color: #375060;
}

#header.on {
  background: #fff;
  border-bottom: solid 1px rgba(77, 116, 139, 0.3);
}

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

#header.on .navLink {
  color: #375060;
}

#header.on .navItem.active .navLink {
  color: #65B9EB;
}

.mega {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 100%;
  height: 100vh;
  max-height: 520px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility 0s linear .3s;
}

.mega .container {
  position: relative;
  top: 55px;
}

.mega .inner {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  gap: 1.5rem;
}

.mega .col {
  width: 40%;
  border-bottom: 1px solid rgba(77, 116, 139, 0.2);
}

.mega .pic {
  width: 55%;
  aspect-ratio: 771 / 400;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.mega .row {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(77, 116, 139, 0.2);
  gap: 2rem;
  position: relative;
  padding-right: 3rem;
}

.mega .row h3 {
  flex-shrink: 0;
  font-size: 1.2rem;
  min-width: 175px;
  color: #4D748B;
  transition: color .3s ease;
  transition: opacity .3s ease;
}

.mega .row .desc {
  max-width: 400px;
  padding-top: 5px;
  transition: opacity .3s ease;
}

.mega .row p {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.16px;
  font-weight: 300;
  max-width: 242px;
  color: #7F888D;
}

.mega .row::after {
  content: '';
  position: absolute;
  display: block;
  width: 35px;
  height: 35px;
  background: url(/i/svg/arrow-right.svg) no-repeat center/contain;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}

.mega .row.sel::after {
  opacity: 1;
  visibility: visible;
  transition: all .3s ease;
}

.mega .row.dim h3, .mega .row.dim .desc {
  opacity: 0.5;
}

.mega .biz {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.2rem;
  column-gap: 16px;
  max-width: 345px;
  margin-left: auto;
}

.mega .biz a {
  display: block;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.16px;
  font-weight: 400;
  color: #4D748B;
  border-top: solid 1px rgba(77, 116, 139, 0.2);
  padding: 14px 0;
}

.mega .biz a span {
  transition: opacity .3s ease;
}

.mega .biz .ap {
  border-bottom: solid 1px rgba(77, 116, 139, 0.2);
}

.mega.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .35s ease, visibility 0s;
}

.mega[data-panel="who"] .pic {
  background-image: url(/i/nav1.jpg);
}

.mega[data-panel="what"] .pic {
  background-image: url(/i/nav2.jpg);
}

.mega[data-panel="what"] .biz a.dim span {
  opacity: 0.5;
}

.mega[data-panel="work"] .pic {
  background-image: url(/i/nav3.jpg);
}

#header-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  height: 80px;
  background-color: rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: background-color .3s ease, border-color .3s ease;
  /* Mobile */
}

#header-mobile .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;
}

#header-mobile .logo {
  display: block;
  width: 250px;
  height: 31px;
  background: url(/i/svg/logo-wh.svg) no-repeat center/contain;
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
}

#header-mobile .menu_container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  height: 20px;
}

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

#header-mobile .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-mobile .menu_container #menu_btn i:nth-child(1) {
  top: 0;
}

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

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

#header-mobile .nav-mobile {
  width: 100%;
  height: 100vh;
  background: #fff;
  position: fixed;
  top: 80px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}

#header-mobile .fx-nav {
  border-bottom: solid 1px rgba(77, 116, 139, 0.3);
  padding: 1.5rem 1rem;
}

#header-mobile .fx-nav h3 {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 1.3rem;
  position: relative;
  color: #4D748B;
}

#header-mobile .fx-nav h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 13px;
  height: 13px;
  background: url(/i/svg/arrow-up.svg) no-repeat center/contain;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0);
  transition: all .3s ease;
}

#header-mobile .fx-nav.fx-on h3::after {
  transform: translateY(-50%) rotate(180deg);
}

#header-mobile .fx-nav.fx-on h3 {
  color: #65B9EB;
}

#header-mobile .fx-slide {
  background: #F4F4F4;
}

#header-mobile .fx-slide .content {
  padding: 0 1rem;
  border-bottom: solid 1px rgba(77, 116, 139, 0.3);
}

#header-mobile .fx-slide .content.what-we-do {
  padding: 1.7rem 1rem;
}

#header-mobile .fx-slide a {
  display: block;
  border-bottom: solid 1px rgba(77, 116, 139, 0.3);
  padding: 1.7rem 0;
  position: relative;
  padding-right: 2.8rem;
}

#header-mobile .fx-slide a h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #4D748B;
}

#header-mobile .fx-slide a p {
  color: #7F888D;
  font-size: 16px;
  line-height: 20px;
}

#header-mobile .fx-slide a:last-of-type {
  border: none;
}

#header-mobile .fx-slide .row::after {
  content: '';
  position: absolute;
  display: block;
  width: 35px;
  height: 35px;
  background: url(/i/svg/arrow-right.svg) no-repeat center/contain;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

#header-mobile .what-we-do h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

#header-mobile .what-we-do p {
  color: #7F888D;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 15px;
}

#header-mobile .what-we-do a {
  display: block;
  border-bottom: solid 1px rgba(77, 116, 139, 0.3);
  padding: 10px 0;
  font-size: 1rem;
  color: #4D748B;
}

#header-mobile .contact-btn {
  display: block;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  padding: 1.5rem 0;
  border-top: solid 1px rgba(77, 116, 139, 0.3);
}

#header-mobile .contact-btn span {
  font-size: 1.3rem;
  font-weight: 400;
  color: #4D748B;
}

#header-mobile .contact-btn::after {
  content: '';
  position: absolute;
  display: block;
  width: 35px;
  height: 35px;
  background: url(/i/svg/arrow-right.svg) no-repeat center/contain;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

#header-mobile.active {
  background-color: #fff;
  border-bottom: 1px solid rgba(77, 116, 139, 0.3);
}

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

#header-mobile.active .nav-mobile {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#header-mobile.active #menu_btn i {
  width: 40px;
  top: 8px;
  background-color: #375060;
}

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

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

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

.intro {
  background-color: #F4F4F4;
}

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

footer {
  background: #283943;
  padding: 5rem 0 2.5rem;
}

footer .ftop {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 4rem;
}

footer .logo {
  display: block;
  width: 250px;
  height: 31px;
  background: url(/i/svg/logo-wh.svg) no-repeat center/contain;
  flex-shrink: 0;
}

footer .cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  flex: 1;
  max-width: 1000px;
}

footer h4 {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.2rem;
}

footer .col > a {
  display: block;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: .6rem;
  transition: color .3s ease;
}

footer .col > a:hover {
  color: #fff;
}

footer .contact h4 {
  margin-bottom: 0;
  transition: color .3s ease;
}

footer .contact:hover h4 {
  color: #65B9EB;
}

footer .fbot {
  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;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  gap: 1.5rem;
}

footer .copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

footer .legal {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.6rem;
}

footer .legal a {
  position: relative;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color .3s ease;
}

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

footer .legal a:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
}

.uk_disclosures {
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

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

.modal .modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal .modal-box {
  position: relative;
  z-index: 1;
  width: calc(100% - 2rem);
  max-width: 480px;
  background: #fff;
  padding: 3rem 2.5rem 2.5rem;
  transform: translateY(20px);
  transition: transform .3s ease;
}

.modal.show .modal-box {
  transform: translateY(0);
}

.modal h3 {
  color: #375060;
  margin-bottom: 1.5rem;
}

.modal .modal-links a {
  display: block;
  font-size: 1rem;
  color: #4D748B;
  padding: 1rem 0;
  border-top: 1px solid rgba(55, 80, 96, 0.15);
  transition: color .3s ease;
}

.modal .modal-links a:last-child {
  border-bottom: 1px solid rgba(55, 80, 96, 0.15);
}

.modal .modal-links a:hover {
  color: #84A9BE;
}

.modal .modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.modal .modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 1px;
  background: #375060;
  transition: background .3s ease;
}

.modal .modal-close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal .modal-close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal .modal-close:hover span {
  background: #84A9BE;
}

.grid-4 {
  background: url(/i/the-place-to-build-bg.jpg) no-repeat center/cover;
  color: #fff;
}

.grid-4 .desktop {
  display: block;
}

.grid-4 .mobile {
  display: none;
}

.grid-4 .head {
  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;
  padding-bottom: 2.5rem;
}

.grid-4 h2 {
  color: #fff;
}

.grid-4 .arrow {
  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;
  width: 70px;
  height: 44px;
  border: 1px solid #A1A1A1;
  border-radius: 22px;
  flex-shrink: 0;
  transition: background .3s ease;
}

.grid-4 .arrow::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  margin-left: -3px;
}

.grid-4 .arrow:hover {
  background: rgba(255, 255, 255, 0.1);
}

.grid-4 .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #A1A1A1;
}

.grid-4 .card {
  position: relative;
  min-height: 380px;
  border-right: 1px solid #A1A1A1;
  border-bottom: 1px solid #A1A1A1;
  overflow: hidden;
  cursor: pointer;
}

.grid-4 .card:nth-child(2n) {
  border-right: none;
}

.grid-4 .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #375060;
  transform: translateY(100%);
  transition: transform .5s ease;
  z-index: 1;
}

.grid-4 .inner {
  position: relative;
  z-index: 2;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  min-height: 380px;
  padding: 2.5rem;
}

.grid-4 .copy {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .4s ease .1s, transform .4s ease .1s;
  max-width: 600px;
  margin: auto;
}

.grid-4 .copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.5em;
}

.grid-4 .copy p + p {
  margin-top: 1rem;
}

.grid-4 .foot {
  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;
  margin-top: auto;
  gap: 1rem;
}

.grid-4 h3 {
  color: #fff;
  font-size: 1.4rem;
  transition: opacity .3s ease;
}

.grid-4 .toggle {
  position: relative;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

.grid-4 .toggle::before, .grid-4 .toggle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  transition: opacity .3s ease;
}

.grid-4 .toggle::before {
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.grid-4 .toggle::after {
  width: 1px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.grid-4 .card:hover .bg {
  transform: translateY(0);
}

.grid-4 .card:hover .copy {
  opacity: 1;
  transform: translateY(30px);
}

.grid-4 .card:hover h3 {
  opacity: 0;
}

.grid-4 .card:hover .toggle::after {
  opacity: 0;
}

.grid-4 .splide__track {
  overflow: hidden;
}

.grid-4 .splide__pagination {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}

.grid-4 .splide__pagination li {
  line-height: 0;
}

.grid-4 .splide__pagination .splide__pagination__page {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background .3s ease;
}

.grid-4 .splide__pagination .splide__pagination__page.is-active {
  background: #fff;
}

/***** 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 (min-width: 981px) and (max-height: 850px) {
  .secPadding {
    padding: 4.5rem 0;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  p {
    font-size: 1rem;
  }
  .grid-4 .card {
    min-height: 300px;
  }
  .grid-4 .inner {
    min-height: 300px;
  }
  .build-career .wrapper .card {
    height: 350px;
  }
  .build-career.four .wrapper .card {
    height: 270px;
  }
  .links .card {
    min-height: 330px;
  }
  .strategy {
    height: 600px;
  }
  .inner .s1 .container .heading h1 {
    font-size: 3.3rem;
  }
  .inner .s1 .container h2 {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 981px) and (max-height: 650px) {
  .secPadding {
    padding: 4rem 0;
  }
  .btn {
    width: 80px;
    height: 59px;
  }
  h2 {
    font-size: 2rem;
  }
  p {
    font-size: 0.9rem;
  }
  p.lg {
    font-size: 1.4rem;
  }
  .grid-4 .card {
    min-height: 250px;
  }
  .grid-4 .inner {
    min-height: 250px;
  }
  .grid-4 .copy p {
    font-size: 0.9rem;
  }
  .build-career .wrapper .card {
    height: 320px;
  }
  .build-career.four .wrapper .card {
    height: 250px;
  }
  .links .card {
    min-height: 300px;
  }
  .strategy {
    height: 500px;
  }
  .inner .s1 {
    height: 400px;
  }
  .inner .s1 .container .heading h1 {
    font-size: 2.9rem;
  }
  .inner .s1 .container h2 {
    font-size: 1.3rem;
  }
  .leadership .wrap {
    align-items: center;
  }
  .leadership .pic {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 1300px) {
  .grid-4 .card:hover .foot {
    opacity: 0;
  }
}

@media screen and (max-width: 1200px) {
  footer .copy {
    font-size: 13px;
  }
  footer .legal {
    gap: 1rem;
  }
  footer .legal a {
    font-size: 11px;
  }
  footer .legal a:not(:last-child)::after {
    right: -.5rem;
  }
}

@media screen and (max-width: 1100px) {
  .inner .s1 .container .heading h1 {
    font-size: 3.3rem;
  }
  .inner .s1 .container h2 {
    font-size: 1.5rem;
  }
  .mega .row p {
    font-size: 14px;
  }
  .mega .row h3 {
    min-width: 140px;
  }
  .mega .biz {
    margin-left: 0;
  }
  .build-career .wrapper .card p {
    font-size: 0.9rem;
  }
  .leadership .left h3 {
    font-size: 1.3rem;
  }
  .btn:hover {
    padding: 0 25px 0 25px;
  }
  .links .card:hover .btn {
    width: var(--btn-w, 200px);
    padding: 0 25px 0 25px;
  }
}

@media screen and (max-width: 1023px) {
  #header {
    display: none;
  }
  #header-mobile {
    display: block;
  }
  .btn {
    background-color: #fff;
    height: 69px;
    width: var(--btn-w, 250px);
    padding: 0 20px;
  }
  .btn .txt {
    opacity: 1;
    max-width: 300px;
    margin-right: 1rem;
    color: #65B9EB;
  }
  .btn .ar {
    border-color: #65B9EB;
  }
  .btn:hover {
    width: var(--btn-w, 250px);
  }
  .btn.cl {
    background-color: #375060;
  }
  .btn.cl .ar {
    border-color: #65B9EB;
  }
  .inner .s1 .container {
    bottom: 3rem;
  }
  .inner .s1 .container .heading h1 {
    font-size: 3rem;
  }
  .inner .s1 .container h2 {
    font-size: 1.5rem;
  }
  .two-col {
    flex-direction: column;
  }
  .two-col .left {
    width: 100%;
  }
  .two-col .left h2 {
    max-width: none;
  }
  .two-col .left h2 br {
    display: none;
  }
  .two-col .right {
    width: 100%;
  }
  .two-col .right p {
    max-width: none;
  }
  .mega .row {
    flex-direction: column;
    gap: 0.5rem;
  }
  .mega .row .desc {
    max-width: none;
    width: 100%;
  }
  .mega .row p {
    max-width: none;
  }
  .inner .s1 .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .inner .s1 .container h2 {
    max-width: none;
  }
  .leadership .person {
    flex-direction: column;
    align-items: flex-start;
  }
  .leadership .person h3 {
    font-size: 1.1rem;
  }
  .leadership h2 {
    display: block;
  }
  .leadership .left {
    width: 46%;
    padding-right: 1rem;
  }
  .leadership .left h2, .leadership .left .line {
    display: none;
  }
  .leadership .right {
    width: auto;
    padding-left: 1rem;
    border-left: solid 1px rgba(255, 255, 255, 0.3);
  }
  .leadership .wrap {
    gap: 1rem;
  }
  .leadership .wrap::before {
    display: none;
  }
  .leadership.wh .right {
    border-color: rgba(55, 80, 96, 0.3);
  }
  .sub-strategies.different h2 {
    min-width: 350px;
  }
  footer .fbot {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 2.5rem;
  }
  footer .cols {
    max-width: none;
    width: 100%;
  }
  footer .legal a {
    font-size: 13px;
  }
  .links .grid {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
  }
  .links .grid .card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .links .grid .card h3 br {
    display: none;
  }
  .links .grid .card p {
    max-width: none;
  }
  .links .grid .card .btn {
    width: 250px;
    margin-top: 2rem;
  }
  .links .grid .card::after {
    width: 100%;
    height: 1px;
    left: 0;
    top: auto;
    bottom: -1rem;
  }
  .links .grid .card::before {
    opacity: 0;
  }
  .links .grid .card:last-child {
    border-bottom: none;
  }
  .links .grid .card:hover h3 {
    color: #375060;
  }
  .links .grid .card:hover p {
    color: rgba(55, 80, 96, 0.7);
  }
  .links .grid .card:hover .btn {
    width: 250px;
    background-color: #375060;
  }
  .links .grid .card:hover .btn .txt {
    color: #fff;
  }
  .build-career .wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .build-career .wrapper .card {
    height: 350px;
    border-right: none;
  }
  .build-career .wrapper .card p {
    max-width: 600px;
  }
}

@media screen and (max-width: 980px) {
  h2 {
    font-size: 2.5rem;
  }
  .grid-4 .head {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .grid-4 .card {
    min-height: 350px;
  }
  .grid-4 .inner {
    min-height: 350px;
    padding: 2rem 1rem;
  }
  .grid-4 .copy p {
    font-size: 1rem;
  }
  .strategy {
    height: auto;
  }
  .strategy .parallax-bg {
    background-position: 75%;
  }
  .strategy .container {
    flex-direction: column;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
  .strategy .container > div {
    width: 100%;
  }
  .sub-strategies h3 {
    margin-bottom: 1rem;
  }
  .sub-strategies .wrap {
    gap: 0;
    border-bottom: solid 1px rgba(134, 138, 141, 0.3);
  }
  .sub-strategies .wrap ul {
    border: none;
  }
  .sub-strategies .wrap.four {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  .sub-strategies.different .wrap.four {
    gap: 2rem;
  }
  .sub-strategies .wrap.four {
    gap: 0;
    border-bottom: solid 1px rgba(134, 138, 141, 0.3);
  }
  .sub-strategies.different h2 {
    min-width: auto;
  }
  .sub-strategies.different .container {
    flex-direction: column;
  }
  footer {
    padding: 3rem 0 0;
  }
  footer .logo {
    margin: 0 auto;
  }
  footer .ftop {
    flex-direction: column;
    justify-content: center;
    padding-bottom: 2rem;
  }
  footer .ftop .cols {
    display: none;
  }
  footer .fbot {
    text-align: center;
    padding: 2rem 0;
    gap: 1.5rem;
  }
  footer .legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: .8rem 1.2rem;
    max-width: 500px;
  }
  footer .legal a:not(:last-child)::after {
    right: -12px;
  }
}

@media screen and (max-width: 767px) {
  body, html {
    -webkit-text-size-adjust: 100%;
  }
  .secPadding {
    padding: 5rem 0;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  p.lg {
    font-size: 1.3rem;
  }
  p {
    font-size: 1rem;
  }
  .btn {
    height: 59px;
    width: var(--btn-w, 180px);
    padding: 0 20px;
  }
  .btn .txt {
    font-size: 0.9rem;
  }
  .btn:hover {
    width: var(--btn-w, 180px);
  }
  .inner .s1 .container .heading h1 {
    font-size: 2.5rem;
  }
  .inner .s1 .container h2 {
    font-size: 1.2rem;
  }
  #header-mobile .logo {
    width: 200px;
  }
  #header-mobile .menu_container #menu_btn {
    width: 35px;
  }
  #header-mobile .menu_container #menu_btn i {
    width: 35px;
  }
  #header-mobile .fx-nav {
    padding: 1rem 1rem;
  }
  #header-mobile .fx-nav h3 {
    font-size: 1.1rem;
  }
  #header-mobile .fx-nav h3::after {
    width: 10px;
    height: 10px;
  }
  #header-mobile .fx-slide a {
    padding: 1rem 2.5rem 1rem 0;
  }
  #header-mobile .fx-slide a h3 {
    font-size: 1.1rem;
  }
  #header-mobile .fx-slide a p {
    font-size: 14px;
  }
  #header-mobile .fx-slide .row::after {
    width: 28px;
    height: 28px;
  }
  #header-mobile .fx-slide .content.what-we-do {
    padding: 1rem 1rem;
  }
  #header-mobile .what-we-do .row {
    padding-right: 2.5rem;
  }
  #header-mobile .what-we-do p {
    margin-bottom: 0;
  }
  #header-mobile .what-we-do .biz {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
  }
  #header-mobile .what-we-do a {
    padding: 10px 0;
    font-size: 15px;
  }
  #header-mobile .contact-btn {
    padding: 1rem 0;
  }
  #header-mobile .contact-btn span {
    font-size: 1.1rem;
  }
  #header-mobile .contact-btn::after {
    width: 28px;
    height: 28px;
  }
  .grid-4 .desktop {
    display: none;
  }
  .grid-4 .mobile {
    display: block;
    margin-top: 1rem;
    border-top: 1px solid #A1A1A1;
    padding-top: 3rem;
  }
  .grid-4 .card {
    min-height: auto;
    border: none;
    list-style: none;
  }
  .grid-4 .card:hover .copy {
    transform: none;
  }
  .grid-4 .inner {
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    padding: 0 1rem;
  }
  .grid-4 .copy {
    opacity: 1;
    transform: translateY(0);
    margin: 0;
  }
  .grid-4 .foot {
    margin-top: 0;
  }
  .grid-4 h3, .grid-4 .foot {
    opacity: 1 !important;
  }
  .grid-4 .splide__pagination {
    position: relative;
    bottom: auto;
  }
  .leadership {
    padding: 4rem 0;
  }
  .leadership .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .leadership .wrap::before {
    display: none;
  }
  .leadership .wrap .left,
  .leadership .wrap .right {
    width: 100%;
    padding: 0;
    border-left: none;
  }
  .leadership .wrap .left .info {
    max-width: 400px;
  }
  .leadership .wrap .left .line {
    max-width: none;
  }
  .leadership .wrap p {
    max-width: none;
  }
  .leadership .info h3 {
    font-size: 1.3rem;
  }
  .leadership .info h3 br {
    display: none !important;
  }
  .sub-strategies .wrap, .sub-strategies .wrap.four {
    grid-template-columns: repeat(1, 1fr);
  }
  .build-career h2 {
    margin-bottom: 2.5rem;
  }
  .build-career .wrapper .card h3::before {
    width: 45px;
    height: 45px;
  }
  .build-career.four .wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .build-career.four .wrapper .card {
    height: 350px;
  }
  .strategy .container > div, .strategy.one .container > div {
    padding: 2rem 1rem;
  }
  .strategy.one .container > div p {
    font-size: 1.2rem;
  }
  .links {
    padding: 5rem 0;
  }
  .links .grid .card {
    padding: 0 2rem;
  }
  .links .grid .card .btn {
    width: 200px;
  }
  .links .grid .card:hover .btn {
    width: 200px;
  }
  .quote .wrap {
    padding: 2rem 0;
  }
  .quote .mark {
    width: 35px;
    height: 35px;
  }
  .quote .q {
    font-size: 1.3rem;
  }
  footer .logo {
    width: 200px;
  }
  footer .legal a {
    font-size: 11px;
  }
  footer .fbot {
    padding: 1.5rem 0;
  }
  footer .copy {
    font-size: 12px;
  }
}
