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

body,
html {
  height: 100%;
  width: 100%;
  overscroll-behavior: none;
}

body {
  background: #fff;
  color: #101010;
  font-family: JakartaRegular;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@font-face {
  font-family: JakartaRegular;
  src: url(../../fonts/PlusJakartaSans-Regular.ttf);
}
@font-face {
  font-family: JakartaMedium;
  src: url(../../fonts/PlusJakartaSans-Medium.ttf);
}
@font-face {
  font-family: JakartaBold;
  src: url(../../fonts/PlusJakartaSans-SemiBold.ttf);
}
h1 {
  font-size: clamp(5rem, 15cqi, 9rem);
  letter-spacing: -0.08em;
  font-weight: lighter;
  line-height: 120%;
  word-spacing: 0.1em;
}

h2 {
  font-size: clamp(2.8rem, 7cqi, 3.5rem);
  letter-spacing: -0.04em;
  font-weight: lighter;
  line-height: 120%;
}

h3 {
  font-size: clamp(3.2rem, 6cqi, 5rem);
  letter-spacing: -0.08em;
  font-weight: lighter;
  line-height: 120%;
  word-spacing: 0.1em;
}

h4 {
  font-size: clamp(2rem, 2cqi, 3.8rem);
  letter-spacing: -0.06em;
  font-weight: lighter;
  line-height: 120%;
  word-spacing: 0.1em;
}

h5 {
  font-size: clamp(1.7rem, 2.5cqi, 2rem);
  font-weight: lighter;
  letter-spacing: -0.06em;
  word-spacing: 0.1em;
}

p {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.bold {
  font-weight: bold;
}

@media (max-width: 320px) {
  h1 {
    font-size: clamp(3.5rem, 15cqi, 9rem);
  }
  h2 {
    font-size: clamp(3rem, 9cqi, 7rem);
  }
  h3 {
    font-size: clamp(2rem, 6cqi, 5rem);
  }
  h4 {
    font-size: clamp(1.6rem, 4cqi, 3.8rem);
  }
  h5 {
    font-size: clamp(1.2rem, 3.5cqi, 2.2rem);
  }
}
.reuse-logo {
  display: flex;
  overflow: scroll;
  max-width: 100vw;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
  margin-top: 32px;
}
.reuse-logo > * {
  flex: 0 0 100%;
}
.reuse-logo .group {
  display: flex;
}
.reuse-logo .row {
  will-change: transform;
  animation: scrolling 35s linear infinite;
  display: flex;
  gap: 32px;
  padding-right: 32px;
}
.reuse-logo .group.reverse .row {
  animation: scrolling 35s linear infinite reverse;
}
.reuse-logo img {
  flex: 1 1 296px; /* Adjust width, prevents wrapping within a row */
  min-width: 296px;
  width: 296px;
  height: 144px;
}

@keyframes scrolling {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
::-moz-selection {
  color: #fff;
  background: #535353;
}

::selection {
  color: #fff;
  background: #535353;
}

section {
  width: 100%;
  overflow-x: hidden;
}

#container {
  width: 100%;
  height: 100%;
  padding: 0 4rem;
}

a {
  text-decoration: none;
  color: #101010;
}

/* Break Points */
@media (max-width: 768px) {
  #container {
    padding: 0 2rem;
  }
}
@media (max-width: 540px) {
  #container {
    padding: 0 1rem;
  }
}
.no-break {
  white-space: nowrap;
}

.row {
  display: flex;
  gap: 4px;
}

/* Smooth Scroller */
.site-main.no_scroll {
  height: 100vh;
  overflow: hidden;
  position: fixed;
}

/* Progress Bar */
.progressBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: #fff;
  mix-blend-mode: difference;
  z-index: 20;
}

/* Underline Link */
.underLine_Link {
  position: relative;
  color: #fff;
  mix-blend-mode: difference;
  z-index: 10;
  display: inline-block;
}
.underLine_Link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5%;
  background: #fff;
  mix-blend-mode: difference;
  width: 100%;
  height: 2px;
  transform: scale(0);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.underLine_Link:hover::before {
  transform: scale(1);
}

