@import url("https://fonts.googleapis.com/css2?family=Italiana&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Press+Start+2P&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --color-background: #101010;
  --color-h1: #f6f6f6;
  --color-p: #5e5e5e;
  --color-text: #787878;
  --color-primary: #141414;
  --color-btn-light: #dedede;
  --color-btn-dark: #1b1b1b;
  --color-span: #9c9c9c;
  --color-a: #434343;
  --color-border: rgb(25, 25, 25, 0.1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
 font-size: clamp(2rem, 2vw, 4rem);
  color: var(--color-h1);
}


p {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  line-height: 1.5; 
}
body {
  font-family: sans-serif;
  background-color: var(--color-background);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--color-a);
}

.container {
  width: 90%;
  margin: 0 auto;
}

li {
  list-style: none;
  color: var(--color-text);
  font-size: 1.2rem;
  transition: 0.3s;
}
li:hover {
  color: var(--color-h1);
}

.sticky {
  position: fixed;
  width: 100vw;
  height: 10vh;
  background: transparent;
  backdrop-filter: blur(5px);
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}

/* =====Header===== */

header {
  padding: 0.1rem;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  z-index: 99;
}
.head {
  margin-top: 2rem;
}

.h1-header {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 20%;
}
.h1-header img {
  width: 18%;
}

.header-container {
  width: 70%;
  min-width: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 2rem;
  background-color: rgb(16, 16, 16, 0.9);
  backdrop-filter: blur(5px);
  border-radius: 50px;
  border: 2px solid rgb(255, 255, 255, 0.1);
  gap: 1rem;
}

ul {
  display: flex;
  gap: 1rem;
}
.btn {
  height: 100%;
  padding: 0.75rem;
  color: var(--color-text);
  background-color: var(--color-background);
  border: 2px solid rgb(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.8rem 2rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.2rem;
  white-space: nowrap;
}

/* =====Hero section====== */

.hero {
  margin-top: 8rem;
}
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-left {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-direction: column;
  min-width: 300px;
}

.hero-btn {
  padding: 0.5rem 1.5rem;
  color: var(--color-h1);
  background-color: var(--color-btn-dark);
  border-radius: 50px;
  border-top: 3px solid var(--color-p);
}
.hero-h1 {
  display: flex;
  gap: 1rem;
  align-items: center;
  position: relative;
}
.hero-h1 h1 {
  font-size: 4rem;
  display: flex;
}

.hero-h1 i {
  padding: 1rem;
  border-radius: 50%;
  border-top: 3px solid var(--color-p);
  color: var(--color-h1);
  background-color: var(--color-btn-dark);
  cursor: pointer;
}

span {
  color: var(--color-span);
  margin-left: 0.4rem;
}

.me {
  color: var(--color-text);
  position: absolute;
  right: -90px;
  bottom: -5px;
  display: none;
}
.hero-h1 a:hover ~ .me {
  display: block;
  transform: rotate(-60deg);
  transition: 0.2s ease-in;
}
.hero-p {
  color: var(--color-p);
}
.hero-btn-2 .btn:nth-of-type(1) {
  background-image: linear-gradient(
    rgb(255, 255, 255, 0.1) 10%,
    var(--color-btn-dark) 20%
  );
}
.hero-btn-2 .btn:nth-of-type(1):hover {
  background-image: var(--color-btn-dark);
  transition: 0.4s ease;
}
.hero-btn-2 .btn:nth-of-type(2) {
  background-color: var(--color-btn-light);
  color: var(--color-background);
}
.hero-btn-2 .btn:nth-of-type(2):hover {
  background-color: rgb(222, 222, 222, 0.9);
}

.hero-right {
  width: 50%;
}
.hero-right img {
  width: 90%;
  max-width: 100%;
  min-width: 300px;
}

/* =====Projects===== */

.project {
  margin-top: 2rem;
  background-color: rgb(13, 13, 13);
}

.pro-grids {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pro-grid {
  width: 100%;
  background-color: var(--color-primary);
  border-radius: 50px;
  border-top: 3px solid rgb(255, 255, 255, 0.1);
  border-radius: 10px;
  position: relative;
}
.pro-grid::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0, 0.3);
}
.pro-grid img {
  width: 90%;
  height: 90%;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  margin-top: 1rem;
}

.pro-grid:hover {
  transform: scale(1.03);
  transition: 0.2s;
}

.x {
  height: 100%;
  filter: blur(5px);
}
.x:hover {
  height: 100%;
  filter: blur(0px);
  transition: 0.2s ease;
}

