:root {
  --bg1: hsl(0, 0%, 94%);
  --bg2: hsl(0, 0%, 98%);
  --bg3: hsl(0, 0%, 100%);
  --text1: hsl(0, 0%, 5%);
  --text2: hsl(0, 0%, 30%);
  --accent: hsl(221, 100%, 50%);
  --bcol: hsla(0, 0%, 70%, 0.5);
  --max-w: 1100px;
  --fs-xs: 0.8rem;
  --fs-sm: 1rem;
  --fs-md: 1.2rem;
  --fs-lg: 1.5rem;
  --fs-xl: 2rem;
  --fs-2xl: 3rem;
  --fs-3xl: 4rem;
  --transition: 250ms ease;
}

@font-face {
  font-family: "Parisine";
  src: url("/font/Parisine\ Regular.otf");
}

@font-face {
  font-family: "Parisine2";
  src: url("/font/Parisine\ Bold.otf");
}

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

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--accent), hsl(221, 100%, 40%));
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(221, 100%, 60%);
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #111;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Parisine";
  background: var(--bg1);
  overflow-x: hidden;
}

.about-l,
.about-r,
.why-card,
.proj-card {
  min-width: 0;
}

.section-p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

.section-i {
  width: 100%;
  max-width: var(--max-w);
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow-x: hidden;
  overflow-y: hidden;
}

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

.hero-p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100dvh;
  position: relative;
  background:
    radial-gradient(
        circle farthest-side at 0% 50%,
        #0b0b0b 23.5%,
        rgba(0, 0, 0, 0) 0
      )
      21px 30px,
    radial-gradient(
        circle farthest-side at 0% 50%,
        #0f1214 24%,
        rgba(0, 0, 0, 0) 0
      )
      19px 30px,
    linear-gradient(
        #080808 14%,
        rgba(0, 0, 0, 0) 0,
        rgba(0, 0, 0, 0) 85%,
        #080808 0
      )
      0 0,
    linear-gradient(
        150deg,
        #080808 24%,
        #12181b 0,
        #12181b 26%,
        rgba(0, 0, 0, 0) 0,
        rgba(0, 0, 0, 0) 74%,
        #12181b 0,
        #12181b 76%,
        #080808 0
      )
      0 0,
    linear-gradient(
        30deg,
        #080808 24%,
        #12181b 0,
        #12181b 26%,
        rgba(0, 0, 0, 0) 0,
        rgba(0, 0, 0, 0) 74%,
        #12181b 0,
        #12181b 76%,
        #080808 0
      )
      0 0,
    linear-gradient(90deg, #12181b 2%, #080808 0, #080808 98%, #12181b 0%) 0 0
      #050505;
  background-attachment: fixed;
  background-size: 40px 60px;

  max-height: 1200px;
}

.hero-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-txt h1 {
  color: hsl(0, 0%, 95%);
  font-size: var(--fs-3xl);
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1;
}

.bracket {
  color: var(--accent);
  display: inline-block;
  transform: translateY(-0.08em);
  font-weight: 500;
}

.hero-txt p {
  color: hsl(0, 0%, 70%);
  margin-top: 10px;
  font-size: var(--fs-md);
}

.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) scale(1.5);
  color: hsl(0, 0%, 95%);
  font-size: var(--fs-lg);
  opacity: 0.7;
  animation: bounce 1.2s infinite;
  cursor: default;
  user-select: none;
  filter: invert(1);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

.head-p {
  height: 100px;
  width: 100%;
  border-bottom: 1px solid var(--bcol);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg1);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-box-shadow: 1px 0px 20px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 0px 20px -4px rgba(0, 0, 0, 0.1);
}
.head-i {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  height: 100%;
  max-width: var(--max-w);
}

.head-l {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 45%;
}

.head-l h3 {
  font-size: var(--fs-lg);
}

.head-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--bcol);
  border-right: 1px solid var(--bcol);
  height: 100%;
  width: 100%;
  gap: 2rem;
}

