﻿:root {

  --bg: #030407;

  --surface: #0a0b10;

  --surface-2: #12141d;

  --text: #f8fafc;

  --muted: #94a3b8;

  --soft: #cbd5e1;

  --line: rgba(255, 255, 255, 0.08);

  --line-bright: rgba(255, 255, 255, 0.16);

  --violet: #7c3aed;

  --rose: #f43f5e;

  --cyan: #0ea5e9;

  --green: #10b981;

  --shadow: 0 30px 100px rgba(0, 0, 0, 0.6);

  --radius: 16px;

}



* {

  box-sizing: border-box;

}



html {

  scroll-behavior: smooth;

}



body {

  margin: 0;

  font-family: "Inter", -apple-system, BlinkMacSystemFont, Arial, sans-serif;

  color: var(--text);

  background:

    radial-gradient(circle at 15% 15%, rgba(124, 58, 237, 0.12), transparent 40rem),

    radial-gradient(circle at 85% 20%, rgba(244, 63, 94, 0.06), transparent 35rem),

    linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);

  -webkit-font-smoothing: antialiased;

}



body::before {

  content: "";

  position: fixed;

  inset: 0;

  z-index: -1;

  pointer-events: none;

  background-image:

    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),

    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);

  background-size: 64px 64px;

  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent 75%);

}



body.nav-open {

  overflow: hidden;

}



a {

  color: inherit;

  text-decoration: none;

}



button, input, select, textarea {

  font: inherit;

}



/* --- Header & Navigation --- */

.site-header {

  position: fixed;

  inset: 0 0 auto;

  z-index: 100;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 20px clamp(24px, 6vw, 80px);

  border-bottom: 1px solid transparent;

  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);

}



.site-header.scrolled,

.site-header.open {

  border-color: var(--line);

  background: rgba(3, 4, 7, 0.75);

  backdrop-filter: blur(20px);

  -webkit-backdrop-filter: blur(20px);

  padding: 14px clamp(24px, 6vw, 80px);

}



.brand {

  width: 300px;

  display: inline-flex;

  align-items: center;

}



.brand img {

  width: 100%;

  height: auto;

  display: block;

}



.site-nav {

  display: flex;

  align-items: center;

  gap: 4px;

  padding: 4px;

  border: 1px solid var(--line);

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.02);

}



.site-nav a {

  min-height: 36px;

  display: inline-flex;

  align-items: center;

  padding: 0 16px;

  border-radius: 999px;

  color: var(--muted);

  font-size: 0.88rem;

  font-weight: 500;

  transition: all 200ms ease;

}



.site-nav a:hover,

.site-nav a.active {

  color: var(--text);

  background: rgba(255, 255, 255, 0.08);

}



.nav-toggle {

  display: none;

  width: 40px;

  height: 40px;

  border: 1px solid var(--line);

  color: var(--text);

  background: rgba(255, 255, 255, 0.03);

  border-radius: 10px;

  cursor: pointer;

}



.nav-toggle span {

  display: block;

  width: 16px;

  height: 2px;

  margin: 4px auto;

  background: currentColor;

}



/* --- Hero Section --- */

.hero {

  min-height: 95vh;

  display: grid;

  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);

  align-items: center;

  gap: clamp(40px, 6vw, 90px);

  padding: 140px clamp(24px, 6vw, 80px) 80px;

}



.hero-copy {

  max-width: 760px;

}



.eyebrow {

  margin: 0 0 16px;

  color: var(--cyan);

  font-size: 0.8rem;

  font-weight: 700;

  letter-spacing: 0.06em;

  text-transform: uppercase;

}



h1, h2, h3, p {

  margin-top: 0;

}



h1 {

  margin-bottom: 24px;

  font-size: clamp(2.5rem, 5.5vw, 4.8rem);

  line-height: 1.05;

  font-weight: 800;

  letter-spacing: -0.02em;

}



h2 {

  margin-bottom: 0;

  font-size: clamp(2rem, 3.8vw, 3.2rem);

  line-height: 1.15;

  font-weight: 700;

  letter-spacing: -0.01em;

}



h3 {

  margin-bottom: 12px;

  font-size: 1.35rem;

  font-weight: 600;

  letter-spacing: -0.01em;

}



