  main.stc-main {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    padding: 48px 16px 64px;
  }

  section.stc-section {
    margin-bottom: 48px;
  }

  .stc-title {
    font-size: 28px;
    text-align: center;
    margin: 0 0 10px;
    font-weight: 700;
    color: var(--st-text-main);
  }

  .stc-subtitle {
    font-size: 17px;
    text-align: center;
    color: var(--st-text-muted);
    margin: 0 0 24px;
  }

/* LIGHT MODE - completely flat */
.stc-card {
  border-radius: 22px;
  padding: 26px 30px;
  background: transparent;
  box-shadow: none;
  border: none;
}

/* DARK MODE - highlighted card */
[data-theme="dark"] .stc-card {
  background: rgba(255, 255, 255, 0.06);   /* soft elevated dark surface */
  border: 1px solid rgba(255, 255, 255, 0.12); /* subtle outline */
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.45);   /* soft glow-like depth */
}

/* EXTRA: give inner content (like steps, usage cards, pills) better contrast */
[data-theme="dark"] .stc-step,
[data-theme="dark"] .stc-usage-card,
[data-theme="dark"] .stc-feature-card,
[data-theme="dark"] .stc-how-highlight,
[data-theme="dark"] .stc-faq-item,
[data-theme="dark"] .stc-why-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: none; /* keep clean, modern */
}



  p,
  li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--st-text-main);
    margin-top: 0;
  }

  ul {
    margin: 10px 0 0 24px;
    padding: 0;
  }

  /* ---------- Other Sarkari Tools (big chips with hover shadow) ---------- */

  .stc-tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .stc-tool-item {
    min-width: 220px;
    text-align: left;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 17px;
    text-decoration: none;
    color: var(--st-text-main);
    background: var(--st-surface);
    display: inline-flex;
    align-items: left;
    justify-content: left;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
    transition: box-shadow 0.2s ease, transform 0.12s ease;
  }

  .stc-tool-item span.stc-chip-icon {
    font-size: 22px;
  }

  .stc-tool-item:hover {
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.4);
    transform: translateY(-2px);
  }

  /* Tool item wrapper */
.stc-tool-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  text-decoration: none;
  color: var(--st-text-main);
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.05s ease;
}

