/* =====================================================================
   FIRE SERVICE RECRUITMENT — stylesheet
   fire.searoutemaritime.in

   Deliberately plain, in the style of an Indian government recruitment
   portal: system fonts, boxed sections, bordered tables, high contrast,
   no animation. Nothing here is loaded from a CDN except the icon font
   in the HTML, so the site stays fast on slow connections.
   ===================================================================== */

:root {
    --navy:        #12395b;
    --navy-dark:   #0b2740;
    --navy-mid:    #1c5c91;
    --navy-pale:   #e8eff5;

    --saffron:     #c2410c;
    --saffron-mid: #ea7317;
    --saffron-pale:#fff4e6;

    --green:       #15803d;
    --green-pale:  #e9f7ee;
    --red:         #b42318;
    --red-pale:    #fdecea;

    --ink:         #1f2733;
    --ink-soft:    #43505f;
    --muted:       #64748b;
    --line:        #cbd5e1;
    --line-soft:   #e2e8f0;
    --page:        #eef2f6;
    --white:       #ffffff;

    --font: Arial, "Segoe UI", Roboto, Verdana, Tahoma, sans-serif;
    --font-title: Georgia, "Times New Roman", serif;

    --fs: 15px;   /* driven by the A- / A / A+ text-size controls */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: var(--fs);
    line-height: 1.65;
    color: var(--ink);
    background: var(--page);
}

a { color: var(--navy-mid); text-decoration: underline; }
a:hover { color: var(--saffron); }

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Keyboard users must be able to see where they are. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--saffron-mid);
    outline-offset: 1px;
}

/* ---------------------------------------------------------------------
   1. Accessibility strip  (skip link, text size, contact)
   --------------------------------------------------------------------- */

.util-bar {
    background: var(--navy-dark);
    color: #d5e2ee;
    font-size: 12.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.util-bar .container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    justify-content: space-between;
    min-height: 34px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.util-left,
.util-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 14px;
}

.util-bar a { color: #d5e2ee; text-decoration: none; }
.util-bar a:hover { color: #ffd79a; text-decoration: underline; }

.util-sep { color: rgba(255, 255, 255, 0.3); }

.text-size { display: inline-flex; align-items: center; gap: 4px; }

.text-size button {
    font-family: var(--font);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 24px;
    height: 22px;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
}

.text-size button:hover { background: var(--saffron); border-color: var(--saffron); }

/* Visible only when tabbed to — standard government-portal pattern. */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--saffron);
    color: #fff;
    padding: 8px 16px;
    z-index: 999;
}

.skip-link:focus {
    left: 8px;
    top: 8px;
    position: fixed;
}

/* ---------------------------------------------------------------------
   2. Identity band
   --------------------------------------------------------------------- */

.identity {
    background: var(--white);
    border-bottom: 3px solid var(--saffron);
}

.identity .container {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}

