@font-face {
  font-family: "CD";
  font-style: normal;
  font-weight: 300;
  src: url("assets/fonts/Gilroy/Gilroy-Light.ttf");
}

@font-face {
  font-family: "CD";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/Gilroy/Gilroy-Regular.ttf");
}

@font-face {
  font-family: "CD";
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/Gilroy/Gilroy-SemiBold.ttf");
}

@font-face {
  font-family: "CD";
  font-style: normal;
  font-weight: 600;
  src: url("assets/fonts/Gilroy/Gilroy-Bold.ttf");
}

@font-face {
  font-family: "CD";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/Gilroy/Gilroy-Black.ttf");
}

@font-face {
  font-family: "Clash";
  font-style: normal;
  font-weight: 300;
  src: url("assets/fonts/CLASHDISPLAY-REGULAR.OTF");
}

@font-face {
  font-family: "Clash";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/CLASHDISPLAY-MEDIUM.OTF");
}

@font-face {
  font-family: "Clash";
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/CLASHDISPLAY-SEMIBOLD.OTF");
}

@font-face {
  font-family: "Clash";
  font-style: normal;
  font-weight: 600;
  src: url("assets/fonts/CLASHDISPLAY-BOLD.OTF");
}

@font-face {
  font-family: "MM";
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/monument/MonumentExtended-Regular.otf");
}

@font-face {
  font-family: "MM";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/monument/MonumentExtended-Ultrabold.otf");
}

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

:root {
  --accent: #773dc2;
  --accent-lighter: #8d46eb;
}

body {
  overflow-x: hidden;
  background: #000;
  color: white;
  margin: 0;
  font-family: CD;
  width: 100vw;
}

/* Scrollbar */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #ffffff70;
  border-radius: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "MM";
}

h1 {
  font-size: 108px;
}

/* @media (max-width: 400px) {
  h1 {
    font-size: 10px;
  }
} */

/* @media (min-width: 1920px) {
  h1 {
    font-size: 128px;
  }
} */

h2 {
  font-size: 56px;
}

@media (min-width: 1920px) {
  h2 {
    font-size: 64px;
  }
}

h3 {
  font-size: 36px;
}

@media (max-width: 300px) {
  h3 {
    font-size: 28px;
  }
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 14px;
}

@media (max-width: 600px) {
  h2 {
    font-size: 36px;
  }
  h4 {
    font-size: 20px;
  }
}

.btn {
  padding: 24px 48px;
  outline: none;
  border: none;
  background: transparent;
  color: white;
  font-family: CD;
  border-radius: 100px;
  cursor: pointer;
  font-size: 16px;
}

.btn.btn-outlined {
  border: 2px solid white;
}

.btn.btn-filled {
  background-color: var(--accent);
}

@media (max-width: 1080px) {
  .btn {
    padding: 24px 36px;
  }
}

.gradient-wrapper,
.click-wrapper {
  z-index: -6;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.click-wrapper {
  z-index: 99;
}

#blob, #blob-static {
  height: 34vmax;
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.63;
  filter: blur(150px);
}

#blob-static{
  display: none;
  opacity: 1;

}

@media (max-width: 600px) {
  #blob {
    display: none;
  }

  #blob-static {
    display: block;
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  max-width: 2560px;
  padding: 24px 0;
  padding-left: 2.5%;
  transition: all ease 0.3s;
  border-bottom: 1px solid transparent;
}

#menu-btn {
  position: fixed;
  right: 24px;
  top: 30px;
  z-index: 999997;
  opacity: 1;
}

@media (max-width: 600px) {
  nav {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .scrolled {
    background-color: black;
    border-color: #ffffff30;
  }

  #menu-btn {
    position: fixed;
    right: 20px;
    top: 24px;
  }
}

@media (max-width: 1080px) {
  .home-page .project-cards-mobile {
    display: flex;
  }
}

#menu-btn > :not(input) {
  pointer-events: none;
}

.nav-links a {
  text-transform: uppercase;
}

.letter {
  display: inline-block;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}