/* Icon container */
.stc-chip-icon {
  width: 38px;      /* adjust size here */
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon image */
.stc-chip-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* ensures proper scaling */
  border-radius: 6px;    /* optional — matches SarkariTool style */
}


  /* ---------- Working process (big steps) ---------- */

  .stc-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 18px;
  }

  .stc-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--st-surface);
    box-shadow: 0 20px 56px rgba(15, 23, 42, 0.18);
  }

  .stc-step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: black;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .stc-step-body {
    font-size: 17px;
  }

  .stc-step-title {
    font-weight: 650;
    margin-bottom: 6px;
    font-size: 19px;
    color: var(--st-text-main);
  }

  /* ---------- How to add (card with stronger shadow) ---------- */

  .stc-how-grid {
    box-shadow: 0 22px 64px rgba(15, 23, 42, 0.16);
    background: var(--st-surface);
    border-radius: 22px;
  }

  .stc-how-highlight {
    border-radius: 18px;
    padding: 18px 20px;
    background: var(--st-surface-soft);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.2);
    font-size: 17px;
    color: var(--st-text-main);
  }

  .stc-how-highlight strong {
    display: block;
    margin-bottom: 8px;
    color: var(--st-text-main);
  }

  .stc-how-highlight ul {
    margin-top: 4px;
  }

  /* ---------- Where to use (2 big cards) ---------- */

  .stc-usage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 12px;
  }

  .stc-usage-card {
    border-radius: 20px;
    padding: 20px 22px;
    background: var(--st-surface);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
  }

  .stc-usage-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 680;
    color: var(--st-text-main);
  }

  .stc-usage-card h4 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 620;
    color: var(--st-text-main);
  }

  /* ---------- FAQ ---------- */

  .stc-faq-wrapper {
    max-width: 880px;
    margin: 0 auto;
  }

  .stc-faq-item {
    border-radius: 14px;
    background: var(--st-surface);
    margin-bottom: 12px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
    overflow: hidden;
  }

  .stc-faq-btn {
    width: 100%;
    border: none;
    background: transparent;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font: inherit;
    text-align: left;
  }

  .stc-faq-question {
    font-size: 18px;
    margin-right: 12px;
    color: var(--st-text-main);
  }

  .stc-faq-icon {
    font-size: 20px;
    color: var(--st-text-muted);
  }

  .stc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.24s ease;
    padding: 0 20px;
    background: var(--st-surface);
  }

  .stc-faq-answer-inner {
    padding-bottom: 16px;
    font-size: 17px;
    color: var(--st-text-main);
  }

  .stc-faq-item.stc-active .stc-faq-btn {
    background: var(--st-surface-soft);
  }

  .stc-faq-item.stc-active .stc-faq-answer {
    max-height: 260px;
  }

  /* ---------- Why like Dozni ---------- */

  .stc-why-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 14px;
  }

  .stc-why-pill {
    padding: 10px 18px;
    border-radius: 8px;
    background: var(--st-surface);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.18);
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--st-text-main);
  }

  .stc-why-pill span:first-child {
    font-size: 22px; /* emoji */
  }

  /* ---------- Features (2 x 2) ---------- */

  .stc-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 12px;
  }

  .stc-feature-card {
    border-radius: 20px;
    background: var(--st-surface);
    padding: 18px 20px;
    font-size: 17px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
  }

  .stc-feature-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .stc-feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--st-text-main);
    stroke-width: 1.6;
    fill: none;
  }

  .stc-feature-title {
    font-weight: 650;
    margin-bottom: 6px;
    font-size: 19px;
    color: var(--st-text-main);
  }

  /* ---------- Responsive ---------- */

  @media (max-width: 900px) {
    .stc-steps {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  @media (max-width: 768px) {
    .stc-card {
      padding: 22px 18px;
    }

    .stc-title {
      font-size: 24px;
    }

    .stc-subtitle {
      font-size: 16px;
    }

    .stc-how-grid {
      grid-template-columns: minmax(0, 1fr);
    }

    .stc-usage-grid {
      grid-template-columns: minmax(0, 1fr);
    }

    .stc-features-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  @media (max-width: 480px) {
    .stc-title {
      font-size: 22px;
    }

    p,
    li {
      font-size: 16px;
    }

    .stc-tool-item {
      min-width: 100%;
      font-size: 16px;
    }
  }























/* =========================
       THEME (LIGHT / DARK ONLY)
       ========================= */
    :root[data-theme="light"] {
      color-scheme: light;
      --st-bg: white;
      --st-surface: #ffffff;
      --st-surface-soft: #f3f4f6;
      --st-text-main: #111827;
      --st-text-muted: #4b5563;
      --st-border: #e5e7eb;
      --st-accent: #2563eb;
      --st-accent-strong: #2563eb;
      --st-nav-bg: rgba(255, 255, 255, 0.98);
      --st-footer-bg: #f9fafb;
    }

    :root[data-theme="dark"] {
      color-scheme: dark;
      --st-bg: #020617;
      --st-surface: #020617;
      --st-surface-soft: #020617;
      --st-text-main: #e5e7eb;
      --st-text-muted: #9ca3af;
      --st-border: #1e293b;
      --st-accent: #2563eb;
      --st-accent-strong: #2563eb;
      --st-nav-bg: rgba(15, 23, 42, 0.98);
      --st-footer-bg: #020617;
    }

    :root:not([data-theme]) {
      color-scheme: light;
    }

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

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
      background: var(--st-bg);
      color: var(--st-text-main);
    }

    a {
      color: inherit;
    }

    .st-page {
      max-width: 90%;
      margin: 0 auto;
      padding: 1.25rem 1rem 3rem;
    }

    .st-tool-title {
      margin: 1.6rem 0 1rem;
      font-size: 1.4rem;
      font-weight: 600;
    }


    

    .st-header a,
.st-header button {
  font-size: 17px;   /* matches content paragraphs */
}
.st-header-brand {
  font-size: 20px;   /* looks nice next to 28px titles */
}


    /* =========================
       HEADER / NAV
       ========================= */
    .st-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--st-nav-bg);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--st-border);
    }

.st-header-inner {
  width: 100%;             /* full width like footer */
  max-width: none;         /* remove limit */
  margin: 0;               /* remove centering */
  padding: 0.65rem 1rem;   /* keep spacing */
  display: flex;
  align-items: center;
  gap: 0.75rem;
}


    /* left, center, right zones */
    .st-header-left {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .st-header-center {
      flex: 1 1 auto;
      display: flex;
      justify-content: center;
    }

    .st-header-right {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-left: auto;           /* <— this line makes the buttons go to the far right */

    }

    /* Brand */
/* Brand container */
.st-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

/* Logo wrapper */
.st-brand-logo {
  width: 34px;      /* adjust logo size here */
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo image */
.st-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* keeps logo clean */
  border-radius: 6px;    /* optional, matches your design */
}



    .st-brand-main {
      font-weight: 700;
      font-size: 1.1rem;
    }

    .st-brand-sub {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--st-text-muted);
    }

    /* Center nav */
    .st-nav {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .st-nav-item {
      position: relative;
    }

/* =========================
   NAV LINK HOVER + ACTIVE
   (blue text + underline)
   ========================= */

.st-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.9rem;
  font-size: 18px;
  font-weight: 600;
  color: var(--st-text-muted);
  background: transparent;
  cursor: pointer;
  transition:
    color 0.18s ease-out,
    background 0.18s ease-out,
    border-color 0.18s ease-out;
}