.hero-text {

  max-width: 600px;

  color: var(--muted);

  font-size: clamp(1.05rem, 1.25vw, 1.2rem);

  line-height: 1.65;

}



.hero-tags {

  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 32px;

}



.hero-tags span {

  display: inline-flex;

  align-items: center;

  min-height: 32px;

  padding: 0 14px;

  border: 1px solid var(--line);

  border-radius: 999px;

  color: var(--soft);

  background: rgba(255, 255, 255, 0.03);

  font-size: 0.85rem;

  font-weight: 500;

}



.hero-actions {

  display: flex;

  flex-wrap: wrap;

  gap: 16px;

  margin-top: 40px;

}



.button {

  min-height: 48px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 0 24px;

  border: 1px solid transparent;

  border-radius: 10px;

  cursor: pointer;

  font-weight: 600;

  font-size: 0.95rem;

  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);

}



.button:hover {

  transform: translateY(-2px);

}



.button.primary {

  color: #030407;

  background: linear-gradient(135deg, #a7f3d0, #bae6fd);

  box-shadow: 0 8px 30px rgba(167, 243, 208, 0.2);

}



.button.primary:hover {

  box-shadow: 0 12px 35px rgba(167, 243, 208, 0.35);

}



.button.secondary {

  color: var(--text);

  border-color: var(--line-bright);

  background: rgba(255, 255, 255, 0.03);

}



.button.secondary:hover {

  background: rgba(255, 255, 255, 0.08);

  border-color: rgba(255, 255, 255, 0.3);

}



/* --- Showcase & Trust --- */

.hero-showcase {

  border: 1px solid var(--line);

  border-radius: var(--radius);

  background: rgba(255, 255, 255, 0.02);

  box-shadow: var(--shadow);

}



.showcase-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

}



.showcase-grid div {

  min-height: 120px;

  display: grid;

  align-content: center;

  gap: 6px;

  padding: 24px;

  border-right: 1px solid var(--line);

  border-bottom: 1px solid var(--line);

}



.showcase-grid div:nth-child(even) { border-right: 0; }

.showcase-grid div:nth-last-child(-n + 2) { border-bottom: 0; }



.showcase-grid span,

.solution-grid span,

.product-card span,

.project-start-grid span {

  color: var(--cyan);

  font-size: 0.75rem;

  font-weight: 700;

  letter-spacing: 0.05em;

  text-transform: uppercase;

}



.showcase-grid strong {

  color: var(--text);

  font-size: 1.05rem;

  font-weight: 600;

}



.trust-strip {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--line);

  border-bottom: 1px solid var(--line);

  background: rgba(255, 255, 255, 0.01);

}



.trust-strip div {

  min-height: 96px;

  display: flex;

  align-items: center;

  gap: 16px;

  padding: 24px clamp(24px, 6vw, 80px);

  border-right: 1px solid var(--line);

}



.trust-strip div:last-child { border-right: 0; }

.trust-strip strong { color: var(--green); font-size: 1rem; font-weight: 700; }

.trust-strip span { color: var(--soft); font-weight: 500; font-size: 0.95rem; }



/* --- Global Cards Architecture --- */

.section, .contact-section {

  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);

}



.section-heading {

  max-width: 800px;

  margin-bottom: 48px;

}



.section-heading p:not(.eyebrow) {

  max-width: 600px;

  margin: 16px 0 0;

  color: var(--muted);

  font-size: 1.1rem;

  line-height: 1.6;

}



.service-grid, .solution-grid, .project-start-grid, .product-grid {

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 24px;

}



.product-grid {

  grid-template-columns: repeat(2, minmax(0, 1fr));

}



.service-card,

.solution-grid article,

.project-start-grid article,

.product-card {

  min-height: 320px;

  padding: 32px;

  border: 1px solid var(--line);

  border-radius: var(--radius);

  background: rgba(255, 255, 255, 0.02);

  display: flex;

  flex-direction: column;

  justify-content: flex-start;

  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);

}



.service-card.featured {

  background: linear-gradient(145deg, rgba(124, 58, 237, 0.08), rgba(244, 63, 94, 0.03)), rgba(255, 255, 255, 0.02);

  border-color: rgba(124, 58, 237, 0.25);

}