/* button */
.btn {
  position: relative;
  display: block;
  border: 1.5px solid #fff;
  width: fit-content;
  color: #fff;
  border-radius: 50px;
  font-size: 1rem;
  padding: 12px 24px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  mix-blend-mode: difference;
}
.btn span {
  z-index: 2;
  mix-blend-mode: difference;
  position: relative;
  color: #fff;
}
.btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -100%;
  background: #fff;
  z-index: 1;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
.btn:hover::before {
  bottom: 0%;
  border-radius: 0;
}

/* Parallax Image */
.parallax_img {
  overflow: hidden;
  position: relative;
}
.parallax_img img {
  position: absolute;
  top: -2%;
  left: 0;
  height: 120%;
  width: 100%;
  object-fit: cover;
}

.loader {
  position: fixed;
  width: 100vw;
  height: 200vh;
  pointer-events: none;
  background-color: #101010;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}

.is-transitioning {
  pointer-events: none;
  cursor: progress;
}

nav a {
  position: fixed;
  font-size: 1.5rem;
  color: #fff;
  mix-blend-mode: difference;
  z-index: 10;
}
nav a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5%;
  background: #fff;
  width: 100%;
  height: 2px;
  transform: scale(0);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
nav a:hover::before {
  transform: scale(1);
}
nav a:nth-child(1) {
  top: 1.5rem;
  left: 2rem;
}
nav a:nth-child(2) {
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
nav a:nth-child(3) {
  right: 2rem;
  top: 1.5rem;
}
nav a:nth-child(4) {
  left: 2rem;
  bottom: 1.5rem;
}
nav a:nth-child(5) {
  right: 2rem;
  bottom: 1.5rem;
}

@media (max-width: 540px) {
  nav a {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }
  nav a:nth-child(1) {
    top: 1rem;
    left: 1rem;
  }
  nav a:nth-child(2) {
    top: 1rem;
  }
  nav a:nth-child(3) {
    right: 1rem;
    top: 1rem;
  }
  nav a:nth-child(4) {
    left: 1rem;
    bottom: 1rem;
  }
  nav a:nth-child(5) {
    right: 1rem;
    bottom: 1rem;
  }
}
.social {
  background: #fff;
  padding: 8rem 0;
  /* Marquee */
  /* Items */
}
@media (max-width: 540px) {
  .social {
    padding: 4rem 0;
  }
}
.social .marquee {
  width: 100vw;
  max-width: 100%;
  height: 12rem;
  overflow-x: hidden;
  position: relative;
}
.social .marquee .track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 100s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.social .social_wrapper {
  padding-top: 5rem;
}
.social .social_wrapper .item {
  display: block;
  position: relative;
  padding: 2rem 0;
  border-bottom: 1px solid #d9d9d9;
  overflow: hidden;
}
.social .social_wrapper .item #container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.social .social_wrapper .item #container i {
  font-size: 2rem;
  transform: rotate(-45deg);
  transition: transform 0.3s ease-in-out;
}
.social .social_wrapper .item .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #101010;
  transform: scaleY(0);
  transition: transform 0.3s ease-in-out;
}
.social .social_wrapper .item:hover {
  color: #fff;
}
.social .social_wrapper .item:hover #container {
  padding: 0 7rem;
}
.social .social_wrapper .item:hover #container i {
  font-size: 2rem;
  transform: rotate(0deg);
}
.social .social_wrapper .item:hover .overlay {
  transform: scaleY(1);
}
.social .social_wrapper .item:last-child {
  border-bottom: none;
}

