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

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

body, html {
  font-family: avenir-lt-pro, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  background-color: #242B3D;
  color: #FFF;
}

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

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

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

p {
  text-align: left;
  font-family: avenir-lt-pro, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.4em;
  color: rgba(255, 255, 255, 0.75);
}

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

h3.sh {
  font-family: playfair-display, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  line-height: normal;
}

@media all and (max-width: 1024px) {
  h3.sh {
    font-size: 2.15rem;
  }
}

@media all and (max-width: 767px) {
  h3.sh {
    font-size: 1.85rem;
  }
}

h3.sh.--xl {
  font-size: 3.5rem;
}

@media all and (max-width: 1024px) {
  h3.sh.--xl {
    font-size: 3rem;
  }
}

@media all and (max-width: 767px) {
  h3.sh.--xl {
    font-size: 2.5rem;
  }
}

h4.sh {
  font-size: 0.9rem;
  letter-spacing: 0.47em;
  line-height: normal;
  text-transform: uppercase;
}

h5.sh {
  font-family: playfair-display, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: -0.02em;
  line-height: normal;
}

@media all and (max-width: 1024px) {
  h5.sh {
    font-size: 1.75rem;
  }
}

@media all and (max-width: 767px) {
  h5.sh {
    font-size: 1.5rem;
  }
}

h6.sh {
  font-family: playfair-display, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: normal;
}

@media all and (max-width: 1024px) {
  h6.sh {
    font-size: 1.35rem;
  }
}

@media all and (max-width: 767px) {
  h6.sh {
    font-size: 1.25rem;
  }
}

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

section.padMed {
  padding: 7.5rem 0;
}

section.padLrg {
  padding: 9rem 0;
}

@media all and (max-width: 1024px) {
  section.padSml {
    padding: 4rem 0;
  }
  section.padMed {
    padding: 6rem 0;
  }
  section.padLrg {
    padding: 8rem 0;
  }
}

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

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

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

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

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

.darkBlue-bg {
  background-color: #141821;
}

.navyBlue-bg {
  background-color: #242B3D;
}

.acc-color {
  color: #E0B0A6;
}

.global-btn {
  position: relative;
  outline: 0;
  background-color: rgba(255, 255, 255, 0);
  padding: 22px 17px;
  width: 60px;
  height: 60px;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  border: 1px solid #fff;
  will-change: width;
  transition: width .4s ease;
  cursor: pointer;
}

.global-btn p {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 17px;
  opacity: 0;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1em;
  transition: opacity .1s linear;
  font-size: 14px;
  width: max-content;
}

.global-btn img {
  display: block;
  object-fit: contain;
  margin: 0 0 0 auto;
}

.global-btn img.arrow-right {
  width: 25px;
  height: 16px;
}

.global-btn img.play-arrow {
  width: 22px;
  height: 22px;
}

.global-btn:hover {
  width: 220px;
}

.global-btn:hover p {
  opacity: 1;
  transition: opacity .3s ease .1s;
}

@media screen and (max-width: 1100px) {
  .global-btn {
    width: 50px;
    height: 50px;
    padding: 18px 14px;
  }
  .global-btn:hover {
    width: 200px;
  }
  .global-btn img {
    width: 20px !important;
    height: auto !important;
  }
}

@media screen and (max-width: 1024px) {
  .global-btn {
    width: 200px !important;
  }
  .global-btn p {
    opacity: 1;
  }
}

.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(36, 43, 61, 0);
  top: 0;
  padding: 2.5rem 0 .25rem;
  will-change: padding, background-color;
  transition: all .4s ease;
}

header .hidden-nav {
  display: none !important;
}

header .container {
  padding: .8rem 0;
  position: relative;
  transition: all .4s ease;
}

header .logo {
  position: relative;
  z-index: 101;
}

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;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(230, 230, 230, 0.5);
}

header .wrapper .nav-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;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 5px;
  max-width: 1050px;
}