.service-number {

  width: 40px;

  height: 40px;

  display: grid;

  place-items: center;

  margin-bottom: 32px;

  border: 1px solid var(--line);

  border-radius: 10px;

  color: var(--cyan);

  font-weight: 700;

  font-size: 0.9rem;

}



.service-card p, .solution-grid p, .approach-copy p, .contact-copy p, .product-card p {

  color: var(--muted);

  line-height: 1.6;

  font-size: 0.95rem;

}



.service-card ul {

  display: grid;

  gap: 12px;

  margin: auto 0 0;

  padding: 24px 0 0;

  list-style: none;

}



.service-card li {

  position: relative;

  padding-left: 20px;

  color: var(--soft);

  font-size: 0.9rem;

}



.service-card li::before {

  content: "";

  position: absolute;

  left: 0;

  top: 50%;

  transform: translateY(-50%);

  width: 6px;

  height: 6px;

  border-radius: 50%;

  background: var(--green);

}



/* --- Approach Processes --- */

.approach-section {

  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: clamp(40px, 8vw, 100px);

  align-items: start;

  background: #08090e;

}



.approach-copy { max-width: 540px; }

.approach-copy p { margin-top: 20px; font-size: 1.05rem; }

.process-list { display: grid; gap: 14px; }



.process-step {

  display: grid;

  gap: 6px;

  width: 100%;

  padding: 24px;

  border: 1px solid var(--line);

  border-radius: 14px;

  color: var(--text);

  text-align: left;

  background: rgba(255, 255, 255, 0.01);

  cursor: pointer;

  transition: all 250ms ease;

}



.process-step span { font-size: 1.1rem; font-weight: 600; }

.process-step small { color: var(--muted); font-size: 0.9rem; line-height: 1.5; }



.process-step.active {

  border-color: rgba(14, 165, 228, 0.4);

  background: rgba(14, 165, 228, 0.04);

}



/* --- Specific UI Tweaks for Grids --- */

.solution-grid article,

.project-start-grid article,

.product-card {

  justify-content: flex-end;

  min-height: 260px;

}



.solution-grid span,

.project-start-grid span,

.product-card span {

  width: fit-content;

  margin-bottom: 14px;

  padding: 4px 10px;

  border-radius: 6px;

  background: rgba(14, 165, 228, 0.1);

  border: 1px solid rgba(14, 165, 228, 0.15);

}



.solution-grid h3, .project-start-grid h3 { font-size: 1.25rem; }



/* --- Contact Module --- */

.contact-section {

  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: clamp(40px, 8vw, 100px);

  align-items: start;

  background: var(--surface);

  border-top: 1px solid var(--line);

}



.contact-copy { max-width: 520px; }

.contact-points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }



.contact-points span {

  padding: 6px 14px;

  border: 1px solid var(--line);

  border-radius: 999px;

  color: var(--soft);

  background: rgba(255, 255, 255, 0.02);

  font-size: 0.85rem;

}



.contact-form {

  display: grid;

  gap: 20px;

  padding: 36px;

  border: 1px solid var(--line-bright);

  border-radius: var(--radius);

  background: #030407;

  box-shadow: var(--shadow);

}



.contact-form label {

  display: grid;

  gap: 8px;

  color: var(--soft);

  font-size: 0.85rem;

  font-weight: 500;

}



.form-row {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 16px;

}



.contact-form input,

.contact-form select,

.contact-form textarea {

  width: 100%;

  border: 1px solid var(--line);

  color: var(--text);

  background: rgba(255, 255, 255, 0.02);

  padding: 12px 16px;

  border-radius: 8px;

  outline: none;

  transition: all 200ms ease;

}



.contact-form input:focus,

.contact-form select:focus,

.contact-form textarea:focus {

  border-color: var(--cyan);

  background: rgba(255, 255, 255, 0.04);

  box-shadow: 0 0 0 3px rgba(14, 165, 228, 0.15);

}



.contact-form select option {

  color: var(--text);

  background: var(--surface-2);

}



.form-status { min-height: 20px; margin: 0; color: var(--green); font-weight: 500; font-size: 0.9rem; }



/* --- Footer --- */

.site-footer {

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 32px clamp(24px, 6vw, 80px);

  border-top: 1px solid var(--line);

  color: var(--muted);

  font-size: 0.9rem;

}



