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

body,
html {
  height: 100%;
  width: 100%;
  overscroll-behavior: none;
  background-color: #000;
}

body {
  background: #fff;
  color: #101010;
  font-family: JakartaRegular, sans-serif;
  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;

  overflow-x: hidden;
}

@font-face {
  font-family: JakartaRegular;
  src: url('../fonts/PlusJakartaSans-Regular.woff2') format('woff2'),
       url('../fonts/PlusJakartaSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: JakartaMedium;
  src: url('../fonts/PlusJakartaSans-Medium.woff2') format('woff2'),
       url('../fonts/PlusJakartaSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: JakartaBold;
  src: url('../fonts/PlusJakartaSans-SemiBold.woff2') format('woff2'),
       url('../fonts/PlusJakartaSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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(3.8rem, 9cqi, 7rem);
  letter-spacing: -0.02em;
  font-weight: lighter;
  line-height: 120%;
  word-spacing: 0.1em;
}

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, 4cqi, 3.8rem);
  letter-spacing: -0.06em;
  font-weight: lighter;
  line-height: 120%;
  word-spacing: 0.1em;
}

h5 {
  font-size: clamp(1.7rem, 3.5cqi, 2.2rem);
  font-weight: lighter;
  letter-spacing: -0.04em;
  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);
  }
}
::-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 img {
  filter: invert(1);
}


      nav a:not(.logo)::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:not(.logo):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: #000;
  color: #fff;
  padding: 10rem 0 0 0;
}
footer #container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
footer #container .footer_header .footer_heading {
  text-align: center;
}
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;
  }
}
.header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background: #fff;
}

.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: 960px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}

.expertise {
  background: #fff;
  padding: 8rem 0;
}
@media (max-width: 540px) {
  .expertise {
    padding: 4rem 0;
  }
}
.expertise .expertise_wrapper {
  padding-top: 1rem;
}
.expertise .expertise_wrapper .elem {
  position: relative;
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  border-bottom: 1px solid #d9d9d9;
  overflow: hidden;
}
.expertise .expertise_wrapper .elem .title {
  display: flex;
  gap: 10px;
  z-index: 2;
  transition: color 0.3s ease-in-out;
}

.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: 100px;
    padding: 0 2rem;
  }
}
@media (max-width: 540px) {
  .expertise .expertise_wrapper .elem {
    height: 100px;
    padding: 0 1rem;
  }
}
.projects {
  background: #101010;
  color: #fff;
  padding: 8rem 0;
}
@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;
  }
}

.BeliefReverse {
  background: #000;
  color: #fff;
}

.Belief {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0;
}
@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;
}

.playground {
  background: #000;
  color: #fff;
  height: 100vh;
}
.playground #container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5rem;
  position: relative;
}

.playground #container .horizontal_scroll {
  width: 176vw;
  height: 60vh;
  display: flex;
  align-items: center;
  gap: 10rem;
  overflow: visible;
}

.playground #container .horizontal_scroll a {
  flex-shrink: 0;
  width: 22vw;
  height: 100%;
  border-radius: 35px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform-origin: center center;
  transition: transform 0.4s ease;
}

.playground #container .horizontal_scroll a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* ROTATE artık <a>'ya */
.playground #container .horizontal_scroll a:nth-of-type(1) { transform: rotate(-5deg); }
.playground #container .horizontal_scroll a:nth-of-type(2) { transform: rotate(5deg); }
.playground #container .horizontal_scroll a:nth-of-type(3) { transform: rotate(-5deg); }
.playground #container .horizontal_scroll a:nth-of-type(4) { transform: rotate(5deg); }
.playground #container .horizontal_scroll a:nth-of-type(5) { transform: rotate(-5deg); }
.playground #container .horizontal_scroll a:nth-of-type(6) { transform: rotate(5deg); }
.playground #container .horizontal_scroll a:nth-of-type(7) { transform: rotate(-5deg); }
.playground #container .horizontal_scroll a:nth-of-type(8) { transform: rotate(5deg); }

/* BreakPoints */
@media (max-width: 1440px) {
  .playground #container .horizontal_scroll {
    width: 232vw;
  }
  .playground #container .horizontal_scroll a {
    width: 29vw;
  }
}

@media (max-width: 1040px) {
  .playground #container {
    gap: 4rem;
  }
  .playground #container .horizontal_scroll {
    width: 320vw;
    max-height: 550px;
  }
  .playground #container .horizontal_scroll a {
    width: 40vw;
  }
}

@media (max-width: 768px) {
  .playground #container .horizontal_scroll {
    width: 440vw;
    max-height: 550px;
  }
  .playground #container .horizontal_scroll a {
    width: 55vw;
  }
}

