/* WILLIAMSBURG Non-Emergency Transportation — design system
   Palette per brief: Navy #0B3D91 · Medical Blue #1E88E5 · Emerald #2ECC71 · Mist #F5F7FA */
:root {
  --navy: #0B3D91;
  --navy-deep: #072a66;
  --blue: #1E88E5;
  --sky: #E8F2FD;
  --mist: #F5F7FA;
  --ink: #12233F;
  --slate: #4A5A74;
  --emerald: #2ECC71;
  --emerald-deep: #1FA85A;
  --star: #F6B93B;
  --white: #fff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(11, 61, 145, .10);
  --shadow-lg: 0 24px 60px rgba(11, 61, 145, .16);
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white)
}

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

a {
  color: var(--blue);
  text-decoration: none
}

a:hover {
  text-decoration: underline
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy)
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700
}

h3 {
  font-size: 1.25rem;
  font-weight: 600
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--sky);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px
}

.section {
  padding: 88px 0
}

.section.tint {
  background: var(--mist)
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px
}

.section-head p {
  color: var(--slate);
  margin-top: 12px
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  z-index: 200;
  border-radius: 0 0 8px 0
}

.skip-link:focus {
  left: 0
}

:focus-visible {
  outline: 3px solid var(--emerald);
  outline-offset: 2px
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease
}

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

.btn-primary {
  background: var(--emerald);
  color: #fff;
  box-shadow: 0 8px 20px rgba(46, 204, 113, .35)
}

.btn-primary:hover {
  background: var(--emerald-deep)
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow)
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .18)
}

.btn-call {
  background: var(--navy);
  color: #fff
}

.btn-call:hover {
  background: var(--navy-deep)
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: none
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 61, 145, .08);
  transition: box-shadow .25s
}

.site-header.scrolled {
  box-shadow: var(--shadow)
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 78px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.1
}

.brand:hover {
  text-decoration: none
}

.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate)
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: none
}

.main-nav {
  margin-left: auto
}

.main-nav ul {
  display: flex;
  gap: 4px;
  list-style: none
}

.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  padding: 10px 13px;
  border-radius: 8px
}

.main-nav a:hover {
  background: var(--sky);
  text-decoration: none
}

.main-nav a[aria-current="page"] {
  color: var(--blue);
  background: var(--sky)
}

.header-cta {
  display: flex;
  gap: 10px
}

.header-cta .btn {
  padding: 11px 20px;
  font-size: .9rem
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy)
}

/* Hero slider */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto
}

.hero-art {
  position: absolute;
  inset: 0
}

.hero-art svg {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 42, 102, .92) 20%, rgba(11, 61, 145, .72) 55%, rgba(30, 136, 229, .45))
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 640px;
  padding: 140px 0 120px
}

.hero-content .eyebrow {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  backdrop-filter: blur(6px)
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 18px
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .92);
  margin-bottom: 32px;
  max-width: 520px
}

.hero-slide .hero-content>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease
}

.hero-slide.active .hero-content>* {
  opacity: 1;
  transform: none
}

.hero-slide.active .hero-content>*:nth-child(2) {
  transition-delay: .15s
}

.hero-slide.active .hero-content>*:nth-child(3) {
  transition-delay: .3s
}

.hero-slide.active .hero-content>*:nth-child(4) {
  transition-delay: .45s
}

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

.hero-dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 6
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .8);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s
}

.hero-dots button.active {
  background: #fff;
  transform: scale(1.25)
}

.float-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(2px);
  animation: float 9s ease-in-out infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-26px)
  }
}

.route-svg {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 150px;
  z-index: 4;
  opacity: .95
}

.route-path {
  fill: none;
  stroke: rgba(255, 255, 255, .55);
  stroke-width: 3;
  stroke-dasharray: 10 12;
  animation: dash 30s linear infinite
}

.route-van {
  animation: ride 14s linear infinite
}

@keyframes dash {
  to {
    stroke-dashoffset: -660
  }
}

@keyframes ride {
  from {
    offset-distance: 0%
  }

  to {
    offset-distance: 100%
  }
}