.head-mid a {
  text-decoration: none;
  color: var(--text2);
  font-size: var(--fs-xs);
  font-weight: bold;
  transition: var(--transition);
}

.head-mid a:hover {
  transform: translateY(-2px);
  color: var(--text1);
}

.head-r {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  height: 100%;
}

.lang-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  height: 100%;
  border-right: 1px solid var(--bcol);
  gap: 0.6rem;
}

.lang-switch button {
  background: none;
  border: none;
  color: var(--text2);
  font-weight: bold;
  cursor: pointer;
  width: 40px;
  height: 30px;
}

.lang-switch button:hover {
  border: 1px solid var(--accent);
}

.head-socials {
  padding-left: 2rem;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0.6rem;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text1);
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;

  width: 50%;
  height: 100vh;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-left: 1px solid var(--bcol);

  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;

  padding: 6rem 2rem 2rem;
  box-sizing: border-box;

  transform: translateX(100%);
  transition: transform 300ms ease;

  z-index: 1001;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text1);
  font-weight: bold;
  font-size: 1.1rem;
}

.nav-close {
  position: absolute;
  top: 20px;
  right: 20px;

  background: none;
  border: none;

  font-size: 2rem;
  line-height: 1;

  cursor: pointer;
  color: var(--text1);
}

.nav-overlay {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  opacity: 0;
  pointer-events: none;

  transition: opacity 300ms ease;

  z-index: 1000;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-lang {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bcol);
}

.mobile-lang button {
  background: none;
  border: 1px solid var(--bcol);
  padding: 0.5rem 1rem;
  font-family: inherit;
}

.mobile-lang button:hover {
  border: 1px solid var(--text1);
}

.about-i {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  height: 100%;
}

.about-l {
  width: 100%;
  max-width: 50%;
}

.about-txt,
.team-i h2 {
  font-size: var(--fs-xl);
}

.team-i h2 {
  margin-bottom: 2rem;
}

.about-txt p {
  margin-bottom: 2rem;
  font-size: var(--fs-md);
}

.about-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.cf-btn {
  display: flex;
  align-items: center;
  height: 46px;
  padding: 0;
  border: 1px solid var(--text1);
  background: var(--bg2);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.cf-btn a {
  text-decoration: none;
}

.cf-btn:hover {
  background: var(--bg3);
  transform: translateY(-2px);
  filter: invert(1);
}

.cf-btn-icon {
  width: 52px;
  height: 100%;
  border-right: 1px solid var(--text1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf-btn-icon img {
  width: 20px;
  height: 20px;
}

.cf-btn a {
  padding: 0 1.25rem;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text1);
  white-space: nowrap;
}
.about-r {
  padding: 1.5rem;
  width: 35%;
  height: 100%;
  background-color: var(--bg2);
  border: 1px solid var(--bcol);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-r h2 {
  font-size: var(--fs-lg);
  margin: 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--bcol);
  color: var(--text1);
}
.r-list {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}

.r-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  transition: var(--transition);
  cursor: default;
  filter: grayscale(1);
}

.r-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.r-item:hover {
  filter: grayscale(0);
}

.why-p {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--bg2);
  border: 1px solid var(--bcol);
}

.why-i {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.why-head {
  max-width: 700px;
}

.why-head h2 {
  font-size: var(--fs-xl);
  margin: 0 0 1rem;
}

.why-head p {
  font-size: var(--fs-md);
  color: var(--text2);
  margin: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--bg3);
  border: 1px solid var(--bcol);
  padding: 1.5rem;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--text2);
}

.why-card img {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: var(--fs-md);
}

.why-card p {
  margin: 0;
  color: var(--text2);
}

.proj-div {
  position: relative;
  overflow-x: hidden;
  padding: 7.5rem 0;
}

.proj-div::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background-image: url("/img/PROJDIV.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;

  filter: blur(3px) brightness(0.55);
  transform: scale(1.02);
}