nav .btn-group {
  display: flex;
  gap: 0.4em;
}

@media (max-width: 1080px) {
  nav .btn-group {
    display: none;
  }
}

.menu-small {
  position: fixed;
  background-color: #000;
  z-index: 101;
  font-family: "MM";
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 32px;
  opacity: 0;
  transform: scale(0);
  transform-origin: top right;
  top: 16px;
  right: 16px;
  border: 1px solid #ffffff20;
  box-shadow: 8px 8px 24px #ffffff20;
}

.menu-small button {
  width: 280px;
}

@media (max-width: 400px) {
  .menu-small {
    left: 12px;
    right: 12px;
    top: 12px;
  }

  .menu-small button {
    width: 100%;
  }
}

/* @media (max-width: 1080px) {
  .menu-small {
    width: 90%;
    top: 16px;
    padding: 24px;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-small button {
    width: 100%;
  }
} */

.menu-small i {
  font-size: 32px;
  margin-left: auto;
}

.menu-small .menu-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-small button {
  border-color: #ffffff40 !important;
}

.menu-small .menu-close {
  cursor: pointer;
}

.burger-new .burger-menu {
  filter: invert(100%);
  opacity: 0;
  position: fixed;
  top: 0px;
  right: 0px;
  padding: 38px 64px;
  transition: opacity ease 0.8s;
}

nav .btn-group .burger-menu {
  display: flex;
  align-items: center;
  z-index: 9999;
}

.burger-menu {
  opacity: 0;
  cursor: pointer;
}

/* Burger Menu */

.burger-menu label {
  display: flex;
  flex-direction: column;
  width: 70px;
  cursor: pointer;
  transform: scaleX(-1) scale(0.6);
}

.burger-menu span {
  background: #fff;
  border-radius: 10px;
  height: 4px;
  margin: 7px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.burger-menu label span:nth-of-type(1) {
  width: 50%;
}

.burger-menu label span:nth-of-type(2) {
  width: 100%;
}

.burger-menu label span:nth-of-type(3) {
  width: 75%;
}

input[type="checkbox"] {
  display: none;
}

.burger-menu.active span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(5px, 0px);
}

.burger-menu.active span:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
}

.burger-menu.active span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(27px, -8px) rotatez(45deg);
}

.hero {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
  gap: 64px;
}

.hero #hero-cta {
  margin-top: 48px;
}

.hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1180px;
  margin: auto;
  align-items: center;
  width: 85%;
}

.hero .hero-main {
  z-index: 99;
}

@media (min-width: 1920px) {
  .hero .hero-content {
    max-width: 1400px;
  }
}

/* .hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 99;
  align-items: center;
  padding-bottom: 32px;
  gap: 80px;
} */

/* .hero .bg {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow-x: hidden;
  background: blue;
} */

.hero video {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -8;
}

@media (max-width: 1080px) {
  .hero video {
    width: 400%;
  }

  .hero .hero-content {
    grid-template-columns: 1fr;
    padding-top: 180px;
  }
}

.hero-grid .hero-desc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
}

.hero-desc button {
  margin-top: 48px;
}

.hero-grid .hero-desc p {
  opacity: 0.7;
}

.testimonial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 80vh;
  max-width: 1080px;
  margin: auto;
  align-items: center;
}

@media (min-width: 1920px) {
  .testimonial {
    max-width: 1280px;
  }
}

.main {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 140vh;
  padding-top: 80px;
  font-size: 1vw;
  line-height: 1.4;
  display: flex;
  position: relative;
}

.pictures-container {
  height: 100%;
  width: 100%;
  position: relative;
  perspective: 2000px;
}

#box {
  perspective: 2000px;
  width: 100%;
  height: 100%;
  position: relative;
  will-change: transform;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  padding: 32px;
  background-color: #ffffff30;
  backdrop-filter: blur(28px);
  border-radius: 24px;
}

