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

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

body, html {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  text-align: left;
  background: #000;
}
@media screen and (max-width: 980px) {
  body, html {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  body, html {
    font-size: 16px;
  }
}

p {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.42em;
  color: #fff;
}

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

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

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

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

h1 {
  font-family: "Kaisei Decol", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1.2em;
}

h2 {
  font-family: "Kaisei Decol", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1em;
}

h3 {
  font-family: "Kaisei Decol", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.16em;
}

h4 {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: 5.18px;
}

p.lg {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 200;
  font-size: 2.5rem;
  line-height: 1.46em;
}

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

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

.secPadding {
  padding: 7.5rem 0;
}

.hline {
  display: block;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3490196078);
}

.global-cta {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.45);
  padding: 26px 30px;
  text-align: left;
}
.global-cta span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 5.18px;
  text-transform: uppercase;
  color: #000;
  line-height: 1.43em;
  transition: color 0.3s ease;
  position: relative;
  padding-right: 3.5rem;
}
.global-cta span::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  background: url(/i/svg/cta.svg) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 0;
}

.global-cta:hover span {
  color: #42ADFF;
}

.left-icon {
  position: relative;
  padding-left: 30px;
  padding-top: 30px;
}

.left-icon::before {
  content: "";
  position: absolute;
  display: block;
  width: 26px;
  height: 26px;
  background: url(/i/svg/text-notch.svg) no-repeat center/contain;
  top: 0;
  left: 0;
}

.bg-parallax-parent {
  position: relative;
  overflow: hidden;
}
.bg-parallax-parent .bg-parallax {
  position: absolute;
  top: -45%;
  left: 0;
  height: 130%;
  width: 100%;
}

/*****  TEXT ANIMATION *****/
.split-parent {
  overflow: hidden;
}

/***** HERO *****/
.inner .s1 {
  height: 100vh;
  min-height: 800px;
  max-height: 800px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
.inner .s1 .container-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  top: 60%;
  width: calc(100% - 2rem);
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
}
.inner .s1 h1 {
  min-width: 445px;
}
.inner .s1 p {
  font-weight: 300;
  font-size: 1.75rem;
  line-height: 1.45em;
  max-width: 766px;
}

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

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

#core-values .s1 {
  background-image: url(/i/Core-values-hero2.jpg);
}

#life-at-lion .s1 {
  background-image: url(/i/life-at-lion-hero.jpg);
}

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

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

#news .s1 {
  background-image: url(/i/newsroom-hero.jpg);
}

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

#contact .s1 {
  background-image: url(/i/contact-us-hero.jpg);
}

/***** HEADER *****/
header {
  width: 100%;
  position: fixed;
  top: 0;
  transition: background-color 0.3s ease;
  z-index: 101;
  padding: 1rem 0;
  /* Mobile */
}
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: 159px;
  height: 66px;
  background: url(/i/svg/logo.svg) no-repeat center/contain;
  position: relative;
  z-index: 10;
}
header nav {
  width: 100%;
  max-width: 1100px;
}
header nav .wrapper {
  width: 100%;
  gap: 1.7rem;
  text-align: right;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
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: 1.7rem;
}
header nav ul li a {
  display: inline-block;
  font-size: 0.9rem;
  line-height: 1em;
  color: #fff;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
}
header nav ul li a::after {
  content: "";
  position: absolute;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}
