@charset "UTF-8";
/* Underground Specialists */
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: #f0f0f0;
    color: #1e2230;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── BOOTSTRAP ICONS ─── */
  .why-icon i   { font-size: 1.6rem; color: #2356a8; }
  .service-card-title i { font-size: 1.15rem; color: #2356a8; vertical-align: -2px; }
  .equip-col-title i    { font-size: 2rem;  color: #2356a8; vertical-align: -2px; }
  .contact-icon i       { font-size: 1.1rem;  color: #2356a8; }

  /* ─── DISPATCH BAR ─── */
  .dispatch-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
    background: transparent;
    text-align: center;
    padding: 0.5rem 1rem;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: none;
    color: rgba(255,255,255,0.8);
    transition: background 0.35s ease, color 0.35s ease;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
	  border-bottom: .5px solid rgba(255,255,255,0.0);
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  }
  .dispatch-bar.scrolled {
    background: rgba(255,255,255,0.8);
    color: #2356a8;
  }
  .dispatch-bar a { color: inherit; text-decoration: none; }
  .dispatch-bar.scrolled a { color: #2356a8; }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 50px; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0);
    border-bottom: 1px solid transparent;
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  }

  nav.scrolled {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #d0d0d4;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  }

  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo img {
    height: 48px;
    width: auto;
	  padding-top:8px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding: 0.4rem 0.85rem;
    border-radius: 3px;
    transition: color 0.2s;
    position: relative;
  }

  nav.scrolled .nav-links a {
    color: #5a5f70;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 50%; right: 50%;
    height: 2px;
    background: #2356a8;
    transition: left 0.25s, right 0.25s;
    border-radius: 2px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #fff;
  }

  nav.scrolled .nav-links a:hover,
  nav.scrolled .nav-links a.active {
    color: #1a2a4a;
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    left: 0.85rem;
    right: 0.85rem;
  }

  .nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: #2356a8;
    color: #fff;
    border: none;
    padding: 0.55rem 1.2rem;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
  }

  .nav-cta:hover { background: #2e6bc8; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
  }

  .hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, background 0.3s;
  }

  nav.scrolled .hamburger span {
    background: #1e2230;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ─── MOBILE NAV ─── */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 120px; left: 0; right: 0; bottom: 0;
    background: rgba(240,240,240,0.9);
    backdrop-filter: blur(14px);
    z-index: 999;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    border-top: 1px solid #d0d0d4;
  }

  .mobile-nav.open { transform: translateX(0); }

  .mobile-nav a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5a5f70;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid #d0d0d4;
    transition: color 0.2s, padding-left 0.2s;
  }

  .mobile-nav a:hover,
  .mobile-nav a.active {
    color: #1a2a4a;
    padding-left: 0.75rem;
  }

  .mobile-nav .mobile-cta {
    margin-top: 1.5rem;
    background: #2356a8;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    padding: 1rem;
    border-bottom: none;
  }

  .mobile-nav .mobile-cta:hover {
    background: #2e6bc8;
    color: #fff;
    padding-left: 0;
  }

  /* ─── HERO ─── */
  #home {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/main2.jpg');
    background-size: cover;
    background-position: center 70%;
    filter: brightness(0.38);
    transform: scale(1.04);
    transition: transform 8s ease;
  }

  #home:hover .hero-bg { transform: scale(1.0); }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(30,34,48,1) 0%,
      rgba(30,34,48,0.55) 45%,
      rgba(30,34,48,0.1) 80%,
      transparent 100%
    );
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
    width: 100%;
  }

  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #5b9bff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #2356a8;
    flex-shrink: 0;
  }

  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.25rem;
  }

  .hero-title span { color: #5b9bff; display: block; }

  .hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    margin-bottom: 2rem;
  }

  .hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
  }

  .hero-pill {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(35,86,168,0.5);
    border-radius: 2px;
    color: rgba(255,255,255,0.7);
    background: rgba(35,86,168,0.15);
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
	.heroimg{
		height: 350px;
		max-width: 100%;
	}

  @media (max-width: 650px) {
    .heroimg {
      height: auto;
      width: 90vw;
    }
  }
	
  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: #2356a8;
    color: #fff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-primary:hover { background: #2e6bc8; transform: translateY(-1px); }

  .btn-ghost {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: transparent;
    color: rgba(255,255,255,0.8);
    padding: 0.9rem 2rem;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: #fff; transform: translateY(-1px); }

  /* ─── SECTIONS ─── */
  section { scroll-margin-top: 120px; }

  .section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 2rem;
  }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #2356a8;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #2356a8;
    flex-shrink: 0;
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: #1a2a4a;
    margin-bottom: 1rem;
  }

  .section-body {
    font-size: 1rem;
    color: #5a5f70;
    max-width: 600px;
    line-height: 1.7;
    font-weight: 400;
  }

  /* ─── ABOUT ─── */
  #about {
    background: #fff;
    border-top: 1px solid #d8d8dc;
    border-bottom: 1px solid #d8d8dc;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .stat-box {
    border: 1px solid #d8d8dc;
    border-left: 3px solid #2356a8;
    padding: 1.25rem;
    background: #f7f7f9;
  }

  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #2356a8;
    line-height: 1;
    letter-spacing: 0.05em;
  }

  .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #5a5f70;
    margin-top: 0.35rem;
  }

  .about-clients { margin-top: 2rem; }

  .clients-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #5a5f70;
    margin-bottom: 0.75rem;
  }

  .clients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .client-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    background: #eef1f7;
    border: 1px solid #c8cfe0;
    color: #2356a8;
    border-radius: 2px;
  }

  .about-photo { position: relative; }

  .about-photo img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
    filter: brightness(0.92) contrast(1.05);
  }

  .about-photo::after {
    content: '';
    position: absolute;
    top: 16px; left: 16px;
    right: -16px; bottom: -16px;
    border: 2px solid #2356a8;
    border-radius: 2px;
    z-index: -1;
    opacity: 0.3;
  }

  /* ─── WHY CHOOSE ─── */
  #why {
    background: #f0f0f0;
    border-bottom: 1px solid #d8d8dc;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 3rem;
    background: #d8d8dc;
    border: 1px solid #d8d8dc;
  }

  .why-item {
    background: #fff;
    padding: 2rem 1.75rem;
    transition: background 0.2s;
  }

  .why-item:hover { background: #f7f7f9; }

  .why-icon {
    font-size: 1.6rem;
    margin-bottom: 0.85rem;
    display: block;
  }

  .why-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1a2a4a;
    margin-bottom: 0.4rem;
  }

  .why-desc {
    font-size: 1rem;
    color: #5a5f70;
    line-height: 1.6;
  }

  /* ─── SERVICES ─── */
  #services {
    background: #fff;
    border-bottom: 1px solid #d8d8dc;
  }

  .services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .service-card {
    border: 1px solid #d8d8dc;
    padding: 2rem;
    background: #f7f7f9;
    border-radius: 2px;
    transition: border-color 0.25s, background 0.25s;
  }

  .service-card:hover {
    border-color: #2356a8;
    background: #eef1f7;
  }

  .service-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1a2a4a;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #2356a8;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .service-list li {
    font-size: 0.95rem;
    color: #5a5f70;
    padding-left: 1.1rem;
    position: relative;
    transition: color 0.15s;
  }

  .service-list li:hover { color: #1a2a4a; }

  .service-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #2356a8;
    font-weight: 700;
  }

  /* ─── EQUIPMENT ─── */
  #equipment {
    background: #f0f0f0;
    border-bottom: 1px solid #d8d8dc;
  }

  .equip-photo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin: 3rem 0 0;
    border-radius: 2px;
    overflow: hidden;
  }

  .equip-photo-strip img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: brightness(0.92) saturate(0.95) contrast(1.08);
    transition: filter 0.3s;
    cursor: pointer;
  }

  .equip-photo-strip img:hover {
    filter: brightness(1) saturate(1) contrast(1);
  }

  .equip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .equip-col {
    background: #fff;
    border: 1px solid #d8d8dc;
    border-radius: 2px;
    padding: 1.75rem;
  }

  .equip-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2356a8;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #d8d8dc;
  }

  .equip-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .equip-list li {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #5a5f70;
    padding-left: 1rem;
    border-left: 2px solid transparent;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    transition: color 0.15s, border-color 0.15s, padding-left 0.15s;
  }

  .equip-list li:hover {
    color: #1a2a4a;
    border-color: #2356a8;
    padding-left: 1.3rem;
  }

  /* ─── CONTACT ─── */
  #contact {
    background: #fff;
  }

  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .contact-info-block {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .contact-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.25rem;
    background: #f7f7f9;
    border: 1px solid #d8d8dc;
    border-left: 3px solid #2356a8;
    border-radius: 2px;
  }

  .contact-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .contact-row-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #5a5f70;
    margin-bottom: 0.2rem;
  }

  .contact-row-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e2230;
  }

  .contact-row-value a {
    color: #1e2230;
    text-decoration: none;
    transition: color 0.2s;
  }

  .contact-row-value a:hover { color: #2356a8; }

  /* ─── FORM ─── */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .form-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5a5f70;
  }

  .form-input,
  .form-textarea,
  .form-select {
    background: #f7f7f9;
    border: 1px solid #c8ccd8;
    border-radius: 2px;
    padding: 0.75rem 1rem;
    color: #1e2230;
    font-family: 'Barlow', sans-serif;
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
  }

  .form-input:focus,
  .form-textarea:focus,
  .form-select:focus {
    border-color: #2356a8;
    background: #fff;
  }

  .form-select option { background: #fff; color: #1e2230; }

  .form-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
  }

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

  .form-submit {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: #2356a8;
    color: #fff;
    border: none;
    padding: 0.95rem 2rem;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 0.5rem;
  }

  .form-submit:hover { background: #2e6bc8; transform: translateY(-1px); }

  .form-success {
    display: none;
    background: #edfaf3;
    border: 1px solid #7dd4a8;
    border-radius: 3px;
    padding: 1rem 1.25rem;
    color: #1a7a4a;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    text-align: center;
  }

  /* ─── FOOTER ─── */
  footer {
    background: #1a2a4a;
    padding: 2.5rem 2rem;
  }

  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-logo img {
    height: 38px;
    opacity: 0.85;
  }

  .footer-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
  }

  .footer-tagline em {
    color: #5b9bff;
    font-style: normal;
  }

  .footer-copy {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    text-align: right;
  }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

  /* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-photo { order: -1; }
    .about-photo img { height: 340px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .services-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .equip-photo-strip { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

  @media (max-width: 990px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: flex; }
    .hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
    .section-inner { padding: 3.5rem 1.25rem; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .why-grid { grid-template-columns: 1fr; }
    .equip-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .equip-photo-strip { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-copy { text-align: center; }
	  .hero-content { padding-top: 140px; }
  }

  /* ─── IPAD LANDSCAPE ─── */
  @media (min-width: 991px) and (max-width: 1400px) and (orientation: landscape) {
    .hero-content {
      padding-top: 140px;
    }
  }

  @media (max-width: 480px) {
    .hero-content { padding-bottom: 3.5rem; }
    .equip-photo-strip { grid-template-columns: 1fr; }
    .equip-photo-strip img { height: 200px; }
    .about-photo img { height: 260px; }
  }
@media (max-width:575px){
	.hero-pill{
		font-size: .8rem;
		letter-spacing: .1em;
	}
	.hero-eyebrow{
		font-size: .8rem;
		letter-spacing: .1em;
	}
	.btn-primary, .btn-ghost{
		font-size: .8rem;
		padding: 1rem;
	}
	.delete{
		display: none;
	}
	.dispatch-bar{
		flex-wrap: wrap;
		flex-direction: row;
		padding: 0 1rem;
	}
}
@media (max-width:290px){
	.dispatch-bar{
		display: none;
	}
	.nav-logo img{
		height: 2vh;
	}
}
  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
  }