.proj-div-txt {
  padding-left: 1rem;
  padding-right: 1rem;
  border: 6px solid var(--bg1);
}

.proj-div-txt h2 {
  color: var(--bg1);
  font-size: var(--fs-xl);
  margin: 0;
  padding: 1rem;
}

.ov-proj-p {
  background-color: var(--bg1);
}

.ov-proj-i {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ov-proj-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.proj-card {
  height: 280px;
  background: var(--bg2);
  border: 1px solid var(--bcol);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.proj-card:hover {
  transform: translateY(-6px);
  border-color: var(--text2);
}

.pcard-top {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.pcard-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pcard-bottom {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  text-align: left;
}

.pcard-bottom h3 {
  margin: 0;
  font-size: var(--fs-md);
}

.pcard-bottom p {
  margin: 0;
  color: var(--text2);
  font-size: var(--fs-sm);
}

/* ABOUT PAGE */
.title-section {
  overflow-x: hidden;
  padding: 4.5rem 0;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title-section-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border: 6px solid var(--bg1);
}

.title-section-txt h1 {
  color: var(--bg1);
  font-size: var(--fs-xl);
  margin: 0;
  padding: 1rem;
}

.insight-txt {
  max-width: 70%;
}

.insight-txt h2 {
  font-size: var(--fs-xl);
}

.insight-txt p {
  font-size: var(--fs-md);
}

.team-p {
  background-color: var(--bg2);
}

.team-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.team-feature {
  height: 550px;
  border: 1px solid var(--bcol);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: background-image 300ms ease;
}

.team-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.3),
    transparent
  );
}

.team-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
}

.team-overlay h2 {
  margin: 0;
  color: white;
  font-size: var(--fs-xl);
}

.team-overlay span {
  color: hsl(0, 0%, 80%);
}

.team-side {
  background: var(--bg3);
  border: 1px solid var(--bcol);
  padding: 2rem;
}

.team-side h2 {
  margin-top: 0;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team-member {
  background: none;
  border: 1px solid var(--bcol);
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.team-member:hover,
.team-member.active {
  border-color: var(--accent);
}

.team-socials {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.team-socials a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text2);
  text-decoration: none;
  transition: var(--transition);
}

.team-socials a img {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

.team-socials a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

/* PRICING PAGE */
.pricing-txt {
  max-width: 70%;
}

.pricing-txt h2 {
  font-size: var(--fs-xl);
}

.pricing-txt p {
  font-size: var(--fs-md);
}

.pricing-txt a {
  color: var(--accent);
}

.pricing-cards {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.price-card {
  background: var(--bg2);
  border: 1px solid var(--bcol);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: var(--transition);
  position: relative;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--text2);
}

.price-card h3 {
  margin: 0;
  font-size: var(--fs-lg);
}

.price {
  font-size: var(--fs-xl);
  font-weight: bold;
  color: var(--accent);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--text2);
}

.price-card ul li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 0.5rem;
}

.price-card a {
  text-decoration: none;
  color: var(--text1);
  margin-top: auto;
  padding: 0.8rem 1rem;
  border: 1px solid var(--bcol);
  background: var(--bg3);
  cursor: pointer;
  font-family: inherit;
  font-weight: bold;
  transition: var(--transition);
}

.price-card a:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.price-card.featured {
  border: 1px solid var(--accent);
  transform: scale(1.05);
  background: linear-gradient(145deg, var(--bg3), var(--bg2));
}

