/*! modern-normalize | MIT License | https://github.com/sindresorhus/modern-normalize */
/* Document
   ========================================================================== */
/**
 * Use a better box model (opinionated).
 */
html {
  box-sizing: border-box; }

*,
*::before,
*::after {
  box-sizing: inherit; }

/**
 * Use a more readable tab size (opinionated).
 */
:root {
  tab-size: 4;
  -moz-tab-size: 4; }

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
 */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct height in Firefox.
 */
hr {
  height: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Add the correct text decoration in Chrome, Edge, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp,
pre {
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  /* 2 */
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */ }

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */
legend {
  padding: 0; }

/**
 * Add the correct vertical alignment in Chrome and Firefox.
 */
progress {
  vertical-align: baseline; }

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  outline-offset: -2px;
  /* 2 */
  -webkit-appearance: textfield;
  /* 1 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  font: inherit;
  /* 2 */
  -webkit-appearance: button;
  /* 1 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Chrome and Safari.
 */
summary {
  display: list-item; }

/* 
 * List items
 */
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none; }

/* Heading */
h1, h2, h3, h4, h5, h6, p, label, span {
  margin: 0; }

/* Anchor */
a, .link {
  color: var(--link-color);
  text-decoration: none;
  transition: color 100ms ease-in-out;
  cursor: none;
  /* Hover & Focus */ }
  a:hover, a:focus, .link:hover, .link:focus {
    color: var(--link-hover-color); }

:root {
  --debug: "true";
  --color-text: #ffffff;
  --color-bg: #0D0D11;
  --color-link: #ff0000;
  --link-color: #ffffff;
  --link-hover-color: #ff0000;
  --grid-line-color: #ffffff;
  --grid-container-top-padding: 6vw;
  --nav-width: 40vh;
  --font-family-serif: 'DM Serif Display'; }
  :root.light-mode {
    --color-bg: #ffffff;
    --color-text: #0D0D11;
    --grid-line-color: #0D0D11;
    --link-color: #0D0D11; }

* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent; }

body {
  cursor: none;
  background-color: var(--color-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-text);
  font-family: "Inter", sans-serif; }

/* Grid container */
.grid-container {
  margin-left: auto;
  margin-right: auto;
  min-height: 100vh;
  /* Line */ }
  @media (orientation: portrait) {
    .grid-container {
      padding-top: var(--grid-container-top-padding); } }
  .grid-container__line {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--grid-line-color);
    height: 100vh;
    opacity: 0.2; }
    .grid-container__line--one {
      left: 20vw; }
      @media screen and (max-width: 480px) {
        .grid-container__line--one {
          left: 15vw; } }
      @media screen and (min-height: 940px) {
        .grid-container__line--one {
          left: 25vw; } }
    .grid-container__line--two {
      left: 30vw; }
      @media screen and (max-width: 480px) {
        .grid-container__line--two {
          left: 30vw; } }
      @media screen and (min-height: 940px) {
        .grid-container__line--two {
          left: 33vw; } }
    .grid-container__line--three {
      right: 30vw;
      display: none; }
      @media screen and (max-width: 480px) {
        .grid-container__line--three {
          right: 30vw; } }
      @media screen and (min-height: 940px) {
        .grid-container__line--three {
          right: 33vw; } }
    .grid-container__line--four {
      right: 20vw; }
      @media screen and (max-width: 480px) {
        .grid-container__line--four {
          right: 15vw; } }
      @media screen and (min-height: 940px) {
        .grid-container__line--four {
          right: 25vw; } }
    .grid-container__line--five {
      right: 8vw; }
      @media screen and (min-height: 940px) {
        .grid-container__line--five {
          right: 5.5vw; } }

/* Section layout */
.section-layout {
  padding-left: 20vw;
  padding-right: 20vw; }
  @media screen and (max-width: 480px) {
    .section-layout {
      padding-left: 15vw;
      padding-right: 15vw; } }
  @media screen and (min-height: 940px) {
    .section-layout {
      padding-left: 25vw;
      padding-right: 25vw; } }

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%; }
  @media (orientation: portrait) and (max-width: 768px) {
    .cursor {
      display: none; } }
  .cursor--outer {
    width: 60px;
    height: 60px;
    border: 1px solid var(--color-text);
    z-index: 12000;
    opacity: 0.6;
    left: -30px;
    top: -32px; }
    .cursor--outer.active {
      opacity: 0.5;
      transition: all 50ms ease-out; }
  .cursor--inner {
    width: 5px;
    height: 5px;
    left: -3px;
    top: -5px;
    z-index: 11000;
    background: var(--color-text); }

.lg-green {
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-radius: 12px;
  position: absolute;
  left: -50px;
  bottom: -80px; }

.lg-img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  position: absolute;
  left: -50px;
  bottom: -80px; }