.card-1 {
  object-fit: contain;
  transform-style: preserve-3d;
  border-radius: 2vw;
  width: 17vw;
  position: absolute;
  top: 32%;
  left: 29%;
  transform: scale(0.9) perspective(1000px) rotate(-20deg)
    translate3d(-5vw, -7vh, 156px);
}

.card-2 {
  object-fit: contain;
  transform-style: preserve-3d;
  border-radius: 2vw;
  width: 28vw;
  position: absolute;
  top: 36%;
  left: 48%;
  transform: scale(1.5) perspective(1000px) rotate(9deg)
    translate3d(17vw, -4vh, -1080px);
}

.card-3 {
  object-fit: contain;
  transform-style: preserve-3d;
  border-radius: 2vw;
  width: 14vw;
  position: absolute;
  top: 68%;
  left: 34%;
  transform: rotate(-9deg) translate3d(-2vw, 0, -440px);
}

.card-4 {
  object-fit: contain;
  transform-style: preserve-3d;
  border-radius: 2vw;
  width: 17vw;
  position: absolute;
  top: 53%;
  left: 49%;
  transform: rotate(4deg) translate3d(5vw, 5vh, 92px);
}

.card .name {
  font-weight: 600;
}

.card .card-rating {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.card .card-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.card .card-pfp {
  border-radius: 100px;
  height: 64px;
  aspect-ratio: 1/1;
  width: 64px;
}

.checked {
  color: orange;
}

.hero .content .item-group {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 2em;
  /* transform: translateX(-108px);
    margin-right: -208px; */
}

.hero ._wrap {
  justify-self: stretch;
  align-self: stretch;
  width: 100%;
}

.p-3d {
  display: none;
}

@media (max-width: 1080px) {
  .hero ._wrap {
    display: none;
  }

  .p-3d {
    display: block;
  }

  .hero {
    height: auto;
  }

  .hero img {
    width: 100%;
  }
}

.hero .title {
  font-size: 90px;
  font-weight: 700;
  font-family: "MM";
}

.word {
  line-height: 1;
  overflow: hidden;
  padding-top: 24px;
  letter-spacing: 0;
  display: flex;
}

@media (max-width: 1080px) {
  .hero .title {
    font-size: 92px;
  }

  .word {
    padding-top: 12px;
  }
}

@media (max-width: 600px) {
  .hero .title {
    font-size: 56px;
  }
}

@media (min-width: 1920px) {
  .hero .title {
    font-size: 110px;
  }
}

.logo {
  width: 64px;
}
/* 
.services {
  max-width: 1080px;
  margin: 200px auto;
}

.services > h3 {
  text-align: center;
  margin-bottom: 80px;
}

.services .service-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 128px;
}

.services .service-group .service {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services .service-group .service .item-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services .service-group .service p {
  font-size: 28px;
}

.services .service-group .service h6 {
  color: var(--accent);
} */

.clients {
  max-width: 1180px;
  margin: auto;
  height: 200vh;
  position: relative;
  font-family: "MM";
  width: 90%;
}

.clients-mobile {
  display: none;
  text-align: center;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 800px) {
  .clients {
    display: none;
  }

  .clients-mobile {
    display: block;
  }
}

@media (min-width: 1920px) {
  .clients {
    max-width: 1280px;
  }
}

.clients-wrapper {
  height: 100vh;
  position: sticky;
  /* padding: 128px auto; */
  top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: 64px;
}

.clients .left {
  font-size: clamp(48px, 5vw, 180px);
  font-weight: 600;
  line-height: 1.1;
}

.clients .cols {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 52%;
  right: 15%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 128px;
  opacity: 0.5;
  z-index: -9;
}

.clients .col1 {
  grid-column-gap: 0vh;
  grid-row-gap: 0vh;
  grid-template-rows: 20vh;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: center;
  display: grid;
}

.clients .col2 {
  grid-column-gap: 0vh;
  grid-row-gap: 0vh;
  grid-template-rows: 20vh;
  grid-template-columns: 1fr;
  grid-auto-rows: 20vh;
  grid-auto-columns: 1fr;
  align-content: space-between;
  justify-content: stretch;
  align-items: center;
  justify-items: center;
  display: grid;
}

.clients .col,
.clients-mobile .row {
  filter: grayscale(1) invert(100%);
  opacity: 0.7;
}

.row {
  will-change: transform;
}

.clients .left span {
  color: var(--accent);
}

.clients-mobile .rows {
  margin-top: 64px;
}

.clients-mobile h3 {
  width: 90%;
  margin: auto;
}

.clients-mobile .row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 48px;
  width: 100%;
}

