:root {
  --navy: #071b3a;
  --midnight: #001f3f;
  --blue: #0b376d;
  --coral: #ff433d;
  --amber: #ffb703;
  --cyan: #00a8e8;
  --bg: #f7fafc;
  --border: #e2e8f0;
  --text: #0f172a;
  --muted: #64748b;
  --shadow: 0 24px 70px rgba(7, 27, 58, 0.12);
  --card-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 5%, rgba(255, 67, 61, 0.08), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(0, 168, 232, 0.12), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(0, 168, 232, 0.45);
  outline-offset: 4px;
}

.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(185px, 240px) minmax(0, 1fr) max-content;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  min-height: 104px;
  padding: 18px max(32px, calc((100vw - 1540px) / 2));
  border-top: 3px solid #27272a;
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
}

.brand-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 74px;
  min-width: 0;
}

.brand-link img {
  width: clamp(185px, 14vw, 230px);
  height: 60px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 18px 26px rgba(15, 23, 42, 0.08));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.55vw, 28px);
  min-width: 0;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  color: #111827;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0 8px;
  line-height: 1;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--coral);
}

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

.header-actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 16px;
  white-space: nowrap;
  min-width: 0;
  padding-top: 0;
}

.phone-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0 8px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
  transition: color 0.2s ease;
}

.phone-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.phone-link:hover {
  color: var(--coral);
}

.phone-link:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: 14px;
  padding: 0 18px;
  font-weight: 950;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 16px 32px rgba(255, 67, 61, 0.25);
}

.button-primary:hover {
  background: var(--navy);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.button-secondary:hover {
  background: #fff;
  color: var(--navy);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.hero-bg,
.soft-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 67, 61, 0.24), transparent 32rem),
    radial-gradient(circle at 84% 18%, rgba(255, 183, 3, 0.18), transparent 24rem),
    linear-gradient(135deg, var(--navy), var(--midnight) 58%, var(--blue));
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  align-items: start;
  gap: 42px;
  padding-block: 72px;
}

.hero-copy {
  min-width: 0;
  align-self: start;
  padding-top: 0;
}

.eyebrow,
.section-heading span,
.mini-title,
.trust-card span:first-child,
.form-heading span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-eyebrow {
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--amber);
}

.hero-eyebrow img {
  width: 16px;
  height: 24px;
  object-fit: contain;
}

.hero h1,
.section-heading h2,
.fleet-grid h2,
.trust-card h2,
.cta-card h2 {
  margin: 16px 0 0;
  color: inherit;
  font-weight: 950;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(42px, 5.4vw, 76px);
  overflow-wrap: break-word;
}

.hero-copy p,
.section-heading p,
.fleet-grid p,
.trust-card p,
.cta-card p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.75;
}

.hero-copy p {
  max-width: 680px;
}

.hero-buttons,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-badges span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 800;
}

.hero-side {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.quote-form {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  background: #fff;
  padding: 24px;
  color: var(--text);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.form-heading h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.15;
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 950;
}

.quote-form label em {
  color: #94a3b8;
  font-style: normal;
  font-weight: 700;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  padding: 0 16px;
  font-size: 16px;
  font-weight: 750;
  outline: 0;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.quote-form textarea {
  min-height: 112px;
  resize: vertical;
  padding-block: 14px;
  line-height: 1.5;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 67, 61, 0.11);
}

.quote-form select:disabled {
  background: #f1f5f9;
  color: #94a3b8;
}

.quote-form small {
  min-height: 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-button {
  width: 100%;
  margin-top: 18px;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-message {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.form-message.success {
  color: #047857;
}

.form-message.error {
  color: var(--coral);
}

.section {
  padding-block: 86px;
  background: #fff;
}

.section-soft {
  background: var(--bg);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.fleet-grid h2,
.trust-card h2,
.cta-card h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 54px);
}

.section-heading p,
.fleet-grid p {
  color: #475569;
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.service-grid article,
.process-grid article,
.fleet-list article {
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--card-shadow);
}

.service-grid article {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.service-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 67, 61, 0.45);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: rgba(255, 67, 61, 0.1);
  color: var(--coral);
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
}

.service-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-grid article:hover .service-icon {
  transform: scale(1.05);
  background: var(--navy);
  color: #fff;
}

.service-grid strong,
.process-grid strong,
.fleet-list strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  font-weight: 950;
}

.service-grid p,
.process-grid p,
.fleet-list p {
  margin: 12px 0 0;
  color: #64748b;
  line-height: 1.65;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 950;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.fleet-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-section {
  padding-block: 86px;
  background: #fff;
}

.trust-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--navy);
  padding: 42px;
  color: #fff;
  box-shadow: var(--shadow);
}

.trust-card h2 {
  color: #fff;
}