/* breakPoints */
@media (max-width: 768px) {
  .social .social_wrapper .item:hover #container {
    padding: 0 4rem;
  }
}
@media (max-width: 540px) {
  .social .marquee {
    height: 7rem;
  }
  .social .social_wrapper {
    padding-top: 2rem;
  }
  .social .social_wrapper .item {
    padding: 1.5rem 0;
  }
  .social .social_wrapper .item #container i {
    font-size: 1.5rem;
  }
  .social .social_wrapper .item:hover #container {
    padding: 0 2rem;
  }
  .social .social_wrapper .item:hover #container i {
    font-size: 1.5rem;
  }
}
footer {
  background: #101010;
  color: #fff;
  padding: 10rem 0 0 0;
}
footer #container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10rem;
}
footer #container .footer_header .footer_heading {
  text-align: center;
}
footer #container .footer_header .footer_heading h2 {
  font-size: 4rem;
  max-width: 560px;
}
footer #container .footer_header .footer_btns_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-top: 5rem;
}
footer #container .footer_header .footer_btns_wrapper a {
  font-size: 1.2rem;
  padding: 26px 52px;
}
footer #container .footer_bottom {
  width: 100%;
  max-width: 960px;
  border-top: 1px solid #333333;
  text-align: center;
  padding: 2rem 0;
}
footer #container .footer_bottom P:last-child {
  opacity: 0.2;
  margin-top: 1rem;
}

/* breakPoints */
@media (max-width: 768px) {
  footer #container {
    gap: 8rem;
  }
}
@media (max-width: 620px) {
  footer {
    padding: 7rem 0 0 0;
  }
  footer #container {
    gap: 5rem;
  }
  footer #container .footer_header .footer_btns_wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
  footer #container .footer_header .footer_btns_wrapper a {
    font-size: 1rem;
    text-align: center;
    width: 100%;
    padding: 1.4rem 0;
  }
}
.title_heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 540px) {
  .title_heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.spline_container {
  position: absolute;
  top: 110px;
  right: -14%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background: none;
  min-height: 800px;
}
.header .scroll-to a {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.header .flex {
  display: flex;
  position: absolute;
  top: 20vh;
  gap: 3vw;
}
.header .intro {
  text-align: left;
  max-width: 500px;
}
.header .intro h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
.header .intro h3 {
  font-size: 18px;
}
.header .icon {
  width: 200px;
  height: 200px;
}
.header .icon svg {
  animation: rotate 10s linear infinite;
}
.header h1 {
  font-weight: bold;
  width: 100vw;
  text-align: center;
  font-size: 15vw;
  position: absolute;
  bottom: 15vh;
}
.header h5 {
  line-height: 1.3em;
  word-spacing: 0;
  letter-spacing: -0.4em;
}
@media (max-width: 768px) {
  .header .icon {
    color: #fff;
    position: absolute;
    opacity: 0.2;
    scale: 3.4;
  }
  .header .flex {
    display: flex;
    flex-direction: column;
    text-align: left;
    position: absolute;
    top: 0vh;
    gap: 3vw;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 10px 0;
  }
  .header .flex .intro {
    text-align: left;
    width: 86dvw;
  }
  .header h1 {
    font-size: 55px;
    padding-left: 15px;
    position: relative;
    bottom: 0;
  }
}

@media (max-width: 768px) {
  .header.mobile {
    visibility: visible;
    min-height: 670px;
  }
  .header.desktop {
    display: none;
  }
}
@media (min-width: 769px) {
  .header.mobile {
    display: none;
  }
  .header.desktop {
    visibility: visible;
  }
}
.about {
  background: #101010;
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 8rem 0;
}
@media (max-width: 540px) {
  .about {
    padding: 4rem 0;
  }
}
.about #container {
  max-width: 1120px;
  width: 100%;
  height: fit-content;
}
.about #container h5 {
  font-size: 32px;
}

