
:root {
  --primary-font-color: #fff;
  --initial-header-height: 150px;
  --scroll-indicator-portrait-container-width: 20vw;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Avenir-Light';
  src: url('/assets/Avenir-Light.woff2') format('woff2'),
       url('/assets/Avenir-Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir-Black';
  src: url('/assets/Avenir-Heavy.woff2') format('woff2'),
       url('/assets/Avenir-Heavy.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* Responsiveness Structure */
/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}


html, body {
  font-family: 'Avenir', sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  overscroll-behavior: contain;
  overflow: hidden;
}

.loading-screen {
  position: relative; /* Positioned relative to its nearest positioned ancestor */
  width: 100vw;
  height: 100dvh;
  left: 0;
  top: 0;
  background: #222222;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.centered-box {
  width: 150px; /* Adjust width as needed */
  height: 240px; /* Adjust height as needed */
  background-color: transparent;
  z-index: 10;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.loading-screen > .centered-box > img {
  height: 60px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.loading-screen > .centered-box > .loading-status-indicator {
  position: relative; /* Position relative to the .loading-screen */
  margin-right: calc(147px / 2 );
  margin-left: calc(147px / 2 );
  width: 3px;
  border-radius: 1.5px;
  height: 240px;
  background: rgba(255, 255, 255, 0.4);
  flex-grow: 0;
  flex-shrink: 0;
}

.loading-screen > .centered-box > .loading-status-indicator > .load-indicator-bar {
  background: red;
  height: 1%;
  width: 100%;
  position: relative;
  border-radius: 1.5px;
}


.load-data-display-container {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}


header {
  position: fixed;
  height: var(--initial-header-height);
  width: 100%;
  z-index: 7;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 1;
}

#header-logo {
  opacity: 0;
}

#header-tagline {
  opacity: 0;
}

.container {
  position: relative;
  display: flex;
  max-width: 1100px;
  height: 100%;
  margin-left: calc((100vw - 1100px) / 2);
  margin-right: calc((100vw - 1100px) / 2);
  overflow: hidden;
}



.scroll-indicator-container {
  height: 100%;
  width: 40px;
  position: fixed;
  top: 0vh;
  left: calc(100vw - ((100vw - 1100px) / 2));
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 575.98px) {
  header {
    /* height: 100px; */
    z-index: 10;
  }

  .scroll-indicator-container {
    width: calc(var(--scroll-indicator-portrait-container-width) - 20px) !important;
    left: calc(100vw - var(--scroll-indicator-portrait-container-width)) !important;
  }
}

.scroll-indicator {
  width: 3px;
  border-radius: 1.5px;
  overflow: hidden;
  height: calc(100vh / 6);
  background: rgba(255, 255, 255, 0.4);
  position: relative;
}

.scroll-indicator-bar {
  width: 100%;
  border-radius: 1.5px;
  height: 0%;
  background: #45FFB2;
}


@media (max-width: 1200px) {
  .container {
    left: 0px;
    margin-left: 40px;
    margin-right: 40px;
  }

  .scroll-indicator-container {
    width: 40px;
    left: calc(100vw - 40px);
  }
}

@media (max-width: 1024px) {
  .container {
    margin-left: 30px;
    margin-right: 30px;
    left: 0px;
  }
  .scroll-indicator-container {
    width: 30px;
    left: calc(100vw - 30px);
  }
}

@media (max-width: 768px) {
  .container {
    margin-left: 30px;
    margin-right: 30px;
    left: 0px;
  }

  .scroll-indicator-container {
    width: 30px;
    left: calc(100vw - 30px);
  }
}

@media (max-width: 575.98px) {
  .container {
    margin-left: 20px;
    margin-right: 20px;
    left: 0px;
  }

  .scroll-indicator-container {
    width: 20px;
    left: calc(100vw - 20px);
  }
}

.header-inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  align-self: end;
  align-items: center;
  z-index: 10;
}

.header-inner > .left-side > svg,
.header-inner > .left-side > img {
  height: 54px;
  width: auto;
}

@media (max-width: 575.98px) {
  .header-inner > .left-side > img {
    display: none;
  }

  .header-inner > .left-side > svg {
    height: 40px;
  }

  .header-inner > .right-side > h2 {
    font-size: 1rem !important;
  }
}

.header-inner > .right-side > h2 {
  text-transform: capitalize;
  color: white;
  font-family: 'Avenir-Light', sans-serif;
  letter-spacing: 0.2rem;
  font-weight: 200;
  margin: 0px;
  font-size: 14px;
}

.header-inner > .right-side > h2 > span {
  color: #45FFB6;
  font-weight: 600;
}


.top-section {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}

.top-section > video {
  width: 100%;
  height: 100vh;
  object-fit: cover; /* Ensure the video covers the entire area */
}

.top-section > .video-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65)
}

