﻿:root {
  --bg: #f8fafc;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-soft: rgba(248, 250, 252, 0.76);
  --text: #0f172a;
  --muted: #475569;
  --primary: #10b981;
  --primary-dark: #059669;
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  --radius: 24px;
  font-family: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: #f8fafc;
}

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

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

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

button {
  border: none;
  cursor: pointer;
}

.container {
  width: min(1140px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(24px);
  background: rgba(8, 14, 30, 0.94);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
  background: rgba(10, 20, 40, 0.85);
  border-radius: 999px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.18);
}

.nav-links {
  justify-content: flex-end;
}

.brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  justify-content: center;
  flex: 1;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.25s ease;
}

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

.nav-btn {
  padding: 0.85rem 1.6rem;
  white-space: nowrap;
  margin-left: 1rem;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

.btn-outline {
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: var(--text);
  background: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 1.3rem;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle span + span {
  margin-top: 0.35rem;
}

.hero {
  min-height: 100vh;
  padding: 3rem 0 2rem;
  background-image: linear-gradient(180deg, rgba(6, 10, 24, 0.9), rgba(6, 10, 24, 0.7)), url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.2), transparent 38%), radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.1), transparent 28%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
  min-height: 80vh;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.03;
  margin: 1rem 0 1.5rem;
  max-width: 680px;
}

