@import url("https://use.typekit.net/ium3yxi.css");
html {
  font-size: 62.5%;
  /* 16px * 0.625 = 10px;*/
}

body {
  font-size: 14px;
  margin: 0;
  overflow-x: hidden;
  background-color: #090909;
  scroll-behavior: smooth;
  /* background-color: $yellow; */
  padding-top: 85px;
}

a[href^="tel"],
a[href^="mailto"] {
  -webkit-tap-highlight-color: transparent;
}

.helvetica-24 {
  font-weight: 700;
  font-size: 2.4rem;
}

.helvetica-20 {
  font-weight: 300;
  font-size: 2rem;
}

.helvetica-18 {
  font-weight: 300;
  font-size: 1.8rem;
}

.helvetica-16 {
  font-weight: 300;
  font-size: 1.6rem;
}

.helvetica-14 {
  font-weight: 300;
  font-size: 1.4rem;
}

.dulcinea-80 {
  font-weight: 400;
  font-size: 8rem;
  vertical-align: middle;
}

.dulcinea-64 {
  font-weight: 400;
  font-size: 6.4rem;
  vertical-align: middle;
}

.dulcinea-48 {
  font-weight: 400;
  font-size: 4.8rem;
  vertical-align: middle;
}

.dulcinea-32 {
  font-weight: 400;
  font-size: 3.2rem;
  vertical-align: middle;
}

.dulcinea-24 {
  font-weight: 400;
  font-size: 2.4rem;
  vertical-align: middle;
}

.dulcinea-18 {
  font-weight: 400;
  font-size: 1.8rem;
  vertical-align: middle;
}

.dharma-80 {
  font-weight: 700;
  font-size: 8rem;
}

.dharma-64 {
  font-weight: 700;
  font-size: 6.4rem;
}

.dharma-48 {
  font-weight: 700;
  font-size: 4.8rem;
}

.dharma-40 {
  font-weight: 700;
  font-size: 4rem;
}

.dharma-32 {
  font-weight: 700;
  font-size: 3.2rem;
}

.dharma-24 {
  font-weight: 700;
  font-size: 2.4rem;
}

.dharma-20 {
  font-weight: 700;
  font-size: 2rem;
}

h2 {
  margin-bottom: 0;
}

.lh-80 {
  line-height: 80%;
}

.lh-90 {
  line-height: 91%;
}

.lh-91 {
  line-height: 91%;
}

.lh-96 {
  line-height: 96%;
}

.lh-110 {
  line-height: 110%;
}

.lh-112 {
  line-height: 112%;
}

.pl-5vw {
  padding-left: 5vw;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.primary-bg {
  background-color: #090909;
}

.primary-color {
  color: #090909;
}

.secondary-color {
  color: #ffd700;
}

.secondary-bg {
  background-color: #ffd700;
}

.color-white {
  color: #fff;
}

.fw-400 {
  font-weight: 400 !important;
}

.atf {
  min-height: 90vh !important;
}

.atf canvas#defaultCanvas0 {
  height: calc(100vh - 80px) !important;
}

@media (max-width: 767px) {
  .atf canvas#defaultCanvas0 {
    min-height: calc(100vh - 63px);
  }
}

.t-button {
  background-color: transparent;
  border: 1px solid #ffd700;
  padding: 5px 12px;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 20px;
  display: inline-block;
}

.t-button:hover {
  background-color: #ffd700;
  color: #090909 !important;
}

/* Mobile gate (black background, yellow outline button) */
.gate {
  position: fixed;
  inset: 0;
  /* no reserved space for navbar */
  background: #090909;
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: 9999;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}

.gate.hidden {
  display: none;
}

.gate.fade {
  opacity: 0;
  pointer-events: none;
}

.gate-btn {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 999px;
  padding: 14px 28px;
  font: 700 16px/1.1 dharma-gothic-e, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.05s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.05s ease;
  transition: transform 0.05s ease, opacity 0.2s ease;
  transition: transform 0.05s ease, opacity 0.2s ease, -webkit-transform 0.05s ease;
}

.gate-btn:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.gate-btn:focus-visible {
  outline: 2px dashed #ffd700;
  outline-offset: 4px;
}

/* generic */
.hidden {
  display: none;
}

/* base hint style */
.hint {
  position: fixed;
  z-index: 9000;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#arrowHint {
  position: absolute;
  margin: auto;
  bottom: 15px;
  left: 50% !important;
  right: 50% !important;
  cursor: pointer;
  pointer-events: all !important;
  width: 35px;
}

#arrowHint img {
  width: 30px;
}

/* visible/fade states */
.hint.hint--visible {
  opacity: 0.95;
}

.hint.fade {
  opacity: 0;
}

/* mobile hint (bottom-centered, modest size) */
#mobileHint {
  left: 50%;
  bottom: 2%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 64px;
  height: auto;
}

/* desktop hint (bottom-centered, larger icon) */
#desktopHint {
  bottom: 2%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 72px;
  height: auto;
}

/* arrow hint (centered near bottom) */
#arrowHint {
  left: 50%;
  bottom: 3%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 36px;
  height: auto;
}

@media (max-width: 768px) {
  body {
    padding-top: 65px;
  }
  .view-home-work {
    margin-top: 40px !important;
  }
  .gridLayer {
    margin-top: 40px;
  }
}

@media (min-width: 1349px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

@media (min-width: 769px) {
  #mobileGate {
    display: none;
  }
}

.navbar {
  padding: 16px 40px;
  background-color: #090909;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  -webkit-transition: top 0.4s ease-in-out;
  transition: top 0.4s ease-in-out;
}

.navbar .container-fluid {
  padding: 0;
}

.navbar .container-fluid .nav-logo {
  width: 48px;
}

.navbar .container-fluid ul li a {
  color: #ffd700;
  margin: 0px 30px;
  padding-left: 10px;
  padding-right: 10px;
  text-transform: uppercase;
}

.navbar .container-fluid ul li a.active {
  color: #fff;
}

.navbar .container-fluid ul li a:hover {
  color: #fff;
}

.navbar .container-fluid .navbar-toggler-icon,
.navbar .container-fluid .navbar-toggler.close-icon .navbar-toggler-icon {
  width: 30px;
  height: 30px;
  background-size: cover;
}

.navbar .container-fluid .navbar-toggler .navbar-toggler-icon {
  background-image: url("../images/menu.svg");
}

.navbar .container-fluid .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("../images/close.svg");
}