.top-section > .video-overlay > .container.top-section-inner {
  /** margin-top: var(--initial-header-height); **/
  /** height: calc(100vh - var(--initial-header-height));**/
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.top-section > .video-overlay > .scroll-chevron-container {
  height: 120px;
  width: 100vw;
  position: fixed;
  left: 0px;
  top: calc(100% - 120px);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items:center;
}

.top-section > .video-overlay > .scroll-chevron-container > svg {
  position: absolute;
  animation: blobAnimation 4s infinite;
}

.top-section > .video-overlay > .scroll-chevron-container > div {
  width: 100%;
  height: calc(100% - 64px);
  position: relative;
  display:flex;
  flex-direction: row;
  justify-content: center;
}

.top-section > .video-overlay > .scroll-chevron-container > div > span {
  color: var(--primary-font-color);
  font-family: 'Avenir-Light', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
}

@keyframes blobAnimation {
  0%, 100% {
      top: calc(85% - 64px);
  }
  50% {
      top: calc(100% - 64px);
  }
}

.landing-logo-container {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.landing-logo-container > .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
}

.landing-logo-container > .logo > svg {
  width: 70%;
}

.landing-logo-container > .logo > img {
  width: 75%;
}


.landing-logo-container > .logo > h2 {
  text-transform: capitalize;
  color: white;
  font-family: 'Avenir-Light', sans-serif;
  letter-spacing: 0.2rem;
  font-weight: 500;
  margin: 0px;
  font-size: 1.25rem;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 575.98px) {
  .landing-logo-container > .logo {
    width: 150px;
  }

  .landing-logo-container > .logo > h2 {
    font-size: 1rem;
  }
}

.landing-logo-container > .logo > h2 > span {
  color: #45FFB6;
  font-weight: 600;
}


.top-section > .video-overlay > .top-section-inner > .top-section-text {
  position: relative;
  width: 50%;
  opacity: 0;
}

@media (max-width: 575.98px) {
  .top-section > .video-overlay > .top-section-inner > .top-section-text {
    width: calc(calc(100vw - var(--scroll-indicator-portrait-container-width)) - 20px);
  }
}

.top-section > .video-overlay > .top-section-inner > .top-section-text > h3 {
  color: var(--primary-font-color);
  font-family: 'Avenir-Light', sans-serif;
  font-size: 2rem;
  text-transform: capitalize;
  margin-bottom: 2rem;
  line-height: 1.2;
  font-weight: 100;
}

.top-section > .video-overlay > .top-section-inner > .top-section-text > h3 > span {
  font-size: 1rem;
  font-family: 'Avenir-Heavy', sans-serif;
  font-weight: bold;
}

.top-section > .video-overlay > .top-section-inner > .top-section-text > p {
  color: white;
  font-family: 'Avenir-Light', sans-serif;
  line-height: 1.9
}

.showreel-section {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 100vh;
  background: #000;
  z-index: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 4;
  overflow: hidden;
}

.showreel-section-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.showreel-section-inner-overlay {
  position: absolute;
  background: rgba(0,0,0,0);
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.showreel-section-inner-overlay > button {
  width: 100%;
  height: 100%;
  padding: 0px;
  background: rgba(0,0,0,0.3);
  outline: none;
  border: 1px solid transparent;
  color: var(--primary-font-color);
  transition: 1s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.showreel-section-inner-overlay > button > svg {
  width: 50px;
  height: 50px;
}

.showreel-section-inner-overlay > button:hover {
  cursor: pointer;
}

.video-background-section {
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  left: 0%;
  overflow: hidden;
  z-index: 3;
}

.video-wrapper {
  z-index: -999;
  width: 1000%;
  height: 100%;
  background-color: #000;
  position: absolute;
}

.video-embed {
  width: 100%;
  height: 130%;
  opacity: .75;
  position: absolute;
  top: -15%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.bottom-section {
  position: fixed;
  height: 100dvh;
  width: 100vw;
  top: 100vh;
  background: #222222;
  z-index: 6;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
}

.bottom-section::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for all browsers */
.bottom-section {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

.bottom-section-inner {
  position: relative;
}

.bottom-section-container {
  display: flex;
  flex-direction: column !important;
}

@media (max-width: 575.98px) {
  .bottom-section-container {
    width: calc(75vw - 20px);

  }
}

/** ABOUT SECTION **/
.about {
  margin-top: 150px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.about-inner {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.about-inner > p {
  padding-right: 100px;
}

.about-inner > h2,
.about-inner > h3,
.about-inner > p {
  color: var(--primary-font-color);
}

@media (max-width: 575.98px) {
  .about-inner {
    position: relative;
    width: 100%;
  }
  .about-inner > h2 {
    font-size: 1rem !important;
    width: 100% !important;
    line-height: 1.5rem;
  }

  .about-inner > h3 {
    font-size: 1.5rem !important;
    margin-bottom: 2rem !important;
  }

  .about-inner > p {
    padding-right: 50px;
  }
}

.about-inner > h2,
.about-inner > h3 {
  text-transform: capitalize;
}

.about-inner > h2 {
  font-family: 'Avenir-Heavy', sans-serif;
  font-size: 1.2rem;
  margin: 0px;
  margin-bottom: 1.1rem;
  font-weight: bold;
}

.about-inner > h3 {
  font-family: 'Avenir-Light', sans-serif;
  font-size: 2.5rem;
  margin: 0px;
  margin-bottom: 3rem;
  font-weight: normal;
}



.about-inner > p {
  font-family: 'Avenir-Light', sans-serif;
  font-size: 1rem;
  font-weight: normal;
}


/** QUOTES SECTION **/
.quotes {
  margin-top: 160px;
  margin-bottom: 160px;
  height: auto;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.quotes-inner {
  display: flex;
  flex-direction: row;
  overflow: visible;
  width: 100%;
  position: relative;
}

.quotes-left-line {
  width: 3px;
  background: white;
  border-radius: 1.5px;
  height: 100%;
  position: relative;
  margin-right: 25px;
}

@media (max-width: 575.98px) {
  .quotes {
    margin-top: 50px;
    flex-direction: column !important;
    margin-bottom: 100px;
  }

  .quotes > h2 {
    font-size: 1rem !important;
  }

  .quotes-inner {
    flex-direction: column;
  }

  .quotes > .quotes-inner > .left,
  .quotes > .quotes-inner > .right {
    width: 100% !important;
    padding-right: 50px !important;
    margin-bottom: 48px;
  }
}

.quotes > h2 {
  color: var(--primary-font-color);
  font-family: 'Avenir-Heavy', sans-serif;
  font-size: 1.2rem;
  margin: 0px;
  margin-bottom: 24px;
}

.quotes > .quotes-inner > .left,
.quotes > .quotes-inner > .right {
  position: relative;
  width: 50%;
  flex-shrink: 0 !important;
  padding-right: 100px;
  display: flex;
  flex-direction: row;
  align-items: start;
}

.left-inner, .right-inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
}


.quotes > .quotes-inner > .left > .left-inner > p,
.quotes > .quotes-inner > .right > .right-inner > p {
  color: var(--primary-font-color);
  font-family: 'Avenir-Light', sans-serif;
  font-size: 1rem;
  font-weight: normal;
  margin: 0px;
  margin-top: -3px;
}

.quote-source {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: start;
}

.quote-source > p {
  color: var(--primary-font-color);
  font-family: 'Avenir-Light', sans-serif;
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: -5px;
}

.quote-source > svg {
  height: 1.1rem;
  margin-right: 10px;
}



/** TEAM SECTION **/
.team {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.team > h2 {
  color: var(--primary-font-color);
  font-family: 'Avenir-Heavy', sans-serif;
  font-size: 1.2rem;
  margin: 0px;
  margin-bottom: 24px;
}

@media (max-width: 575.98px) {
  .team > h2 {
    font-size: 1rem !important;
    margin-bottom: 20px;
  }
  .team-members {
    grid-template-columns: 1fr !important;
  }
}


.team-members {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 48px;
}

.team-member {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.team-member-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #808080;
  margin-right: 10px;
  flex-shrink: 0;
  overflow: hidden;
}

.team-member-avatar > img {
  position: relative;
  width: 100%;
  height: 100%;
}

.team-member-inner-text {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  align-items: space-between;
  padding: 0 0;
}

.team-member-inner-text > span {
  font-family: 'Avenir-Light', sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: var(--primary-font-color);
}

.team-member-inner-text > span > a {
  color: white;
  text-decoration: none;
}

.team-member-inner-text > span:first-of-type {
  font-weight: 600;
}


.team-member-inner-text > span:last-of-type {
  font-family: 'Avenir-Light', sans-serif;
  font-weight: 300;
}

footer {
  background: #111111;
  min-height: 100px;
  width: 100vw;
  position: relative;
  left: 0vw;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

footer > .container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

footer > .container > .left-side {
  height: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media (max-width: 575.98px) {
  footer > .container > .left-side {
    height: 24px;
  }
}

footer > .container > .left-side > svg {
  height: 100%;
  margin-right: 10px;
}

footer > .container > .left-side > p {
  color: var(--primary-font-color);
  font-size: 12px;
  font-family: 'Avenir-Light', sans-serif;
}

footer > .container > .right-side {
}

footer > .container > .right-side > span {
  color: var(--primary-font-color);
  font-size: 12px;
  font-family: 'Avenir-Light', sans-serif;
  color: #999999;
}