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

:root {
    --primary-gold: #B8860B;
    --primary-burgundy: #A41E34;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --success-green: #1fb854;
}

.hero {
    --hero-primary: var(--primary-burgundy);
}

.hero.bus-active {
    --hero-primary: var(--primary-burgundy);
    --hero-primary-dark: #771828;
}

.hero.parcel-active {
    --hero-primary: var(--primary-gold);
    --hero-primary-dark: #9a7209;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
}

/* ============ NAVIGATION ============ */
.navbar {
    background: transparent;
    padding: 1rem 1.5rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-links a {
    color: white;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(184, 134, 11, 0.3);
}

.logo {
    text-align: center;
}

.logo h2 {
    font-size: 1.9rem;
    color: white;
    font-weight: 700;
}

.logo .logo-go {
    color: var(--primary-gold);
}

.tagline {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.3rem;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    color: white;
    font-size: 0.95rem;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.language-selector:hover {
    opacity: 0.85;
}

.sign-in-btn {
    border: 2px solid var(--primary-gold);
    color: white;
    padding: 0.6rem 1.6rem;
    border-radius: 24px;
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
}

.sign-in-btn:hover {
    background: var(--primary-gold);
    color: #111;
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    background: url('assets/images/hero-bg.png') center/cover no-repeat;
    min-height: 600px;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    overflow: hidden;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-primary);
    mix-blend-mode: multiply;
    opacity: 1;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 0, 0, 0.72) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 3;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 50px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    max-width: 420px;
    margin: 0 auto 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.45);
    position: relative;
}

.hero-btn {
    background: transparent;
    color: rgba(255,255,255,0.88);
    padding: 0.75rem 2.2rem;
    font-weight: 600;
    font-size: 0.97rem;
    border-radius: 0;
    position: relative;
}

.hero-btn.active {
    background: #fff;
    color: #111;
    padding: 0.68rem 5.2rem;
    border-radius: 18px 18px 0 18px;
    margin-bottom: -1px;
    z-index: 2;
}

.search-card {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.search-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.search-box {
    position: relative;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,0.4);
}

.hidden {
    display: none !important;
}

.input-row,
.date-row {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.1rem 1.3rem;
    border-bottom: 1.5px solid rgba(255,255,255,0.35);
}

.input-row:last-child {
    border-bottom: none;
}

.icon {
    font-size: 1.3rem;
    opacity: 0.92;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.05rem;
}

.search-box input::placeholder {
    color: rgba(255,255,255,0.72);
}

.search-box input:focus {
    outline: none;
}

.swap-circle {
    position: absolute;
    top: 34%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #A41E34;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0,0,0,0.32);
    z-index: 5;
}

.quick-btn {
    background: rgba(255,255,255,0.28);
    border: none;
    color: white;
    padding: 0.45rem 1rem;
    border-radius: 14px;
    font-size: 0.88rem;
    cursor: pointer;
}

.search-pill {
    margin-top: 1.6rem;
    width: 100%;
    max-width: 520px;
    padding: 1.1rem;
    border-radius: 999px;
    background: white;
    color: #111;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
}

.bus-illustration {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.bus-illustration img {
    width: 240px;
    max-width: 90%;
    height: auto;
    opacity: 0.96;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.38));
}

@media (max-width: 768px) {
    .bus-illustration img {
        width: 180px;
    }
}