.hero-copy p {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.85;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-badges div {
  padding: 1.2rem 1.3rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-badges strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.hero-badges span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.hero-card {
  padding: 2.5rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(25px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.card-header {
  margin-bottom: 1.5rem;
}

.card-header h2 {
  margin: 0.65rem 0 0;
  font-size: 2rem;
  color: #fff;
  line-height: 1.2;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 1rem;
}

.card-list li {
  padding: 1rem 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e5e7eb;
}

.card-list li::before {
  content: '✔';
  margin-right: 0.75rem;
  color: #10b981;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.package-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
}

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

.package-card-body {
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
}

.package-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.package-badge {
  background: #ecfdf5;
  color: #047857;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
}

.package-card h3 {
  margin: 0;
  font-size: 1.6rem;
}

.package-card p {
  color: var(--muted);
  line-height: 1.8;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.package-meta strong {
  color: var(--text);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.destination-card {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
}

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

.destination-card-content {
  padding: 1.5rem;
}

.destination-card-content h3 {
  margin: 1rem 0 0.5rem;
}

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.feature-card {
  padding: 1.8rem;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-card .tag {
  display: inline-flex;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  margin: 0 0 0.75rem;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.25fr minmax(280px, 1fr);
}

.contact-card,
.contact-info {
  border-radius: 32px;
  padding: 2rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 1120px) {
  .hero-inner,
  .overview-grid,
  .package-grid,
  .destination-grid,
  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-overlap {
    margin-top: 0;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 1rem;
}

.section-stats {
  padding-top: 0;
  padding-bottom: 3rem;
}

.stats-grid div {
  padding: 1.3rem 1.4rem;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.stats-grid span {
  color: var(--muted);
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
}

.destination-card,
.package-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #fff;
}

.destination-card img,
.package-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.destination-content,
.package-content {
  padding: 1.5rem;
}

.destination-content .tag,
.package-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-weight: 700;
  font-size: 0.85rem;
}

.destination-content h3,
.package-top h3 {
  margin: 1rem 0 0.65rem;
  font-size: 1.5rem;
}

.destination-content p,
.package-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.package-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
  color: var(--muted);
}

.package-meta strong {
  color: var(--text);
}

.package-content .btn {
  width: fit-content;
}

.package-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 1rem;
  }

  .hero-card-list li {
    padding: 1rem 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e5e7eb;
  }

  .hero-card-list li::before {
    content: '✔';
    margin-right: 0.75rem;
    color: #10b981;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }

  .hero-badges div {
    padding: 1.2rem 1.3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-badges strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }

  .hero-badges span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
  }

  .section-highlight {
    padding: 3rem 0 4rem;
  }

  .feature-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-card {
    padding: 1.8rem;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .feature-card h3 {
    margin: 0 0 0.75rem;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
  }

  .about-copy {
    background: #fff;
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
  }

  .about-image {
    overflow: hidden;
    border-radius: 32px;
    box-shadow: var(--shadow);
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .contact-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1.25fr minmax(280px, 1fr);
  }

  .contact-card,
  .contact-info {
    padding: 2rem;
    background: #fff;
    border-radius: 32px;
    box-shadow: var(--shadow);
  }

  .contact-info {
    display: grid;
    gap: 1rem;
  }

  .contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
  }

  @media (max-width: 1120px) {
    .hero-inner,
    .overview-grid,
    .package-grid,
    .destination-grid,
    .feature-grid,
    .contact-grid {
      grid-template-columns: 1fr;
    }

    .section-overlap {
      margin-top: 0;
}

@media (max-width: 860px) {
  .destinations-grid,
  .cards-grid,
  .tours-grid,
  .package-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    display: none;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: grid;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav-links a,
  .nav-btn {
    width: 100%;
    text-align: left;
  }
}

.small-gap {
  gap: 0.75rem;
}


.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem auto 0;
  width: 100%;
  max-width: 980px;
  justify-items: center;
}

.hero-stats div {
  min-height: 136px;
  display: grid;
  place-items: center;
  padding: 1.55rem 1.6rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.hero-stats span {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.section {
  padding: 5rem 0;
}

.section-light {
  background: #f8fafc;
}

.section-heading {
  display: grid;
  gap: 0.7rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 3vw, 3.5rem);
  margin: 0;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  font-size: 0.85rem;
}

.destinations-grid,
.tours-grid,
.contact-grid,
.feature-list-grid {
  display: grid;
  gap: 1.5rem;
}

.destinations-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.destination-card {
  min-height: 360px;
}

.destination-card h3 {
  margin: 0.7rem 1.3rem 1.3rem;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 340px;
  box-shadow: var(--shadow);
  background: #fff;
}

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

.destination-card .destination-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.2rem 1.3rem 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.destination-card .tag {
  background: #ecfdf5;
  color: #065f46;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
}

.destination-card h3 {
  margin: 0.8rem 1.3rem 1.3rem;
  font-size: 1.4rem;
}

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

.tour-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.tour-card img {
  min-height: 220px;
}

.tour-body {
  padding: 1.6rem;
}

.tour-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tour-body {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.tour-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  background: #ecfdf5;
  color: #047857;
  font-weight: 700;
  border-radius: 999px;
  width: fit-content;
}

.tour-body h3 {
  margin: 0;
  font-size: 1.35rem;
}

.tour-body p {
  color: var(--muted);
  line-height: 1.8;
}

.tour-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
}

.tour-meta-row strong {
  color: var(--text);
}

.tour-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.section-footer {
  text-align: center;
  margin-top: 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.about-panel {
  padding: 2.5rem;
  background: #fff;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.about-panel h2 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.5rem, 3vw, 3.5rem);
}

.about-panel p {
  color: var(--muted);
  line-height: 1.8;
}

.feature-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.feature-item {
  background: #ecfdf5;
  border-radius: 20px;
  padding: 1.2rem 1.3rem;
}

.feature-item strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #047857;
  font-size: 1.25rem;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
}

.about-image {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-banner {
  padding: 0;
}

.banner-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2.2rem 2.5rem;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.banner-panel h3 {
  margin: 0 0 0.75rem;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.contact-grid {
  grid-template-columns: 1.4fr 0.9fr;
}

.contact-card,
.contact-info {
  padding: 2rem;
  background: #fff;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1rem 1.1rem;
  background: #f8fafc;
}

.contact-form textarea {
  min-height: 140px;
}

.contact-info h3 {
  margin-top: 0;
}

.contact-info p,
.contact-info a {
  color: var(--muted);
}

.contact-info a {
  text-decoration: none;
}

.info-list {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
}

.info-list div {
  display: grid;
  gap: 0.35rem;
}

.info-list strong {
  color: var(--text);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.8rem;
  background: #0f172a;
  color: #fff;
  border-radius: 28px;
}

.stats-strip strong {
  display: block;
  font-size: 2rem;
}

.stats-strip span {
  color: #d1d5db;
}

.site-footer {
  padding: 3rem 0 1rem;
  background: #0f172a;
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-grid h3 {
  color: #fff;
}

.footer-grid a,
.footer-grid p {
  color: #cbd5e1;
  margin: 0.5rem 0 0;
}

.footer-bottom {
  color: #94a3b8;
  padding-top: 1.5rem;
  text-align: center;
}

.toast {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #0f172a;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1120px) {
  .hero-inner,
  .about-grid,
  .contact-grid,
  .banner-panel,
  .hero-stats,
  .stats-strip,
  .search-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 95vh;
  }

  .search-card {
    padding: 1.7rem;
    max-width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-search-row {
    justify-content: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .destinations-grid,
  .tours-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    display: none;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: grid;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .nav-links a,
  .nav-btn {
    width: 100%;
    text-align: left;
  }
}