.site-footer span { color: var(--text); font-weight: 700; }

.site-footer p { margin: 0; }



/* --- Premium Backdrop & Glow Engine --- */

.site-header.scrolled,

.site-header.open,

.site-nav,

.hero-showcase,

.service-card,

.solution-grid article,

.project-start-grid article,

.process-step,

.contact-form,

.contact-points span,

.hero-tags span,

.product-card {

  backdrop-filter: blur(16px);

  -webkit-backdrop-filter: blur(16px);

}



.service-card:hover,

.solution-grid article:hover,

.project-start-grid article:hover,

.product-card:hover {

  transform: translateY(-4px);

  border-color: rgba(255, 255, 255, 0.2);

  background: rgba(255, 255, 255, 0.04);

  box-shadow: 0 20px 40px rgba(0,0,0,0.4);

}



.process-step:hover {

  border-color: rgba(255, 255, 255, 0.15);

  background: rgba(255, 255, 255, 0.02);

}



.reveal {

  opacity: 0;

  transform: translateY(16px);

  transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);

}



.reveal.visible {

  opacity: 1;

  transform: translateY(0);

}



/* --- Responsiveness Media Engine --- */

@media (max-width: 1024px) {

  .service-grid, .solution-grid, .project-start-grid, .product-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }

}



@media (max-width: 980px) {

  .nav-toggle { display: block; }

  .site-nav {

    position: fixed;

    top: 80px; left: 24px; right: 24px;

    display: none; padding: 12px;

    border-radius: 14px;

    background: rgba(3, 4, 7, 0.98);

    grid-template-columns: 1fr;

  }

  .site-header.open .site-nav { display: grid; gap: 8px; }

  .site-nav a { justify-content: center; }



  .hero, .approach-section, .contact-section { grid-template-columns: 1fr; gap: 48px; }

  .hero { padding-top: 120px; }

  .trust-strip { grid-template-columns: 1fr; }

  .trust-strip div { border-right: 0; border-bottom: 1px solid var(--line); min-height: 80px; }

  .trust-strip div:last-child { border-bottom: 0; }

}



@media (max-width: 640px) {

  .service-grid, .solution-grid, .project-start-grid, .product-grid {

    grid-template-columns: 1fr;

  }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 24px; }

  .hero-actions .button { width: 100%; }

  .showcase-grid { grid-template-columns: 1fr; }

  .showcase-grid div { border-right: 0; }

  .showcase-grid div:nth-last-child(-n + 2) { border-bottom: 1px solid var(--line); }

  .showcase-grid div:last-child { border-bottom: 0; }

}



@media (prefers-reduced-motion: reduce) {

  *, *::before, *::after {

    animation-duration: 0.01ms !important;

    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;

  }

  .reveal { opacity: 1; transform: none; }

}



/* --- CodForge-style visual upgrade --- */

body {

  background:

    radial-gradient(circle at 12% 8%, rgba(124, 58, 237, 0.26), transparent 28rem),

    radial-gradient(circle at 88% 18%, rgba(14, 165, 233, 0.16), transparent 30rem),

    radial-gradient(circle at 50% 86%, rgba(244, 63, 94, 0.1), transparent 34rem),

    linear-gradient(180deg, #02030a 0%, #080a12 42%, #02030a 100%);

}



body::after {

  content: "";

  position: fixed;

  inset: 0;

  z-index: -1;

  pointer-events: none;

  background:

    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.035) 48%, transparent 54% 100%),

    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 34rem);

  opacity: 0.7;

}



.site-header {

  margin: 18px clamp(18px, 4vw, 56px) 0;

  width: auto;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 22px;

  background: rgba(3, 4, 7, 0.42);

  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.32);

  backdrop-filter: blur(22px);

  -webkit-backdrop-filter: blur(22px);

}



.site-header.scrolled,

.site-header.open {

  background: rgba(3, 4, 7, 0.78);

}



.brand {

  width: 250px;

}



.site-nav {

  background: rgba(255, 255, 255, 0.045);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);

}



.site-nav a {

  font-weight: 700;

}



.hero {

  position: relative;

  min-height: 100vh;

  padding-top: 160px;

}