/* ============ OFFERS SECTION ============ */
.offers {
    padding: 3.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ... (the rest of your original CSS remains unchanged below) ... */

/* Keep all remaining sections as they were in your original file */

/* Offers, Travelers' Picks, Amenities, Blogs, Highlights, Footer, Responsive */

.offers {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.view-all {
    color: var(--primary-burgundy);
    font-weight: 600;
    transition: opacity 0.3s;
}

.view-all:hover {
    opacity: 0.8;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.offer-card {
    padding: 1.5rem;
    border-radius: 12px;
    position: relative;
}

.offer-card.parcel {
    background: linear-gradient(135deg, #FFF8DC 0%, #F5F5DC 100%);
    border-left: 4px solid var(--primary-gold);
}

.offer-card.bus {
    background: linear-gradient(135deg, #FFE4E1 0%, #FFF0F5 100%);
    border-left: 4px solid var(--primary-burgundy);
}

.offer-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.offer-card.parcel .offer-tag {
    background: var(--primary-gold);
    color: white;
}

.offer-card.bus .offer-tag {
    background: var(--primary-burgundy);
    color: white;
}

.offer-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.offer-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Travelers' Picks */
.travelers-picks {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.travelers-picks h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.route-card {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.route-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.route-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.route-card .price {
    font-weight: 700;
    color: var(--primary-gold);
    margin-top: 1rem;
}

/* Amenities */
.amenities-wrap {
    position: relative;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.amenities-card {
    position: relative;
    margin: 0 auto;
    max-width: 1289px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(224, 224, 224, 1);
    border-radius: 40px;
    text-align: center;
}

.amenities-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    margin-bottom: 18px;
}

.amenities-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    flex-wrap: nowrap;
}

.amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 90px;
}

.amenity img {
    width: 36px;
    height: 36px;
}

.amenity p {
    font-size: 0.75rem;
    color: #555;
    font-weight: 500;
}

.amenity-blob {
    position: absolute;
    width: 329px;
    height: 329px;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.amenity-blob.left {
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(187, 145, 31, 1);
}

.amenity-blob.right {
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(164, 30, 52, 1);
}

/* Blogs */
.blogs {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.blog-card {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h4 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.blog-card p {
    padding: 0 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-card .date {
    padding: 0.5rem 1rem 1rem;
    font-size: 0.85rem;
    color: #999;
}

/* Highlights */
.highlights {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.highlight-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s;
}

.highlight-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-card img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.highlight-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.highlight-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.highlight-card .date {
    color: #999;
    margin-top: 0.3rem;
}



/* ============ FOOTER ============ */
/* Footer Base */
.footer {
    background: #0e0e0e;
    color: #ffffff;
    padding: 80px 112px 32px;
    font-family: 'Rubik', sans-serif;
}

/* Top content */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Sections */
.footer-section h4 {
    color: #ffffff;   /* WHITE */
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 16px;
}

/* Company Info */
.footer-section p {
    color: #cfcfcf;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Subscribe Card */
.newsletter {
    background: #a41e34;
    border-radius: 20px;
    padding: 24px 32px;
}

.newsletter h4 {
    color: #ffffff;
}

.newsletter-form {
    display: flex;
    align-items: center;
    margin: 16px 0;
    background: #ffffff;
    border-radius: 200px;
    overflow: hidden;
    height: 50px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 0 16px;
    font-size: 14px;
    outline: none;
}

.newsletter-btn {
    width: 50px;
    height: 50px;
    background: #bb911f;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.newsletter p {
    font-size: 14px;
    color: #f0f0f0;
    line-height: 1.5;
}

/* Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
}

/* Logo */
.footer-logo h3 {
    font-size: 28px;
    font-weight: 600;
}

.logo-go {
    color: #bb911f;
}

.tagline {
    font-size: 14px;
    color: #cfcfcf;
}

/* Footer links */
.footer-links a {
    margin: 0 12px;
    color: #cfcfcf;
    text-decoration: none;
    font-size: 14px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links img {
    width: 18px;
    height: 18px;
}
@media (max-width: 768px) {

    .footer {
        padding: 48px 24px 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .newsletter {
        padding: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        order: 2;
    }

    .social-links {
        order: 3;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .amenities-row {
        flex-wrap: wrap;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.2rem 1.5rem;
    }

    .hero {
        min-height: 640px;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }

    .hero-content {
        padding-top: 120px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-btn.active {
        padding: 0.7rem 4rem;
    }

    .search-box input {
        font-size: 0.98rem;
    }

    .swap-circle {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .amenities-row {
        overflow-x: auto;
        gap: 18px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .amenities-row::-webkit-scrollbar {
        display: none;
    }

    .offers-grid, .routes-grid, .blog-grid, .highlights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        flex-direction: column;
        gap: 1.2rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero {
        min-height: 580px;
    }

    .hero-content {
        padding-top: 110px;
    }
}

/* ────────────────────────────────────────────────
   PREFERENCES PAGES (seats / pickup-drop / passengers)
   ──────────────────────────────────────────────── */

/* Common layout */
.progress-bar {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 1.5rem auto 2.5rem;
  font-weight: 500;
  color: #777;
  font-size: 1.05rem;
  position: relative;
}

.progress-step {
  text-align: center;
  flex: 1;
  position: relative;
  padding: 0 1rem;
}

.progress-step.active {
  color: var(--primary-burgundy);
  font-weight: 700;
}

.progress-step.completed {
  color: var(--success-green);
}

.progress-step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: #ccc;
  font-weight: bold;
}

/* Wrapper for main content + sticky sidebar */
.content-wrapper {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.main-area {
  flex: 7;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.booking-sidebar {
  flex: 3;
  background: white;
  border-radius: 12px;
  padding: 1.8rem;
  border: 1px solid var(--border-color);
  height: fit-content;
  position: sticky;
  top: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.booking-sidebar h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-burgundy);
  font-size: 1.35rem;
}

.booking-sidebar .detail-item {
  margin: 1.4rem 0;
  padding-bottom: 1.2rem;
  border-bottom: 1px dashed #eee;
}

.booking-sidebar .detail-item:last-child {
  border-bottom: none;
}

.booking-sidebar strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #222;
}

.booking-sidebar p,
.booking-sidebar label {
  margin: 0.3rem 0;
  color: var(--text-light);
}

/* ── Seat Selection ──────────────────────────────────────── */

.deck {
  margin: 2.5rem 0;
  padding: 1.8rem;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
}

.deck h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #444;
  font-size: 1.25rem;
}

.seat-grid {
  display: grid;
  grid-template-columns: repeat(10, 50px);
  gap: 10px;
  justify-content: center;
  margin: 0 auto;
  max-width: fit-content;
}

.seat {
  width: 50px;
  height: 50px;
  border: 2px solid #d0d0d0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  background: white;
  transition: all 0.18s;
  user-select: none;
}

.seat:hover:not(.booked):not(.driver) {
  border-color: var(--primary-gold);
  transform: scale(1.08);
}

.seat.female {
  background: #ffebee;
  border-color: #ff8a80;
}

.seat.booked {
  background: #ececec;
  color: #aaa;
  cursor: not-allowed;
}

.seat.selected {
  background: var(--success-green) !important;
  color: white !important;
  border-color: var(--success-green) !important;
}

.seat.driver {
  background: #555;
  color: white;
  cursor: default;
  font-size: 0.85rem;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: #444;
}

.legend-item .seat {
  width: 32px;
  height: 32px;
  font-size: 0.8rem;
}

/* ── Pickup/Drop Points ──────────────────────────────────── */

.points-group {
  margin: 2.5rem 0;
}

.points-group h3 {
  margin-bottom: 1.2rem;
  color: var(--primary-burgundy);
}

.point-option {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin: 0.9rem 0;
  cursor: pointer;
  transition: all 0.18s;
}

.point-option:hover {
  border-color: var(--primary-gold);
  background: #fffaf0;
}

.point-option input[type="radio"] {
  width: 18px;
  height: 18px;
}

.point-option label {
  flex: 1;
  cursor: pointer;
  font-weight: 500;
}

.point-option span {
  color: #555;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* ── Passenger Details ───────────────────────────────────── */

.passenger-group {
  border: 1px solid #e0e0e0;
  padding: 1.8rem;
  border-radius: 12px;
  margin: 2rem 0;
  background: #fafafa;
}

.passenger-group h3 {
  margin-bottom: 1.4rem;
  color: var(--primary-burgundy);
  font-size: 1.3rem;
}

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

.form-row input,
.form-row select {
  padding: 0.9rem 1rem;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  font-size: 1rem;
}

.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.15);
}

/* Next / Pay button */
.btn-next {
  background: var(--primary-burgundy);
  color: white;
  padding: 1.1rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  max-width: 420px;
  margin: 2.5rem auto;
  display: block;
}

.btn-next:hover {
  background: #771828;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(164,30,52,0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column;
  }
  
  .booking-sidebar {
    position: static;
    margin-top: 2rem;
  }
  
  .seat-grid {
    grid-template-columns: repeat(5, 48px);
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .legend {
    flex-direction: column;
    gap: 1rem;
  }
}