.expertise {
  background: #fff;
  padding: 8rem 0;
}
@media (max-width: 540px) {
  .expertise {
    padding: 4rem 0;
  }
}
.expertise .title_heading h2 {
  letter-spacing: -0.06em;
}
.expertise .expertise_wrapper {
  padding-top: 5rem;
}
.expertise .expertise_wrapper .elem {
  position: relative;
  height: 149px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  border-top: 2px solid #d9d9d9;
  overflow: hidden;
  cursor: pointer;
}
.expertise .expertise_wrapper .elem .title {
  display: flex;
  gap: 18px;
  z-index: 2;
  transition: color 0.3s ease-in-out;
  padding-bottom: 35px;
}
.expertise .expertise_wrapper .elem .overlay {
  width: 100%;
  height: 100%;
  background: #101010;
  position: absolute;
  left: 0;
  top: -100%;
  transition: all 0.3s ease;
}
.expertise .expertise_wrapper .elem:hover {
  color: #fff;
}
.expertise .expertise_wrapper .elem:hover .overlay {
  top: 0;
}

#fixed-img {
  height: 29vw;
  width: 23vw;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: fixed;
  z-index: 10;
  left: 55%;
  top: 20%;
  display: block;
  pointer-events: none;
  opacity: 0;
}
#fixed-img.visible {
  opacity: 1;
}

/* BreakPoints */
@media (max-width: 768px) {
  #fixed-img {
    display: none;
  }
  .expertise .expertise_wrapper .elem {
    height: 120px;
    padding: 0 2rem;
  }
}
@media (max-width: 540px) {
  .expertise .expertise_wrapper .elem {
    height: 120px;
    padding: 0 1rem;
  }
}
.projects {
  background: #101010;
  color: #fff;
  padding: 8rem 0;
  margin-top: -2px;
}
@media (max-width: 540px) {
  .projects {
    padding: 4rem 0;
  }
}
.projects #container .case_wrapper {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding-top: 5rem;
}
.projects #container .case_wrapper .project_case_holder .project_case {
  position: relative;
  width: 100%;
  height: min-content;
  transform-origin: center center;
  transform: scale(0.7);
  overflow: hidden;
  border-radius: 70px;
}
.projects #container .case_wrapper .project_case_holder .project_case .main_img {
  width: 100%;
  height: 85vh;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform;
  transform: scale(1.5);
  transition: filter 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  filter: blur(0px) brightness(90%);
  border-radius: 70px;
}
.projects #container .case_wrapper .project_case_holder .project_case .sub_img {
  width: 30vw;
  height: 40vh;
  will-change: transform;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 2;
  border-radius: 30px;
  opacity: 0;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.projects #container .case_wrapper .project_case_holder .project_case:hover .sub_img {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.projects #container .case_wrapper .project_case_holder .project_case:hover .main_img {
  filter: blur(3px) brightness(90%);
}
.projects #container .case_wrapper .project_case_holder .txt {
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
  padding: 1rem 0;
}
.projects #container .case_wrapper .project_case_holder .txt p {
  color: #7f7f7f;
}

@media (max-width: 1040px) {
  .projects #container .case_wrapper .project_case_holder .project_case {
    border-radius: 40px;
  }
  .projects #container .case_wrapper .project_case_holder .project_case .main_img {
    max-height: 650px;
    border-radius: 40px;
  }
  .projects #container .case_wrapper .project_case_holder .project_case .sub_img {
    width: 50%;
    height: 50%;
  }
}
@media (max-width: 540px) {
  .projects #container .case_wrapper .project_case_holder .project_case {
    border-radius: 30px;
  }
  .projects #container .case_wrapper .project_case_holder .project_case .main_img {
    max-height: 400px;
    border-radius: 30px;
  }
}
.belief {
  background: #101010;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7.5rem 0;
}
.belief #container {
  padding: 0 4rem;
}
.belief #container h2 {
  letter-spacing: -0.06em;
  padding-bottom: 1rem;
}
.belief #container .beliefWrapper {
  margin-left: 15.6%;
  padding-top: 65px;
}
.belief #container .row {
  gap: 10px;
}
.belief #container div.belief-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  text-align: left;
  gap: 10px;
}
.belief #container div.belief-item:not(:first-of-type) {
  margin-top: 40px;
}
.belief #container div.belief-item h3 {
  font-size: 48px;
}
.belief #container div.belief-item p {
  margin-top: 10px;
  margin-left: 20px;
  width: 70%;
}
.belief #container div.belief-item a {
  font-weight: 600;
  display: inline-flex;
  align-items: baseline;
}
.belief #container div.belief-item h5 {
  margin: 0;
  width: 100%;
}
.belief #container div.belief-item h5:nth-child(2) {
  margin-top: 2rem;
  margin: 0;
}
.belief #container div.belief-item .whatsapp {
  color: #27d045;
}
.belief #container div.belief-item .whatsapp_logo {
  height: 24px;
  position: relative;
  top: 4px;
}
.belief #container div.belief-item .email {
  transition: all 0.3ms;
}
.belief #container div.belief-item .email:hover {
  color: rgb(118, 118, 226);
}
@media (max-width: 768px) {
  .belief #container div.belief-item h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .belief #container div.belief-item p {
    margin-left: 5px;
  }
}

