/* Google Fonts - Manrope */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  width: 100%;
  overscroll-behavior: none;
}

body {
  background: #fff;
  color: #101010;
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  /* Light */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NewBlackTypeface Fonts */
@font-face {
  font-family: 'NewBlackTypeface';
  src: url('../fonts/NewBlackTypeface-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'NewBlackTypeface';
  src: url('../fonts/NewBlackTypeface-Medium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'NewBlackTypeface';
  src: url('../fonts/NewBlackTypeface-Bold.ttf') format('truetype');
  font-weight: 700;
}

/* Legacy Jakarta fonts (for compatibility) */
@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);
}

/* Typography - Titles use NewBlackTypeface */
h1 {
  font-family: 'NewBlackTypeface', sans-serif;
  font-weight: 400;
  font-size: clamp(5rem, 15cqi, 9rem);
  letter-spacing: -0.08em;
  line-height: 120%;
  word-spacing: 0.1em;
}

h2 {
  font-family: 'NewBlackTypeface', sans-serif;
  font-weight: 400;
  font-size: clamp(3.8rem, 9cqi, 7rem);
  letter-spacing: -0.08em;
  line-height: 120%;
  word-spacing: 0.1em;
}

h3 {
  font-family: 'NewBlackTypeface', sans-serif;
  font-weight: 400;
  font-size: clamp(3.2rem, 6cqi, 5rem);
  letter-spacing: -0.08em;
  line-height: 120%;
  word-spacing: 0.1em;
}

h4 {
  font-family: 'NewBlackTypeface', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4cqi, 3.8rem);
  letter-spacing: -0.06em;
  line-height: 120%;
  word-spacing: 0.1em;
}

h5 {
  font-family: 'NewBlackTypeface', sans-serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.5cqi, 2.2rem);
  letter-spacing: -0.04em;
  word-spacing: 0.1em;
}

/* Paragraphs use Manrope Light (inherited from body) */
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);
  }
}

::-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;
  }
}

/* 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: -moz-fit-content;
  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%;
  -o-object-fit: cover;
  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;
  }

  nav .lang-selector {
    right: 5rem;
    top: 1rem;
  }

  nav .lang-selector .lang-current {
    font-size: 1.1rem;
  }

  nav .lang-selector .lang-dropdown {
    min-width: 140px;
  }

  nav .lang-selector .lang-dropdown a {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

/* Language Selector (standalone, outside nav) */
.lang-selector {
  position: fixed;
  right: 9rem;
  /* Will be adjusted dynamically by JS */
  top: 1.5rem;
  z-index: 10;
  mix-blend-mode: difference;
  /* Applied to fixed parent like nav a */
  color: #fff;
}

.lang-selector .lang-trigger {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  cursor: pointer;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.lang-selector .lang-trigger .lang-code {
  position: relative;
}

.lang-selector .lang-trigger .lang-code::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.lang-selector:hover .lang-trigger .lang-code::after,
.lang-selector.open .lang-trigger .lang-code::after {
  transform: scaleX(1);
}

.lang-selector .lang-trigger .lang-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.lang-selector.open .lang-trigger .lang-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.lang-selector .lang-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  margin-top: 0.5rem;
  background: rgba(30, 30, 30, 0.98);
  min-width: 160px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
  z-index: 9999;
  isolation: isolate;
  /* Prevent blend mode inheritance */
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.lang-selector .lang-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.lang-selector .lang-dropdown a::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  margin-right: 0.5rem;
}

.lang-selector .lang-dropdown a.active::before {
  content: "•";
}

.lang-selector .lang-dropdown a:hover {
  background: rgba(80, 80, 80, 0.8);
}

.social {
  background: #fff;
  padding: 8rem 0;
  position: relative;
  z-index: 2;
  /* 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;
  position: relative;
  z-index: 2;
}

footer #container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* Footer Content - Two Column Layout */
.footer_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Left Column - Contact Info */
.footer_info {
  text-align: left;
}

.footer_info .footer_heading {
  margin-bottom: 2rem;
}

.footer_contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer_contact a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer_contact a.btn {
  padding: 1rem 1.5rem;
}

/* Right Column - Contact Form */
.footer_form {
  width: 100%;
}

.footer_form form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer_form .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer_form label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.footer_form input,
.footer_form textarea,
.footer_form select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.footer_form input::placeholder,
.footer_form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer_form input:focus,
.footer_form textarea:focus,
.footer_form select:focus {
  outline: none;
  border-color: #CEFF1A;
  background: rgba(206, 255, 26, 0.05);
}

.footer_form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.footer_form select option {
  background: #101010;
  color: #fff;
}

.footer_form textarea {
  resize: vertical;
  min-height: 100px;
}

.footer_form button.btn,
.footer_form button.submit-btn {
  width: 100%;
  background: #CEFF1A !important;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  mix-blend-mode: normal !important;
}

.footer_form button.btn:hover,
.footer_form button.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(206, 255, 26, 0.3);
}