header nav ul li a:hover::after, header nav ul .selNav > a::after {
  width: 100%;
}
header nav .right {
  gap: 0;
}
header nav .right .line {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 20px;
}
header nav .dropdown {
  font-size: 0.9rem;
  line-height: 1em;
  color: #fff;
  position: relative;
}
header nav .dropdown > a:first-child {
  padding-right: 20px;
  background: url(/i/svg/arrow-down.svg) no-repeat 100% 50%;
  background-size: 8px;
  cursor: pointer;
}
header nav .dropdown > a:first-child::after {
  opacity: 0;
}
header nav .dropdown > ul {
  background: #fff;
  display: block;
  width: 140px;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  height: 0;
  z-index: 1;
  transition: opacity 0.5s ease;
}
header nav .dropdown > ul li a {
  display: inline-block;
  margin-bottom: 5px;
  color: #000;
  padding-bottom: 10px;
  transition: color 0.3s ease;
}
header nav .dropdown > ul li a::after {
  background: #000;
}
header nav .dropdown > ul .selNav > a::after {
  width: 100%;
}
header nav .dropdown > ul li:last-of-type a {
  margin-bottom: 0;
}
header nav .dropdown.selNav > a:first-child::after {
  opacity: 1;
}
header nav .dropdown.active > a:first-child {
  background-image: url(/i/svg/arrow-up.svg);
}
header nav .dropdown.active > ul {
  opacity: 1;
  visibility: visible;
  height: auto;
}
header .menu_container {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 20px;
}
header .menu_container #menu_btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 44px;
  height: 20px;
}
header .menu_container #menu_btn i {
  transition-delay: 0.6s;
  transition: all 0.2s ease-out;
  height: 1px;
  width: 44px;
  background-color: #fff;
  position: absolute;
  border-radius: 2px;
  left: 0;
}
header .menu_container #menu_btn i:nth-child(1) {
  top: 0;
}
header .menu_container #menu_btn i:nth-child(2) {
  top: 10px;
}
header .menu_container #menu_btn i:nth-child(3) {
  top: 20px;
}

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

/****** HEADER ACTIVE ******/
header.active nav {
  opacity: 1;
  visibility: visible;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  min-height: -webkit-fill-available;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
}
header.active nav .wrapper {
  display: block;
  width: 100%;
  padding: 130px 1rem 1rem 1rem;
}
header.active nav ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
}
header.active nav ul li a {
  font-size: 24px;
  line-height: 2rem;
  padding: 0;
  margin-bottom: 1rem;
}
header.active nav .dropdown {
  width: 100%;
  padding: 0;
  text-align: left;
  margin-bottom: 1rem;
}
header.active nav .dropdown > a {
  width: 100%;
  background-size: 16px auto;
  font-size: 24px;
  margin-bottom: 0;
  background-image: url(/i/svg/arrow-right-white.svg);
}
header.active nav .dropdown ul {
  background: none;
  width: auto;
  margin-left: 20px;
  position: relative;
  padding: 5px 0 0 0;
  top: auto;
  border: none;
}
header.active nav .dropdown ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}
header.active nav .dropdown ul li a {
  color: #fff;
  margin: 0;
  padding: 6px 0;
  font-size: 18px;
}
header.active nav .right .line {
  display: none;
}
header.active nav .dropdown.active > a {
  background-image: url(/i/svg/arrow-down-blue.svg);
}
header.active nav .dropdown.active > a, header.active nav .selNav > a {
  color: #42ADFF !important;
}
header.active nav .dropdown.properties {
  display: none;
}
header.active nav a::after {
  display: none;
}
header.active #menu_btn i {
  top: 5px;
  background: #fff;
}
header.active #menu_btn i:nth-child(1) {
  transform: rotate(45deg);
  width: 40px;
  top: 5px;
}
header.active #menu_btn i:nth-child(3) {
  transform: rotate(-45deg);
  width: 40px;
  top: 5px;
}
header.active #menu_btn i:nth-child(2) {
  display: none;
}

.prefooter .container-inner {
  border-bottom: solid 1px rgba(255, 255, 255, 0.2509803922);
  padding: 7.5rem 0;
}
.prefooter .container-inner > div {
  max-width: 1000px;
  margin: 0 auto;
}
.prefooter .two-col {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4rem;
  gap: 2rem;
}
.prefooter .two-col .global-cta {
  border-color: rgba(255, 255, 255, 0.45);
}
.prefooter .two-col .global-cta span {
  color: #fff;
}
.prefooter .two-col .global-cta:hover span {
  color: #42ADFF;
}
.prefooter .two-col p {
  max-width: 528px;
}