@media (max-width: 540px) {
  .playground #container .horizontal_scroll {
    width: 560vw;
    max-height: 400px;
    gap: 5rem;
  }
  .playground #container .horizontal_scroll a {
    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%;
  margin: auto;
}
.about_goals #container .img_wrapper {
  max-width: 960px;
  margin-right:auto;
  margin-left:auto;
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  gap: 5rem;
}
.about_goals #container .img_wrapper .parallax_img {
  height: 60vh;
  width: 25vw;
  border-radius: 30px;
}
.about_goals #container .img_wrapper > div:nth-child(2) .parallax_img {
  margin-top: 12rem;
}

/* 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: #000;
  color: #fff;
  padding: 8rem 0;
}
@media (max-width: 540px) {
  .about_clients {
    padding: 4rem 0;
  }
}
.about_clients #container h3 {
  max-width: 1460px;
}

.about_clients #container  {
  max-width: 100%;
  /* overflow-x: hidden; */
  padding: 0 1rem;
  box-sizing: border-box;
}

.about_clients #container .brands {
  display: flex;
  align-items: center;
  margin-top: 8rem;
  width: 100%;
}

.about_clients #container .brands .brand_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  place-items: center;
  gap: 4rem;
  margin: auto;
  padding: 0 4rem;
  overflow: hidden;
}

.about_clients #container .brands .brand_wrapper img {
  /* width: 120px; */
  filter: brightness(100%);
  transition: filter 0.3s ease-in-out;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}


.about_clients #container .brands .brand_wrapper img:hover {
  filter: brightness(70%);
}


.brand_slider,
.slider_controls {
  display: none;
}

@media (max-width: 768px) {

  .about_clients #container .brands .brand_wrapper {
    display: none;
  }

  .about_clients #container {
      padding: 0;
    }
  

  .about_clients #container .brands {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    margin-top: 3rem;
    display: block !important;
  }

  .about_clients #container .brands .brand_slider {
    display: flex!important;
    width: 100vw !important;  /* her slide 100vw olduğunda 2 slide için 200vw */
    transition: transform 0.5s ease-in-out;
  }

  .about_clients #container .brands .brand_slider .slide {
    width: 100vw;
    flex: 0 0 100vw;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 0rem;
    padding: 0;
  }


  .about_clients #container .brands .brand_slider .slide img {
    max-width: 120px;
    filter: brightness(100%);
    transition: filter 0.3s ease-in-out;
  }

  .about_clients #container .brands .brand_slider .slide img:hover {
    filter: brightness(70%);
  }

  .slider_controls {
    display: flex!important;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }

  .slider_controls button {
    background: #fff;
    color: #101010;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
  }

    .slider_indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
  }
  .slider_indicators .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.3;
    transition: opacity 0.3s ease-in-out;
  }
  .slider_indicators .dot.active {
    opacity: 1;
  }


  .numbering {
    display: grid !important;
    gap: 3rem!important;
    margin-top: 2rem!important;
  }

  .about_goals #container .img_wrapper > div:nth-child(2) .parallax_img {
    margin-top: 2rem!important;
  }
}

.about_clients #container .brands img,
.about_clients #container .brands .slide {
  user-select: none;
  pointer-events: auto; 
  -webkit-user-drag: none;
}