/* Cards */
.grid {
  display: grid;
  gap: 26px
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr)
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr)
}

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

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(11, 61, 145, .05)
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.card h3 {
  margin: 16px 0 10px
}

.card p {
  color: var(--slate);
  font-size: .98rem
}

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center
}

.icon-badge svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue)
}

.card.accent .icon-badge {
  background: rgba(46, 204, 113, .12)
}

.card.accent .icon-badge svg {
  stroke: var(--emerald-deep)
}

.card .link-more {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  display: inline-block;
  margin-top: 12px
}

/* Process route */
.process {
  position: relative
}

.process-line {
  position: absolute;
  top: 44px;
  left: 6%;
  right: 6%;
  height: 4px;
  z-index: 0
}

.process-line path {
  stroke: var(--blue);
  stroke-width: 3;
  stroke-dasharray: 9 10;
  fill: none;
  animation: dash 26s linear infinite
}

.process .grid {
  position: relative;
  z-index: 1
}

.step-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: var(--shadow)
}

.process .card {
  text-align: center;
  background: transparent;
  box-shadow: none;
  border: 0
}

.process .card:hover {
  transform: none
}

/* Testimonials */
.quote-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative
}

.quote-card p {
  font-size: 1.05rem;
  color: var(--ink)
}

.stars {
  color: var(--star);
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-size: 1.05rem
}

.quote-who {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center
}

.quote-who strong {
  font-family: var(--font-display);
  color: var(--navy)
}

.quote-who span {
  display: block;
  font-size: .85rem;
  color: var(--slate)
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  text-align: center
}

.stat b {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--navy);
  display: block
}

.stat span {
  color: var(--slate);
  font-size: .95rem
}

/* Glass CTA banner */
.cta-banner {
  background: linear-gradient(115deg, var(--navy) 10%, var(--blue) 90%);
  border-radius: 24px;
  padding: 64px 56px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden
}

.cta-banner::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08)
}

.cta-banner h2 {
  color: #fff
}

.cta-banner p {
  color: rgba(255, 255, 255, .85);
  margin-top: 8px
}

/* Page hero (interior) */
.page-hero {
  background: linear-gradient(115deg, var(--navy-deep), var(--navy) 55%, var(--blue));
  color: #fff;
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden
}

.page-hero h1 {
  color: #fff
}

.page-hero p {
  color: rgba(255, 255, 255, .88);
  max-width: 640px;
  margin-top: 14px;
  font-size: 1.1rem
}

.page-hero .eyebrow {
  background: rgba(255, 255, 255, .14);
  color: #fff
}

.crumbs {
  font-size: .85rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .75)
}

.crumbs a {
  color: #fff
}

/* Service detail */
.svc-row {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid rgba(11, 61, 145, .08)
}

.svc-row:last-child {
  border-bottom: 0
}

.svc-row.flip>.svc-art {
  order: 2
}

.svc-art {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--sky)
}

.svc-art svg {
  width: 100%;
  height: 100%
}

.svc-row h2 {
  margin-bottom: 14px
}

.svc-row p {
  color: var(--slate);
  margin-bottom: 14px
}

.check-list {
  list-style: none;
  margin: 18px 0 26px
}

.check-list li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 10px;
  color: var(--ink)
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--emerald);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/14px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/14px no-repeat
}

/* Accordion */
.accordion {
  max-width: 820px
}

.acc-item {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  overflow: hidden
}

.acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: 0;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  cursor: pointer;
  text-align: left
}

.acc-btn svg {
  width: 20px;
  height: 20px;
  flex: none;
  stroke: var(--blue);
  transition: transform .3s
}

.acc-item.open .acc-btn svg {
  transform: rotate(45deg)
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.acc-panel p {
  padding: 0 26px 22px;
  color: var(--slate);
  font-size: .98rem
}

/* Forms */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 44px
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.field.full {
  grid-column: 1/-1
}

.field label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .9rem;
  color: var(--navy)
}

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 13px 15px;
  border: 1.5px solid #D4DEEC;
  border-radius: var(--radius-sm);
  background: var(--mist);
  color: var(--ink);
  width: 100%
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 136, 229, .14)
}