@media (max-width: 768px) {
  .navbar {
    /* --- NAVBAR TOGGLER BUTTON --- */
    padding: 8px 20px;
    /* --- MENU ICON SWAP --- */
    /* --- REMOVE BOOTSTRAP'S COLLAPSE DELAY --- */
    /* --- BASE NAV STYLES (HIDDEN STATE) --- */
    /* --- OPEN STATE (SHOW + COLLAPSING) --- */
  }
  .navbar button.navbar-toggler {
    position: relative;
    z-index: 9999;
    border: 0;
  }
  .navbar .navbar-toggler:focus {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  .navbar .navbar-toggler .navbar-toggler-icon {
    background-image: url("../images/menu.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
  }
  .navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("../images/close.svg");
  }
  .navbar .navbar-collapse.collapsing {
    height: 100vh !important;
  }
  .navbar .nav-logo {
    width: 40px !important;
  }
  .navbar .navbar-collapse {
    background-color: #ffd700;
    position: absolute;
    width: 100%;
    left: 0;
    height: 100vh;
    top: 0;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
    z-index: 8;
  }
  .navbar .navbar-collapse ul {
    margin-left: 0 !important;
    width: 100%;
  }
  .navbar .navbar-collapse ul li {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  .navbar .navbar-collapse ul li a {
    font-size: 150px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0;
    margin-left: 0;
    line-height: 105%;
    color: #090909;
    padding: 0;
    position: relative;
    display: block;
    padding-bottom: 0px;
  }
  .navbar .navbar-collapse ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 10px;
    background-color: #090909;
  }
  .navbar .navbar-collapse ul li a.active {
    color: #fff !important;
  }
  .navbar .navbar-collapse ul li a.active::after {
    background-color: #fff;
  }
  .navbar .navbar-collapse.show,
  .navbar .navbar-collapse.collapsing {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
  }
}

.now-showing {
  background-color: #090909;
  padding: 80px 0px;
}

.now-showing a {
  text-decoration: none !important;
}

.now-showing h1 {
  color: #ffd700;
}

.now-showing .proj-p-blk {
  background-color: #090909;
  padding: 12rem 0;
}

.now-showing .proj-p-blk h2 {
  color: #fff;
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  line-height: 96%;
}

.now-showing .proj-p-blk h3 {
  color: #ffd700;
  line-height: 114%;
  text-transform: uppercase;
}

.now-showing .proj-p-blk h3 span {
  margin-right: 6px;
  text-transform: lowercase !important;
}

.now-showing .proj-s-blk {
  background-color: #ffd700;
  padding: 12rem 0;
}

.now-showing .proj-s-blk h2 {
  color: #090909 !important;
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  line-height: 96%;
}

.now-showing .proj-s-blk h3 {
  color: #090909 !important;
  text-transform: uppercase;
  line-height: 114%;
}

.now-showing .proj-s-blk h3 span {
  margin-right: 6px;
  text-transform: lowercase !important;
}

.now-showing .project-blk-f-width {
  padding: 6vw 5vw;
}

@media (max-width: 768px) {
  .now-showing {
    padding-bottom: 64px;
  }
  .now-showing .container {
    padding: 0;
    margin: 0;
  }
  .now-showing .mob-r-content {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    display: -ms-grid;
    display: grid;
  }
  .now-showing h1 {
    font-size: 48px;
    line-height: 96%;
    padding-left: 20px;
  }
  .now-showing .proj-p-blk {
    padding: 4.8rem 0px;
  }
  .now-showing .showing-txt h2 {
    font-size: 32px;
    line-height: 112%;
  }
  .now-showing .showing-txt h3 {
    color: #ffd700;
    font-size: 18px !important;
    font-weight: 300;
  }
  .now-showing .showing-txt h3 span {
    font-size: 18px;
    font-weight: 400;
    margin-right: 6px;
  }
  .now-showing .txt-l-content {
    padding-left: 20px;
    margin-left: auto;
  }
  .now-showing .txt-r-content {
    padding-left: 0px;
  }
  .now-showing .proj-s-blk {
    padding: 4.8rem 0px;
  }
  .now-showing .showing-txt h2 {
    font-size: 32px;
    line-height: 112%;
  }
  .now-showing .showing-txt h3 {
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
  }
  .now-showing .showing-txt h3 span {
    font-size: 18px;
    line-height: 114%;
    text-transform: lowercase;
  }
}

.skew-button {
  display: inline-block;
  padding: 5px 18px;
  color: #090909;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-align: center;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  text-decoration: none;
  position: relative;
  background-color: transparent;
}

.skew-button:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 35px;
  background-color: #ffd700;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.skew-button:hover {
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.skew-button:hover:after {
  display: inline-block;
  -webkit-transform: skew(-20deg);
          transform: skew(-20deg);
  /* reverse skew for text */
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.view-all-work-btn {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  background-color: #090909;
}

.view-all-btn {
  margin-top: 0px !important;
  padding: 10px;
  text-decoration: none;
  position: relative;
  top: 25px;
  margin-bottom: 47px;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.view-all-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #ffd700;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: -1;
}

.view-all-btn:hover::before {
  -webkit-transform: skew(-20deg);
          transform: skew(-20deg);
}

.clients-blk {
  min-height: 100vh;
  overflow: hidden;
}

.clients-blk .our-clients h2 {
  color: #ffd700;
}

.clients-blk .our-clients h2 span {
  margin-left: -100px;
  position: relative;
  bottom: -15px;
}

.clients-blk .our-clients .carousel-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 0px 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

@media (min-width: 769px) {
  .clients-blk .our-clients .carousel-section .carousel {
    min-height: 550px;
  }
}

.clients-blk .our-clients .carousel-section .carousel-inner {
  position: relative;
}

.clients-blk .our-clients .carousel-section .carousel-item {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.clients-blk .our-clients .carousel-section .carousel-control-next {
  right: -50px;
  width: 50px;
  height: 50px;
  margin: auto;
  opacity: 1;
}

.clients-blk .our-clients .carousel-section .carousel-control-prev {
  left: -50px;
  width: 50px;
  height: 50px;
  margin: auto;
  opacity: 1;
}

.clients-blk .our-clients .carousel-section .carousel-control-next-icon {
  background-image: url("../images/right-arrow.svg");
  width: 40px;
  height: 40px;
}

.clients-blk .our-clients .carousel-section .carousel-control-prev-icon {
  background-image: url("../images/left-arrow.svg");
  width: 40px;
  height: 40px;
}

.clients-blk .our-clients .carousel-section .know-more-btn {
  position: absolute;
  bottom: -100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-decoration: none;
  color: #fff;
}

.clients-blk .our-clients .logo-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  padding: 20px 0;
}

.clients-blk .our-clients .logo-slide li {
  list-style: none;
}

.clients-blk .our-clients .logo-slide img {
  width: 148px;
  margin: 11px;
  -o-object-fit: contain;
     object-fit: contain;
}

.clients-blk .our-clients .modal-fullscreen .modal-content {
  height: 100vh;
  padding: 0;
  border: none;
  overflow: hidden;
}

.clients-blk .our-clients .modal-fullscreen .modal-close-btn {
  position: absolute;
  top: 23px;
  right: 20px;
  z-index: 10;
  padding: 0;
  border-radius: 0;
  border: 0;
  background-color: #090909;
}

.clients-blk .our-clients .modal-fullscreen .modal-close-btn img {
  width: 32px;
}

.clients-blk .our-clients .scrolling-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.clients-blk .our-clients .scrolling-wrapper .scroll-item {
  min-width: 100vw;
  height: 100vh;
  display: -webkit-box;
  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;
  font-size: 2rem;
  border-right: 1px solid #ccc;
}

@media (max-width: 767px) {
  .clients-blk {
    /* Modal scroll area */
    /* 3 logos per row */
  }
  .clients-blk .our-clients h2 {
    font-size: 64px;
    line-height: 88%;
  }
  .clients-blk .our-clients h2 span {
    font-size: 64px;
    line-height: 112%;
    bottom: -10px;
  }
  .clients-blk .container {
    padding: 0;
  }
  .clients-blk .carousel-section {
    margin: 0 !important;
    display: block !important;
  }
  .clients-blk .scrolling-wrapper {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100vh;
    padding: 0px;
    width: auto !important;
    background-color: #090909;
  }
  .clients-blk .logo-slide {
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    min-height: auto;
    gap: 0px;
    height: auto !important;
  }
  .clients-blk .logo-slide img {
    width: 120px;
    margin: 9px;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .clients-blk .logo-slide li {
    list-style: none;
    margin: 8px !important;
  }
  .clients-blk .logo-slide li img {
    margin: 0 !important;
  }
  .clients-blk .logo-slide li:nth-child(3n + 1) {
    margin-left: 0 !important;
  }
  .clients-blk .logo-slide li:nth-child(3n) {
    margin-right: 0 !important;
  }
  .clients-blk .logo-slide img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

.our-sauce {
  padding: 20px 0px;
  margin-top: 0px !important;
  position: relative;
  z-index: 99;
  position: absolute;
  top: 0;
  width: 100%;
}

@media (max-width: 769px) {
  .our-sauce {
    top: 50px;
  }
}

.our-sauce .sauce-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.our-sauce .sauce-head h2 {
  color: #090909;
  line-height: 96%;
  font-size: 6rem !important;
}

@media (max-width: 768px) {
  .our-sauce {
    padding: 20px 0px;
    margin-top: 0px;
  }
  .our-sauce .sauce-head {
    gap: 10px;
  }
  .our-sauce .sauce-head h2 {
    position: relative;
    font-size: 44px !important;
    line-height: 88%;
  }
  .our-sauce .sauce-head h2 span {
    font-size: 44px;
    line-height: 112%;
  }
}

.for-enquiries {
  position: relative;
  background-color: #090909;
}

.for-enquiries .divider-slash {
  position: absolute;
  top: 0;
  left: 65%;
  width: 1px;
  height: 100%;
  border-left: 1px solid #fff;
  padding: 0px;
  -webkit-transform: rotate(-165deg);
          transform: rotate(-165deg);
}

.for-enquiries h6 {
  margin-bottom: 16px;
}

.for-enquiries a {
  text-decoration: none;
  color: #fff;
}

.for-enquiries a.tk-helvetica-lt-pro.helvetica-20 {
  text-decoration: underline;
}

.for-enquiries p {
  line-height: 112%;
  text-decoration: none !important;
}

.for-enquiries h2 {
  text-transform: uppercase;
}

.for-enquiries h2 span {
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .for-enquiries {
    padding: 0px 13px;
  }
  .for-enquiries h2 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 64px;
    line-height: 88%;
    display: -ms-grid;
    display: grid;
  }
  .for-enquiries h2 span {
    font-size: 50px;
    line-height: 112%;
    position: relative;
    left: -65px;
  }
  .for-enquiries h6 {
    font-size: 18px;
    font-weight: 300;
    line-height: 112%;
    margin-bottom: 8px;
  }
  .for-enquiries .col-md-6 {
    position: relative;
    padding-bottom: 7rem;
  }
  .for-enquiries .col-md-6:after {
    position: absolute;
    left: 10px;
    width: calc(100% - 20px);
    height: 1px;
    border-left: 1px solid #fff;
    padding: 0px;
    -webkit-transform: rotate(-165deg);
    transform: rotate(-5deg);
    content: "";
    right: 0;
    background-color: #fff;
    bottom: 50px;
  }
  .for-enquiries .col-md-6:last-child::after {
    display: none;
  }
  .for-enquiries #pitchModal h5 {
    font-size: 32px;
    line-height: 112%;
  }
  .for-enquiries #pitchModal .modal-header h5 {
    line-height: 88%;
  }
  .for-enquiries #pitchModal .modal-content {
    padding: 100px 40px !important;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .for-enquiries #pitchModal .btn-close-pitch {
    top: 70px !important;
    border: 0;
    left: 50%;
    right: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .for-enquiries #pitchModal .row-mar {
    margin: 0 !important;
  }
  .for-enquiries #pitchModal p {
    font-size: 20px;
    line-height: 96%;
    margin-bottom: 20px;
    margin-left: 0 !important;
    text-align: center !important;
    font-weight: 400 !important;
    color: #fff;
  }
  .for-enquiries #pitchModal p.secondary-color {
    color: #ffd700 !important;
    line-height: 114% !important;
    margin-bottom: 8px !important;
  }
  .for-enquiries #pitchModal p.fst-italic {
    font-size: 32px;
    line-height: 114%;
    margin-bottom: 12px;
  }
  .for-enquiries #pitchModal .modal-foot p {
    font-size: 16px;
    line-height: 110%;
  }
}