.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 {
  z-index:1;
  height: 100vh;
  overflow: hidden;
  padding: 50px 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
#playground #gallery {
  height: 50%;
  width: 100%;
  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: 5%;
  left: 10%;
  background: url("../assets/gif/dashboardvideo.gif") no-repeat 50% 50%;
  background-size: cover;
  display: none;
} */
#playground #gallery .frame:nth-child(2) {
  bottom: 1%;
  left: 35%;
  background: url("../assets/gif/last/chs-2.gif") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(3) {
  top: 15%;
  left: 21%;
  background: url("../assets/gif/last/admin-4.gif") no-repeat 50% 50%;
  background-size: cover;
}
/* #playground #gallery .frame:nth-child(4) {
  top: 0%;
  left: 40%;
  background: url("../assets/gif/last/lyum-1.gif") no-repeat 50% 50%;
  background-size: cover;
} */
/* #playground #gallery .frame:nth-child(5) {
  bottom: 5%;
  left: 13%;
  background: url("../assets/gif/MD/04.gif") no-repeat 50% 50%;
  background-size: cover;
} */
#playground #gallery .frame:nth-child(6) {
  top: 70%;
  left: 30%;
  background: url("../assets/gif/last/rfsl-2.png") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(7) {
  top: 0%;
  right: 8%;
  background: url("../assets/gif/last/uagk-1.gif") no-repeat 50% 50%;
  background-size: cover;
}
/* #playground #gallery .frame:nth-child(8) {
  bottom: 0%;
  right: 8%;
  background: url("../assets/gif/AR/02.gif") no-repeat 50% 50%;
  background-size: cover;
  display:none;
} */
/* #playground #gallery .frame:nth-child(9) {
  top: 40%;
  left: 75%;
  background: url("../assets/playground13.webp") no-repeat 50% 50%;
  
  background-size: cover;
} */
/* #playground #gallery .frame:nth-child(10) {
  top: 18%;
  left: 0%;
  background: url("../assets/gif/CHS/02.gif") no-repeat 50% 50%;
  background-size: cover;
  display:none;
} */
#playground #gallery .frame:nth-child(11) {
  bottom: 8%;
  right: 28%;
  background: url("../assets/gif/last/yapi-1.jpg") no-repeat 50% 50%;
  background-size: cover;
}
/* #playground #gallery .frame:nth-child(12) {
  top: 50%;
  left: 4%;
  background: url("../assets/gif/last/uagk-2.gif") no-repeat 50% 50%;
  background-size: cover;
} */
#playground #gallery .frame:nth-child(13) {
  top: 39%;
  right: 20%;
  background: url("../assets/gif/chsweb.gif") no-repeat 50% 50%;
  background-size: cover;
}
#playground #gallery .frame:nth-child(14) {
  top: 31%;
  right: 40%;
  background: url("../assets/gif/last/sb-3.gif") no-repeat 50% 50%;
  background-size: cover;
  background-size: 120% 150%;


}
/* #playground #gallery .frame:nth-child(15) {
  top: 5%;
  right: 25%;
  background: url("../assets/playground15.webp") no-repeat 50% 50%;
  background-size: cover;
  display:none;
} */

#playground #gallery .frame:nth-child(15) {
  top: 5%;
  left: 10%;
  background: url("../assets/gif/last/mercan-1.gif") 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: 20vw;
    height: 200px;
  }
}
/* Mousemove Parallax Block For Header */
.block {
  position: absolute;
  top: 30%;
  /* left: 50%; */
  /* transform: translate(10%, 10%) rotate(0deg); */
  /* 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: #333;
  margin: 3rem 0;
}

/* BreakPoints */
@media (max-width: 540px) {
  .block {
    /* width: 25px; */
    height: 60vh;
  }
  .block img {
    width: 250px;
    /* height: 60vh; */
  }
  .borderSeprator {
    margin: 2rem 0;
  }
}/*# sourceMappingURL=main.css.map */



/* Custom CSS */

.about #container {
    max-width: 1200px;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
}

.numbering h2 {
    font-size: 4rem;
    /* font-family: JakartaBold; */
    font-weight: bold;
}

.expertise2 {
  background: #101010;
  padding: 8rem 0;
  color: #fff;
}
@media (max-width: 540px) {
  .expertise2 {
    padding: 4rem 0;
  }
}
.expertise2 .expertise_wrapper {
  padding-top: 2rem;
}
.expertise2 .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;
}
.expertise2 .expertise_wrapper .elem .title {
  display: flex;
  gap: 10px;
  z-index: 2;
  transition: color 0.3s ease-in-out;
}
.expertise2 .expertise_wrapper .elem .overlay {
  width: 100%;
  height: 100%;
  background: #fffbfb;
  position: absolute;
  left: 0;
  top: -100%;
  transition: all 0.3s ease;
}
.expertise2 .expertise_wrapper .elem:hover {
  color: #000;
}
.expertise2 .expertise_wrapper .elem:hover .overlay {
  top: 0;
}
.expertise2 .expertise_wrapper .elem:last-child {
  border: none;
}

/* BreakPoints */
@media (max-width: 768px) {
  .expertise2 .expertise_wrapper .elem {
    height: 120px;
    padding: 0 2rem;
  }
}
@media (max-width: 540px) {
  .expertise2 .expertise_wrapper .elem {
    height: 120px;
    padding: 0 1rem;
  }
}


.about_goals_text p {
  font-size: 24px;
}

.about_goals_text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 24px;
}

.about_goals_text_top {
  margin-top: 30px;
}

.about_goals_text ul > li > ul {
  list-style: disc;
  margin-left: 20px;
}

.header_text {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  z-index: 9999;
  text-align: center;
  color: #fff;
  mix-blend-mode: difference;
  padding-bottom: 10px;
}

.m-l-r-auto {
  margin-left:auto;
  margin-right:auto;
}


#playground-container {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}


.about_text {
  font-family: JakartaBold, sans-serif;
  font-weight: bold;
  font-size: 24px;
margin-top: 30px;
}