:root {
  --bg: #f7f9fc;
  --bg2: #eef3f8;
  --surface: rgba(255,255,255,0.94);
  --border: rgba(23,54,94,0.10);
  --text: #16335e;
  --muted: rgba(22,51,94,0.72);
  --muted2: rgba(22,51,94,0.5);
  --brand: #1c3f77;
  --accent: #17b8e6;
  --shadow: 0 18px 60px rgba(20,52,98,0.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --max: 1220px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(23,184,230,0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(28,63,119,0.08), transparent 34%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fb 100%);
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  height: 54px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 180ms ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
}

.mobile-cta-link {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: var(--brand);
  color: white;
  border-color: rgba(28,63,119,0.24);
  box-shadow: 0 12px 30px rgba(28,63,119,0.18);
}

.btn-primary:hover {
  box-shadow: 0 16px 38px rgba(28,63,119,0.24);
}

.btn-secondary {
  background: rgba(255,255,255,0.9);
  color: var(--brand);
}

.btn-accent {
  background: rgba(23,184,230,0.08);
  color: var(--brand);
  border-color: rgba(23,184,230,0.16);
}

/* Common labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(23,184,230,0.08);
  border: 1px solid rgba(23,184,230,0.16);
  color: var(--brand);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(23,184,230,0.08);
  border: 1px solid rgba(23,184,230,0.14);
  color: var(--brand);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 34px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 140px);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 28px;
  border-radius: 24px;
  background: rgba(12,18,28,0.28);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-shadow: 0 2px 18px rgba(0,0,0,0.15);
}

.hero-eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
}

.hero-subtitle {
  max-width: 620px;
  margin: 0 auto 26px;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
}

.hero-badges {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}

.hero-content h1,
.hero-content p,
.hero-content .btn {
  animation: fadeUp 0.8s ease both;
}

.hero-content p { animation-delay: 0.12s; }
.hero-content .btn { animation-delay: 0.22s; }

h1 {
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin: 20px 0 18px;
  max-width: 780px;
}

h2 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.accent { color: var(--accent); }

.lead {
  margin: 0;
  max-width: 760px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.72;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 820px;
}

.hero-card {
  border-radius: var(--radius-xl);
  padding: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(28,63,119,0.12);
}

.hero-visual {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(23,54,94,0.08);
  background: white;
}

.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(to top, rgba(13,31,53,0.30), rgba(13,31,53,0.04)),
    url('https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.hero-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(23,54,94,0.08);
  border-radius: 22px;
  padding: 18px;
  backdrop-filter: blur(8px);
}

.hero-caption small {
  display: block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}

.hero-caption strong {
  display: block;
  color: var(--brand);
  font-size: 26px;
  margin-bottom: 8px;
}

.hero-mini {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  margin-top: 14px;
}

.mini {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Sections */
.section {
  padding: 112px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.52), rgba(255,255,255,0.28));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.intro {
  max-width: 820px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

/* Cards / metrics */
.metric,
.card {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.metric {
  border-radius: 20px;
  padding: 18px;
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 22px;
}

.metric span {
  color: var(--muted2);
  font-size: 14px;
  line-height: 1.55;
}

.card {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.card h3 {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.card,
.product-card,
.portfolio-card,
.metric,
.step,
.contact-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
.product-card:hover,
.portfolio-card:hover,
.metric:hover,
.step:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 70px rgba(20,52,98,0.14);
  border-color: rgba(23,184,230,0.20);
}

/* Grids */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 22px;
}

/* Pricing */
.product-card {
  position: relative;
  border-radius: 30px;
  padding: 30px;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.product-card.featured {
  background: radial-gradient(circle at top right, rgba(23,184,230,0.10), transparent 34%), rgba(255,255,255,0.96);
  border-color: rgba(23,184,230,0.24);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price {
  font-size: 44px;
  line-height: 1;
  margin: 10px 0 8px;
  color: var(--brand);
  letter-spacing: -0.05em;
}

.price-sub {
  font-size: 14px;
  color: var(--muted2);
  margin-bottom: 18px;
  line-height: 1.6;
}

.product-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.85;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 18px;
  margin-top: 38px;
}

.step {
  border-radius: 24px;
  padding: 28px 24px;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.step-num {
  display: block;
  font-size: 38px;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.step h4 {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 22px;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Portfolio */
.portfolio {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin-top: 42px;
}

.portfolio-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.portfolio-thumb {
  aspect-ratio: 16/11;
  background-size: cover;
  background-position: center;
}

.content {
  padding: 22px 24px 26px;
}

.portfolio-meta {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio-card h3 {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 26px;
}

/* Contact */
.split {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  border-radius: 32px;
  padding: 30px;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 17px;
}

.form {
  display: grid;
  gap: 14px;
}

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

input,
select,
textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(23,54,94,0.10);
  background: rgba(246,248,251,0.95);
  color: var(--text);
  padding: 16px 18px;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(22,51,94,0.42);
}

/* Legal pages */
.legal-hero {
  padding: 56px 0 16px;
}

.legal-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.legal-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 30px;
  padding: 34px;
}

.legal-card h3 {
  margin: 28px 0 12px;
  color: var(--brand);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.legal-card ul {
  margin: 8px 0 0;
  padding-left: 22px;
}

.legal-note {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(23,184,230,0.06);
  border: 1px solid rgba(23,184,230,0.14);
  color: var(--muted);
  line-height: 1.7;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.gallery-photo,
.gallery-video {
  display: block;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-photo:hover,
.gallery-video:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 70px rgba(20,52,98,0.14);
}

.gallery-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.gallery-thumb {
  position: relative;
  height: 240px;
  background-size: cover;
  background-position: center;
}

.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: white;
  background: rgba(0,0,0,0.22);
}

.gallery-caption {
  padding: 18px 20px 22px;
}

.gallery-caption h3 {
  margin: 8px 0 0;
  color: var(--brand);
  font-size: 22px;
  letter-spacing: -0.03em;
}

/* Lightbox */
#lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.lightbox img {
  cursor: zoom-in;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 42px;
  color: var(--muted2);
  font-size: 14px;
}

/* Floating WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* FAQ */
.faq {
  margin-top: 28px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: block;
  text-align: left;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 0 18px;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 1070px) {
  .nav-inner {
    position: relative;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(320px, 90vw);
    padding: 20px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    z-index: 1000;
  }

  .nav-links.open a {
    display: block;
    padding: 4px 0;
  }

  .mobile-cta-link {
    display: block;
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--brand);
    color: white;
    text-align: center;
    font-weight: 700;
  }

  .hero-inner,
  .grid-4,
  .grid-3,
  .timeline,
  .portfolio,
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .hero-meta,
  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .section {
    padding: 84px 0;
  }

  .brand img {
    height: 46px;
  }

  .hero-card {
    order: -1;
  }

  .legal-card {
    padding: 24px;
    border-radius: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    width: calc(100% - 24px);
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: 75svh;
    padding: 32px 0 20px;
  }

  .hero-content {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .hero h1 {
    font-size: clamp(30px, 8vw, 44px);
    line-height: 1.05;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .hero-badges {
    gap: 10px;
    font-size: 13px;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .portfolio,
  .split,
  .hero-inner,
  .hero-mini,
  .timeline {
    grid-template-columns: 1fr;
  }

  #trust .container.grid-2,
  #trust .grid-2 {
    grid-template-columns: 1fr;
  }

  .timeline {
    gap: 12px;
  }

  .card,
  .product-card,
  .contact-card,
  .step,
  .legal-card {
    padding: 18px;
    border-radius: 18px;
  }

  .price {
    font-size: 32px;
  }

  .intro {
    font-size: 16px;
    line-height: 1.6;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gallery-photo img,
  .gallery-thumb {
    height: 190px;
  }

  input,
  select,
  textarea {
    padding: 14px 14px;
    border-radius: 14px;
  }

  .whatsapp-btn {
    width: 52px;
    height: 52px;
    font-size: 24px;
    bottom: 16px;
    right: 16px;
  }
}

/* Small mobile */
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* GLightbox arrows */
.gprev,
.gnext {
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

@media (max-width: 768px) {
  .gprev,
  .gnext {
    width: 44px !important;
    height: 44px !important;
    background: rgba(0, 0, 0, 0.35) !important;
    border-radius: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .gprev {
    left: 10px !important;
  }

  .gnext {
    right: 10px !important;
  }

  .gprev svg,
  .gnext svg {
    width: 22px !important;
    height: 22px !important;
  }
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
}

.lang-switch a {
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: 0.2s;
}

.lang-switch a img {
  width: 22px;
  height: auto;
  border-radius: 3px;
}

.lang-switch a:hover {
  opacity: 1;
  transform: scale(1.05);
}

.lang-switch a.active {
  opacity: 1;
}
.nav-inner {
  display: flex;
  align-items: center;
}

.menu-toggle {
  margin-left: 8px; /* malý odstup */
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto; /* odsune doprava */
}
.site-footer {
  border-top: 1px solid var(--border);
  padding: 34px 0 24px;
  color: var(--muted);
  font-size: 15px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.footer-col {
  line-height: 1.9;
}

.footer-col strong {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 15px;
  font-weight: 700;
}

.footer-links a,
.footer-contact a,
.footer-business a,
.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-business a:hover,
.footer-bottom a:hover {
  color: var(--brand);
}

.footer-link-strong {
  color: var(--brand) !important;
  font-weight: 600;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact .icon,
.footer-location .icon {
  display: inline-block;
  width: 16px;
  opacity: 0.8;
}

.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.footer-note {
  display: inline-block;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.6;
}

.footer-business {
  color: var(--muted);
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    text-align: left;
  }
}