.for-enquiries #pitchModal .modal-dialog,
.for-enquiries #pitchModal .modal-content {
  margin: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.for-enquiries #pitchModal .modal-header h5 {
  line-height: 88%;
}

.for-enquiries #pitchModal .btn-close-pitch {
  position: absolute;
  right: 40px;
  top: 40px;
  background-color: transparent;
  border: 0;
}

.for-enquiries #pitchModal .row-mar {
  margin-bottom: 50px;
}

.for-enquiries #pitchModal .pitch-cont {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.for-enquiries #pitchModal .pitch-cont .dharma-32 {
  width: 275px;
}

.for-enquiries #pitchModal .modal-content {
  padding: 25px 160px;
  border: 0px !important;
}

.for-enquiries #pitchModal p.dharma-32 {
  color: #fff;
}

.for-enquiries #pitchModal .modal-foot a {
  text-decoration: none !important;
}

.for-enquiries #pitchModal .modal-foot p {
  color: #fff;
}

.for-enquiries #pitchModal .pitch-policy a {
  text-decoration: none !important;
}

.for-enquiries #pitchModal .pitch-policy .col-lg-4 p {
  text-align: left;
  line-height: 112%;
}

.for-enquiries #pitchModal .pitch-policy .col-lg-4 p:last-child {
  margin-left: 45px;
}

.footer-wrapper {
  display: -ms-grid;
  display: grid;
  background-color: #090909;
  color: #fff;
  font-family: sans-serif;
}

.footer-wrapper .footer-top {
  -ms-grid-columns: 1fr auto;
      grid-template-columns: 1fr auto;
  background-color: #ffd700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 70px 0px;
}

.footer-wrapper .footer-top .logo {
  width: 188px;
}

.footer-wrapper .footer-top .address {
  width: 296px;
}

.footer-wrapper .footer-top .address p {
  text-decoration: none !important;
}