footer .container-inner {
  position: relative;
  padding: 7.15rem 0 1.75rem 0;
}
footer .logo {
  display: block;
  width: 95px;
  height: 220px;
  background: url(/i/svg/logo-symbol.svg) no-repeat center/contain;
  margin: 0 auto 4.85rem auto;
}
footer .social {
  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: 1rem;
  position: absolute;
  top: 1.5rem;
  right: 0;
}
footer .social a {
  display: block;
}
footer .social a svg {
  width: 100%;
}
footer .social a svg path {
  transition: all 0.3s ease;
}
footer .social a:hover svg path {
  stroke: #42ADFF;
}
footer .social a:hover .center {
  fill: #42ADFF;
}
footer .disclaimer {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
}
footer .disclaimer p, footer .disclaimer a {
  font-size: 0.9rem;
  line-height: 1em;
  color: #969696;
}
footer .disclaimer a {
  color: #fff;
  margin-left: 1rem;
  transition: color 0.3s ease;
}
footer .disclaimer a:first-of-type {
  margin-left: 0;
}
footer .disclaimer a:hover {
  color: #42ADFF;
}

#disclaimer .s2 .container-inner {
  padding: 13rem 0 7.5rem 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2509803922);
}
#disclaimer .s2 h2 {
  font-size: 2.3rem;
  margin-bottom: 4rem;
}
#disclaimer .s2 h3 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem 0;
}
#disclaimer .s2 p, #disclaimer .s2 ul, #disclaimer .s2 ol {
  margin-bottom: 1rem;
}
#disclaimer .s2 ol {
  padding-left: 2rem;
}
#disclaimer .s2 ol li {
  margin-bottom: 1rem;
}
#disclaimer .s2 a {
  color: #fff;
  transition: color 0.3s ease;
}
#disclaimer .s2 a:hover {
  color: #42ADFF;
}

/***** 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: 1340px) {
  header .menu_container {
    display: block;
  }
  header nav {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (max-width: 1100px) {
  .inner .s1 .container-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .inner .s1 .container-inner h1 {
    min-width: auto;
  }
  .inner .s1 .container-inner p {
    max-width: none;
  }
  .prefooter h2 {
    text-align: center;
  }
  .prefooter .two-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 2rem;
    gap: 4rem;
  }
  .prefooter .two-col p {
    max-width: none;
  }
  .bg-parallax-parent .bg-parallax {
    height: 100%;
    top: 0;
  }
}
@media screen and (max-width: 1023px) {
  h2 {
    font-size: 3rem;
  }
  p.lg {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  body, html {
    -webkit-text-size-adjust: 100%;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.3rem;
  }
  h3 {
    font-size: 1.8rem;
  }
  h4 {
    font-size: 13px;
  }
  p.lg {
    font-size: 1.5rem;
  }
  .global-cta {
    padding: 22px 25px;
  }
  .global-cta span {
    font-size: 13px;
  }
  .inner .s1 p {
    font-size: 1.25rem;
  }
  .left-icon {
    padding-left: 20px;
    padding-top: 20px;
  }
  .left-icon::before {
    width: 20px;
    height: 20px;
  }
  .secPadding {
    padding: 5rem 0;
  }
  header .logo {
    width: 110px;
    height: 50px;
  }
  header .menu_container #menu_btn {
    width: 35px;
  }
  header .menu_container #menu_btn i {
    width: 35px;
  }
  header.active nav .wrapper {
    padding-top: 100px;
  }
  header.active #menu_btn i:nth-child(1), header.active #menu_btn i:nth-child(3) {
    width: 35px;
  }
  .prefooter .container-inner {
    padding: 5rem 0;
  }
  .prefooter .two-col {
    gap: 3rem;
  }
  footer .logo {
    width: 75px;
    height: 110px;
  }
  footer .social a {
    max-width: 35px;
  }
  footer .disclaimer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  #disclaimer .s2 .container-inner {
    padding: 10rem 0 5rem 0;
  }
  #disclaimer .s2 h2 {
    font-size: 1.7rem;
    margin-bottom: 3rem;
  }
  #disclaimer .s2 h3 {
    font-size: 1.4rem;
  }
}

/*# sourceMappingURL=global.css.map */