.playground {
  background: #101010;
  color: #fff;
  height: 100vh;
}
.playground #container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5rem;
  position: relative;
}
.playground #container .horizontal_scroll {
  width: auto;
  display: flex;
  align-items: center;
  gap: 10rem;
  width: 176vw;
  height: 60vh;
}
.playground #container .horizontal_scroll img {
  flex-shrink: 0;
  width: 22vw;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
}
.playground #container .horizontal_scroll img:nth-child(1) {
  transform: rotate(-5deg);
}
.playground #container .horizontal_scroll img:nth-child(2) {
  transform: rotate(5deg);
}
.playground #container .horizontal_scroll img:nth-child(3) {
  transform: rotate(-5deg);
}
.playground #container .horizontal_scroll img:nth-child(4) {
  transform: rotate(5deg);
}
.playground #container .horizontal_scroll img:nth-child(5) {
  transform: rotate(-5deg);
}
.playground #container .horizontal_scroll img:nth-child(6) {
  transform: rotate(5deg);
}
.playground #container .horizontal_scroll img:nth-child(7) {
  transform: rotate(-5deg);
}
.playground #container .horizontal_scroll img:nth-child(8) {
  transform: rotate(5deg);
}

/* BreakPoints */
@media (max-width: 1440px) {
  .playground #container .horizontal_scroll {
    width: 232vw;
  }
  .playground #container .horizontal_scroll img {
    width: 29vw;
  }
}
@media (max-width: 1040px) {
  .playground #container {
    gap: 10rem;
  }
  .playground #container .horizontal_scroll {
    width: 320vw;
    max-height: 550px;
  }
  .playground #container .horizontal_scroll img {
    width: 40vw;
  }
}
@media (max-width: 768px) {
  .playground #container .horizontal_scroll {
    width: 440vw;
    max-height: 550px;
  }
  .playground #container .horizontal_scroll img {
    width: 55vw;
  }
}
@media (max-width: 540px) {
  .playground #container .horizontal_scroll {
    width: 560vw;
    max-height: 400px;
    gap: 5rem;
  }
  .playground #container .horizontal_scroll img {
    width: 70vw;
  }
}
.active_builds {
  margin-top: -2px;
}
.active_builds #active_builds {
  background: #101010;
  color: #fff;
}
.active_builds .builds {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 95%;
  margin: auto;
  margin-top: 96px;
  padding-bottom: 136px;
}
.active_builds .build-card {
  width: 100%;
}
.active_builds .build-card img {
  width: 100%;
}
.active_builds .build-card .txt {
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
  padding: 1rem 0;
}
.active_builds .build-card .txt p {
  color: #7f7f7f;
}
@media (max-width: 768px) {
  .active_builds .builds {
    flex-direction: column;
  }
}