.footer-wrapper .footer-top .footer-left {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
      grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-wrapper .footer-top .footer-left .logo {
  width: 60px;
  height: auto;
  display: block;
}

.footer-wrapper .footer-top .footer-right {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
}

.footer-wrapper .footer-top .footer-right .social-icons {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (1fr)[3];
      grid-template-rows: repeat(3, 1fr);
}

.footer-wrapper .footer-top .footer-right .social-icons .social-sec {
  position: relative;
  right: 65px;
}

.footer-wrapper .footer-top .footer-right .social-icons .icon.social-thi {
  position: absolute;
  right: 120px;
  bottom: 0;
}

.footer-wrapper .footer-top .footer-right .social-icons .icon {
  background: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  margin-bottom: -30px;
  margin-top: 10px;
  opacity: 0;
  -webkit-transform: translateY(-150px);
          transform: translateY(-150px);
}

.footer-wrapper .footer-top .footer-right .social-icons .icon img {
  height: 40px !important;
}

.footer-wrapper .footer-top .footer-right .social-icons .icon.social-fir:hover img, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-sec:hover img, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-thi:hover img, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-fou:hover img {
  display: none;
}

.footer-wrapper .footer-top .footer-right .social-icons .icon.social-fir:hover .fb-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-sec:hover .fb-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-thi:hover .fb-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-fou:hover .fb-hover {
  display: block !important;
  position: absolute;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.footer-wrapper .footer-top .footer-right .social-icons .icon.social-fir:hover .link-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-sec:hover .link-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-thi:hover .link-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-fou:hover .link-hover {
  display: block !important;
  position: absolute;
  width: 46px;
}

.footer-wrapper .footer-top .footer-right .social-icons .icon.social-fir:hover .you-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-sec:hover .you-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-thi:hover .you-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-fou:hover .you-hover {
  display: block !important;
  position: absolute;
  width: 60px;
}

.footer-wrapper .footer-top .footer-right .social-icons .icon.social-fir:hover .ins-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-sec:hover .ins-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-thi:hover .ins-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-fou:hover .ins-hover {
  display: block !important;
  position: absolute;
  width: 60px;
}

@media (max-width: 768px) {
  .footer-wrapper .footer-top .footer-right .social-icons .icon.social-fir:hover .link-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-sec:hover .link-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-thi:hover .link-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-fou:hover .link-hover {
    width: 18px;
  }
  .footer-wrapper .footer-top .footer-right .social-icons .icon.social-fir:hover .fb-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-sec:hover .fb-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-thi:hover .fb-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-fou:hover .fb-hover {
    width: 12px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .footer-wrapper .footer-top .footer-right .social-icons .icon.social-fir:hover .you-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-sec:hover .you-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-thi:hover .you-hover, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-fou:hover .you-hover {
    width: 18px;
  }
  .footer-wrapper .footer-top .footer-right .social-icons .icon.social-fir:hover .social-fir img, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-sec:hover .social-fir img, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-thi:hover .social-fir img, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-fou:hover .social-fir img {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .footer-wrapper .footer-top .footer-right .social-icons .icon.social-fir:hover .social-fou img, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-sec:hover .social-fou img, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-thi:hover .social-fou img, .footer-wrapper .footer-top .footer-right .social-icons .icon.social-fou:hover .social-fou img {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.footer-wrapper .footer-top .footer-right .social-icons .icon.fall {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.footer-wrapper .copy-right p {
  font-size: 14px;
}

.footer-wrapper .footer-bottom {
  background-color: #090909;
  text-align: left;
  padding: 20px 0px;
}

.footer-wrapper .footer-bottom p {
  width: 60%;
  font-weight: 300;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .footer-wrapper {
    display: inline-block !important;
  }
  .footer-wrapper .footer-top {
    padding: 24px 13px;
    overflow: hidden;
  }
  .footer-wrapper .footer-top .logo {
    width: 48px;
    margin-bottom: 47px;
  }
  .footer-wrapper .footer-top .col-8 {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .footer-wrapper .footer-top .copy-right {
    width: 80%;
  }
  .footer-wrapper .footer-top .copy-right p {
    font-size: 12px;
  }
  .footer-wrapper .footer-top .address {
    font-size: 20px;
    width: 285px;
    display: inline-block;
    line-height: 96%;
  }
  .footer-wrapper .footer-top .address br {
    display: none;
  }
  .footer-wrapper .footer-top .address strong {
    font-weight: 400 !important;
  }
  .footer-wrapper .footer-top .footer-right {
    bottom: 0;
  }
  .footer-wrapper .footer-top .footer-right .social-icons a:first-child {
    position: absolute;
    bottom: 0px;
    right: 0px;
  }
  .footer-wrapper .footer-top .footer-right .social-icons a:first-child img {
    -webkit-transform: rotate(0deg) !important;
            transform: rotate(0deg) !important;
    width: 10px;
  }
  .footer-wrapper .footer-top .footer-right .social-icons a:nth-child(2) {
    position: absolute;
    bottom: 46px;
    right: -31px;
  }
  .footer-wrapper .footer-top .footer-right .social-icons a:nth-child(3) {
    position: absolute;
    bottom: 80px;
    right: 0px;
  }
  .footer-wrapper .footer-top .footer-right .social-icons a:last-child {
    position: absolute;
    bottom: 0px;
    right: -71px;
  }
  .footer-wrapper .footer-top .footer-right .social-icons .icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
  }
  .footer-wrapper .footer-top .footer-right .social-icons .icon img {
    width: 18px;
  }
  .footer-wrapper .footer-bottom {
    padding: 10px 20px;
  }
  .footer-wrapper .footer-bottom p {
    font-size: 6px;
    width: 81%;
  }
}

@media (min-width: 768px) {
  .footer-wrapper .footer-top {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .footer-wrapper .footer-top .footer-left {
    -ms-grid-columns: auto 1fr;
        grid-template-columns: auto 1fr;
  }
  .footer-wrapper .footer-top .footer-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .footer-wrapper .footer-bottom {
    font-size: 14px;
  }
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .py-80 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pb-80 {
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .tilt-advantage .the-adv {
    width: 164px;
    padding: 27px 7px;
  }
  .tilt-advantage .the-adv h2 {
    font-size: 48px;
    line-height: 96%;
  }
  .tilt-advantage .the-adv h2 span {
    font-size: 48px;
    line-height: 112%;
  }
}

.our-strategic h4 {
  position: absolute;
  top: 10px;
  z-index: 999;
}

@media (max-width: 768px) {
  .our-strategic {
    padding: 0 !important;
  }
  .our-strategic h2 {
    display: -ms-grid;
    display: grid;
    font-size: 44px;
    line-height: 88%;
  }
  .our-strategic h2 span {
    font-size: 44px;
    line-height: 112%;
  }
  .our-strategic h4 {
    font-size: 18px;
    line-height: 112%;
    top: 85px;
  }
}

section.our-creative .h-70 {
  height: 80vh;
}

.about-hero {
  height: calc(100vh - 85px);
  background-color: #ffd700;
  position: relative;
}

.about-hero h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  line-height: 88%;
}

.about-hero h1 span {
  text-transform: lowercase;
  margin-bottom: 33px;
  line-height: 96%;
  font-size: 100px;
  overflow: visible;
  display: inline-block;
}

.about-hero h1 span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 100%;
  height: 3px;
  background-color: #090909;
  left: 0;
}

@media (max-width: 768px) {
  .about-hero h1 {
    text-transform: math-auto !important;
    font-size: 48px;
    line-height: 96%;
    min-width: 70%;
  }
  .about-hero h1 span {
    font-size: 80px;
    line-height: 96%;
  }
}

.strategy-word {
  display: inline-block;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.strategy-word .fade-out {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.strategy-word .fade-in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.management h2 {
  text-transform: uppercase;
}

.management h2 span {
  text-transform: capitalize;
  left: -210px;
  position: relative;
  bottom: -20px;
}

.management .team-parent.tilt-active .team-img img {
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-transition: ease 0.5s all;
  transition: ease 0.5s all;
}

.management .team-img img {
  -webkit-transition: ease 0.5s all;
  transition: ease 0.5s all;
}

@media (max-width: 768px) {
  .management .row.g-4 {
    display: block;
  }
  .management .team-card {
    display: -ms-grid;
    display: grid;
    margin-bottom: 64px;
  }
  .management .team-card p {
    margin-bottom: 15px;
  }
  .management .tilt-btn {
    font-size: 16px !important;
    line-height: 110% !important;
    width: 100% !important;
  }
  .management .order-tilt {
    margin-top: 20px;
  }
  .management p.mt-2.small {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0;
  }
  .management .team-parent:nth-child(odd) {
    margin: 0;
  }
  .management h2 {
    font-size: 64px;
    line-height: 88%;
    display: block;
    width: 260px;
    margin: auto;
    text-align: left !important;
  }
  .management h2 span {
    font-size: 64px;
    line-height: 112%;
    left: -27px;
    bottom: -5px;
  }
  .management .team-parent {
    width: 100%;
    padding: 0px 20px;
  }
}

@media (max-width: 768px) {
  .management {
    padding-top: 64px !important;
  }
}

.team-parent {
  width: 25%;
  padding: 0px 15px;
  /* Animation-ready box */
  /* Active state animation */
}

.team-parent:nth-child(odd) {
  margin-top: 72px;
}

.team-parent .team-card {
  background-color: transparent;
  border: none;
  text-align: left;
}

.team-parent .team-card p {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 16px;
  line-height: 120%;
  font-weight: 300;
  color: #fff;
}

.team-parent .team-img img {
  width: 100%;
}

.team-parent .team-name {
  font-family: "dharma-gothic-e", sans-serif;
  font-size: 40px;
  line-height: 96%;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 4px;
  font-weight: 700;
}

.team-parent .order-tilt {
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 112%;
}

.team-parent .team-role {
  font-size: 0.9rem;
  color: #ccc;
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 14px;
  line-height: 112%;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.team-parent .tilt-btn {
  color: #ffd700;
  font-size: 18px;
  line-height: 112%;
  font-weight: 300;
  margin-bottom: 20px;
  text-transform: uppercase;
  width: 154px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.team-parent .tilt-btn img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.team-parent .tilt-box {
  background-color: #ffd700;
  color: #090909 !important;
  padding: 0 15px;
  /* padding only left/right initially */
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.team-parent .tilt-box p {
  margin-bottom: 0;
  color: #090909 !important;
  font-family: "helvetica-lt-pro", sans-serif;
}

.team-parent.tilt-active .tilt-box {
  /* big enough to fit content */
  max-height: 500px;
  padding: 15px;
  min-width: 100%;
  margin-top: -60px;
  opacity: 1;
  margin-bottom: 20px;
  position: relative;
  z-index: 9;
}

.team-parent.tilt-active .tilt-box p {
  color: #090909;
  font-size: 16px;
  line-height: 110%;
}

.team-parent .tilt-active .tilt-btn {
  display: none;
}

.team-parent .go-back {
  cursor: pointer;
  display: inline-block;
  text-transform: uppercase;
  border-bottom: 1px solid #090909;
  margin-bottom: 10px;
  font-family: "helvetica-lt-pro", sans-serif;
}

.market-partners .col-lg-4.text-lg-end {
  display: block;
  padding-top: 20px;
}

.market-partners #partnersAccordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #090909;
  gap: 35px;
}

.market-partners #partnersAccordion h6 {
  font-size: 18px;
  line-height: 112%;
  border-bottom: 1px solid #fff;
  text-transform: uppercase;
  color: #fff;
  font-weight: 300;
  margin-bottom: 16px;
  padding-bottom: 16px;
  min-height: 57px;
  width: 275px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.market-partners #partnersAccordion p {
  font-size: 18px;
  line-height: 112%;
  color: #fff;
  font-weight: 300;
}

.market-partners #partnersAccordion .accordion-button::after {
  display: none;
}

@media (max-width: 768px) {
  .market-partners #partnersAccordion {
    display: block;
  }
  .market-partners #partnersAccordion .accordion-item {
    margin-bottom: 48px;
  }
  .market-partners #partnersAccordion .accordion-body h6 {
    display: none !important;
  }
  .market-partners #partnersAccordion .accordion-button {
    display: block;
    background-image: url(../images/minus-icon.svg) !important;
    background-repeat: no-repeat;
    background-size: 30px !important;
    background-position: 98% 78%;
  }
  .market-partners #partnersAccordion .accordion-button h6 {
    min-height: 48px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    font-size: 16px;
    line-height: 110%;
    height: auto;
    padding: 0;
    margin: 6px 0px;
    width: 100%;
    padding-right: 20px;
  }
  .market-partners #partnersAccordion .accordion-button img {
    margin-bottom: 0;
    min-height: 56px;
    max-height: 56px;
    margin-bottom: 8px;
  }
  .market-partners #partnersAccordion .accordion-button.collapsed {
    background-image: url(../images/plus-icon.svg) !important;
    background-repeat: no-repeat;
    background-size: 30px !important;
    background-position: 98% 78%;
  }
}

.market-partners .partner-card {
  background: transparent;
  border: none;
}

.market-partners .partner-card img {
  max-height: 70px;
  min-height: 70px;
}

.market-partners .accordion-button {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.market-partners .accordion-button::after {
  -webkit-filter: invert(100%);
          filter: invert(100%);
}

@media (min-width: 992px) {
  .market-partners .accordion-item {
    border: none;
  }
  .market-partners .accordion-button {
    pointer-events: none;
  }
  .market-partners .accordion-collapse {
    display: block !important;
    height: auto !important;
  }
}

@media (max-width: 768px) {
  .market-partners {
    padding: 64px 0px;
  }
  .market-partners .pb-80 {
    padding-bottom: 8px !important;
  }
  .market-partners h2 {
    font-size: 64px;
    line-height: 88%;
    text-align: center;
  }
  .market-partners h4 {
    font-size: 18px;
    line-height: 112%;
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .market-partners .col-lg-4.text-lg-end {
    padding-top: 0px;
  }
}

.our-values {
  height: 100vh;
  position: relative;
  /* Manual info box */
}

.our-values .value-heading {
  position: relative;
  line-height: 96%;
}

.our-values .text-start {
  position: absolute;
}

.our-values .text-start.ov-pos-2 {
  left: 43%;
  top: 0%;
}

.our-values .text-start.ov-pos-2 .value-text {
  left: 120px;
  top: 65px;
}

.our-values .text-start.ov-pos-3 {
  right: 175px;
  top: 35%;
}

.our-values .text-start.ov-pos-3 .value-text {
  left: 175px;
  top: 65px;
}

.our-values .text-start.ov-pos-4 {
  left: 5%;
  top: 55%;
}

.our-values .text-start.ov-pos-4 .value-text {
  left: 205px;
  top: 65px;
}

.our-values .text-start.ov-pos-5 {
  left: 60%;
  top: 65%;
}

.our-values .text-start.ov-pos-5 .value-text {
  left: 105px;
  top: 65px;
}

.our-values .value-text {
  width: 170px;
  position: absolute;
  left: 190px;
  top: 65px;
  line-height: 110%;
}

.our-values .ov-pos-1.ov-pos-1 {
  left: 0%;
  top: 5%;
}

.our-values .ov-pos-1.ov-pos-1 .value-text {
  left: 190px;
  top: 65px;
}

.our-values .info-box .value-text {
  display: block;
  left: 0 !important;
  top: -60px !important;
  text-align: center;
  font-size: 16px;
  line-height: 110%;
  background: #090909;
  padding: 5px;
}

.our-values .center-title {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.our-values .our-text {
  line-height: 20px;
  margin-left: -125px;
}

.our-values .info-box {
  display: none;
  position: relative;
  background: #090909;
  text-align: center;
}

.our-values .close-info {
  background: transparent;
  border: 0;
  background-image: url("../images/close-yellow.svg");
  background-size: 40px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  padding: 0;
}

@media (max-width: 768px) {
  .our-values .value-text {
    display: none;
    /* hide in mobile, shown in box instead */
    position: relative;
  }
  .our-values .show-info {
    display: block;
    margin: auto;
  }
  .our-values .show-info img {
    width: 40px;
  }
  .our-values .our-text {
    font-size: 64px;
    line-height: 112%;
    position: relative;
    bottom: -35px;
  }
  .our-values .value-text {
    font-size: 64px;
    line-height: 88%;
  }
  .our-values .info-box {
    position: absolute;
    top: -10px;
    z-index: 9;
    left: -25px;
  }
  .our-values .info-box .value-text {
    top: 0 !important;
  }
  .our-values .value-heading {
    font-size: 24px;
    text-align: center;
  }
  .our-values .center-title {
    top: 40%;
  }
  .our-values .text-start.ov-pos-1 {
    left: 18%;
  }
  .our-values .text-start.ov-pos-2 {
    left: 53%;
    top: 19%;
  }
  .our-values .text-start.ov-pos-3 {
    left: 18%;
    top: 53%;
  }
  .our-values .text-start.ov-pos-4 {
    left: 60%;
    top: 65%;
  }
  .our-values .text-start.ov-pos-5 {
    left: 20%;
    top: 75%;
  }
}

.all-clients {
  height: 100vh;
}

.all-clients .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-fill-available;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.all-clients h2 {
  line-height: 96%;
}

@media (max-width: 768px) {
  .all-clients .all-clients-content {
    padding: 0px !important;
  }
}

section#dna-section {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

section#dna-section .inner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

section#dna-section .split-text {
  font-size: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  opacity: 1;
}

section#dna-section .zoom-text {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  position: absolute;
  top: 30px;
  left: 35px;
  right: 0;
}

section#dna-section .cards {
  position: absolute;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 40px;
  opacity: 0;
}

section#dna-section .card-box {
  background: #ffd700;
  color: black;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 25px 20px;
  min-width: 300px;
  position: relative;
}

section#dna-section .card-box .nail1 .bg1 {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 8px;
  display: -ms-grid;
  display: grid;
}