/* Section wrapper */
.section-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1000; }
  @media (orientation: landscape) {
    .section-wrapper {
      min-height: 100vh; } }
  @media (orientation: portrait) {
    .section-wrapper {
      min-height: 50vh; } }

/* Navigation */
.nav {
  position: fixed;
  z-index: 0;
  display: inline-flex;
  padding-top: 60px;
  padding-right: 30px;
  padding-bottom: 60px;
  width: 100vh;
  height: 100vw;
  align-items: flex-end;
  justify-content: flex-end;
  background-color: transparent;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: left top;
  /* Nav list */ }
  @media screen and (max-width: 480px) {
    .nav {
      padding-bottom: 24px; } }
  @media screen and (max-width: 375px) {
    .nav {
      padding-bottom: 18px; } }
  .nav:after {
    position: absolute;
    right: 0;
    bottom: 71px;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background-color: var(--grid-line-color);
    opacity: 0.2; }
    @media screen and (max-width: 480px) {
      .nav:after {
        bottom: 36px; } }
    @media screen and (max-width: 375px) {
      .nav:after {
        bottom: 30px; } }
  .nav__list {
    display: flex;
    list-style: none;
    transform: rotate(180deg);
    background-color: var(--color-bg);
    position: relative;
    z-index: 1000; }
    .nav__list a {
      padding: 15px 30px;
      font-family: var(--font-family-serif);
      font-size: 1vmax; }

/* Logo */
.logo {
  position: fixed;
  top: var(--grid-container-top-padding);
  left: 4vw;
  display: inline-flex;
  z-index: 1000; }