.identity-main {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.identity-emblem {
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: var(--white);
    padding: 3px;
}

.identity-emblem img { max-height: 100%; width: auto; }

.identity-text h1 {
    font-family: var(--font-title);
    font-size: 25px;
    line-height: 1.2;
    color: var(--navy);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.identity-text .org {
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.identity-text .sub {
    font-size: 12.5px;
    color: var(--muted);
}

.advt-box {
    border: 1px solid var(--line);
    border-left: 4px solid var(--navy);
    background: #f8fafc;
    padding: 8px 14px;
    font-size: 12.5px;
    line-height: 1.5;
}

.advt-box strong { color: var(--navy); display: block; font-size: 13px; }
.advt-box span { color: var(--muted); }

/* ---------------------------------------------------------------------
   3. Navigation
   --------------------------------------------------------------------- */

.main-nav {
    background: var(--navy);
    border-bottom: 1px solid var(--navy-dark);
}

.main-nav .container { padding: 0 16px; }

.nav-toggle {
    display: none;
    width: 100%;
    background: none;
    border: 0;
    color: #fff;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 0;
    text-align: left;
    cursor: pointer;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.nav-list > li + li { border-left: 1px solid rgba(255, 255, 255, 0.14); }

.nav-list a {
    display: block;
    padding: 12px 17px;
    color: #eaf1f7;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.nav-list a:hover { background: var(--navy-mid); color: #fff; }

.nav-list li.current > a {
    background: var(--saffron);
    color: #fff;
}

.nav-list a.nav-apply {
    background: var(--green);
    color: #fff;
}

.nav-list a.nav-apply:hover { background: #106b32; }

/* ---------------------------------------------------------------------
   4. Page title strip + breadcrumb
   --------------------------------------------------------------------- */

.page-title {
    background: linear-gradient(180deg, #1a4a72 0%, var(--navy) 100%);
    color: #fff;
    padding: 22px 0;
    border-bottom: 3px solid var(--saffron);
}

.page-title h2 {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
}

.page-title p {
    font-size: 13.5px;
    color: #c9dcec;
    margin-top: 4px;
}

.breadcrumb {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    font-size: 12.5px;
    color: var(--muted);
    padding: 8px 0;
}

.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 7px; color: var(--line); }

/* ---------------------------------------------------------------------
   5. Layout: main + sidebar
   --------------------------------------------------------------------- */

.page-body { padding: 22px 0 34px; }

.layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    align-items: start;
}

.layout-single { display: block; }

/* ---------------------------------------------------------------------
   6. Boxes and section headings
   --------------------------------------------------------------------- */

.box {
    background: var(--white);
    border: 1px solid var(--line);
    margin-bottom: 20px;
}

.box-head {
    background: var(--navy-pale);
    border-bottom: 1px solid var(--line);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.box-head h3 {
    font-family: var(--font-title);
    font-size: 17px;
    color: var(--navy);
    font-weight: 700;
}

.box-head i { color: var(--saffron); }

.box-head.head-saffron { background: var(--saffron-pale); border-bottom-color: #f4cfa5; }
.box-head.head-saffron h3 { color: var(--saffron); }
.box-head.head-saffron i { color: var(--saffron); }

.box-body { padding: 16px; }

.box-body > * + * { margin-top: 12px; }

.box-body h4 {
    font-size: 15px;
    color: var(--navy);
    font-weight: 700;
    margin-top: 18px;
}

.box-body p { color: var(--ink-soft); }

.box-body ul,
.box-body ol { padding-left: 22px; color: var(--ink-soft); }

.box-body li + li { margin-top: 5px; }

/* ---------------------------------------------------------------------
   7. Tables
   --------------------------------------------------------------------- */

.table-scroll { overflow-x: auto; }

table.gov {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: var(--white);
}

table.gov th,
table.gov td {
    border: 1px solid var(--line);
    padding: 9px 12px;
    text-align: left;
    vertical-align: top;
}

table.gov thead th {
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

table.gov tbody tr:nth-child(even) { background: #f6f9fb; }
table.gov tbody tr:hover { background: var(--navy-pale); }

table.gov td.num { text-align: center; width: 56px; color: var(--muted); }

/* Key/value table used for receipts and status cards. */
table.kv { width: 100%; border-collapse: collapse; font-size: 14px; }

table.kv td {
    border: 1px solid var(--line-soft);
    padding: 8px 12px;
}

table.kv td:first-child {
    width: 42%;
    background: #f7f9fb;
    color: var(--ink-soft);
}

/* ---------------------------------------------------------------------
   8. Notices, alerts, badges
   --------------------------------------------------------------------- */

.notice-list { list-style: none; padding: 0 !important; }

.notice-list li {
    border-bottom: 1px dashed var(--line);
    padding: 10px 0;
    font-size: 13.5px;
    display: flex;
    gap: 8px;
}

.notice-list li:last-child { border-bottom: 0; }
.notice-list li i { color: var(--saffron); margin-top: 4px; }
.notice-list .date { display: block; color: var(--muted); font-size: 12px; }

.tag-new {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 1px 6px;
    margin-left: 6px;
    vertical-align: 2px;
    text-transform: uppercase;
}

.alert {
    border: 1px solid var(--line);
    border-left: 4px solid var(--navy);
    background: #f8fafc;
    padding: 12px 16px;
    font-size: 13.5px;
    color: var(--ink-soft);
}

.alert strong { color: var(--navy); }
.alert-warn { border-left-color: var(--saffron); background: var(--saffron-pale); }
.alert-warn strong { color: var(--saffron); }
.alert-ok { border-left-color: var(--green); background: var(--green-pale); }
.alert-ok strong { color: var(--green); }
.alert-error { border-left-color: var(--red); background: var(--red-pale); }
.alert-error strong { color: var(--red); }

.badge {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 9px;
    text-transform: uppercase;
    border: 1px solid;
}

.badge-paid    { color: var(--green);   border-color: var(--green);   background: var(--green-pale); }
.badge-pending { color: var(--saffron); border-color: var(--saffron); background: var(--saffron-pale); }

/* Scrolling notice ticker on the home page. */
.ticker {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 4px solid var(--red);
    overflow: hidden;
}

.ticker-label {
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 8px 12px;
    white-space: nowrap;
    text-transform: uppercase;
}

.ticker-text {
    padding: 8px 12px;
    font-size: 13.5px;
    color: var(--ink-soft);
    overflow: hidden;
    white-space: nowrap;
}

/* ---------------------------------------------------------------------
   9. Buttons
   --------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.4;
}

.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy-dark); }
.btn-primary:hover:not(:disabled) { background: var(--navy-mid); color: #fff; }

.btn-apply { background: var(--green); color: #fff; border-color: #0f5f2c; }
.btn-apply:hover:not(:disabled) { background: #106b32; color: #fff; }

.btn-saffron { background: var(--saffron); color: #fff; border-color: #9c330a; }
.btn-saffron:hover:not(:disabled) { background: var(--saffron-mid); color: #fff; }

.btn-outline { background: var(--white); color: var(--navy); border-color: var(--line); }
.btn-outline:hover:not(:disabled) { background: var(--navy-pale); color: var(--navy); }

.btn-block { width: 100%; }
.btn-lg { font-size: 15.5px; padding: 13px 26px; }

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-row-split {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

/* ---------------------------------------------------------------------
   10. Sidebar widgets
   --------------------------------------------------------------------- */

.side-links { list-style: none; padding: 0 !important; }

.side-links li + li { border-top: 1px solid var(--line-soft); }

.side-links a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 4px;
    font-size: 13.5px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
}

.side-links a:hover { color: var(--saffron); }
.side-links i { color: var(--navy-mid); width: 15px; text-align: center; }

.fee-callout {
    text-align: center;
    border: 1px dashed var(--saffron);
    background: var(--saffron-pale);
    padding: 14px;
}

.fee-callout .label {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--saffron);
    font-weight: 700;
}

.fee-callout .amount {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
}

.fee-callout .note { font-size: 12px; color: var(--muted); }

.helpdesk-line {
    display: flex;
    gap: 10px;
    font-size: 13.5px;
    color: var(--ink-soft);
    padding: 7px 0;
    border-bottom: 1px dashed var(--line-soft);
}

.helpdesk-line:last-child { border-bottom: 0; }
.helpdesk-line i { color: var(--navy-mid); width: 16px; text-align: center; margin-top: 3px; }

/* ---------------------------------------------------------------------
   11. Home page: highlights + post grid
   --------------------------------------------------------------------- */

.highlight-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.hl-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 3px solid var(--navy);
    padding: 14px 16px;
}

.hl-card .k {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--muted);
    font-weight: 700;
}

.hl-card .v {
    font-family: var(--font-title);
    font-size: 21px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
}

.hl-card.hl-saffron { border-top-color: var(--saffron); }
.hl-card.hl-saffron .v { color: var(--saffron); }
.hl-card.hl-green { border-top-color: var(--green); }
.hl-card.hl-green .v { color: var(--green); }

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
    gap: 10px;
}

.post-chip {
    border: 1px solid var(--line);
    border-left: 3px solid var(--saffron);
    background: #fbfcfd;
    padding: 9px 12px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-chip i { color: var(--saffron); font-size: 12px; }

/* ---------------------------------------------------------------------
   12. Forms
   --------------------------------------------------------------------- */

.form-note {
    font-size: 13px;
    color: var(--ink-soft);
    background: #f7f9fb;
    border: 1px solid var(--line-soft);
    padding: 10px 14px;
}

.req { color: var(--red); font-weight: 700; }

fieldset.form-block {
    border: 1px solid var(--line);
    padding: 0 16px 16px;
    margin-top: 20px;
}

fieldset.form-block legend {
    font-family: var(--font-title);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--navy);
    background: var(--navy-pale);
    border: 1px solid var(--line);
    padding: 4px 14px;
}

.grid-2,
.grid-3 {
    display: grid;
    gap: 0 16px;
}

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

.field { margin-top: 14px; }

.field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 5px;
}

.field .hint {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-weight: 400;
    margin-top: 3px;
}

.control {
    width: 100%;
    font-family: var(--font);
    font-size: 14.5px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    padding: 9px 11px;
}

.control:focus { border-color: var(--navy-mid); }

.control[readonly] { background: #eef2f6; color: var(--muted); }

textarea.control { min-height: 82px; resize: vertical; }

select.control { height: 40px; }

/* Client-side validation marks the offending field, not just an alert box. */
.control.is-invalid { border-color: var(--red); background: #fffafa; }

.field-error {
    display: none;
    font-size: 12.5px;
    color: var(--red);
    margin-top: 4px;
}

.field-error.show { display: block; }

.mobile-group { display: flex; }

.mobile-group .cc {
    flex: 0 0 56px;
    text-align: center;
    font-weight: 700;
    background: #eef2f6;
    border: 1px solid var(--line);
    border-right: 0;
    color: var(--ink-soft);
    font-size: 14.5px;
    padding: 9px 0;
}

.mobile-group .control { border-left: 0; }

.declaration {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    border: 1px solid var(--line);
    background: #f7f9fb;
    padding: 13px 15px;
    margin-top: 20px;
    font-size: 13.5px;
    color: var(--ink-soft);
}

.declaration input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    flex: 0 0 17px;
    accent-color: var(--navy);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

/* ---------------------------------------------------------------------
   13. Receipt / acknowledgement
   --------------------------------------------------------------------- */

.receipt-head {
    text-align: center;
    border-bottom: 1px solid var(--line);
    padding: 24px 16px;
    background: var(--green-pale);
}

.receipt-head .tick {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 24px;
}

.receipt-head h3 {
    font-family: var(--font-title);
    font-size: 21px;
    color: var(--navy);
}

.receipt-head .regno {
    display: inline-block;
    margin-top: 10px;
    background: var(--white);
    border: 1px dashed var(--green);
    padding: 6px 16px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--navy);
}

.lookup-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
}

.lookup-row .field { flex: 1 1 260px; margin-top: 0; }

.status-msg {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    font-size: 13.5px;
    padding: 11px 14px;
    border: 1px solid var(--line);
    background: #f7f9fb;
    color: var(--ink-soft);
}

/* ---------------------------------------------------------------------
   14. Footer
   --------------------------------------------------------------------- */

.site-footer {
    background: var(--navy-dark);
    color: #b9cbdb;
    font-size: 13.5px;
    border-top: 4px solid var(--saffron);
    margin-top: 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 26px;
    padding: 30px 0 24px;
}

.site-footer h4 {
    font-family: var(--font-title);
    font-size: 15.5px;
    color: #fff;
    margin-bottom: 12px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer ul { list-style: none; }
.site-footer li { padding: 4px 0; display: flex; gap: 9px; }
.site-footer li i { color: var(--saffron-mid); width: 15px; text-align: center; margin-top: 4px; }
.site-footer a { color: #b9cbdb; text-decoration: none; }
.site-footer a:hover { color: #ffd79a; text-decoration: underline; }

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 14px 0;
    font-size: 12.5px;
    color: #94aabd;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 12px 0;
    font-size: 12.5px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    justify-content: space-between;
    color: #94aabd;
}

/* ---------------------------------------------------------------------
   15. Responsive
   --------------------------------------------------------------------- */

@media (max-width: 1000px) {
    .layout { grid-template-columns: 1fr; }
    .highlight-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
    .identity-text h1 { font-size: 20px; }
    .identity-emblem { width: 54px; height: 54px; flex-basis: 54px; }
    .advt-box { width: 100%; }
    .page-title h2 { font-size: 21px; }

    .nav-toggle { display: block; }
    .nav-list { display: none; flex-direction: column; padding-bottom: 8px; }
    .nav-list.open { display: flex; }
    .nav-list > li + li { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }

    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .form-actions .btn, .btn-row .btn { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 460px) {
    .highlight-strip { grid-template-columns: 1fr; }
    table.kv td:first-child { width: 45%; }
}

/* ---------------------------------------------------------------------
   16. Print — used for the acknowledgement slip
   --------------------------------------------------------------------- */

@media print {
    .util-bar,
    .main-nav,
    .page-title,
    .breadcrumb,
    .site-footer,
    .no-print,
    aside { display: none !important; }

    body { background: #fff; font-size: 12pt; }
    .layout { display: block; }
    .box { border: 1px solid #000; }
    .box-head { background: #fff; }
    table.gov th, table.gov td, table.kv td { border: 1px solid #000; }
    table.gov thead th { background: #fff; color: #000; }
    a { color: #000; text-decoration: none; }
}

/* ---------------------------------------------------------------------
   17. Notice ticker animation
   Appended after the media queries so the paused-on-hover rule wins.
   --------------------------------------------------------------------- */

.ticker-text span {
    display: inline-block;
    padding-left: 100%;
    animation: ticker-scroll 26s linear infinite;
}

.ticker:hover .ticker-text span { animation-play-state: paused; }

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-text span { animation: none; padding-left: 0; }
}