.clients-mobile .row img {
  height: 28px;
}

.horizontal-divider {
  width: 72px;
  height: 2px;
  background: var(--accent);
}

a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
}

.menu-small a:hover {
  text-decoration: underline;
}

.testimonials-3d {
  text-align: center;
  padding-top: 12vh;
  max-width: 1280px;
  margin: auto;
  width: 90%;
}

@media (min-width: 1920px) {
  .testimonials-3d {
    max-width: 1400px;
  }
}

.testimonials-3d h1 {
  font-family: "MM";
  font-size: clamp(32px, 7vw, 180px);
}

.testimonials-3d p {
  opacity: 0.7;
  font-weight: 500;
}

.testimonials-3d .cs {
  margin: 64px 0;
}

.testimonials-3d .cs .c {
  transform: scale(0.9);
  transition: all ease-out 0.4s;
  cursor: pointer;
}

.splide__slide img {
  width: 100%;
  height: auto;
}

.splide__arrow {
  background: transparent !important;
  border: 1px solid #fff !important;
  color: #fff !important;
  height: 64px !important;
  width: 64px !important;
}

.splide__arrow svg {
  fill: #fff !important;
}

.splide__arrows {
  display: flex;
  gap: 24px;
  width: fit-content;
  position: static;
  margin: auto !important;
  padding: 24px 0;
}

.splide__arrows > * {
  position: static !important;
  transform: none !important;
}

.testimonials-3d .cs .c:hover {
  transform: scale(1) rotateZ(5deg);
}

.cta-block {
  padding: 16vh 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-block .content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4em;
}

@media (max-width: 1080px) {
  .cta-block .content {
    gap: 24px;
  }
}

.cta-block .content h1, .ty-msg h1 {
  text-align: center;
  font-family: "MM";
  font-size: clamp(48px, 6vw, 180px);
}

.outline-text {
  -webkit-text-stroke: 1.2px var(--accent);
  color: transparent;
  position: absolute;
  transform: translateX(-5px);
}

@media (max-width: 300px) {
  .cta-block .content h1 {
    text-align: center;
    font-family: "MM";
    font-size: 32px;
  }

  .outline-text {
    -webkit-text-stroke: 1.2px var(--accent);
    color: transparent;
    position: absolute;
    transform: translateX(-1px);
  }
}

@media (max-width: 1080px) {
  .cta-block {
    padding: 10vh 0 0 0;
    margin-bottom: -8vh;
  }
}

.menu-content {
  opacity: 0.3;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 24px 64px;
  position: fixed;
  top: -100%;
  align-items: center;
  background-color: white;
  z-index: 999;
}

.menu-content .menu-links {
  display: flex;
  flex-direction: column;
}

.menu-content .menu-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  height: 100%;
}

.menu-content .contact {
  filter: invert(100%);
}

.menu-content .menu-left img {
  filter: invert(100%);
}

.menu-content .menu-links a {
  font-size: 80px;
  font-weight: bold;
  color: black;
  line-height: 90px;
  transition: all ease 0.3s;
  font-family: "MM";
}

.menu-content .menu-links a:hover {
  color: var(--accent);
  text-decoration: none;
}

.embed {
  height: 0;
  width: 0;
}

.offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin: auto;
  gap: 80px;
}

@media (max-width: 1080px) {
  .offerings-grid {
    display: none;
  }
}

.offerings-img {
  height: 100vh;
  width: 100%;
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
}

.offerings-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  margin-left: 48px;
  border-radius: 24px;
}

.offerings-body {
  width: 80%;
}

