:root {
  --primary: #191f2f;
  --primary-dark: #0f1726;
  --accent: #7eb2ff;
  --text: #191f2f;
  --muted: #5d708e;
  --line: rgba(30, 79, 157, 0.12);
  --bg: #f4f8fe;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(40, 87, 165, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(126, 178, 255, 0.25), transparent 28%),
    linear-gradient(180deg, #f9fbff 0%, #f2f7ff 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  margin: 16px;
  padding: 12px 16px;
  background: #000;
  color: #fff;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 40px rgba(18, 48, 96, 0.1);
  backdrop-filter: blur(18px);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--primary);
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd667 0%, #f6b718 42%, #f2a500 100%);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.68);
}

.brand-mark span {
  position: absolute;
  border-radius: 999px;
  background: #191f2f;
}

.brand-mark span:nth-child(1) {
  width: 20px;
  height: 4px;
  top: 10px;
  left: 16px;
}

.brand-mark span:nth-child(2) {
  width: 24px;
  height: 4px;
  top: 17px;
  left: 12px;
}

.brand-mark span:nth-child(3) {
  width: 16px;
  height: 4px;
  top: 24px;
  left: 19px;
}

.brand-text {
  font-size: 1.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.98rem;
  color: #304766;
}

.site-nav a {
  position: relative;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, #3d7bf1 100%);
  box-shadow: 0 14px 30px rgba(43, 109, 232, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  box-shadow: 0 18px 36px rgba(43, 109, 232, 0.28);
}

.btn-secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(43, 109, 232, 0.22);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #fff;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(43, 109, 232, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 40px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 70px -18% auto auto;
  width: min(60vw, 760px);
  height: min(60vw, 760px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 141, 255, 0.17), rgba(75, 141, 255, 0));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 40px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 8ch;
}

.hero-text {
  max-width: 560px;
  margin: 0 0 28px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 20px 24px;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(43, 109, 232, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.hero-stats span {
  display: block;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-scene {
  position: absolute;
  inset: 0;
  perspective: 1200px;
}

.scene-orbit {
  position: absolute;
  top: -80px;
  right: -30px;
  width: 420px;
  height: 420px;
  border: 26px solid rgba(255, 255, 255, 0.72);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(18deg);
}

.scene-panel,
.scene-cabinet {
  position: absolute;
  bottom: 100px;
  border-radius: 14px;
  box-shadow: 0 28px 60px rgba(31, 55, 105, 0.22);
}

.scene-panel {
  width: 140px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 28px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 28px),
    linear-gradient(145deg, #202938 0%, #313e54 100%);
  background-size: 28px 100%, 100% 28px, 100% 100%;
  animation: floatY 5.5s ease-in-out infinite;
}

.panel-left {
  left: 80px;
  height: 310px;
  transform: rotateY(26deg) skewY(-3deg);
}

.panel-center {
  left: 185px;
  height: 360px;
  transform: rotateY(18deg) translateZ(10px);
  animation-delay: -1.2s;
}

.scene-cabinet {
  background: linear-gradient(180deg, #ffffff 0%, #e8eef9 100%);
  border: 1px solid rgba(74, 107, 167, 0.16);
  animation: floatY 6.8s ease-in-out infinite;
}

.cabinet-main {
  right: 165px;
  width: 190px;
  height: 240px;
  border-radius: 18px;
  animation-delay: -0.8s;
}

.cabinet-main::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 55px;
  width: 62px;
  height: 82px;
  transform: translateX(-50%);
  border-radius: 12px;
  background: linear-gradient(180deg, #1d2431, #374a68);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.08);
}

.cabinet-main::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 145px;
  width: 42px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(43, 109, 232, 0.28);
}

.cabinet-side {
  right: 18px;
  width: 150px;
  height: 335px;
}

.cabinet-side::before,
.cabinet-side::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 4px;
  border-radius: 999px;
  background: rgba(43, 109, 232, 0.5);
}

.cabinet-side::before {
  top: 54px;
}

.cabinet-side::after {
  top: 112px;
}

.scene-base {
  position: absolute;
  right: 24px;
  bottom: 52px;
  width: 92%;
  height: 92px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(19, 52, 109, 0.18), rgba(19, 52, 109, 0.02) 65%);
  filter: blur(18px);
}

.scene-glow {
  position: absolute;
  right: 100px;
  bottom: 130px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 180, 255, 0.26), rgba(125, 180, 255, 0));
  filter: blur(8px);
}