.show-arrow {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
}
.show-arrow img {
  width: 10%;
  filter: brightness(80%) invert(1);
  animation: bounce 2s ease infinite;
  cursor: pointer;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.fake-cursor {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0.8rem 1.3rem;
  background-color: rgb(255, 255, 255, 0.1);
  border: 1px solid #fff;
  backdrop-filter: blur(5px);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  pointer-events: none;
  opacity: 0;
  transition: 0.1s ease-in;
  font-family: sans-serif;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ======Work==== */

.work {
  width: 100%;
  border-top: 1px solid rgb(255, 255, 255, 0.2);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  margin-top: 2rem;
}

.work-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.work-flex button {
  padding: 0.5rem 1.9rem;
  color: var(--color-h1);
  background-color: var(--color-primary);
  border-radius: 50px;
  border-top: 1px solid rgb(255, 255, 255, 0.1);
}
.work-flex h1 {
  font-size: 2.5rem;
}
.work-flex p {
  font-size: 1rem;
  color: var(--color-text);
}

.work-grid {
  width: 60%;
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
}

.work-grid-left {
  width: 40%;
  margin-left: 20px;
  background-color: var(--color-primary);
  border-top: 3px solid rgb(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  padding: 10px;
}
.left-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.left-content button {
  padding: 0.5rem 1.3rem;
  border-radius: 5px;
  border: none;
  position: absolute;
  bottom: 10px;
  background-color: transparent;
  backdrop-filter: blur(50px);
  color: var(--color-h1);
}
.left-content img {
  width: 90%;
  border-radius: 20px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: green;
  display: inline-block;
  position: relative;
  margin-right: 0.8rem;
}

.dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: green;
  animation: ping 1s ease-out infinite;
  opacity: 0.75;
}
@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.left-content-2 {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  line-height: 1.4;
  margin-top: 1rem;
  justify-content: center;
}
.left-content-2 p {
  color: var(--color-h1);
}

.i {
  display: flex;
  gap: 2rem;
  font-size: 1rem;
  padding: 1rem;
}
.i i {
  border-right: 2px solid rgb(255, 255, 255, 0.2);
  padding: 0.5rem;
  background-color: #000;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-btn-light);
}
hr {
  opacity: 10%;
}
.reset {
  color: var(--color-h1);
}

.work-grid-right {
  width: 50%;
  margin-left: 20px;
  background-color: var(--color-primary);
  border-top: 3px solid rgb(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1rem;
  padding: 10px;
}

.right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: var(--color-text);
  margin-top: 2rem;
  padding: 2rem;
}
.right p {
  line-height: 1.5;
}
.product-1 {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}
.product-1 p {
  background-color: #000;
  flex: 1;
  padding: 0.5rem;
  white-space: nowrap;
  border-radius: 5px;
}
.brand {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.brand p {
  background-color: #000;
  flex: 1;
  padding: 0.5rem;
  white-space: nowrap;
  border-radius: 5px;
}

.years {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.year {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  background-color: #000;
  padding: 0.5em 3rem;
  border-radius: 5px;
}

/* ====How it Works==== */
.how-it-works {
  background-color: rgb(11, 11, 11);
  padding-bottom: 4rem;
}
.how-flex {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem;
}

.card {
  background-color: var(--color-primary);
  border-top: 3px solid rgb(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 1rem;
  position: relative;
  box-shadow: 0px 3px 28px 0px rgba(0, 0, 0, 0.75);
}
.card button {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--color-h1);
  padding: 1rem;
  border: none;
  background-color: var(--color-primary);
  border-top: 3px solid rgb(255, 255, 255, 0.1);
  border-radius: 50%;
}
.card h1,
h3,
p,
hr,
i {
  margin: 0.6rem;
  font-size: 1rem;
}
.card p {
  color: var(--color-p);
  line-height: 1.3;
}
.card i {
  color: var(--color-btn-light);
}
.card h3 {
  border-radius: 50px;
  border: 1px solid rgb(255, 255, 255, 0.1);
  padding: 0.5rem;
}
.card-div {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  border-top: 3px solid rgb(255, 255, 255, 0.1);
  border-radius: 16px;
  width: 50%;
  padding: 1rem;
  gap: 1rem;
  min-width: 400px;
}

.card-div p {
  color: var(--color-text);
}
.this-btn {
  display: flex;
  gap: 1rem;
}

.this-btn button {
  height: 100%;
  padding: 0.75rem;
  color: var(--color-text);
  background-color: var(--color-background);
  border: 2px solid rgb(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.8rem 2rem;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
}
.this-btn button:nth-of-type(1) {
  background-image: linear-gradient(
    rgb(255, 255, 255, 0.1) 10%,
    var(--color-btn-dark) 20%
  );
}
.this-btn button:nth-of-type(1):hover {
  background-image: var(--color-btn-dark);
  transition: 0.4s ease;
}
.this-btn button:nth-of-type(2) {
  background-color: var(--color-btn-light);
  color: var(--color-background);
}

/* =========Design==== */

.design {
  width: 100%;
  border-top: 1px solid rgb(255, 255, 255, 0.2);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  padding: 3rem;
}

.design-h1 {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin: 0 auto;
}
.design-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.5rem;
}

.design-content button {
  padding: 0.1rem 1.5rem;
  color: var(--color-h1);
  background-color: var(--color-btn-dark);
  border-radius: 50px;
  border-top: 1px solid rgb(255, 255, 255, 0.1);
}
.design-content p {
  color: var(--color-text);
}
.design-btn {
  align-self: flex-end;
}
.design-btn button {
  padding: 0.75rem;
  background-color: var(--color-btn-light);
  color: var(--color-background);
  border: 2px solid rgb(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.8rem 2rem;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
}

.parent {
  width: 70%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.parent p {
  color: var(--color-text);
}
.div1,
.div6,
.div2,
.div3 {
  background-color: var(--color-primary);
  border-top: 3px solid rgb(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 1rem;
  box-shadow: 0px 3px 28px 0px rgba(0, 0, 0, 0.75);
  min-width: 350px;
}

.div1 {
  grid-row: span 6 / span 6;
}
.div2 {
  grid-row: span 3 / span 3;
  grid-column-start: 2;
  grid-row-start: 2;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.div3 {
  grid-row: span 2 / span 2;
  grid-column-start: 2;
  grid-row-start: 5;
}

.div6 {
  grid-column-start: 2;
  grid-row-start: 1;
}

.div1 img {
  width: 100%;
  border-radius: 5px;
}
.div6 img {
  width: 100%;
  border-radius: 5px;
}
.div2 {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee-content {
  display: flex;
  width: fit-content;
  animation: scroll-left 50s linear infinite;
}

.div2 img {
  width: 100%;
  border-radius: 5px;
  margin-right: 20px;
  flex-shrink: 0;
  border-radius: 5px;
}

@keyframes scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-500%);
  }
}

.scroll {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.scroll-1 {
  background-color: var(--color-btn-dark);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgb(255, 255, 255, 0.3);
}
.scroll-1 h1 {
  font-size: 0.8rem;
}
.moving {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.3rem;
}

.moving .scroll-1 {
  background-color: var(--color-primary);
  border: none;
}

/* =====choose==== */

.choose {
  width: 100%;
  border-top: 1px solid rgb(255, 255, 255, 0.2);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  padding: 3rem;
}

.stack {
  position: relative;
}
.why {
  width: 70%;
  margin: 0 auto;
  position: sticky;
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 5px;
  background-color: var(--color-primary);
  border-top: 1px solid rgb(255, 255, 255, 0.1);
  top: 100px;
  gap: 1rem;
  min-width: 400px;
}

.why-1 {
  line-height: 1.5;
  border-right: 1px solid rgb(255, 255, 255, 0.2);
}
.why-2 {
  line-height: 1.5;
}
.why-1 p {
  color: var(--color-text);
}
.why-2 p {
  color: var(--color-text);
}
.why-1 i {
  color: var(--color-h1);
  background-color: var(--color-btn-dark);
  padding: 0.5rem;
  border-radius: 50%;
}
.why-2 i {
  color: var(--color-h1);
  background-color: var(--color-btn-dark);
  padding: 0.5rem;
  border-radius: 50%;
}

/* ==========clients==== */

.clients {
  background-color: rgb(11, 11, 11);
  padding-bottom: 4rem;
  padding: 2rem;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-top: 1px solid rgb(255, 255, 255, 0.2);
}

.clients-flex {
  display: flex;
  padding: 2rem;
  justify-content: space-between;
  width: 90%;
  align-items: flex-start;
}
.clients_left {
  width: 55%;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  min-width: 500px;
}

.client-btn {
  padding: 0.5rem 1.9rem;
  color: var(--color-h1);
  background-color: var(--color-primary);
  border-radius: 50px;
  border-top: 1px solid rgb(255, 255, 255, 0.1);
  width: 50%;
}

.client-h1 {
  font-size: 4rem;
}

.clients_left p {
  color: var(--color-h1);
  font-size: 1rem;
}

.client-div {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2rem;
  border-bottom: 1px solid rgb(255, 255, 255, 0.2);
}

.div_1 {
  padding: 1rem;
  background-color: var(--color-background);
  border-radius: 5px;
  border-top: 1px solid rgb(255, 255, 255, 0.2);
}

.clients_right {
  width: 40%;
  color: var(--color-p);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.right_div {
  border-top: 1px solid rgb(255, 255, 255, 0.1);
  background-color: var(--color-background);
  padding: 1rem;
  width: 100%;
  border-radius: 10px;
  position: sticky;
  top: 100px;
  min-width: 400px;
  min-height: 200px;
  margin-bottom: 2rem;
}

.right_h1 {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgb(255, 255, 255, 0.2);
}
.grey p {
  color: var(--color-p);
}

.blur-yellow {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 200px;
  background-color: rgb(255, 69, 0, 0.15);
  filter: blur(100px);
  z-index: 0;
  border-radius: 50%;
}

/* Grow */

.grow-section {
  padding: 2rem;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top: 1px solid rgb(255, 255, 255, 0.2);
  border-bottom: 1px solid rgb(255, 255, 255, 0.2);
}

.grow-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

.grow-left {
  width: 40%;
}

.grow-left img {
  width: 100%;
  border-radius: 10px;
  min-width: 300px;
}

.grow-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.grow-h1 {
  padding: 1rem;
  border-bottom: 2px solid rgb(255, 255, 255, 0.2);
}

.grow-h1 h1 {
  font-size: 3rem;
}
.grow-h2 {
  padding: 1rem;
  border-bottom: 2px solid rgb(255, 255, 255, 0.2);
  color: var(--color-p);
  margin-bottom: 5rem;
}

.grow-h2 h2 {
  font-size: 2rem;
}

footer {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  gap: 4rem;
  flex-direction: column;
}

.footer-left h3 {
  color: var(--color-p);
}
.footer-right {
  display: flex;
  gap: 4rem;
  flex-direction: column;
}
.footer-icon {
  display: flex;
  gap: 1rem;
}

.footer-icon i {
  color: var(--color-h1);
  cursor: pointer;
  padding: 0.7rem;
  border-radius: 50%;
}

.footer-icon i:hover {
  background-color: var(--color-a);
  transition: 0.2s ease;
}

@media (max-width: 1140px) {
  header {
    min-width: 40px;
    height: 60px;
  }

  ul {
    display: none;
  }

  .toggle {
    display: block;
  }
  .header-container {
    width: 90%;
    margin: 0 auto;
  }
  .header-container .btn {
    display: none;
  }
  .hero-flex {
    flex-direction: column;
    width: 100%;
    margin-top: 10rem;
    justify-content: center;
  }

  .hero-right {
    display: flex;
    justify-content: center;
  }
  .pro-grids {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .hero-btn-2 {
    display: flex;
    gap: 1rem;
  }

  .design-h1 {
    flex-direction: column;
    gap: 1rem;
  }
  .design-btn {
    align-self: flex-start;
  }
  .stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 10rem;
    width: 100%;
  }
  .why {
    flex-direction: column;
    position: relative;
    width: 100%;
  }

  .why-1 {
    line-height: 1.5;
    border-right: none;
    border-bottom: 1px solid rgb(255, 255, 255, 0.2);
  }

  .parent {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .clients-flex {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
  }

  .clients_left {
    position: relative;
    align-self: center;
    padding: 2rem;
    gap: 1rem;
  }
  .right_div {
    position: relative;
    top: 0px;
  }

  .clients_right {
    width: 90%;
    justify-content: flex-start;
  }

  .grow-flex {
    flex-direction: column;
    gap: 2rem;
  }

  .grow-flex {
    align-items: center;
  }

  .grow-left {
    width: 60%;
  }

  .grow-right {
    width: 100%;
  }

  .grow-section {
    padding: 0px;
  }
}

@media (max-width: 1024px) {
  .work-grid {
    flex-direction: column;
    width: 90%;
  }

  .work-grid-left,
  .work-grid-right {
    width: 100%;
    margin-left: 0;
  }

  .i {
    align-items: center;
  }

  .work-flex h1 {
    font-size: 2rem;
    text-align: center;
  }

  .left-content img {
    width: 100%;
  }
  .how-flex {
    flex-direction: column;
  }
  .card {
    width: 100%;
  }
  .card-div {
    flex-direction: column;
  }

  .clients {
    padding: 0px;
  }
  .clients-flex {
    padding: 0;
  }

  .ul {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero-h1 h1 {
    font-size: 3rem;
  }
  .hero-btn-2 {
    display: flex;
    gap: 1rem;
    flex-direction: column;
  }

  .parent {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .scroll {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2em;
    row-gap: 1rem;
  }

  .stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .why {
    flex-direction: column;
    position: relative;
    width: 100%;
  }
  .moving {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .why-1 {
    line-height: 1.5;
    border-right: none;
    border-bottom: 1px solid rgb(255, 255, 255, 0.2);
  }

  .clients_left {
    padding: 0;
  }

  .choose {
    margin: 0 auto;
  }

  .footer-flex {
    flex-direction: column;
  }

  .footer-right {
    align-items: flex-start;
    width: 100%;
  }

  @media (max-width: 768px) {
  .clients_left,
  .why,
  .right_div {
    position: static;
  }
}

}