section#dna-section .card-box .nail1 .bg2 {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  display: -ms-grid;
  display: grid;
}

section#dna-section .card-box .nail1 .bg3 {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 8px;
  display: -ms-grid;
  display: grid;
}

section#dna-section .card-box .nail1 .bg4 {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 8px;
  display: -ms-grid;
  display: grid;
}

section#dna-section .card-box h2 {
  font-family: "dharma-gothic-e", sans-serif;
  font-size: 40px;
  line-height: 96%;
  font-weight: bold;
  border-bottom: 1px solid #090909;
  margin-bottom: 4px;
  padding-bottom: 4px;
}

section#dna-section .card-box p {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 110%;
}

@media (max-width: 768px) {
  section#dna-section {
    min-height: 150vh;
  }
  section#dna-section .inner-content {
    top: calc(100vh - 33%);
  }
  section#dna-section .cards {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: 12%;
    min-height: 900px !important;
    left: 0 !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
  section#dna-section .card-box {
    margin: 0px auto;
    max-width: 88%;
  }
  section#dna-section .left {
    font-size: 48px;
    line-height: 112%;
  }
  section#dna-section .right {
    font-size: 64px;
    line-height: 88%;
  }
  section#dna-section .zoom-text {
    font-size: 16px;
    line-height: 110%;
    left: 0;
    top: 9px;
  }
}

.supported-section {
  background-color: #ffd700;
  padding: 80px 0;
}

.supported-section #support-lottie {
  min-height: 200px;
}

.supported-section .supported-desc {
  margin-top: 10px;
}

.supported-section .logo-block {
  text-align: center;
}

.supported-section .logo-block img {
  height: auto;
}

@media (min-width: 769px) {
  .supported-section .carousel-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
  }
  .supported-section .carousel-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    display: block !important;
    margin-right: 0 !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .supported-section .carousel-indicators {
    display: none;
  }
  .supported-section .logo-block img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .supported-section {
    background-color: #090909;
    padding: 0 !important;
  }
  .supported-section div.col-lg-8 {
    background-color: #ffd700;
    padding: 72px 48px;
  }
  .supported-section .logo-block img {
    width: 100%;
    min-height: 159px;
  }
  .supported-section .col-lg-9 {
    background-color: #ffd700;
    padding: 48px 20px 72px 20px;
  }
  .supported-section .supported-heading {
    color: #ffd700;
    font-size: 64px;
    line-height: 88%;
  }
  .supported-section .col-lg-3 {
    text-align: center;
    padding-bottom: 64px;
  }
  .supported-section .supported-desc {
    color: #fff;
    font-size: 18px;
  }
  .supported-section .supported-heading {
    font-size: 64px;
    line-height: 88%;
    text-align: center;
  }
  .supported-section .supported-desc {
    margin-top: 10px;
    font-size: 18px;
    line-height: 112%;
    text-align: center;
    margin-bottom: 30px;
  }
  .supported-section .carousel-indicators {
    position: absolute;
    bottom: -58px;
  }
  .supported-section .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0px 8px;
    background-color: #090909;
  }
  .supported-section .carousel-indicators button.active {
    background-color: #fff;
  }
}

.work-hero {
  height: calc(100vh - 85px);
  display: -webkit-box;
  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;
  position: relative;
}

.work-hero .split-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.work-hero .split-container h2 {
  font-size: 80px;
  margin: 0;
  padding: 0;
  line-height: 1;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  text-transform: uppercase;
}

.work-hero .split-container .hero-span {
  position: absolute;
  /* Take it out of flow */
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.1);
          transform: translate(-50%, -50%) scale(0.1);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 100px;
  width: 460px;
  height: 200px;
  /* fixed size */
  line-height: 96%;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  pointer-events: none;
}

.work-hero .split-container.split-active h2:first-child {
  -webkit-transform: translateY(-120px);
          transform: translateY(-120px);
}

.work-hero .split-container.split-active h2:last-child {
  -webkit-transform: translateY(140px);
          transform: translateY(140px);
}

.work-hero .split-container.split-active .hero-span {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {
  .work-hero .split-container h2 {
    font-size: 64px;
    line-height: 88%;
    margin-bottom: 16px;
  }
  .work-hero .split-container span.hero-span {
    font-size: 80px;
    line-height: 96%;
    width: 280px;
  }
}

.work-list a {
  text-decoration: none !important;
}

.work-list .proj-s-blk {
  background-color: #ffd700;
  padding: 12rem 0;
}

.work-list .filter-select {
  background-color: #090909;
  color: #fff;
  width: 300px;
  font-family: "helvetica-lt-pro", sans-serif;
}

.work-list .filter-select .filter-header {
  font-size: 18px;
  line-height: 112%;
  font-family: "helvetica-lt-pro", sans-serif;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
  padding: 12px 0px;
  border-bottom: 1px solid #fff;
  cursor: pointer;
  display: -webkit-box;
  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;
}

.work-list .filter-select .filter-header .icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("./plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.work-list .filter-select .filter-header.collapsed .icon {
  background-image: url("../images/plus-icon.svg");
}

.work-list .filter-select .filter-header:not(.collapsed) .icon {
  background-image: url("../images/minus-icon.svg");
}

.work-list .filter-select .filter-options {
  list-style: none;
  padding: 0;
  margin: 0;
}

.work-list .filter-select .filter-options li {
  padding: 16px 0px;
  cursor: pointer;
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 112%;
  color: #fff;
  width: 33%;
  float: left;
}

.work-list .filter-select .filter-options li:hover {
  background-color: #090909;
}

@media (max-width: 768px) {
  .work-list {
    padding-top: 20px;
  }
  .work-list .filter-select .filter-options li {
    padding: 8px 0px;
    width: 100%;
    float: none;
  }
  .work-list .filter-select .filter-header {
    margin: 32px 20px !important;
    padding: 10px 0px;
  }
  .work-list div#industryList {
    margin: 0px 20px;
  }
  .work-list .showing-txt h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 96%;
  }
  .work-list .proj-s-blk {
    padding: 4.8rem 0px;
  }
}

#industryList {
  position: absolute;
  background-color: #090909;
  left: 0;
  margin: auto;
  right: 0;
  z-index: 9;
  margin-top: 16px !important;
}

#industryList .filter-options {
  width: auto;
  margin: auto;
}

@media (min-width: 1350px) {
  #industryList {
    position: absolute;
    background-color: #090909;
    margin-top: 16px;
    left: 0;
    margin: auto;
    right: 0;
    z-index: 9;
  }
  #industryList .filter-options {
    width: 1320px;
    margin: auto;
  }
}

.project-main .proj-desc {
  padding: 30px;
}

.project-main .proj-desc p {
  font-size: 18px;
  font-family: "helvetica-lt-pro", sans-serif;
  line-height: 112%;
}

.project-main .proj-slider {
  padding: 30px 0 20px 0;
}

.project-main .proj-slider .iframe-container {
  height: 100%;
}

.project-main .proj-slider iframe {
  height: calc(100vh - 409px);
}