.work_Cnt {
  padding: 8rem 0;
}
@media (max-width: 540px) {
  .work_Cnt {
    padding: 4rem 0;
  }
}
.work_Cnt #container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 5rem;
  column-gap: 2rem;
}
.work_Cnt #container .work_case {
  display: block;
}
.work_Cnt #container .work_case > div {
  height: 60vh;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.work_Cnt #container .work_case > div img {
  transition: all 0.3s ease-in-out;
}
.work_Cnt #container .work_case > div img:nth-child(1) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}
.work_Cnt #container .work_case > div img:nth-child(2) {
  width: 50%;
  height: 50%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  border-radius: 20px;
}
.work_Cnt #container .work_case h5 {
  margin-top: 1rem;
}
.work_Cnt #container .work_case p {
  margin-top: 0.5rem;
}
.work_Cnt #container .work_case:hover > div {
  border-radius: 40px;
}
.work_Cnt #container .work_case:hover > div img:nth-child(1) {
  filter: blur(5px);
  transform: scale(1);
}
.work_Cnt #container .work_case:hover > div img:nth-child(2) {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* BreakPoints */
@media (max-width: 1040px) {
  .work_Cnt #container .work_case > div {
    max-height: 450px;
  }
  .work_Cnt #container .work_case > div img:nth-child(2) {
    border-radius: 15px;
  }
  .work_Cnt #container .work_case:hover > div {
    border-radius: 30px;
  }
}
@media (max-width: 680px) {
  .work_Cnt {
    margin-top: 2rem;
  }
  .work_Cnt #container {
    grid-template-columns: 1fr;
    row-gap: 5rem;
    column-gap: 0rem;
  }
  .work_Cnt #container .work_case > div {
    max-height: 400px;
  }
}
.about_header {
  height: 100vh;
  background: #fff;
  position: relative;
}
.about_header #container {
  display: flex;
  align-items: center;
}
.about_header #container h2 {
  max-width: 960px;
}

.about_header_img .parallax_img {
  height: 100vh;
  overflow: hidden;
}

/* Breakpoints */
@media (max-width: 1040px) {
  .about_header_img .parallax_img {
    height: 80vh;
  }
}
.about_goals {
  padding: 8rem 0;
}
@media (max-width: 540px) {
  .about_goals {
    padding: 4rem 0;
  }
}
.about_goals #container h5 {
  max-width: 960px;
  width: 100%;
}
.about_goals #container .img_wrapper {
  display: flex;
  justify-content: center;
  margin-top: 8rem;
  gap: 5rem;
}
.about_goals #container .img_wrapper .parallax_img {
  height: 60vh;
  width: 25vw;
  border-radius: 30px;
}
.about_goals #container .img_wrapper .parallax_img:nth-child(2) {
  margin-top: 8rem;
}

/* Breakpoints */
@media (max-width: 1040px) {
  .about_goals #container .img_wrapper {
    gap: 2rem;
  }
  .about_goals #container .img_wrapper .parallax_img {
    width: 35vw;
    max-height: 500px;
  }
}
@media (max-width: 820px) {
  .about_goals #container .img_wrapper {
    gap: 2rem;
  }
  .about_goals #container .img_wrapper .parallax_img {
    width: 40vw;
    max-height: 400px;
  }
}
@media (max-width: 540px) {
  .about_goals #container .img_wrapper {
    gap: 1rem;
    flex-direction: column;
    margin-top: 5rem;
  }
  .about_goals #container .img_wrapper .parallax_img {
    width: 100%;
    max-height: 400px;
    border-radius: 20px;
  }
  .about_goals #container .img_wrapper .parallax_img:nth-child(2) {
    margin-top: 0;
  }
}
.about_weDo {
  background: #101010;
  color: #fff;
}
.about_weDo #container .borderSeprator {
  background: #333333;
}

.about_awwards {
  background: #fff;
  color: #101010;
}
.about_awwards #container .borderSeprator {
  background: #d9d9d9;
}