.hero::before {

  content: "";

  position: absolute;

  left: clamp(24px, 6vw, 80px);

  right: clamp(24px, 6vw, 80px);

  bottom: 34px;

  height: 1px;

  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.52), rgba(167, 243, 208, 0.45), transparent);

}



.hero-copy h1,

.section-heading h2,

.contact-copy h2 {

  background: linear-gradient(135deg, #ffffff 0%, #dbeafe 46%, #a7f3d0 100%);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.hero-text {

  color: #cbd5e1;

}



.hero-tags span,

.contact-points span {

  border-color: rgba(255, 255, 255, 0.12);

  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);

}



.hero-showcase,

.contact-form,

.service-card,

.solution-grid article,

.product-card,

.project-start-grid article,

.process-step {

  border-color: rgba(255, 255, 255, 0.14);

  background:

    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),

    rgba(8, 10, 18, 0.66);

  box-shadow:

    inset 0 1px 0 rgba(255, 255, 255, 0.12),

    0 24px 80px rgba(0, 0, 0, 0.38);

}



.hero-showcase {

  position: relative;

  overflow: hidden;

  isolation: isolate;

}



.hero-showcase::before {

  content: "";

  position: absolute;

  inset: -1px;

  z-index: -1;

  background:

    radial-gradient(circle at 20% 15%, rgba(124, 58, 237, 0.24), transparent 16rem),

    radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.18), transparent 18rem);

}



.hero-showcase::after,

.service-card::after,

.solution-grid article::after,

.product-card::after,

.project-start-grid article::after,

.contact-form::after {

  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  border-radius: inherit;

  background: linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.1) 45%, transparent 58% 100%);

  transform: translateX(-100%);

  transition: transform 700ms ease;

}



.hero-showcase:hover::after,

.service-card:hover::after,

.solution-grid article:hover::after,

.product-card:hover::after,

.project-start-grid article:hover::after,

.contact-form:hover::after {

  transform: translateX(100%);

}



.showcase-grid div {

  transition: transform 220ms ease, background 220ms ease;

}



.showcase-grid div:hover {

  transform: translateY(-4px);

  background: rgba(255, 255, 255, 0.055);

}



.service-card:hover,

.solution-grid article:hover,

.product-card:hover,

.project-start-grid article:hover {

  transform: translateY(-8px);

  border-color: rgba(14, 165, 233, 0.36);

  box-shadow:

    inset 0 1px 0 rgba(255, 255, 255, 0.16),

    0 30px 90px rgba(0, 0, 0, 0.48),

    0 0 44px rgba(14, 165, 233, 0.12);

}



.service-number,

.solution-grid span,

.project-start-grid span,

.product-card span {

  border-radius: 999px;

  color: #021014;

  border: 0;

  background: linear-gradient(135deg, #a7f3d0, #67e8f9);

  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.18);

}



.button.primary {

  background: linear-gradient(135deg, #a7f3d0 0%, #67e8f9 52%, #c4b5fd 100%);

  box-shadow: 0 16px 48px rgba(14, 165, 233, 0.2);

}



.button.secondary {

  backdrop-filter: blur(14px);

  -webkit-backdrop-filter: blur(14px);

}



.products-section,

.project-start-section,

.approach-section,

.contact-section {

  position: relative;

  overflow: hidden;

}



.products-section::before,

.project-start-section::before,

.approach-section::before,

.contact-section::before {

  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background: radial-gradient(circle at 12% 18%, rgba(14, 165, 233, 0.08), transparent 26rem);

}



.products-section > *,

.project-start-section > *,

.approach-section > *,

.contact-section > * {

  position: relative;

}



.contact-form input,

.contact-form select,

.contact-form textarea {

  background: rgba(255, 255, 255, 0.045);

  border-color: rgba(255, 255, 255, 0.12);

}



.contact-form select option {

  color: #030407;

  background: #ffffff;

}



@media (max-width: 980px) {

  .site-header {

    margin: 12px 16px 0;

  }



  .hero {

    padding-top: 132px;

  }

}


/* CodForge product wordmark */
.codforge-wordmark {
  width: fit-content;
  margin-bottom: 18px;
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}


.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-contact a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.footer-contact a:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 233, 0.45);
  background: rgba(255, 255, 255, 0.07);
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

@media (max-width: 720px) {
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact {
    justify-content: flex-start;
  }
}