.project-main .proj-slider .view-all-btn {
  margin-top: 0px !important;
  padding: 10px;
  text-decoration: none;
  position: relative;
  top: 25px;
  margin-bottom: 50px;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.project-main .proj-slider .view-all-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #ffd700;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: -1;
}

.project-main .proj-slider .view-all-btn:hover::before {
  -webkit-transform: skew(-20deg);
          transform: skew(-20deg);
}

.project-main .proj-slider #videoCarousel {
  background: #090909;
  position: relative;
  padding-bottom: 0px;
}

.project-main .proj-slider #videoCarousel .carousel-inner img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 500px;
}

.project-main .proj-slider #videoCarousel .carousel-control-prev,
.project-main .proj-slider #videoCarousel .carousel-control-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: auto;
  height: auto;
  background: none;
  border: none;
  opacity: 1;
}

.project-main .proj-slider #videoCarousel .carousel-control-prev .arrow-icon,
.project-main .proj-slider #videoCarousel .carousel-control-next .arrow-icon {
  display: inline-block;
  padding: 8px 12px;
  color: #ffd700;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50%;
}

.project-main .proj-slider #videoCarousel .carousel-control-prev {
  left: -45px;
}

.project-main .proj-slider #videoCarousel .carousel-control-next {
  right: -45px;
}

.project-main .proj-slider #videoCarousel .carousel-indicators {
  bottom: 5px;
}

.project-main .proj-slider #videoCarousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #777;
  border: none;
  margin: 0 4px;
}

.project-main .proj-slider #videoCarousel .carousel-indicators button.active {
  background-color: #ffd700;
}

.project-main .proj-slider #videoCarousel .carousel-control-next-icon {
  background-image: url("../images/right-arrow.svg");
  width: 40px;
  background-size: 40px;
  height: 40px;
}

.project-main .proj-slider #videoCarousel .carousel-control-prev-icon {
  background-image: url("../images/left-arrow.svg");
  width: 40px;
  background-size: 40px;
  height: 40px;
}

.project-main .proj-slider #videoCarousel .carousel-bottom-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.project-main .proj-slider #videoCarousel .carousel-bottom-btn .btn {
  font-size: 12px;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid #ffd700;
  color: #ffd700;
  background: none;
}

.project-main .proj-slider #videoCarousel .carousel-bottom-btn .btn:hover {
  background: #ffd700;
  color: #000;
}

@media (max-width: 768px) {
  .project-main .proj-slider #videoCarousel {
    width: 84%;
    margin: auto;
  }
}

.carousel-control {
  display: inline-block;
  margin-top: 50px;
}

.video-container.full-height {
  position: relative;
  width: 100%;
  height: 75dvh;
  /* full screen height */
  background: #000;
  overflow: hidden;
}

@media (max-width: 768px) {
  .video-container.full-height {
    height: 35dvh;
    /* full screen height */
  }
}

.video-container.full-height iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}

.video-container.full-height iframe.loaded {
  opacity: 1;
}

.video-container.full-height .video-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 120px;
  z-index: 1;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 */
  background: #090909;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 120px;
  /* adjust size */
  opacity: 0.85;
  /* slightly transparent */
  pointer-events: none;
  /* so clicks go to video */
  z-index: 5;
}

.news-split-container {
  overflow: visible;
}

.news-hero {
  height: calc(100vh - 85px);
  display: -webkit-box;
  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;
  position: relative;
}

.news-hero .news-split-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.news-hero .news-split-container h2 {
  font-size: 80px;
  margin: 0;
  margin-bottom: 0 !important;
  padding: 0;
  line-height: 1;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  text-transform: uppercase;
}

.news-hero .news-split-container .hero-span {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 100px;
  line-height: 96%;
  overflow: visible;
}

@media (max-width: 768px) {
  .news-hero .news-split-container h2 {
    font-size: 64px;
    line-height: 88%;
    width: 220px;
    text-align: center;
    margin-bottom: 16px;
  }
  .news-hero .news-split-container span {
    font-size: 80px;
    line-height: 96%;
  }
}

.animate-text {
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-animation: slideUp 1s ease forwards;
          animation: slideUp 1s ease forwards;
}

.animate-text:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.animate-text:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.animate-text:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.animate-text:nth-child(4) {
  -webkit-animation-delay: 0.99s;
          animation-delay: 0.99s;
}

@-webkit-keyframes slideUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.news-list {
  background-color: #090909;
  padding: 0px 0px;
}

.news-list a:before {
  z-index: 0 !important;
}

.news-list .project-blk-inner {
  background-color: #090909;
  padding: 120px 0px;
  padding-bottom: 80px;
}

.news-list .project-blk-inner a {
  text-decoration: none !important;
}

.news-list .project-blk-inner a:before {
  z-index: 0 !important;
}

.news-list .project-blk-inner:nth-child(even) .showing-blk {
  margin-left: auto;
}

.news-list .project-blk-inner:nth-child(even) .showing-txt {
  padding-left: 0px;
}

.news-list .project-blk-inner:nth-child(odd) .showing-txt {
  margin-left: 10%;
  width: calc(100% - 10%);
}

.news-list .project-blk-inner h2 {
  color: #ffd700;
  margin: 20px 0px 12px 0px;
  line-height: 96%;
}

.news-list .project-blk-inner p {
  color: #fff;
  line-height: 110%;
}

@media (max-width: 768px) {
  .news-list .project-blk-inner {
    padding: 48px 0px;
  }
  .news-list .showing-txt h2 {
    line-height: 100%;
  }
  .news-list :nth-child(odd) .showing-txt {
    margin-left: 20px;
    width: calc(100% - 20px);
  }
}

.tilt-advantage .the-adv {
  width: 240px;
  text-align: center;
  padding: 56px 20px;
}

.scroll-section {
  height: 100vh;
  /* one viewport tall */
  position: relative;
}

.wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  z-index: 2;
}

.box {
  width: 240px;
  height: 240px;
  text-align: center;
  padding: 56px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #090909;
  background: #ffd700;
  position: relative;
}

.box-content {
  position: absolute;
  inset: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  background-color: #ffd700;
  padding: 0px 0px;
  color: #090909;
}

.content1 .z-img img {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.content3 .z-img img {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.strategy-word {
  display: inline-block;
  overflow: hidden;
}

.abt-hero-txt {
  overflow: hidden;
}

/* stays separate from rotation/zoom */
.zoom-content {
  position: fixed;
  left: 50%;
  top: 54%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9;
  text-align: center;
  font-size: 2rem;
  color: #090909;
  width: 90%;
}

.zoom-content h3 {
  text-transform: uppercase;
}

.zoom-content .zoom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  padding: 40px 0px;
}

.zoom-content .z-content {
  margin-left: 20px;
}

.zoom-content .z-img img {
  margin-top: 10px;
  width: 45px;
}

@media (max-width: 768px) {
  .zoom-content {
    top: 50%;
  }
  .zoom-content h3 {
    font-size: 48px;
    line-height: 88%;
  }
  .zoom-content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 112%;
    max-width: 89%;
  }
  .zoom-content .z-img img {
    width: 40px;
  }
  .zoom-content .zoom-inner {
    margin: 0px 0px !important;
    padding: 20px 0px;
  }
}

.zoom-content > div {
  opacity: 0;
  color: #090909;
}

.scroll-section1 {
  height: 400vh;
  position: relative;
  /* first set */
  /* second set */
}

.scroll-section1 .center-section {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
  height: 100vh;
  display: -webkit-box;
  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;
  overflow: hidden;
}

.scroll-section1 h2 {
  margin: 0;
  white-space: nowrap;
}

.scroll-section1 .behav {
  top: 20%;
  left: 15%;
  opacity: 0;
  position: absolute;
  text-align: left;
}

.scroll-section1 .behav h2 {
  position: relative;
}

.scroll-section1 .behav p {
  color: #fff;
}

.scroll-section1 .belief {
  top: 65%;
  right: 15%;
  opacity: 0;
  position: absolute;
  text-align: right;
}

.scroll-section1 .belief h2 {
  position: relative;
}

.scroll-section1 .belief p {
  color: #fff;
}

.scroll-section1 .reveal-image {
  position: absolute;
  width: 270px;
  max-width: 60%;
  opacity: 0;
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

@media (max-width: 768px) {
  .scroll-section1 {
    overflow: hidden;
  }
  .scroll-section1 .reveal-image {
    width: 270px !important;
    margin-top: -10px;
  }
  .scroll-section1 .belief {
    top: 64%;
    right: 20px !important;
  }
  .scroll-section1 .behav {
    top: 23%;
    left: 20px !important;
  }
  .scroll-section1 .line1 {
    top: 25%;
  }
  .scroll-section1 .line2 {
    top: 44%;
  }
}

#lottie-container svg {
  width: 100vw !important;
  height: 100vh !important;
  margin: auto;
  left: auto !important;
  right: auto !important;
  scale: 1.3 !important;
}

@media (max-width: 768px) {
  #lottie-container svg {
    scale: 1.2;
  }
}

.our-client-section {
  background: #090909;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 24px;
}

.our-client-section .left-section h3 {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 112%;
  margin: 0;
  color: #fff;
}

.our-client-section .left-section em {
  font-family: "dulcinea", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 90%;
  color: #ffd700;
}