.offerings-body .offering {
  height: 100vh;
  display: flex;
  align-items: center;
}

.offering h2 {
  font-size: clamp(48px, 4vw, 180px);
  font-family: "MM";
}

.offering-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offering-content p {
  opacity: 0.7;
  font-size: 20px;
  font-weight: 500;
}

@media (max-width: 1080px) {
  .offering-content {
    gap: 4px;
  }
}

.offering-content .item-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  cursor: pointer;
}

.offerings-column {
  width: 90%;
  margin: 64px auto;
  display: flex;
  gap: 64px;
  flex-direction: column;
  display: none;
}

@media (max-width: 1080px) {
  .offerings-column {
    display: flex;
  }
}

.offerings-column img {
  border-radius: 16px;
  margin-bottom: 24px;
  width: 100%;
}

.offerings-column p {
  opacity: 0.7;
  font-size: 18px;
}

.back {
  font-size: 56px;
  cursor: pointer;
}

footer {
  position: relative;
  z-index: 99;
}

footer .wrapper {
  background-color: var(--accent);
  -webkit-clip-path: url(#mask);
  clip-path: url(#mask);
  object-fit: cover;
  width: 100%;
}

footer .content {
  background-image: none;
  justify-content: space-between;
  padding: 132px;
  display: flex;
  position: relative;
}

@media (max-width: 1080px) {
  footer .content {
    width: 90%;
    margin: auto;
    padding: 0;
    flex-direction: column;
    gap: 24px;
    padding: 48px 0;
    align-items: start;
    justify-content: start;
  }
}

footer .left {
  z-index: 1;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  position: relative;
  gap: 80px;
}

@media (max-width: 1080px) {
  footer .left {
    gap: 32px;
  }
}

footer ._3d-object {
  z-index: -1;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  pointer-events: none;
  overflow: hidden;
}

@media (max-width: 600px) {
  footer ._3d-object {
    display: none;
  }
}

footer ._3d-object_wrap {
  margin-left: auto;
  margin-right: auto;
  height: 120%;
  margin-top: -4%;
  aspect-ratio: 1;
}

footer .left .text {
  color: white;
  max-width: 12em;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

@media (min-width: 1080px) {
  footer .left .text {
    font-size: 56px;
  }
}

footer .left img {
  width: 72px;
}

footer .right {
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  display: flex;
  position: relative;
  gap: 5em;
}

@media (max-width: 1080px) {
  footer .left img {
    width: 48px;
  }

  footer .right {
    gap: 24px;
    align-items: start;
  }
}

.socials {
  justify-content: flex-end;
  gap: 1.2em;
  display: flex;
}

@media (max-width: 1080px) {
  .socials {
    gap: 8px;
  }
}

.invisible-dot {
  transform: scale(0);
  background-color: #000;
  transition: all ease 0.3s;
  position: absolute;
  transform-origin: center;
  width: 42px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  z-index: -1;
}

.socials .social-icon {
  font-size: 1.4em;
  width: 42px;
  aspect-ratio: 1/1;
  border: 1px solid white;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all ease 0.3s;
  position: relative;
}

.socials .social-icon:hover .invisible-dot {
  transform: scale(1.2);
}

.socials .social-icon:hover {
  transform: scale(1.2);
  border-color: transparent;
  color: #ffb800;
}

@media (max-width: 300px) {
  .socials .social-icon,
  .invisible-dot {
    width: 32px;
  }

  .socials .social-icon:hover .invisible-dot {
    transform: scale(1.1);
  }

  .right .socials .social-icon:hover {
    transform: scale(1.1);
    border-color: transparent;
  }
}

footer .right .nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

footer .right .nav-links h5 {
  text-decoration: none;
  font-weight: 600;
}

@media (min-width: 1080px) {
  footer .right .nav-links h5 {
    font-size: 36px;
  }
}

footer .contact,
.menu-content .contact {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.vertical-divider {
  background-color: white;
  width: 2px;
  height: 16px;
  margin-left: 1em;
  margin-right: 1em;
}
@media (max-width: 400px) {
  footer .contact {
    flex-direction: column;
    gap: 8px;
    align-items: start;
  }

  .vertical-divider {
    display: none;
  }
}

.spacer {
  height: 100vh;
  width: 100vw;
}

.horizontal-header {
  display: flex;
  gap: 64px;
  max-width: 1080px;
  margin: auto;
  flex-direction: row;
  align-items: start;
  font-weight: 500;
  width: 90%;
}

.our-approach .horizontal-header {
  padding: 12vh 0 0 0;
}

.work {
  padding-top: 128px;
}

.work .horizontal-header {
  padding: 0 0 28vh 0;
}

.see-work {
  display: none;
}

@media (max-width: 1080px) {
  .work {
    padding-top: 48px;
  }
  .work .horizontal-header {
    padding-bottom: 48px;
  }
  .work .horizontal-header.see-work-wrapper {
    display: none;
  }

  .see-work {
    padding: 48px 0 128px 0;
    display: block;
    margin: auto;
    width: fit-content;
  }
}

.horizontal-header h2 {
  flex: 1;
  font-size: 48px;
  font-family: "CD";
}
.horizontal-header h6 {
  font-family: "CD";
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1080px) {
  .horizontal-header {
    flex-direction: column;
    gap: 8px;
  }

  .horizontal-header h6 {
    font-size: 20px;
    width: 50%;
    line-height: 1.7;
  }

  .horizontal-header h2 {
    flex: 1;
    font-size: 36px;
  }
}

@media (min-width: 1920px) {
  .horizontal-header {
    max-width: 1280px;
  }
}

.horizontal-header h6 {
  color: var(--accent-lighter);
  text-transform: uppercase;
}

.horizontal-header h2 span {
  font-weight: 400;
}

/* 3D Carousel */

._3d-carousel {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
}

@media (max-width: 1080px) {
  ._3d-carousel {
    display: none;
  }
}

.slider-main_component {
  transform: scale(1.2) rotate(9deg);
}

.slider-image {
  transform: scale(1.5);
}

img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

.mdw-stacked-card-area {
  --card-scroll-height: 400;
  --card-rotate: 12;
}
.mdw-stacked-card-area .mdw-active-card {
  transform: translateY(-100vh) rotate(-60deg) !important;
  transition: 1s;
  visibility: hidden;
  transform-origin: bottom left;
}
.mdw-stacked-card-area > .e-con {
  position: sticky;
  top: 50% !important;
  left: 50%;
  transform: translate(-50%, -50%);
}

.empty {
  height: 100vh;
  width: 100%;
}

/* End custom CSS */

.e-con {
  position: absolute;
  max-width: 1080px;
  height: 350px;
  border-radius: 32px;
  padding-left: 32px;
  padding-right: 32px;
  transition: all ease 0.3s;
}

.elementor-element-4504e0c7 {
  background-color: #407aff;
}

header h1 {
  text-align: center;
  font-family: "MM";
  font-size: 7vw;
  max-width: 1280px;
  margin: auto;
}

.tabs {
  margin: auto;
  display: flex;
  flex-direction: row;
  background-color: #ffffff20;
  border-radius: 100px;
  width: fit-content;
  position: sticky;
  top: 48px;
  margin-top: 64px;
  backdrop-filter: blur(4em);
  z-index: 999;
}

.tab {
  transition: all ease 0.3s;
  border-radius: 100px;
  padding: 24px 32px;
  font-weight: 600;
  color: white;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .tab {
    background-color: #ffffff20;
    padding: 16px 20px;
  }

  .tabs {
    position: static;
    background-color: transparent;
    margin-bottom: 64px;
    width: 90%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
}

.tab.active {
  background-color: white;
  color: black;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.project-cards {
  max-width: 1200px;
  margin: auto;
  padding-top: 124px;
  margin-bottom: -5%;
  width: 90%;
}

.project-cards-mobile {
  width: 90%;
  margin: auto;
  display: none;
  flex-direction: column;
  gap: 48px;
}

.project-row {
  display: flex;
  flex-direction: row;
  gap: 64px;
  padding-bottom: 124px;
  font-family: "MM";
}

.project-row > a,
.project-row > div {
  flex: 1;
}

.project-card img {
  border-radius: 24px;
  margin-bottom: 8px;
  width: 100%;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-card .card-tags {
  display: flex;
  flex-direction: row;
  gap: 8px;
  opacity: 0.7;
  flex-wrap: wrap;
}

.project-card .card-tag::after {
  content: "|"; /* This is the separator */
  margin-left: 10px;
}

.project-card .card-tag:last-child:after {
  content: " ";
}

@media (max-width: 600px) {
  .work-page header {
    width: 90%;
    margin: auto;
  }
  .work-page header h1 {
    font-size: 48px;
  }
  .work-page .project-cards-mobile {
    display: flex;
  }

  .project-cards {
    display: none;
  }
}

.about,
.about-mobile {
  height: 100vh;
  width: 100vw;
  position: relative;
}

.about-mobile {
  display: none;
}

.about .content,
.about-mobile .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  width: 90%;
}

.about p,
.about-mobile p {
  color: #d6d1dc;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
}

.abstract {
  max-width: 1000px;
  text-align: center;
  margin: 128px auto;
  font-weight: 400;
  line-height: 32px;
  font-family: "CD";
  width: 90%;
}

.abstract span {
  font-weight: 500;
}

@media (max-width: 600px) {
  .abstract {
    text-align: left;
    margin-top: 0;
  }

  .about h1,
  .about-mobile h1 {
    font-size: 48px;
  }
}

.purple {
  color: var(--accent);
}

.yellow {
  color: goldenrod;
}

.section-header {
  max-width: 1080px;
  text-align: center;
  margin: 64px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 90%;
}

.section-header h5 {
  color: var(--accent);
}

.section-header p {
  opacity: 0.7;
  max-width: 800px;
  font-weight: 500;
  font-size: 20px;
  margin: auto;
}

.values {
  max-width: 1080px;
  margin: auto;
  display: flex;
  flex-direction: column;
  width: 90%;
}

.values-content {
  display: grid;
  grid-template-areas:
    "collab commit"
    "innov innov";
  gap: 24px;
}

.value {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 32px;
  padding: 48px;
  background-color: #ffffff20;
  gap: 12px;
}

.value_content {
  max-width: 600px;
}

.collab {
  grid-area: collab;
}

.commit {
  grid-area: commit;
}

.innov {
  grid-area: innov;
}

.value_count {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  color: black;
  font-weight: 600;
  font-size: 28px;
  margin-top: -4px;
}

.services-all-mobile {
  display: none;
}

@media (max-width: 600px) {
  .services-all-mobile {
    display: block;
  }

  .services-all-desktop {
    display: none;
  }
  .values-content {
    grid-template-areas:
      "collab"
      "commit"
      "innov";
  }
  .about-mobile {
    display: block;
  }
  .about {
    display: none;
  }
  .value {
    flex-direction: column;
  }
  .value_count {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

.value_content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.horizontal-divider-full {
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
}

.value_content p {
  opacity: 0.7;
  font-weight: 500;
  font-size: 18px;
}
.value_content h3 {
  font-family: "CD";
  letter-spacing: -2px;
  font-weight: 500;
}

.value_content {
  flex: 1;
}

.light-purple-bg {
  color: #d7c0fc;
}

.light-purple {
  color: #d7c0fc;
}

.purple-bg {
  background-color: var(--accent);
}

.yellow-bg {
  background-color: goldenrod;
}

.services-all {
  max-width: 1080px;
  width: 90%;
  margin: 180px auto;
}

.service-grid {
  display: grid;
  padding: 80px 0;
}

.services-item-icon {
  height: 100%;
  max-height: 160px;
  /* border: 1px solid #ffffff40; */
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  background: var(--accent);
}

.services-item-icon img {
  height: 64px;
}

.services-item-icon i {
  font-size: 64px;
}
.services-item-icon img {
  filter: invert(66%) sepia(100%) saturate(500%) hue-rotate(5deg)
    brightness(100%);
}

.service-grid.odd {
  grid-template-columns: 2fr 1fr;
}

.service-grid.even {
  grid-template-columns: 1fr 2fr;
}

@media (max-width: 1080px) {
  .service-grid.odd,
  .service-grid.even {
    grid-template-columns: 1fr;
    padding: 48px;
  }
}
.service-info {
  display: flex;
  gap: 24px;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 600px) {
  .service-grid.odd,
  .service-grid.even {
    padding: 0 0 48px 0;
  }

  .service-info {
    flex-direction: column;
    align-items: start;
  }

  .services-item-icon img {
    height: 32px;
  }

  .services-item-icon {
    padding: 24px;
  }
}

.service-grid:last-child {
  padding-bottom: 0;
}

.service-item-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-info h3 {
  font-family: "MM";
}

.service-info p {
  opacity: 0.7;
  font-weight: 500;
  font-size: 20px;
}

#icon,
#click,
#project-details {
  width: 160px;
  height: 160px;
  position: absolute;
  opacity: 0;
  transition: opacity ease 0.3s;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}

#project-details {
  margin-top: 160px;
}

#click {
  background-color: var(--accent);
  z-index: 9999999999999;
  border-radius: 100%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.client-logos {
  /* display: flex;
  flex-direction: row;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; */
  display: block;
  max-width: 1080px;
  margin: auto;
}

.marquee {
  margin: 0 auto;
  padding-top: 32px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;

  &:before,
  &:after {
    position: absolute;
    top: 0;
    width: 50px;
    content: "";
    z-index: 1;
  }
  &:before {
    left: 0;
    background: linear-gradient(to right, white 5%, transparent 100%);
  }
  &:after {
    right: 0;
    background: linear-gradient(to left, white 5%, transparent 100%);
  }
}

.marquee__content {
  padding-bottom: 64px;
}

.marquee__content:first-child {
  display: flex;
  animation: marquee 30s linear infinite forwards;
}

.marquee__content:nth-child(2) {
  display: flex;
  animation: marquee 30s linear infinite reverse;
}

.list-inline {
  display: flex;
  justify-content: space-around;
  width: 33.33%;

  /* reset list */
  list-style: none;
  padding: 0;
  margin: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.6%);
  }
}

.marquee img {
  filter: grayscale(1) invert(100%);
  opacity: 0.7;
  margin-left: 32px;
  height: 64px;
}

@media (max-width: 600px) {
  .marquee {
    padding-top: 0px;
  }
  .marquee img {
    height: 28px;
  }
}

.fadeIn {
  opacity: 1;
}

.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1080px;
  margin: 240px auto;
  gap: 64px;
  align-items: center;
  width: 90%;
}

.approach-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.approach h5 {
  font-family: "MM";
  text-transform: uppercase;
  letter-spacing: normal;
  color: var(--accent);
}

.approach-left h2 {
  font-family: "MM";
}

.approach-left p {
  font-weight: 500;
  opacity: 0.7;
  font-size: 20px;
}

.our-clients {
  margin-bottom: 200px;
}

@media (max-width: 1080px) {
  .approach {
    grid-template-columns: 1fr;
    margin: 80px auto;
  }

  .our-clients {
    margin: 128px 0;
  }
}

/* Basic styling */
.accordion {
  width: 100%;
}

.accordion-item {
  font-size: 36px;
  font-family: "MM";
  color: white;
  cursor: pointer;
  border-top: 3px solid var(--accent);
  overflow: hidden;

}

.accordion-header {
  padding: 15px;
  cursor: pointer;
}

.accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  transition-delay: 0.1s;
  padding: 0 15px;
  font-size: 20px;
  font-family: "CD";
}

.spacer {
  width: 100px;
  height: 35px;
}

.ty-msg,
.ty-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.ty-wrapper {
  height: 100vh;
  max-width: 1280px;
  margin: auto;
  width: 90%;
}