.about_weDo,
.about_awwards {
  padding: 8rem 0;
}
@media (max-width: 540px) {
  .about_weDo,
  .about_awwards {
    padding: 4rem 0;
  }
}
.about_weDo #container h3,
.about_awwards #container h3 {
  width: 100%;
  max-width: 800px;
}
.about_weDo #container .para,
.about_awwards #container .para {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about_weDo #container .para > div,
.about_awwards #container .para > div {
  max-width: 900px;
  width: 100%;
}
.about_weDo #container .para > div h5:nth-child(2),
.about_awwards #container .para > div h5:nth-child(2) {
  margin-top: 2rem;
}
.about_weDo .parallax_img,
.about_awwards .parallax_img {
  height: 100vh;
  margin-top: 8rem;
  border-radius: 50px;
}
.about_weDo .parallax_img img,
.about_awwards .parallax_img img {
  filter: brightness(80%);
}

/* BreakPoitns */
@media (max-width: 1040px) {
  .about_weDo .parallax_img,
  .about_awwards .parallax_img {
    margin-top: 8rem;
    max-height: 600px;
  }
}
@media (max-width: 540px) {
  .about_weDo .parallax_img,
  .about_awwards .parallax_img {
    margin-top: 5rem;
    max-height: 500px;
    border-radius: 20px;
  }
}
.about_clients {
  background: #101010;
  color: #fff;
  padding: 8rem 0;
}
@media (max-width: 540px) {
  .about_clients {
    padding: 4rem 0;
  }
}
.about_clients #container h3 {
  max-width: 960px;
}
.about_clients #container .brands {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8rem;
}
.about_clients #container .brands .brand_wrapper {
  width: 100%;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: center;
  gap: 8rem;
}
.about_clients #container .brands .brand_wrapper img {
  width: 120px;
  filter: brightness(40%);
  transition: filter 0.3s ease-in-out;
}
.about_clients #container .brands .brand_wrapper img:hover {
  filter: brightness(100%);
}

/* BreakPoints */
@media (max-width: 540px) {
  .about_clients #container .brands {
    margin-top: 5rem;
  }
  .about_clients #container .brands .brand_wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .about_clients #container .brands .brand_wrapper img {
    width: 100px;
  }
}
@media (max-width: 320px) {
  .about_clients #container .brands .brand_wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.expertise_header {
  height: 100vh;
  background: #fff;
  position: relative;
}
.expertise_header #container {
  display: flex;
  align-items: center;
}
.expertise_header #container h2 {
  max-width: 960px;
}

.expertise_header_img .parallax_img {
  height: 100vh;
  overflow: hidden;
  filter: brightness(80%);
}

@media (max-width: 1040px) {
  .expertise_header_img .parallax_img {
    height: 80vh;
    overflow: hidden;
    filter: brightness(80%);
  }
}
.expertise_container {
  padding: 8rem 0;
}
@media (max-width: 540px) {
  .expertise_container {
    padding: 4rem 0;
  }
}
.expertise_container #container .txt h3 {
  width: 100%;
  max-width: 960px;
}
.expertise_container #container .txt .para {
  display: flex;
  align-items: center;
  justify-content: center;
}
.expertise_container #container .txt .para h5 {
  width: 100%;
  max-width: 960px;
}