.frame {
  width: 100%;
  max-width: 1200px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.5fr 2fr 1fr;
      grid-template-columns: 0.5fr 2fr 1fr;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.center-section {
  position: relative;
  height: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.circle-container {
  height: 100%;
  aspect-ratio: 1/1;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .circle-container {
    -webkit-transform: scale(1.4) !important;
            transform: scale(1.4) !important;
  }
}

.client-grid {
  width: 90%;
  max-width: 520px;
  gap: 14px;
  text-align: center;
}

div#clientGrid img {
  width: calc(100% / 4) !important;
  height: 59px !important;
  margin: 4px 4px;
  gap: 10px;
}

.client-logo {
  height: 56px;
  text-align: center;
  display: inline-block !important;
  margin-right: 6px;
  margin-bottom: 6px;
}

.client-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.client-logo.muted {
  opacity: 0.92;
}

.yellow-dot {
  position: absolute;
  right: -13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: #ffd700;
  border-radius: 50%;
}

.right-section {
  position: relative;
  height: 560px;
  display: -webkit-box;
  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: end;
}

.categories-container {
  height: 100%;
  min-width: 280px;
  overflow: hidden;
  position: relative;
}

.category-item {
  list-style: none;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #fff;
  cursor: pointer;
  font-family: "helvetica-lt-pro", sans-serif;
  text-transform: uppercase;
}

.category-item.active {
  color: #ffd700;
}

#arrowHint {
  position: absolute;
  margin: auto;
  bottom: 15px;
  left: 0;
  right: 0;
  cursor: pointer;
  width: 35px;
}

#arrowHint img {
  width: 30px;
}

.nav-arrows {
  top: 0px;
}

.categories-list {
  height: 500px;
}

@media (max-width: 1024px) {
  div#categoriesList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 300px;
    white-space: nowrap;
    gap: 25px;
    padding: 0 2vw;
    width: 100% !important;
  }
  .frame {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .our-client-section {
    padding: 32px 16px;
  }
  .left-section {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 75px;
  }
  .center-section {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: 450px;
  }
  .categories-container {
    min-width: 250px;
  }
  .yellow-dot {
    right: 50%;
    top: auto;
    bottom: -8px;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

@media (max-width: 768px) {
  .our-client-section {
    padding: 24px 12px;
    height: 100vh;
  }
  .frame {
    gap: 20px;
  }
  .left-section h3 {
    font-size: 16px;
  }
  .left-section em {
    font-size: 24px;
  }
  .center-section {
    height: 350px;
    top: 0px !important;
  }
  .client-grid {
    width: 75%;
    gap: 5px;
    display: inline-block !important;
  }
  .client-logo {
    height: 30px;
    text-align: center;
    display: inline-block !important;
    margin-right: 5px;
    margin-bottom: 5px;
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(27.33% - 0px);
            flex: 0 0 calc(27.33% - 0px);
  }
  .right-section {
    height: 100px;
    width: 80%;
    margin: auto !important;
    margin-top: 260px !important;
  }
  .venn-container {
    width: 100% !important;
  }
  .client-circle {
    width: 100% !important;
  }
  .categories-container {
    min-width: 200px;
    height: 300px;
  }
  .category-item {
    font-size: 13px;
    padding: 8px 0;
  }
  div#clientGrid img {
    width: calc(100% / 4) !important;
    height: 54px !important;
    margin: 3px 3px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .our-client-section {
    padding: 16px 8px;
  }
  .frame {
    gap: 16px;
  }
  .left-section h3 {
    font-size: 14px;
  }
  .left-section em {
    font-size: 20px;
  }
  .center-section {
    height: 280px;
  }
  .categories-container {
    min-width: 180px;
    height: 140px;
  }
  .category-item {
    font-size: 20px;
    padding: 6px 0;
  }
}

/* Mobile horizontal scroll */
@media (max-width: 768px) {
  .categories-container {
    width: 100%;
    overflow-y: hidden;
    padding: 20px 0;
    margin-top: 40px;
  }
  .categories-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    padding: 0 50vw;
    /* Add padding to enable centering */
    -webkit-transform: none;
            transform: none;
    /* Reset any vertical transforms */
  }
  div#categoriesList {
    gap: 10px;
    height: 100px;
    margin-top: 30px;
  }
  .category-item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    white-space: nowrap;
    font-size: 15px !important;
    line-height: 112%;
    padding: 8px 5px !important;
  }
  .category-item.active {
    color: #ffd700;
  }
  .category-item {
    font-size: 20px;
    line-height: 112%;
  }
}

#lottie-container {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

#lottie-container svg {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#lottie-container {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

#lottie-container svg {
  -webkit-transform: scale(1.4) !important;
          transform: scale(1.4) !important;
  /* Adjust scale as needed */
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  #lottie-container svg {
    -webkit-transform: scale(1.06) !important;
            transform: scale(1.06) !important;
  }
}

.view-home-work {
  margin-top: 64px;
}

.video-section1 {
  position: relative;
  height: 400vh;
  /* big scroll area to control playback */
  background: #000;
}