.price-card.featured::before {
  content: "POPULAR";
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  background: var(--accent);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

/* PROJECTS PAGE */
.projects-txt h2 {
  font-size: var(--fs-xl);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.projects-txt p {
  font-size: var(--fs-md);
}

/* CONTACT */
.contact-i {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.contact-left {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-intro h2 {
  font-size: var(--fs-xl);
  margin: 0 0 1rem;
}

.contact-intro p {
  color: var(--text2);
  font-size: var(--fs-md);
  margin: 0;
  max-width: 90%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--bcol);
  padding: 0.8rem 0;
  font-family: inherit;
  font-size: var(--fs-sm);
  outline: none;
  color: var(--text1);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--bcol);
  background: var(--bg3);
  cursor: pointer;
  font-weight: bold;
  transition: var(--transition);
}

.contact-form button:hover {
  filter: invert(1);
  color: white;
  transform: translateY(-2px);
}

.contact-info {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-block {
  position: sticky;
  padding: 1.5rem;
  background: var(--bg2);
  border: 1px solid var(--bcol);
  transition: var(--transition);
}

.info-block:hover {
  border-color: var(--text2);
  transform: translateY(-3px);
}

.info-block h3 {
  margin: 0;
  font-size: var(--fs-md);
  letter-spacing: 0.08em;
}

.info-sub {
  margin: 0.5rem 0 1.2rem;
  font-size: var(--fs-sm);
  color: var(--text2);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.6rem 0;
  color: var(--text2);
  font-size: var(--fs-sm);
  border-top: 1px solid var(--bcol);
}

.info-item:first-of-type {
  border-top: none;
}

.info-item img {
  width: 18px;
  height: 18px;
  filter: grayscale(1);
  opacity: 0.8;
}
/* FOOTER */
.footer-p {
  background: #000;
  color: white;
}

.footer-i {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.footer-item img {
  width: 16px;
  height: 16px;
  filter: invert(1);
  flex-shrink: 0;
}

.footer-item span {
  color: hsl(0, 0%, 85%);
  font-size: 0.95rem;
}

.footer-col a {
  width: fit-content;
  transition: var(--transition);
}

.footer-col a:hover {
  transform: translateX(4px);
  color: white;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h3 {
  margin: 0;
  font-size: var(--fs-md);
  letter-spacing: 0.05em;
}

.footer-line {
  width: 22px;
  height: 3px;
  background: white;
  margin: 1rem 0 2rem;
}

.footer-col p,
.footer-col a {
  color: hsl(0, 0%, 85%);
  text-decoration: none;
  margin: 0 0 0.8rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}

/* MOBILE */
@media (max-width: 1140px) {
  :root {
    --max-w: 85%;
  }

  .about-i {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }

  .about-l,
  .about-r {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .about-btns {
    flex-direction: column;
    width: 100%;
  }

  .cf-btn {
    width: 100%;
    justify-content: flex-start;
  }

  .contact-i {
    flex-direction: column;
  }

  .contact-left {
    margin-bottom: 3rem;
  }

  .contact-info,
  .contact-left {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 956px) {
  .hero-txt h1 {
    font-size: var(--fs-2xl);
  }

  .hero-txt p {
    font-size: var(--fs-sm);
  }

  .head-p {
    height: 80px;
    position: sticky;
  }

  .head-i {
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .head-mid,
  .lang-switch,
  .head-socials {
    display: none;
  }

  .head-l {
    width: auto;
  }

  .head-r {
    width: auto;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    width: 50vw !important;
    max-width: var(--max-w);
  }

  .ov-proj-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: var(--max-w);
  }

  .proj-card {
    width: 100%;
  }

  .insight-txt,
  .pricing-txt {
    max-width: 100%;
  }

  .team-showcase {
    display: flex;
    flex-direction: column;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .footer-i {
    padding: 3rem 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col {
    width: 100%;
  }

  .footer-line {
    margin: 0.75rem 0 1.25rem;
  }

  .footer-item {
    margin-bottom: 0.75rem;
  }

  .footer-bottom {
    padding: 1rem;
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-item {
    justify-content: center;
  }

  .footer-line {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .about-txt p {
    font-size: var(--fs-sm);
  }

  .about-r {
    padding: 1rem;
  }

  .r-item {
    padding: 0.5rem;
  }

  .r-item img {
    width: 24px;
    height: 24px;
  }

  .why-i {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .why-grid {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    width: 100%;
    max-width: var(--max-w);
  }

  .why-card {
    width: 100%;
  }
}