.trust-card p {
  color: rgba(255, 255, 255, 0.72);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-list span {
  display: flex;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 850;
}

.trust-list span::before {
  content: "✓";
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-weight: 950;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.faq-grid details {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  padding: 22px 24px;
  box-shadow: var(--card-shadow);
}

.faq-grid summary {
  color: var(--navy);
  font-size: 18px;
  font-weight: 950;
  cursor: pointer;
}

.faq-grid p {
  margin: 14px 0 0;
  color: #64748b;
  line-height: 1.7;
}

.cta-section {
  padding-block: 86px;
  background: #fff;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 67, 61, 0.34), transparent 25rem),
    radial-gradient(circle at 84% 10%, rgba(255, 183, 3, 0.18), transparent 24rem),
    linear-gradient(135deg, var(--navy), var(--midnight));
  padding: 46px;
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-card img {
  width: 230px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.cta-card h2 {
  max-width: 780px;
  color: #fff;
}

.cta-card p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 36px;
}

.footer-grid img {
  width: 230px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.footer-grid p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.footer-grid strong,
.footer-grid a,
.footer-grid span {
  display: block;
}

.footer-grid strong {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 750;
}

.footer-grid a:hover {
  color: #fff;
}

.copyright {
  width: min(100% - 32px, 1180px);
  margin: 34px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 750;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.25);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: var(--navy);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.not-found-page {
  background: var(--bg);
}

.not-found-main {
  min-height: 0;
  background:
    linear-gradient(135deg, rgba(7, 27, 58, 0.95), rgba(0, 31, 63, 0.9)),
    var(--navy);
  color: #fff;
}

.not-found-hero {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding-block: 56px;
}

.not-found-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 56px;
  align-items: center;
}

.not-found-copy {
  max-width: 760px;
}

.not-found-code {
  margin: 22px 0 8px;
  color: var(--coral);
  font-size: clamp(76px, 12vw, 154px);
  font-weight: 950;
  line-height: 0.82;
}

.not-found-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.02;
}

.not-found-copy p:not(.not-found-code) {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

.not-found-panel {
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.not-found-panel img {
  width: 90px;
  height: 122px;
  object-fit: contain;
}

.not-found-panel strong {
  color: #fff;
  font-size: 28px;
  font-weight: 950;
  line-height: 1.1;
}

.not-found-panel span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.not-found-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  font-weight: 950;
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 14px;
    font-size: 13px;
  }

  .site-header {
    grid-template-columns: minmax(180px, 230px) minmax(0, 1fr) auto;
  }

  .header-actions {
    min-width: 0;
  }

  .phone-link {
    display: none;
  }
}

@media (max-width: 1440px) and (min-width: 1181px) {
  .site-header {
    grid-template-columns: minmax(175px, 220px) minmax(0, 1fr) max-content;
    gap: 18px;
  }

  .brand-link img {
    width: 190px;
  }

  .site-nav {
    gap: 10px;
    font-size: 13px;
  }

  .header-actions {
    gap: 12px;
  }

  .button {
    padding-inline: 16px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 92px;
    padding: 12px 80px 12px 18px;
  }

  .menu-button {
    display: flex !important;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 100;
    margin-left: 0;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.menu-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    gap: 4px;
    padding-top: 12px;
    white-space: normal;
  }

  .site-header.menu-open .site-nav a {
    border-radius: 14px;
    padding: 12px 14px;
    background: var(--bg);
  }

  .site-header.menu-open .site-nav a::after {
    left: 14px;
    right: 14px;
    bottom: 6px;
  }

  .site-header.menu-open .header-actions {
    display: grid;
    grid-column: 1 / -1;
    gap: 10px;
    width: 100%;
  }

  .site-header.menu-open .header-actions .button {
    width: 100%;
  }

  .hero-grid,
  .fleet-grid,
  .trust-card,
  .cta-card,
  .not-found-grid {
    grid-template-columns: 1fr;
  }

  .not-found-panel {
    max-width: 480px;
  }

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

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

  .cta-card {
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 82px;
    padding: 12px 80px 12px 16px;
  }

  .brand-link img {
    width: min(190px, 52vw);
    height: 54px;
  }

  .menu-button {
    display: flex !important;
    top: 16px;
    right: 16px;
  }

  .container {
    width: min(100% - 32px, 390px);
  }

  .hero-grid {
    justify-items: center;
    padding-block: 48px;
  }

  .not-found-hero {
    min-height: 0;
    padding-block: 38px;
  }

  .not-found-grid {
    gap: 34px;
    justify-items: start;
  }

  .not-found-panel {
    width: 100%;
    padding: 26px;
    border-radius: 24px;
  }

  .hero-copy {
    width: min(100%, 280px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: 32px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-buttons {
    display: grid;
  }

  .hero-badges {
    display: grid;
  }

  .quote-form {
    padding: 20px;
    border-radius: 28px;
  }

  .form-grid,
  .service-grid,
  .process-grid,
  .fleet-list,
  .faq-grid,
  .trust-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quote-form .full {
    grid-column: auto;
  }

  .section,
  .trust-section,
  .cta-section {
    padding-block: 62px;
  }

  .service-grid,
  .process-grid {
    margin-top: 28px;
  }

  .trust-card,
  .cta-card {
    padding: 28px;
    border-radius: 28px;
  }

  .cta-actions {
    width: 100%;
  }

  .footer-grid {
    gap: 28px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 30px;
  }

  .not-found-copy h1 {
    font-size: 38px;
  }

  .button {
    padding-inline: 18px;
  }

  .quote-form {
    padding: 18px;
  }
}