.video-container {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.scroll-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.word-wrapper {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 1em;
  /* or use line-height of text */
}

/* Modal smooth fade + slide both ways */
.modal.fade .modal-dialog {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.7s ease;
  transition: transform 0.7s ease, opacity 0.5s ease;
  transition: transform 0.7s ease, opacity 0.5s ease, -webkit-transform 0.7s ease;
}

.modal.show .modal-dialog {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* Backdrop smooth */
.modal-backdrop.fade {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.modal-backdrop.show {
  opacity: 0.6;
}

/* Animation section */
/* Bottom dummy section */
.animation-section {
  width: 100%;
  height: 400vh;
  position: relative;
  background: #090909;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  /* Layer 5 has higher z-index */
}

.animation-section .pin-spacer {
  max-height: 100vh !important;
  /* Adjust based on your word count */
  overflow: hidden !important;
}

.animation-section h4 {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
  z-index: 99;
}

.animation-section .grid-container {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .animation-section .grid-container {
    top: 60px !important;
  }
  .animation-section .grid-container .our-sauce {
    top: 0 !important;
  }
}

.animation-section .grid {
  width: 100vw;
  height: 100vh;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.animation-section .gridBlock {
  background-size: cover;
  background-color: darkgray;
  opacity: 0;
  position: absolute;
  display: block;
}

.animation-section .gridLayer {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  will-change: transform;
  /* transform-origin: 44.951% 50%; */
}

.animation-section .gridLayer:nth-child(5) {
  z-index: 1;
}

.animation-section .left-wh-words {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 2rem;
  top: -50%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.animation-section .words-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  width: 100%;
  gap: 2rem;
  pointer-events: none;
}

.animation-section .left-word {
  white-space: nowrap;
  font-family: "dharma-gothic-e", sans-serif;
  font-size: 64px;
  color: #fff;
  font-weight: 700;
  line-height: 88%;
}

.animation-section .s-word {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.animation-section .s-line {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.animation-section .right-stack-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  top: -50%;
  position: relative;
}

.animation-section .word-line {
  white-space: nowrap;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: "dharma-gothic-e", sans-serif;
  font-size: 64px;
  color: #ffd700;
  font-weight: 700;
  line-height: 88%;
}

.animation-section .word-line.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.animation-section .right-stack-container {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.animation-section .gridBlock {
  width: 77px !important;
  height: 45px !important;
}

@media (max-width: 768px) {
  .animation-section .gridBlock {
    width: 50px !important;
    height: 28px !important;
  }
}

.animation-section .left-word.s-word {
  position: absolute;
  right: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.animation-section .gridBlock.initial-background-image {
  width: 336px !important;
  height: 210px !important;
  margin-left: 25px;
  margin-top: 20px;
}

#circle-section {
  height: 650vh;
  background: #ffd700;
  position: relative;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.animation-container {
  position: -webkit-sticky;
  position: sticky;
  /* top: 50%; */
  /* transform: translateY(-50%); */
  top: 45px;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lottie-stage {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .right-section {
    height: 475px;
  }
  .right-section .nav-arrows {
    top: 100%;
    top: 45% !important;
    margin-top: 0;
    width: 503px !important;
    width: 100%;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 7% !important;
  }
  .disruptor-text {
    right: -2% !important;
  }
}

@media (min-width: 1401px) and (max-width: 1600px) {
  .disruptor-text {
    right: 6% !important;
  }
  .right-section {
    position: relative;
    height: 480px;
  }
  .right-section .nav-arrows {
    top: 100%;
    top: 45% !important;
    margin-top: 2px;
    width: 480px !important;
    width: 100%;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 13%;
  }
}

@media (min-width: 1601px) and (max-width: 1800px) {
  .disruptor-text {
    right: 10% !important;
  }
}

@media (min-width: 1801px) and (max-width: 2000px) {
  .disruptor-text {
    right: 14% !important;
  }
}

@media (min-width: 2001px) and (max-width: 2200px) {
  .disruptor-text {
    right: 18% !important;
  }
}

/* Desktop dimensions: 1444x869 */
@media (min-width: 769px) {
  .lottie-stage {
    width: 100%;
    height: 869px;
    max-width: 90vw;
    max-height: 90vh;
  }
}

/* Mobile dimensions: 677x869 */
@media (max-width: 768px) {
  .lottie-stage {
    width: 100%;
    height: 100vh;
    max-width: 100vw;
    max-height: 95vh;
  }
}

/* Initial circle and text - positioned exactly as in Lottie */
.initial-circle {
  position: absolute;
  width: 550px;
  height: 550px;
  border: 1px solid #090909;
  border-radius: 50%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.initial-text {
  position: absolute;
  text-align: center;
  z-index: 5;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.years-text,
.clients-text {
  font-size: 80px;
  font-weight: 700;
  color: #090909;
  line-height: 96%;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: "dharma-gothic-e", sans-serif;
}

/* Split circles - Venn diagram */
.venn-container {
  position: absolute;
  width: 65%;
  height: 100%;
  opacity: 0;
}

.circle-top,
.circle-bottom {
  position: absolute;
  width: 550px;
  height: 550px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}

/* Moving text elements */
.years-moving,
.clients-moving {
  position: absolute;
  font-size: 40px;
  font-weight: bold;
  color: #090909;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* New labels for Venn diagram */
.legacy-text,
.disruptor-text {
  position: absolute;
  font-size: 65px;
  font-weight: bold;
  color: #ffd700;
  text-align: center;
  line-height: 96%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "dharma-gothic-e", sans-serif;
}

/* Union text in center */
.union-text {
  position: absolute;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
}

.our-client {
  font-size: 20px;
  color: #ffd700;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "helvetica-lt-pro", sans-serif;
  color: #fff;
}

.partners {
  font-size: 32px;
  color: "dulcinea", sans-serif;
  font-style: italic;
  margin-top: -8px;
  color: #ffd700;
}

/* Desktop specific positioning */
@media (min-width: 769px) {
  .initial-circle,
  .initial-text {
    left: 50%;
    top: 50%;
  }
  .circle-top {
    left: 50%;
    top: 50%;
  }
  .circle-bottom {
    left: 50%;
    top: 50%;
  }
  .years-moving {
    left: 448px;
    top: 384px;
  }
  .clients-moving {
    left: 722px;
    top: 407px;
  }
  .legacy-text {
    margin-left: 37%;
    top: 50%;
  }
  .disruptor-text {
    right: 5%;
    top: 50%;
  }
  .union-text {
    left: 50%;
    top: 50%;
  }
}

/* Mobile specific positioning */
@media (max-width: 768px) {
  .initial-circle {
    width: 450px;
    height: 450px;
  }
  .animation-container {
    padding-top: 57px;
    top: -10px;
  }
  .circle-top,
  .circle-bottom {
    width: 450px;
    height: 450px;
  }
  .years-text,
  .clients-text {
    font-size: 60px;
  }
  .initial-circle,
  .initial-text {
    left: 50%;
    top: 50%;
  }
  .circle-top {
    left: 50%;
    top: 50%;
  }
  .circle-bottom {
    left: 50%;
    top: 50%;
  }
  .years-moving {
    left: 339px;
    top: 239px;
  }
  .clients-moving {
    left: 339px;
    top: 407px;
  }
  .legacy-text {
    left: 50%;
    top: 45%;
  }
  .disruptor-text {
    left: 25%;
    top: 44%;
  }
  .union-text {
    left: 50%;
    top: 50%;
  }
}

/*  */
/*  */
/*  */
.our-client-section {
  background: black;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 24px;
}

.our-client-section .left-section h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 112%;
  margin: 0;
  color: #fff;
}

.our-client-section .left-section em {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 90%;
  color: #ffd700;
}

.frame {
  width: 100%;
  max-width: 1200px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.5fr 2fr 1fr;
      grid-template-columns: 0.5fr 2fr 1fr;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.center-section {
  position: relative;
  height: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.circle-container {
  height: 100%;
  aspect-ratio: 1/1;
  /* border: 1px solid #fff; */
  border-radius: 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .circle-container {
    -webkit-transform: scale(1.4) !important;
            transform: scale(1.4) !important;
  }
}

.client-grid {
  width: 90%;
  max-width: 520px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: center;
}

div#clientGrid img {
  width: calc(100% / 4) !important;
  height: 55px !important;
  margin: 4px 4px;
  gap: 10px;
}

.client-logo {
  height: 56px;
  text-align: center;
  display: inline-block !important;
  margin-right: 6px;
  margin-bottom: 6px;
}

.client-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.client-logo.muted {
  opacity: 0.92;
}

@media (min-width: 768px) {
  .nav-arrows {
    top: 100%;
    top: 39% !important;
    margin-top: 0;
    width: 581px !important;
    width: 100%;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    right: -8%;
  }
}

.nav-arrows {
  position: absolute;
  top: 100%;
  margin-top: 40px;
  width: 100%;
}

.nav-arrows button#navLeft {
  background-image: url(../images/left-arrow.svg);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  height: 40px;
  width: 40px;
  background-color: transparent;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-left: -40px;
}

.nav-arrows button#navRight {
  background-image: url(../images/right-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
  height: 40px;
  width: 40px;
  background-color: transparent;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: absolute;
  right: 0;
  margin-right: -40px;
}

.yellow-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: #ffd700;
  border-radius: 50%;
  margin-left: 263px;
}

.right-section {
  /* position: absolute; */
  /* align-items: center; */
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  top: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-left: 490px;
}

.categories-container {
  height: 100%;
  min-width: 280px;
  overflow: hidden;
  position: relative;
}

.category-item {
  list-style: none;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #fff;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.category-item.active {
  color: #ffd700;
}

#arrowHint {
  position: absolute;
  margin: auto;
  bottom: 15px;
  left: 0;
  right: 0;
  cursor: pointer;
  width: 35px;
}

#arrowHint img {
  width: 30px;
}

.nav-arrows {
  position: absolute;
  top: 0px;
}

.categories-list {
  height: 500px;
}

@media (max-width: 1024px) {
  .frame {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .our-client-section {
    padding: 32px 16px;
  }
  .left-section {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 75px;
    position: relative;
    top: -120px;
  }
  .center-section {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: 450px;
  }
  .categories-container {
    min-width: 250px;
  }
  .yellow-dot {
    right: 50%;
    top: auto;
    bottom: -8px;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

@media (max-width: 768px) {
  .our-client-section {
    padding: 24px 12px;
    height: 100vh;
  }
  .frame {
    gap: 20px;
  }
  .left-section h3 {
    font-size: 16px;
  }
  .left-section em {
    font-size: 24px;
  }
  .center-section {
    height: 350px;
    top: 0px !important;
  }
  .client-grid {
    width: 75%;
    gap: 5px;
    display: inline-block !important;
  }
  .client-logo {
    height: auto;
    font-size: 11px;
    height: 30px;
    text-align: center;
    display: inline-block !important;
    margin-right: 5px;
    margin-bottom: 5px;
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(27.33% - 0px);
            flex: 0 0 calc(27.33% - 0px);
  }
  .categories-container {
    min-width: 200px;
    height: 300px;
  }
  .category-item {
    font-size: 13px;
    padding: 8px 0;
  }
  div#clientGrid img {
    width: calc(100% / 4) !important;
    height: 50px !important;
    margin: 3px 3px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .our-client-section {
    padding: 16px 8px;
  }
  .frame {
    gap: 16px;
  }
  .left-section h3 {
    font-size: 14px;
  }
  .left-section em {
    font-size: 20px;
  }
  .center-section {
    height: 280px;
  }
  .client-grid {
    width: 57%;
  }
  .client-logo {
    height: 30px;
    font-size: 9px;
  }
  .categories-container {
    min-width: 180px;
    height: 140px;
  }
  .category-item {
    font-size: 20px;
    padding: 6px 0;
  }
}

/* Mobile horizontal scroll */
@media (max-width: 768px) {
  .categories-container {
    width: 100%;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    margin-top: 0px;
  }
  .categories-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    padding: 0 50vw;
    /* Add padding to enable centering */
    -webkit-transform: none;
            transform: none;
    /* Reset any vertical transforms */
  }
  div#categoriesList {
    gap: 10px;
    height: 40px;
    margin-top: 30px;
  }
  .category-item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    white-space: nowrap;
    font-size: 15px !important;
    line-height: 112%;
    padding: 8px 5px !important;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .category-item.active {
    color: #ffd700;
  }
  .category-item {
    font-size: 20px;
    line-height: 112%;
  }
}

.client-circle {
  left: 50%;
  width: 460px;
  top: 50%;
  border-radius: 50%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  text-align: center;
}

.logo-animate {
  position: relative;
  top: 50%;
}

.circle-container {
  height: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

div#hero-lottie-words {
  margin-top: -30px;
  margin-bottom: -90px;
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  div#hero-lottie-words {
    margin-top: -25px;
    margin-bottom: -70px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .news-l1 {
    margin-left: -200px !important;
  }
  .news-l3 {
    margin-left: 140px !important;
  }
  .news-l4 {
    margin-left: 400px;
  }
  .news-hero .news-split-container .hero-span {
    margin-top: -22px;
  }
}

div.videoModal {
  background-color: #090909CC;
}

div.videoModal .btn-close {
  position: absolute;
  right: -31px;
  background-size: 17px;
  top: -30px;
}

div.videoModal .btn-close:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
/*# sourceMappingURL=style.css.map */