/* blue underline bar */
.st-nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--st-accent);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition:
    transform 0.18s ease-out,
    opacity 0.18s ease-out;
}

/* hover effect */
.st-nav-link:hover {
  color: var(--st-accent);
  background: transparent;
  border-color: transparent;
}

.st-nav-link:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

/* mark current page link with this class in HTML */
.st-nav-link.st-is-active {
  color: var(--st-accent);
}

.st-nav-link.st-is-active::after {
  transform: scaleX(1);
  opacity: 1;
}


    .st-dropdown-toggle::after {
      content: "▾";
      font-size: 0.7rem;
      opacity: 0.8;
    }

.st-dropdown-menu {
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    top: calc(100% - 2px);   /* pulls the menu upward by 2px */
    left: 0;
    min-width: 240px;
    background: var(--st-surface);
    border-radius: 1rem;
    border: 1px solid var(--st-border);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.25);
    padding: 0.45rem;
    display: none;
    z-index: 40;
}



.st-nav-item:hover > .st-dropdown-menu,
.st-dropdown-menu:hover {
  display: block;
}




    .st-dropdown-link {
      display: block;
      padding: 0.45rem 0.75rem;
      border-radius: 0.75rem;
      text-decoration: none;
      font-size: 0.86rem;
      color: var(--st-text-muted);
      transition: all 0.16s ease, transform 0.12s ease;
    }

    .st-dropdown-link span {
      display: block;
    }

    .st-dropdown-link small {
      display: block;
      font-size: 0.72rem;
      opacity: 0.8;
    }

    .st-dropdown-link:hover {
      background: var(--st-accent);
      color: var(--st-bg);
      transform: translateX(2px);
    }

    /* Theme toggle (right side) */
/* base look (light + dark) */
.st-theme-toggle {
  border-radius: 8px;
  padding: 0.35rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(37, 99, 235, 0.45);
  background: rgba(37, 99, 235, 0.06);
  color: #2563eb;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.08s ease;
}

/* hover in light mode */
.st-theme-toggle:hover {
  background: #2563eb;
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.16),
    0 12px 28px rgba(37, 99, 235, 0.45);
  transform: translateY(-1px);
}

/* dark mode colors */
:root[data-theme="dark"] .st-theme-toggle {
  background: rgba(15, 23, 42, 0.96);
  color: #bfdbfe;
  border-color: rgba(129, 140, 248, 0.75);
}

/* hover in dark mode */
:root[data-theme="dark"] .st-theme-toggle:hover {
  background: #2563eb;
  color: #e5e7eb;
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.55),
    0 14px 34px rgba(15, 23, 42, 0.95);
}


    /* Mobile menu button (right side) */
    .st-nav-toggle {
      display: none;
      border-radius: 999px;
      border: 1px solid var(--st-border);
      padding: 0.35rem 0.7rem;
      font-size: 0.9rem;
      background: transparent;
      cursor: pointer;
    }

    /* Mobile nav container */
    .st-nav-mobile {
      display: none;
    }











.st-footer a,
.st-footer p {
  font-size: 16.5px;
}
.st-footer-title {
  font-size: 18px;
}






    /* =========================
       INFO SECTION (above footer)
       ========================= */
    .st-info-wrapper {
      background: var(--st-bg);
      padding: 1.5rem 1rem 0;
    }

    .st-info-card {
      max-width: 90%;
      margin: 0 auto 1.5rem;
      background: var(--st-surface);
      border-radius: 1.5rem;
      border: 1px solid var(--st-border);
      padding: 1.5rem 1.75rem;
    }

    .st-info-title {
      font-weight: 600;
      font-size: 19px;
      margin-bottom: 0.4rem;
    }

    .st-info-text {
      font-size: 17px;
      line-height: 1.5;
      color: var(--st-text-muted);
    }

    /* =========================
       FOOTER
       ========================= */
.st-footer-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--st-footer-bg);
  border-top: 1px solid var(--st-border); /* optional, to match header border-bottom */
}