header .wrapper .nav-wrapper li, header .wrapper .nav-wrapper li > a {
  font-family: avenir-lt-pro, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: .8rem;
  color: #fff;
  line-height: 1em;
  position: relative;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.0875em;
  transition: color .3s ease;
}

header .wrapper .nav-wrapper li:hover, header .wrapper .nav-wrapper li > a:hover {
  color: #E0B0A6;
}

header .wrapper .nav-wrapper li.selNav > a::after {
  content: '';
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.7rem;
  height: 5px;
  width: 27px;
  background-color: #E0B0A6;
  transition: bottom .15s ease;
}

header .wrapper .dropdown-parent {
  cursor: default;
  padding-right: .6rem;
}

header .wrapper .dropdown-parent::before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: .4rem;
  height: .4rem;
  background: url(/i/dropdown-arrow.png) center/contain no-repeat;
}

header .wrapper .dropdown-parent::after {
  content: '';
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.5rem;
  width: 0;
  height: 0;
  border-left: 16.5px solid transparent;
  border-right: 16.5px solid transparent;
  border-bottom: 25px solid #0A0C10;
  opacity: 0;
  visibility: hidden;
}

header .wrapper .dropdown-parent.hovered > a {
  color: #E0B0A6;
}

header .wrapper .dropdown-parent.hovered::after, header .wrapper .dropdown-parent.hovered ul {
  transition: opacity .5s linear;
  opacity: 1;
  visibility: visible;
}

header .wrapper .dropdown-parent > a {
  cursor: default;
  pointer-events: none;
}

header .wrapper .dropdown-parent ul {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 5.5rem;
  opacity: 0;
  overflow: hidden;
  background-color: #0A0C10;
  width: calc(100vw - 2rem);
  max-width: 1400px;
  padding: 1.5rem 1.7rem;
  z-index: 1;
  visibility: hidden;
  border-radius: .3rem;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.5rem;
}

header .wrapper .dropdown-parent ul::before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  font-family: playfair-display, serif;
  font-style: normal;
  font-weight: 400;
  left: 1.7rem;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: none;
  content: attr(data-id);
  color: #fff;
  line-height: 1em;
  height: 1.7rem;
}

header .wrapper .dropdown-parent ul::after {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  left: 10rem;
  height: 65%;
  width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

header .wrapper .dropdown-parent ul[data-id="Our Firm"] {
  padding-left: 17.6rem;
}

header .wrapper .dropdown-parent ul[data-id="Our Firm"]::after {
  left: 10rem;
}

header .wrapper .dropdown-parent ul li, header .wrapper .dropdown-parent ul li > a {
  font-size: 1.2rem;
  text-transform: capitalize;
  letter-spacing: normal;
  color: #fff;
}

header .wrapper .dropdown-parent ul li:hover, header .wrapper .dropdown-parent ul li > a:hover {
  color: #E0B0A6;
}

header .wrapper .dropdown-parent ul li.selNav > a, header .wrapper .dropdown-parent ul li > a.selNav > a {
  color: #E0B0A6;
}

header .wrapper .dropdown-parent ul li.selNav > a::after {
  display: none !important;
}

header .logo img {
  display: block;
  width: 275px;
  height: auto;
  transition: width .3s ease;
  will-change: width;
}

header ul {
  list-style: none;
}

header.scroll {
  padding: 1rem 0 .2rem;
  background-color: #242B3D;
}

header.scroll .wrapper {
  padding-bottom: .8rem;
}

header.scroll .wrapper li.selNav > a::after {
  bottom: -.9rem;
}

header.scroll .wrapper .dropdown-parent ul {
  top: 3.7rem;
}

header.scroll .logo img {
  width: 250px;
}

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: #242B3D;
  transition: height .75s ease-in-out;
}

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

header .mobile-nav li::before, header .mobile-nav .nav-wrapper > 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-wrapper > li:last-child::after {
  top: auto;
  bottom: 0;
}

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

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