.section {
  padding: 46px 0 84px;
}

.section-soft {
  background: rgba(255, 255, 255, 0.46);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.section-heading p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.news-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solutions-grid,
.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.products-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.news-card,
.solution-card,
.product-card,
.feature-card,
.support-card {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(31, 55, 105, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.news-card:hover,
.solution-card:hover,
.product-card:hover,
.feature-card:hover,
.support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(31, 55, 105, 0.12);
  border-color: rgba(43, 109, 232, 0.24);
}

.card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(43, 109, 232, 0.1);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.news-thumb,
.solution-image,
.product-visual {
  border-radius: 18px;
}

.news-thumb {
  height: 155px;
  margin: 14px 0 16px;
  background-size: cover;
  background-position: center;
}

.thumb-blue {
  background:
    linear-gradient(180deg, rgba(45, 92, 178, 0.15), rgba(14, 40, 86, 0.25)),
    linear-gradient(135deg, #dceafd, #98befd);
}

.thumb-navy {
  background:
    linear-gradient(180deg, rgba(33, 45, 77, 0.24), rgba(14, 40, 86, 0.35)),
    linear-gradient(135deg, #d5e3ff, #7da1e2);
}

.thumb-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(126, 178, 255, 0.2)),
    linear-gradient(135deg, #f7fbff, #d6e6ff);
}

.thumb-green {
  background:
    linear-gradient(180deg, rgba(35, 78, 73, 0.2), rgba(35, 78, 73, 0.35)),
    linear-gradient(135deg, #d4eff0, #90c5ca);
}

.card-date {
  margin: 0 0 8px;
  color: #6d7f9a;
  font-size: 0.88rem;
}

.news-card h3,
.solution-card h3,
.product-card h3,
.feature-card h3,
.support-card h2 {
  margin: 0 0 10px;
  line-height: 1.35;
}

.news-card h3,
.solution-card h3,
.product-card h3 {
  font-size: 1.12rem;
}

.news-card a,
.solution-card a,
.product-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #fff;
  font-weight: 700;
}

.news-card a::after,
.solution-card a::after,
.product-card a::after {
  display: none;
}

.solution-image {
  height: 220px;
  margin-bottom: 18px;
  overflow: hidden;
}

.image-home {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(16, 40, 74, 0.1)),
    linear-gradient(135deg, #daf0ff, #8bbef2);
}

.image-storage {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(16, 40, 74, 0.12)),
    linear-gradient(135deg, #f4efe7, #b4bcc7);
}

.image-commercial {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(16, 40, 74, 0.12)),
    linear-gradient(135deg, #cfe6ff, #8eb6d9);
}

.image-ci {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(16, 40, 74, 0.14)),
    linear-gradient(135deg, #d4e8ff, #8aaee4);
}

.product-card {
  min-height: 100%;
}

.product-visual {
  position: relative;
  height: 150px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #f6f9ff, #eaf0fa);
  overflow: hidden;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 18px auto auto 50%;
  transform: translateX(-50%);
}

.visual-kit::before {
  width: 100px;
  height: 90px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, #1e2a39 0%, #36445c 100%);
  box-shadow:
    -58px 18px 0 -12px #eef3fb,
    -58px 18px 0 0 rgba(31, 55, 105, 0.08),
    0 24px 28px rgba(31, 55, 105, 0.18);
}

.visual-panel::before {
  width: 82px;
  height: 112px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 18px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 18px),
    linear-gradient(145deg, #202938 0%, #313e54 100%);
  background-size: 18px 100%, 100% 18px, 100% 100%;
  border-radius: 10px;
  transform: translateX(-50%) rotate(-5deg);
}

.visual-inverter::before {
  width: 88px;
  height: 106px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #edf2fb 100%);
  border: 1px solid rgba(74, 107, 167, 0.16);
  box-shadow: 0 20px 24px rgba(31, 55, 105, 0.14);
}

.visual-inverter::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 38px;
  width: 34px;
  height: 44px;
  transform: translateX(-50%);
  border-radius: 10px;
  background: linear-gradient(180deg, #1d2431, #374a68);
}

.visual-battery::before {
  width: 100px;
  height: 116px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #edf3fb 100%);
  box-shadow:
    -34px 10px 0 0 #f7faff,
    -34px 10px 0 1px rgba(74, 107, 167, 0.16),
    0 22px 24px rgba(31, 55, 105, 0.12);
}

.visual-container::before {
  width: 118px;
  height: 100px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(130, 150, 185, 0.18) 0 2px, transparent 2px 20px),
    linear-gradient(180deg, rgba(130, 150, 185, 0.18) 0 2px, transparent 2px 20px),
    linear-gradient(180deg, #ffffff 0%, #ecf2fb 100%);
  background-size: 20px 100%, 100% 20px, 100% 100%;
  border: 1px solid rgba(74, 107, 167, 0.16);
}

.solution-card p,
.product-card p,
.feature-card p,
.support-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  gap: 22px;
}

.feature-card {
  min-height: 180px;
  padding-top: 30px;
}

.feature-card::before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(43, 109, 232, 0.16), rgba(126, 178, 255, 0.34));
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
}