.st-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;   /* remove rounded area */
  padding: 2rem 2.2rem 1.6rem; /* keep padding if you want inside spacing */
  border: none;       /* optional: looks cleaner full-width */
  background: var(--st-surface);
}


    .st-footer-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 1.75rem;
      font-size: 0.88rem;
    }

    .st-footer-title {
      font-weight: 600;
      margin-bottom: 0.65rem;
    }

    .st-footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .st-footer-links a {
      text-decoration: none;
      color: var(--st-text-muted);
      transition: color 0.15s ease, transform 0.12s ease;
    }

    .st-footer-links a:hover {
      color: var(--st-accent);
      transform: translateX(2px);
    }

    .st-footer-icon {
      margin-right: 0.3rem;
    }

    .st-footer-bottom {
      margin-top: 1.4rem;
      text-align: center;
      font-size: 0.78rem;
      color: var(--st-text-muted);
    }

    /* =========================
       RESPONSIVE
       ========================= */
    @media (max-width: 1024px) {
      .st-footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .st-header-inner {
        padding-inline: 0.9rem;
      }

      /* hide center nav, show mobile button */
      .st-header-center {
        display: none;
      }

      .st-nav-toggle {
        display: inline-flex;
      }

    /* FULLSCREEN OVERLAY NAV */
      .st-nav-mobile {
        display: none;                     /* will be turned on via [data-open="true"] */
        position: fixed;
        top: 3.2rem;                       /* below sticky header (approx height) */
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--st-nav-bg);
        z-index: 40;
      }

      .st-nav-mobile-inner {
        max-width: 1120px;
        margin: 0 auto;
        padding: 1.2rem 1.2rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        overflow-y: auto;
      }

      .st-nav-mobile a,
      .st-nav-mobile button {
        width: 100%;
        text-align: left;
        justify-content: flex-start;
      }

      .st-nav-mobile-group-title {
        margin-top: 0.4rem;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--st-text-muted);
      }

      .st-header[data-open="true"] + .st-nav-mobile {
        display: block;
      }

      .st-footer {
        padding-inline: 1.4rem;
      }

      .st-footer-grid {
        max-width: 90%;
        margin: 0 auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .st-info-card {
        padding: 1.25rem 1.2rem;
      }
    }

    @media (max-width: 520px) {
      .st-footer-grid {
        max-width: 90%;
        margin: 0 auto;
        grid-template-columns: minmax(0, 1fr);
      }
    }

    /* prevent scrolling when mobile menu is open */
body.st-no-scroll {
  overflow: hidden;
}




























/* =========================
   FORM + CANVAS BLOCK
   Uses your --st-* theme vars
   ========================= */

/* Main container holding form + canvas */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 90%;
}

/* Form card */
.form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--st-surface);
  padding: 20px;
  margin: 25px;
  border-radius: 10px;
  width: 300px;
  border: 1px solid var(--st-border);
  box-shadow: 0 0 18px rgba(15, 23, 42, 0.18); /* looks nice in both themes */
}

/* Labels */
.form-container label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 700;
  color: var(--st-text-main);
}

/* Text + Date inputs */
.form-container input[type="text"],
.form-container input[type="date"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid var(--st-border);
  background-color: var(--st-surface-soft);
  color: var(--st-text-main);
  outline: none;
}

/* Focus ring */
.form-container input[type="text"]:focus,
.form-container input[type="date"]:focus {
  border-color: var(--st-accent);
  box-shadow: 0 0 0 1px var(--st-accent);
}

/* Placeholder color */
.form-container input::placeholder {
  color: var(--st-text-muted);
}

/* Button */
.form-container button {
  background-color: var(--st-accent);
  border: none;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  border-radius: 6px;
  transition: background-color 0.25s ease, transform 0.08s ease;
}

.form-container button:hover {
  background-color: var(--st-accent-strong);
  transform: translateY(-1px);
}

/* File input */
input[type="file"] {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  border: 1px solid var(--st-border);
  font-size: 16px;
  color: var(--st-text-main);
  background-color: var(--st-surface-soft);
}

/* File input button */
input[type="file"]::file-selector-button {
  margin-right: 20px;
  border: none;
  background: var(--st-accent);
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease-in-out, transform 0.08s ease;
}

input[type="file"]::file-selector-button:hover {
  background: var(--st-accent-strong);
  transform: translateY(-1px);
}

/* Canvas block */
.result {
  margin: 25px;
}

/* Canvas preview card */
canvas {
  background-color: var(--st-surface);
  border-radius: 10px;
  width: 295px;
  height: 360px;
  border: 1px solid var(--st-border);
  box-shadow: 0 0 18px rgba(15, 23, 42, 0.18);
}

/* Small screens */
@media (max-width: 400px) {
  canvas {
    width: 250px;
  }
}