header .mobile-nav li, header .mobile-nav li > a {
  font-family: avenir-lt-pro, 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: #E0B0A6;
}

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

header .mobile-nav li.dropdown-parent > a {
  display: none;
}

header .footer-only {
  display: none;
}

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

header .mobile-nav .mobile-wrapper {
  height: 100vh;
  width: 100%;
  padding: 120px 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: avenir-lt-pro, 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: #E0B0A6;
}

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

header .mobile-nav li.dropdown-parent > a {
  display: none;
}

@media all and (max-width: 1300px) {
  header.scroll .wrapper .nav-wrapper li.selNav > a::after {
    bottom: -1rem;
  }
  header .wrapper .nav-wrapper li, header .wrapper .nav-wrapper li > a {
    font-size: .65rem;
  }
  header .wrapper .nav-wrapper li.selNav > a::after {
    bottom: -2.85rem;
  }
  header .wrapper .dropdown-parent ul[data-id="Our Firm"] {
    padding-left: 15.6rem;
  }
  header .wrapper .dropdown-parent ul[data-id="Our Firm"] li, header .wrapper .dropdown-parent ul[data-id="Our Firm"] li > a {
    font-size: 1rem;
  }
}

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

@media all and (max-width: 767px) {
  header {
    padding: 1rem 0 .2rem;
  }
  header .wrapper {
    padding-bottom: .8rem;
  }
  header .logo img {
    width: 220px !important;
  }
}

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

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

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

.--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: #0A0C10;
  padding: 4rem 0 1rem;
}

footer .nav-wrapper {
  max-width: 1040px;
  margin: 4rem auto 2rem;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
  list-style-type: none;
}

footer .nav-wrapper li, footer .nav-wrapper li > a {
  font-size: .9rem;
  color: #fff;
  transition: color .3s ease;
}

footer .nav-wrapper li:hover, footer .nav-wrapper li > a:hover {
  color: #E0B0A6;
}

footer .sm-wrapper {
  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: 1.5rem;
}

footer .sm-wrapper a {
  width: 1.65rem;
  height: 1.65rem;
  transition: background-image .3s ease;
  will-change: background-image;
}

footer .sm-wrapper a.twitter-icon {
  background: url(/i/svg/x-icon.svg) center/contain no-repeat;
}

footer .sm-wrapper a.twitter-icon:hover {
  background-image: url(/i/svg/x-icon-color.svg);
}

footer .sm-wrapper a.linkedin-icon {
  background: url(/i/svg/linkedin-icon.svg) center/contain no-repeat;
}

footer .sm-wrapper a.linkedin-icon:hover {
  background-image: url(/i/svg/linkedin-icon-color.svg);
}

footer .logo {
  display: block;
  width: 90%;
  margin: 0 auto;
  max-width: 275px;
  height: auto;
  aspect-ratio: 275/25;
}

footer .logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

footer .legal {
  margin-top: 2.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer .legal p, footer .legal a {
  text-align: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.4);
}

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

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

footer .header-only {
  display: none;
}