.footer_form button.btn span,
.footer_form button.submit-btn span {
  color: #101010 !important;
  mix-blend-mode: normal !important;
}

/* intl-tel-input styling */
.phone-input-group {
  position: relative;
}

.phone-input-group .iti {
  width: 100%;
}

.phone-input-group .iti__flag-container {
  padding: 0;
}

.phone-input-group .iti__selected-flag {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px 0 0 8px;
  padding: 0 12px;
}

.phone-input-group .iti__selected-flag:hover {
  background: rgba(255, 255, 255, 0.15);
}

.phone-input-group .iti__country-list {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.phone-input-group .iti__country {
  padding: 10px 15px;
}

.phone-input-group .iti__country:hover {
  background: rgba(206, 255, 26, 0.1);
}

.phone-input-group .iti__country.iti__highlight {
  background: rgba(206, 255, 26, 0.2);
}

.phone-input-group .iti__country-name,
.phone-input-group .iti__dial-code {
  color: #fff;
}

.phone-input-group .iti__selected-dial-code {
  color: #fff;
  margin-left: 8px;
}

.phone-input-group .iti__arrow {
  border-top-color: #fff;
}

.phone-input-group .iti__arrow--up {
  border-bottom-color: #fff;
}

footer #container .footer_bottom {
  width: 100%;
  max-width: 100%;
  border-top: 1px solid #333333;
  text-align: center;
  padding: 2rem 0;
}

footer #container .footer_bottom p {
  opacity: 0.5;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer_content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer_info {
    text-align: center;
  }

  .footer_contact {
    align-items: center;
  }
}

@media (max-width: 620px) {
  footer {
    padding: 5rem 0 0 0;
  }

  footer #container {
    gap: 3rem;
  }
}

.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;
  }
}

.header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background: #fff;
}

/* Doup Design logo uses Medium weight */
.header h1 {
  font-weight: 500;
}

.header-logo {
  width: auto;
  height: 250px;
}

.about {
  background: #101010;
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 8rem 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 540px) {
  .about {
    padding: 4rem 0;
  }
}

.about #container {
  max-width: 960px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}

/* Descriptive text uses Manrope, not NewBlackTypeface */
.about h5,
.Belief h5,
.about_header h5,
.about_goals h5,
.para h5,
.expertise h5 {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
}

.expertise {
  background: #fff;
  padding: 8rem 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 540px) {
  .expertise {
    padding: 4rem 0;
  }
}

.expertise .expertise_wrapper {
  padding-top: 5rem;
}

.expertise .expertise_wrapper .elem {
  position: relative;
  height: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  border-bottom: 1px solid #d9d9d9;
  overflow: hidden;
  cursor: pointer;
}

.expertise .expertise_wrapper .elem .title {
  display: flex;
  gap: 10px;
  z-index: 2;
  transition: color 0.3s ease-in-out;
}

.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;
}

.expertise .expertise_wrapper .elem:last-child {
  border: none;
}

#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;
  position: relative;
  z-index: 2;
}

@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: -moz-min-content;
  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;
  -o-object-fit: cover;
  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;
  -o-object-fit: cover;
  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;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
}

@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: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 540px) {
  .Belief {
    padding: 4rem 0;
  }
}

.Belief #container>div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Belief #container>div h5 {
  max-width: 960px;
  width: 100%;
}

.Belief #container>div h5:nth-child(2) {
  margin-top: 2rem;
}

/* Animated highlight effect for keywords */
.highlight {
  position: relative;
  display: inline;
  background: linear-gradient(to right, #CEFF1A 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  /* Start hidden, GSAP animates to 0% 0 */
  padding: 0.1em 0.15em;
  border-radius: 2px;
}

.playground {
  background: #101010;
  color: #fff;
  height: 100vh;
  position: relative;
  z-index: 2;
}

.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%;
  -o-object-fit: cover;
  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;
  }
}

.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;
  -moz-column-gap: 2rem;
  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%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1.1);
}

.work_Cnt #container .work_case>div img:nth-child(2) {
  width: 50%;
  height: 50%;
  -o-object-fit: cover;
  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;
    -moz-column-gap: 0rem;
    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%;
  margin-top: -330px;
  margin-left: -300px;
  width: 600px;
  height: auto;
  pointer-events: none;
  z-index: 1;
  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: 80px;
    height: auto;
  }

  .borderSeprator {
    margin: 2rem 0;
  }
}

/*# sourceMappingURL=main.css.map */