/* Section about */
.section-about {
  position: relative;
  padding-bottom: 4vw;
  /* Subheading */
  /* Number */
  /* Heading */
  /* Stat */
  /* Description */
  /* List items */
  /* Info chip */
  /* Icon list */
  /* Image */ }
  @media screen and (max-width: 480px) {
    .section-about {
      padding-bottom: 10vw; } }
  @media screen and (min-height: 940px) {
    .section-about {
      padding-bottom: 2.5vw; } }
  .section-about__sub-heading {
    padding-top: 5vw;
    padding-left: 10vw;
    margin-bottom: 4vw;
    font-family: var(--font-family-serif);
    font-size: 0.8vmax;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    opacity: 0.5; }
    @media screen and (max-width: 480px) {
      .section-about__sub-heading {
        padding-left: 15vw;
        margin-bottom: 10vw;
        font-size: 1.4vmax; }
        .section-about__sub-heading:first-of-type {
          padding-top: 10vw !important; } }
    @media screen and (min-height: 940px) {
      .section-about__sub-heading {
        padding-top: 5vw;
        padding-left: 8vw;
        margin-bottom: 3vw; } }
  .section-about__number {
    position: absolute;
    padding-top: 1.8vw;
    font-family: var(--font-family-serif);
    font-size: 1vmax;
    font-weight: 600; }
    @media screen and (max-width: 480px) {
      .section-about__number {
        font-size: 1.5vmax; } }
  .section-about__heading {
    display: flex;
    margin-bottom: 4vw;
    flex-direction: column;
    font-family: "Almarai", sans-serif;
    font-size: 13.4vmax;
    font-weight: 900;
    line-height: 0.84;
    transition: opacity 0.3s linear; }
    @media screen and (max-width: 480px) {
      .section-about__heading {
        line-height: 1; } }
    .section-about__heading > div {
      margin-left: -0.95vw;
      text-transform: uppercase; }
      @media (orientation: landscape) {
        .section-about__heading > div {
          letter-spacing: -5px; } }
      @media screen and (min-height: 940px) {
        .section-about__heading > div {
          margin-left: -0.7vw; } }
      .section-about__heading > div:first-of-type, .section-about__heading > div:nth-child(3) {
        padding-left: 10vw; }
        @media screen and (max-width: 480px) {
          .section-about__heading > div:first-of-type, .section-about__heading > div:nth-child(3) {
            padding-left: 15vw; } }
        @media screen and (min-height: 940px) {
          .section-about__heading > div:first-of-type, .section-about__heading > div:nth-child(3) {
            padding-left: 8vw; } }
    @media screen and (max-width: 880px) {
      .section-about__heading {
        font-size: 13vmin; } }
    @media screen and (max-width: 480px) {
      .section-about__heading {
        margin-bottom: 13vw;
        font-size: 14vmin; } }
    @media screen and (max-width: 375px) {
      .section-about__heading {
        margin-bottom: 13vw;
        font-size: 13vmin; } }
    @media screen and (min-height: 940px) {
      .section-about__heading {
        margin-bottom: 5vw;
        font-size: 10vmax; } }
    .section-about__heading .splitting .char {
      transition: transform 0.4s cubic-bezier(0.3, 0, 0.3, 1), opacity 0.4s linear;
      transition-delay: calc(20ms + (30ms * var(--char-index)));
      opacity: 0.1;
      transform: translateX(60px); }
    .section-about__heading.visible .splitting .char {
      opacity: 1;
      transform: translateX(0); }
  .section-about__stat {
    position: absolute;
    display: flex;
    width: 10vw;
    align-items: center;
    flex-direction: column; }
    @media screen and (max-width: 480px) {
      .section-about__stat {
        width: 15vw; } }
    @media screen and (min-height: 940px) {
      .section-about__stat {
        width: 8vw; } }
    .section-about__stat__number {
      font-size: 7vmax;
      font-weight: 800;
      -webkit-text-stroke-width: 1px;
      -webkit-text-stroke-color: white;
      -webkit-text-fill-color: var(--color-bg); }
    .section-about__stat__label {
      font-family: var(--font-family-serif);
      font-size: 0.9vmax; }
  .section-about__description {
    padding-left: 10vw;
    margin: 0;
    width: 44vw;
    font-family: var(--font-family-serif);
    font-size: 1.1vmax;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.1px; }
    @media screen and (max-width: 880px) {
      .section-about__description {
        padding-left: 10vw;
        width: 60vw; } }
    @media screen and (max-width: 480px) {
      .section-about__description {
        padding-left: 15vw; } }
    @media screen and (max-width: 480px) {
      .section-about__description {
        font-size: 1.6vmax; } }
    @media screen and (min-height: 940px) {
      .section-about__description {
        padding-left: 8vw;
        font-size: 1vmax;
        line-height: 1.8; } }
    .section-about__description--right {
      padding-left: 25vw;
      width: 60vw;
      text-align: right; }
      @media screen and (max-width: 480px) {
        .section-about__description--right {
          width: 70vw; } }
      @media screen and (min-height: 940px) {
        .section-about__description--right {
          padding-left: 15vw;
          width: 50vw; } }
  .section-about__list {
    padding-top: 4vw;
    padding-left: calc(10vw + 36px);
    font-family: var(--font-family-serif);
    font-size: 1.2vmax;
    line-height: 1.9;
    letter-spacing: 0.1px;
    list-style: disc; }
    @media screen and (max-width: 480px) {
      .section-about__list {
        font-size: 1.8vmax; } }
    @media screen and (min-height: 940px) {
      .section-about__list {
        padding-top: 4vw;
        padding-left: calc(8vw + 36px);
        font-size: 1vmax;
        line-height: 1.8; } }
    .section-about__list span {
      position: relative;
      top: -3px;
      display: inline-flex;
      padding-top: 2px;
      padding-right: 16px;
      padding-bottom: 2px;
      padding-left: 16px;
      margin-left: 16px;
      font-size: 0.6vmax;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 20px; }
      @media screen and (max-width: 480px) {
        .section-about__list span {
          display: none; } }
  .section-about__info-chip {
    display: flex;
    padding-left: 17vw;
    margin-bottom: 6vw;
    flex-direction: column; }
    @media screen and (max-width: 480px) {
      .section-about__info-chip {
        padding-left: 15vw;
        margin-bottom: 10vw; } }
    @media screen and (min-height: 940px) {
      .section-about__info-chip {
        padding-left: 14vw;
        margin-bottom: 4vw; } }
    .section-about__info-chip__label {
      margin-bottom: 1vw;
      font-family: var(--font-family-serif);
      font-size: 0.9vmax;
      font-weight: 300;
      text-transform: uppercase;
      opacity: 0.7; }
      @media screen and (max-width: 480px) {
        .section-about__info-chip__label {
          margin-bottom: 8px !important;
          font-size: 1.4vmax; } }
      @media screen and (min-height: 940px) {
        .section-about__info-chip__label {
          font-size: 1vmax; } }
    .section-about__info-chip__value {
      font-size: 2.2vmax;
      font-weight: 500; }
      @media screen and (min-height: 940px) {
        .section-about__info-chip__value {
          font-size: 1.8vmax; } }
  .section-about__icon-list {
    display: flex;
    align-items: center; }
    .section-about__icon-list li:not(:last-of-type) {
      margin-right: 2vw; }
    @media screen and (max-width: 480px) {
      .section-about__icon-list li svg {
        width: 28px !important;
        height: 28px !important; }
      .section-about__icon-list li:not(:last-of-type) {
        margin-right: 4vw; } }
    @media screen and (min-height: 940px) {
      .section-about__icon-list li svg {
        width: 30px !important;
        height: 30px !important; }
      .section-about__icon-list li:not(:last-of-type) {
        margin-right: 1.6vw; } }
  .section-about__image {
    position: absolute;
    top: 0;
    right: -8vw;
    z-index: -1;
    opacity: 0.8; }
    .section-about__image img {
      width: auto;
      height: 25vw;
      object-fit: cover; }
    .section-about__image--left {
      right: unset;
      left: -8vw; }