@media all and (max-width: 767px) {
  footer .nav-wrapper {
    max-width: 240px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .nav-wrapper li {
    width: calc(50% - .5rem);
  }
}

.s1.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.s1.hero .contain, .s1.hero .container {
  height: 100vh;
  min-height: 500px;
  max-height: 800px;
  padding: 6rem 0 3rem;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.s1.hero .hero-text {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.s1.hero .left, .s1.hero .right {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

.s1.hero.in-view .left, .s1.hero.in-view .right {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease .5s;
}

.s1.hero.in-view .right {
  transition-delay: 1.15s;
}

.s1.hero .left {
  width: max-content;
}

.s1.hero .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 690px;
  margin-top: 1.5rem;
}

.s1.hero h1 {
  font-family: playfair-display, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1.25em;
  letter-spacing: -0.02em;
  color: #fff;
}

.s1.hero h1 span {
  font-style: italic;
}

.s1.hero h2 {
  font-family: avenir-lt-pro, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.7rem;
  line-height: 1.3em;
  color: #fff;
}

@media all and (max-width: 1300px) {
  .s1.hero h2 {
    font-size: 1.35rem;
  }
}

@media all and (max-width: 1024px) {
  .s1.hero .contain, .s1.hero .container {
    max-height: 650px;
    padding-bottom: 5rem !important;
  }
  .s1.hero .hero-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .s1.hero .hero-text .left, .s1.hero .hero-text .right {
    width: 100%;
    max-width: 100% !important;
    margin-top: 0;
  }
  .s1.hero h1 {
    font-size: 3.5rem;
  }
  .s1.hero h2 {
    font-size: 1.5rem;
  }
}

@media all and (max-width: 767px) {
  .s1.hero .contain, .s1.hero .container {
    max-height: 500px;
  }
  .s1.hero h1 {
    font-size: 3rem;
  }
  .s1.hero h2 {
    font-size: 1.35rem;
  }
}

.overview-section .h-line {
  width: 0;
  height: 0;
  margin: 5rem 0;
  border-bottom: 1px solid #E0B0A6;
  will-change: width;
}

.overview-section .left, .overview-section .right {
  width: 50%;
  max-width: 650px;
}

.overview-section .header-wrapper {
  width: 100%;
  max-width: 1160px;
}

.overview-section .flex-wrapper {
  gap: 1.5rem;
}

.overview-section .bot p {
  font-size: 1.2rem;
  line-height: 1.4em;
}

.overview-section .top, .overview-section .bot {
  width: 100%;
  opacity: 0;
  will-change: opacity, transform;
}

.overview-section .top {
  transform: translateY(50px);
  max-width: 1165px;
}

.overview-section .bot {
  transform: translateY(-50px);
}

.overview-section.--in-view .h-line {
  width: 100%;
  transition: width .75s ease;
}

.overview-section.--in-view .top, .overview-section.--in-view .bot {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease .75s;
}

.overview-section h4 {
  margin-bottom: 2rem;
}

@media all and (max-width: 767px) {
  .overview-section .h-line {
    margin: 2.5rem 0;
  }
  .overview-section .flex-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .overview-section .left, .overview-section .right {
    width: 100%;
    max-width: 100%;
  }
}

.reveal-image-scrollJack {
  width: 100%;
  height: calc(100vh - 95px);
  position: relative;
  overflow: hidden;
}

.reveal-image-scrollJack .image-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  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: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(30% 30% 30% 30%);
  will-change: clip-path;
}

.reveal-image-scrollJack .image-mask::after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  mix-blend-mode: multiply;
  opacity: 0;
  z-index: 2;
}

.reveal-image-scrollJack img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  z-index: 1;
}

.reveal-image-scrollJack .hidden-content {
  opacity: 0;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 5.5rem;
  transition: opacity .5s ease;
  z-index: 3;
  visibility: visible !important;
}

.reveal-image-scrollJack .hidden-content.--active {
  opacity: 1;
}

.reveal-image-scrollJack .hidden-content .contain, .reveal-image-scrollJack .hidden-content .container {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.5rem;
}

.reveal-image-scrollJack .hidden-content .contain > div, .reveal-image-scrollJack .hidden-content .container > div {
  max-width: 690px;
}

.reveal-image-scrollJack .hidden-content .contain .left, .reveal-image-scrollJack .hidden-content .container .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.reveal-image-scrollJack .hidden-content .contain .right, .reveal-image-scrollJack .hidden-content .container .right {
  width: 50%;
  padding-top: .75rem;
}

.reveal-image-scrollJack .hidden-content h3.sh {
  font-size: 3.5rem;
  line-height: 1em;
}