.support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 320px;
  overflow: hidden;
}

.download-illustration {
  position: relative;
  width: 180px;
  height: 150px;
  flex-shrink: 0;
}

.folder-back,
.folder-front,
.sheet {
  position: absolute;
  border-radius: 18px;
}

.folder-back {
  inset: 30px 10px 10px 20px;
  background: linear-gradient(180deg, #d9e6ff, #b6cefa);
}

.folder-front {
  inset: 48px 0 0 36px;
  background: linear-gradient(180deg, #97bbff, #6b99ef);
}

.sheet {
  inset: 22px 30px 40px 60px;
  background:
    linear-gradient(180deg, rgba(43, 109, 232, 0.12) 0 6px, transparent 6px 18px),
    linear-gradient(180deg, #ffffff, #edf2fb);
}

.form-card {
  align-items: stretch;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  font-weight: 600;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(74, 107, 167, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.lead-form button {
  width: fit-content;
}

.site-footer {
  padding: 70px 0 34px;
  background: linear-gradient(180deg, #edf4ff 0%, #e3edfb 100%);
  border-top: 1px solid rgba(74, 107, 167, 0.12);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(74, 107, 167, 0.12);
}

.footer-brand p {
  max-width: 280px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
  flex: 1;
}

.footer-columns h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-columns li + li {
  margin-top: 10px;
}

.footer-columns a {
  color: var(--muted);
}

.footer-columns a:hover,
.footer-columns a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

@media (max-width: 1200px) {
  .news-grid,
  .products-grid,
  .solutions-grid,
  .feature-grid,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .support-grid,
  .footer-top {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-visual {
    min-height: 520px;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-stats,
  .lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    padding: 14px 0;
  }

  .brand-text {
    font-size: 1.35rem;
  }

  .hero {
    padding-top: 18px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 380px;
  }

  .scene-orbit {
    width: 240px;
    height: 240px;
    border-width: 18px;
    right: -10px;
  }

  .panel-left {
    left: 10px;
    width: 90px;
    height: 200px;
  }

  .panel-center {
    left: 76px;
    width: 95px;
    height: 240px;
  }

  .cabinet-main {
    right: 92px;
    width: 118px;
    height: 165px;
  }

  .cabinet-main::before {
    top: 36px;
    width: 42px;
    height: 58px;
  }

  .cabinet-main::after {
    top: 102px;
  }

  .cabinet-side {
    right: 4px;
    width: 90px;
    height: 220px;
  }

  .news-grid,
  .products-grid,
  .solutions-grid,
  .feature-grid,
  .footer-columns,
  .hero-stats,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .section,
  .site-footer {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