.field .hint {
  font-size: .8rem;
  color: var(--slate)
}

.form-note {
  font-size: .85rem;
  color: var(--slate);
  margin-top: 16px
}

.form-success {
  display: none;
  background: rgba(46, 204, 113, .1);
  border: 1.5px solid var(--emerald);
  border-radius: var(--radius-sm);
  padding: 20px;
  color: var(--emerald-deep);
  font-weight: 500;
  margin-top: 20px
}

fieldset {
  border: 0;
  grid-column: 1/-1
}

fieldset legend {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.05rem
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: start
}

.info-line {
  display: flex;
  gap: 16px;
  margin-bottom: 22px
}

.info-line .icon-badge {
  width: 46px;
  height: 46px;
  flex: none
}

.info-line b {
  font-family: var(--font-display);
  color: var(--navy);
  display: block;
  font-size: .95rem
}

.info-line span,
.info-line a {
  color: var(--slate);
  font-size: .95rem
}

.map-ph {
  border-radius: var(--radius);
  background: var(--sky);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 600;
  box-shadow: var(--shadow)
}

/* Blog */
.post-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0
}

.post-art {
  aspect-ratio: 16/9;
  background: linear-gradient(120deg, var(--sky), #fff)
}

.post-art svg {
  width: 100%;
  height: 100%
}

.post-body {
  padding: 26px
}

.post-meta {
  font-size: .8rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 10px
}

.post-body h3 a {
  color: var(--navy)
}

.tag {
  display: inline-block;
  background: var(--sky);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 4px 12px;
  border-radius: 999px;
  margin-right: 6px
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .82);
  margin-top: 96px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding: 72px 0 48px
}

.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px
}

.site-footer ul {
  list-style: none
}

.site-footer li {
  margin-bottom: 10px
}

.site-footer a {
  color: rgba(255, 255, 255, .82)
}

.site-footer a:hover {
  color: #fff
}

.footer-brand p {
  font-size: .92rem;
  margin-top: 14px;
  max-width: 300px
}

.social {
  display: flex;
  gap: 12px;
  margin-top: 20px
}

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

.social a:hover {
  background: var(--blue)
}

.social svg {
  width: 18px;
  height: 18px;
  fill: #fff
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 14px
}

.newsletter input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-size: .9rem
}

.newsletter button {
  border: 0;
  border-radius: 999px;
  background: var(--emerald);
  color: #fff;
  padding: 0 20px;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: .85rem
}

.footer-bottom nav {
  display: flex;
  gap: 20px
}

#toTop {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--blue);
  border: 0;
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 90
}

#toTop.show {
  opacity: 1;
  pointer-events: auto
}

#toTop:hover {
  transform: translateY(-4px)
}

#toTop svg {
  width: 22px;
  height: 22px;
  margin: 0 auto;
  stroke: #fff
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* Notice */
.notice {
  background: rgba(46, 204, 113, .09);
  border-left: 4px solid var(--emerald);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 26px 0;
  color: var(--ink);
  font-size: .97rem
}

.notice.blue {
  background: var(--sky);
  border-color: var(--blue)
}

/* Responsive */
@media (max-width:1020px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 18px
  }

  .main-nav.open {
    display: block
  }

  .main-nav ul {
    flex-direction: column
  }

  .nav-toggle {
    display: block
  }

  .header-cta .btn-call span {
    display: none
  }

  .svc-row,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .svc-row.flip>.svc-art {
    order: 0
  }

  .process-line {
    display: none
  }
}

@media (max-width:640px) {

  .grid-3,
  .grid-4,
  .grid-2,
  .form-grid {
    grid-template-columns: 1fr
  }

  .section {
    padding: 60px 0
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 44px 28px
  }

  .hero-content {
    padding: 110px 0 130px
  }

  .header-cta .btn-book {
    display: none
  }

  .footer-grid {
    grid-template-columns: 1fr
  }
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
  }

  html {
    scroll-behavior: auto
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}