@media all and (max-width: 1024px) {
  .reveal-image-scrollJack .hidden-content h3.sh {
    font-size: 3rem;
  }
}

@media all and (max-width: 767px) {
  .reveal-image-scrollJack .hidden-content h3.sh {
    font-size: 2.5rem;
  }
}

.reveal-image-scrollJack .hidden-content p {
  font-size: 1.7rem;
  line-height: 1.17em;
  color: #fff;
}

@media all and (max-width: 1024px) {
  .reveal-image-scrollJack {
    height: auto;
  }
  .reveal-image-scrollJack .image-mask {
    padding: 300px 0 60px;
    position: relative;
    display: block;
    left: 0;
    top: 0;
    transform: none;
    clip-path: inset(0 0 0 0);
  }
  .reveal-image-scrollJack .image-mask::after {
    opacity: 1;
  }
  .reveal-image-scrollJack .image-mask img {
    position: absolute;
    left: 0;
    top: 0;
  }
  .reveal-image-scrollJack .image-mask br {
    display: none;
  }
  .reveal-image-scrollJack .hidden-content {
    position: relative;
    bottom: auto;
    opacity: 1;
  }
  .reveal-image-scrollJack .hidden-content .contain, .reveal-image-scrollJack .hidden-content .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .reveal-image-scrollJack .hidden-content .contain > div, .reveal-image-scrollJack .hidden-content .container > div {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.video-section {
  position: relative;
  min-height: 100vh;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-top: 28rem;
}

.video-section .img-wrapper, .video-section .video-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.video-section .img-wrapper img, .video-section .img-wrapper video, .video-section .video-wrapper img, .video-section .video-wrapper video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-section .bot {
  padding: 1.5rem 0;
  border-top: 1px solid #E0B0A6;
  position: relative;
  z-index: 1;
  width: 100%;
}

.video-section .contain, .video-section .container {
  gap: 1.5rem;
}

.video-section .left {
  width: 75%;
  border-right: 1px solid #E0B0A6;
  padding: 1.5rem 1.5rem 1.5rem 0;
}

.video-section .left h5 {
  max-width: 810px;
  margin: 0;
}

.video-section .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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;
  min-width: 240px;
}

.video-section .video-lightbox {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  display: none;
  z-index: 200;
  width: calc(100vw - 7rem);
  max-height: 90vh;
  max-width: 1000px;
  aspect-ratio: 16/9;
}

.video-section .video-lightbox video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-section .close-btn {
  position: absolute;
  left: calc(100% + .5rem);
  top: 0;
  height: 2rem;
  width: 2rem;
  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;
  border: 1px solid #fff;
  cursor: pointer;
}

@media all and (max-width: 1024px) {
  .video-section {
    padding: 15rem 0 3.5rem;
    min-height: 700px;
  }
  .video-section .contain, .video-section .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .video-section .contain > div, .video-section .container > div {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    border: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .video-section .contain > div *, .video-section .container > div * {
    max-width: 100% !important;
  }
  .video-section .contain .right, .video-section .container .right {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.news-block .header-wrapper {
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.news-block .header-wrapper a {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .6rem;
}

.news-block .header-wrapper a p {
  color: #fff;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1em;
  transition: color .3s ease;
}

.news-block .header-wrapper a:hover p {
  color: #E0B0A6;
}

.news-block .articles-wrapper {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  border-left: solid 1px rgba(255, 255, 255, 0.2);
}

.news-block .article {
  width: calc(100% / 3);
  padding: 1rem 1rem 2rem 1rem;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  border-right: solid 1px rgba(255, 255, 255, 0.2);
}

.news-block .article:nth-child(-n + 3) {
  border-top: solid 1px rgba(255, 255, 255, 0.2);
}

.news-block .article:hover .global-btn {
  width: 220px;
}

.news-block .article:hover .global-btn p {
  opacity: 1;
  transition: opacity .3s ease .1s;
}

.news-block .article:hover .thumbnail img {
  transform: scale(1.15);
}

.news-block .article:hover h3 {
  color: #E0B0A6;
}

.news-block .article .thumbnail {
  display: block;
  width: 100%;
  height: 390px;
  overflow: hidden;
}

.news-block .article .thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  will-change: transform;
  transform-origin: center center;
  transition: transform .65s ease-out;
}

.news-block .article .top {
  font-size: 0.9rem;
  line-height: 1.2em;
  color: rgba(255, 255, 255, 0.7);
  margin: 2rem 0 1.5rem 0;
}

.news-block .article .top span {
  display: inline-block;
  margin: 0 5px;
}

.news-block .article h3 {
  font-family: playfair-display, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.3em;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 2rem;
  transition: color .3s ease;
}

@media screen and (max-width: 1100px) {
  .news-block .articles-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .news-block .article:nth-child(n) {
    width: calc(100% / 2);
    border-top: 0;
  }
  .news-block .article:nth-child(n) .thumbnail {
    height: 340px;
  }
  .news-block .article:nth-child(-n + 2) {
    border-top: solid 1px rgba(255, 255, 255, 0.2);
  }
}

@media screen and (max-width: 767px) {
  .news-block .article:nth-child(n) {
    width: 100%;
    border-top: 0;
  }
  .news-block .article:nth-child(n) .thumbnail {
    height: 290px;
  }
  .news-block .article:first-child {
    border-top: solid 1px rgba(255, 255, 255, 0.2);
  }
}

.disclaimer-page .s1 {
  padding: 13.5rem 0 7.5rem;
}

.disclaimer-page .s1 h1 {
  font-family: playfair-display, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.25em;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: .75em;
}

.disclaimer-page .s1 h1 span {
  font-style: italic;
}

.disclaimer-page .s1 .disclaimer-links {
  margin-bottom: 2rem;
  max-width: 990px;
}

.disclaimer-page .s1 .disclaimer-links a {
  color: #fff;
  transition: color .3s ease;
  font-weight: 400;
}

.disclaimer-page .s1 .disclaimer-links a.--current, .disclaimer-page .s1 .disclaimer-links a:hover {
  color: #E0B0A6;
}

.disclaimer-page .s1 .disclaimer-links span {
  display: inline-block;
  margin: 0 14px;
}

.disclaimer-page .s1 .disclaimer-wrapper p, .disclaimer-page .s1 .disclaimer-wrapper li {
  text-align: left;
  font-family: avenir-lt-pro, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.4em;
  color: rgba(255, 255, 255, 0.75);
}

.disclaimer-page .s1 .disclaimer-wrapper p, .disclaimer-page .s1 .disclaimer-wrapper ul {
  margin-bottom: 1em;
}

.disclaimer-page .s1 .disclaimer-wrapper ul {
  list-style-position: outside;
  padding-left: 1rem;
}

.disclaimer-page .s1 .disclaimer-wrapper strong {
  color: #fff;
  font-size: 1em;
  font-weight: 700;
}

.disclaimer-page .s1 .disclaimer-wrapper a {
  color: #E0B0A6;
  text-decoration: underline;
  transition: color .3s ease;
}

.disclaimer-page .s1 .disclaimer-wrapper a:hover {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .disclaimer-page .s1 {
    padding: 12rem 0 6rem;
  }
}

@media screen and (max-width: 767px) {
  .disclaimer-page .s1 {
    padding: 10rem 0 5rem;
  }
}

#shade, #investor-shade {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 199;
}

.--mobile-only, .--tablet-only {
  display: none;
}

@media all and (max-width: 1024px) {
  .--tablet-only {
    display: block;
  }
  .--desktop-only, .--mobile-only {
    display: none;
  }
}

@media all and (max-width: 767px) {
  .--tablet-only, .--mobile-only {
    display: block;
  }
  .--desktop-only {
    display: none;
  }
}