/* Cards */
.expertise_cards_container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
}
.expertise_cards_container .col {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.expertise_cards_container .col .card {
  width: 25vw;
}
.expertise_cards_container .col .card .parallax_img {
  width: 100%;
  height: 60vh;
  border-radius: 30px;
  filter: brightness(90%);
}
.expertise_cards_container .col .card p {
  margin-top: 1rem;
}
.expertise_cards_container .col .card p.tag {
  font-family: JakartaBold;
  font-weight: bold;
}
.expertise_cards_container .col .card h5 {
  margin-top: 1rem;
}
.expertise_cards_container .col:nth-child(2) {
  margin-top: 30rem;
}

/* BreakPoints */
@media (max-width: 1040px) {
  .expertise_cards_container {
    gap: 5rem;
  }
  .expertise_cards_container .col .card {
    width: 35vw;
  }
  .expertise_cards_container .col .card .parallax_img {
    max-height: 450px;
  }
}
@media (max-width: 820px) {
  .expertise_cards_container {
    gap: 2rem;
  }
  .expertise_cards_container .col {
    width: 100%;
  }
  .expertise_cards_container .col .card {
    width: 100%;
  }
  .expertise_cards_container .col:nth-child(2) {
    margin-top: 15rem;
  }
}
@media (max-width: 540px) {
  .expertise_cards_container {
    gap: 4rem;
    flex-direction: column;
    padding-top: 5rem;
  }
  .expertise_cards_container .col {
    gap: 4rem;
  }
  .expertise_cards_container .col .card .parallax_img {
    max-height: 380px;
  }
  .expertise_cards_container .col:nth-child(2) {
    margin-top: 0;
  }
}
#playground {
  height: 100vh;
  overflow: hidden;
  background: #101010;
  display: flex;
  justify-content: center;
  align-items: center;
}
#playground #gallery {
  height: 90%;
  width: 90%;
  position: relative;
}
#playground #gallery .frame {
  position: absolute;
  width: 12vw;
  height: 280px;
  z-index: 1;
  border-radius: 20px;
}
#playground #gallery .frame:hover {
  z-index: 2;
}
#playground #gallery .frame:nth-child(1) {
  top: 0%;
  left: 10%;
  background: url("../../../assets/playground1.gif") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(2) {
  bottom: 1%;
  left: 40%;
  background: url("../../../assets/playground2.gif") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(3) {
  top: 20%;
  left: 25%;
  background: url("../../../assets/playground3.gif") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(4) {
  top: 10%;
  left: 40%;
  background: url("../../../assets/playground4.gif") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(5) {
  bottom: 0%;
  left: 11%;
  background: url("../../../assets/playground5.gif") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(6) {
  top: 50%;
  left: 28%;
  background: url("../../../assets/playground6.gif") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(7) {
  top: 0%;
  right: 8%;
  background: url("../../../assets/playground7.gif") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(8) {
  bottom: 0%;
  right: 8%;
  background: url("../../../assets/playground8.gif") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(9) {
  top: 40%;
  left: 75%;
  background: url("../../../assets/playground9.webp") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(10) {
  top: 18%;
  left: 0%;
  background: url("../../../assets/playground10.webp") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(11) {
  bottom: 8%;
  right: 28%;
  background: url("../../../assets/playground11.webp") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(12) {
  top: 50%;
  left: 4%;
  background: url("../../../assets/playground12.webp") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(13) {
  top: 21%;
  right: 0%;
  background: url("../../../assets/playground13.webp") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(14) {
  top: 31%;
  right: 40%;
  background: url("../../../assets/playground14.webp") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(15) {
  top: 5%;
  right: 25%;
  background: url("../../../assets/playground15.webp") no-repeat 50% 50%;
  background-size: cover;
}

@media (max-width: 1660px) {
  #playground #gallery .frame {
    width: 14vw;
  }
}
@media (max-width: 1040px) {
  #playground #gallery .frame {
    width: 18vw;
  }
}
@media (max-width: 560px) {
  #playground #gallery .frame {
    width: 40vw;
    height: 200px;
  }
}
/* Mousemove Parallax Block For Header */
.block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
  width: 40px;
  height: 100vh;
  background: #fff;
  mix-blend-mode: difference;
}

/* Animated Numbering */
.numbering {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5rem;
  margin-top: 5rem;
}
.numbering p {
  opacity: 0.3;
}

/* Border Seprator */
.borderSeprator {
  height: 1px;
  width: 100%;
  background: #d9d9d9;
  margin: 3rem 0;
}

/* BreakPoints */
@media (max-width: 540px) {
  .block {
    width: 25px;
    height: 60vh;
  }
  .borderSeprator {
    margin: 2rem 0;
  }
}

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