:root {
  --green: #1f6b20;
  --dark: #101412;
  --black: #050806;
  --soft: #edf6ed;
  --line: #d9e7d9;
  --muted: #5f6c62;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--dark);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #fff;
  text-rendering: optimizeLegibility;
}
img,
video,
iframe {
  max-width: 100%;
  display: block;
}
img {
  object-fit: cover;
}
img.image-load-failed {
  opacity: 0 !important;
}
.image-fallback {
  position: relative;
  background:
    linear-gradient(135deg, rgba(31, 107, 32, 0.16), rgba(5, 8, 6, 0.72)),
    var(--black);
}
.image-fallback::before {
  content: attr(data-fallback-label);
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero.media-fallback .hero-bg,
.hero-slide.media-fallback {
  background-image:
    linear-gradient(90deg, rgba(5, 8, 6, 0.92), rgba(5, 8, 6, 0.58)),
    none !important;
}
a {
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}
.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 80px;
  padding: 10px max(16px, calc((100vw - 1180px) / 2));
  transition: 0.25s;
  background: transparent;
  color: #fff;
}
.site-header.scrolled,
.site-header.open {
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
}
.brand img {
  width: 82px;
  height: 58px;
  object-fit: cover;
  border-radius: 6px;
}
.brand small {
  display: block;
  color: var(--green);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.nav {
  margin-left: auto;
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--green);
}
.header-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: 900;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  place-items: center;
  gap: 4px;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
}
.hero {
  position: relative;
  min-height: 470px;
  color: #fff;
  background: var(--black);
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 70px;
  overflow: hidden;
}
.hero-home {
  min-height: 100vh;
  min-height: 100svh;
  padding-bottom: 140px;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.04);
}
.hero-slide.active {
  opacity: 1;
  animation: zoomEffect 6s ease-in-out forwards;
}
@keyframes zoomEffect {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 8, 6, 0.8) 0%,
    rgba(5, 8, 6, 0.45) 100%
  );
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 980px) {
  .hero-overlay {
    background: rgba(5, 8, 6, 0.65);
  }
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      90deg,
      rgba(5, 8, 6, 0.92),
      rgba(5, 8, 6, 0.62),
      rgba(5, 8, 6, 0.16)
    ),
    var(--hero);
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(transparent, rgba(5, 8, 6, 0.8));
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
}
.eyebrow {
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 900;
}
.hero .eyebrow,
.dark .eyebrow,
.cta .eyebrow {
  color: #86d888;
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 6.2rem);
  line-height: 0.94;
  margin: 14px 0 22px;
  max-width: 920px;
  letter-spacing: 0;
  font-weight: 950;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  max-width: 900px;
}
.hero p {
  max-width: 720px;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.btn:active {
  transform: translateY(0);
}
.primary {
  background: var(--green);
  color: #fff;
}
.primary:hover {
  background: #2a8b2c;
  border-color: #2a8b2c;
}
.light {
  background: #fff;
  color: var(--black);
}
.light:hover {
  background: #f2f5f3;
}
.outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.outline:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}
.ghost {
  background: #fff;
  color: var(--dark);
  border-color: var(--line);
}
.ghost:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.dark-btn {
  background: var(--black);
  color: #fff;
}
.dark-btn:hover {
  background: #1c2420;
}
.icon {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--soft);
  color: var(--green);
  font-weight: 950;
}
.section {
  padding-block: clamp(72px, 9vw, 120px);
}
.soft {
  background: var(--soft);
}
.dark {
  background: var(--black);
  color: #fff;
}
.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}
.section-head h2,
.split h2,
.areas h2,
.contact-layout h2,
.cta h2,
.map-card h2,
.manual-review h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  margin: 10px 0 18px;
  font-weight: 950;
  color: var(--black);
}
.dark .section-head h2,
.cta h2 {
  color: #fff;
}
.section-head p,
.split p,
.areas p,
.contact-layout p,
.map-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #68736a;
}
.dark .section-head p,
.cta p {
  color: rgba(255, 255, 255, 0.75);
}
.trust {
  position: relative;
  margin-top: -70px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(5, 8, 6, 0.14);
  overflow: hidden;
}
.trust article {
  padding: 26px;
  border-right: 1px solid var(--line);
}
.trust article:last-child {
  border-right: 0;
}
.trust h2 {
  font-size: 18px;
  margin: 16px 0 8px;
}
.trust p {
  color: #647067;
  line-height: 1.6;
  font-size: 14px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 25px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 18px 50px rgba(31, 107, 32, 0.16);
}
.card h3 {
  font-size: 21px;
  margin: 20px 0 10px;
}
.card p {
  line-height: 1.7;
  color: #637068;
  font-size: 14px;
}
.card a {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}
.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}
.image-frame {
  position: relative;
  margin: 0;
  min-height: 480px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}
.image-frame img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.check-list {
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 13px;
  list-style: none;
}
.check-list li {
  font-weight: 750;
}
.check-list li:before {
  content: "✓";
  color: var(--green);
  font-weight: 950;
  margin-right: 10px;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.project-tile {
  position: relative;
  min-height: 275px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--black);
  color: #fff;
  text-decoration: none;
}
.project-tile.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 570px;
}
.project-tile img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: 0.45s;
}
.project-tile:hover img {
  transform: scale(1.05);
}
.project-tile:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}
.project-tile span {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 20px;
  color: #86d888;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 950;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 26px;
}
.section:not(.dark) .review-card {
  border-color: var(--line);
  background: #fff;
}
.stars {
  color: var(--green);
  letter-spacing: 2px;
}
.review-card p {
  line-height: 1.75;
  color: inherit;
  opacity: 0.82;
}
.review-card h3 {
  margin: 22px 0 4px;
}
.review-card span {
  display: block;
  color: #7a857d;
}
.review-card strong {
  display: block;
  color: var(--green);
  margin-top: 10px;
}
.accordion {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
}
.accordion article + article {
  border-top: 1px solid var(--line);
}
.accordion button {
  width: 100%;
  padding: 20px;
  border: 0;
  background: transparent;
  text-align: left;
  display: flex;
  justify-content: space-between;
  font-weight: 950;
  font-size: 16px;
  cursor: pointer;
}
.accordion p {
  padding: 0 20px 20px;
  margin: 0;
  font-size: 14px;
}
.cta {
  background: var(--green);
  color: #fff;
  padding-block: 58px;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}
.cta-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-width: min(460px, 100%);
}
.cta-actions .dark-btn {
  grid-column: 1/-1;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.filter-bar button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 10px 16px;
  font-weight: 900;
  cursor: pointer;
}
.filter-bar button.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  min-height: 235px;
  border: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--black);
  cursor: pointer;
}
.gallery-item.tall {
  grid-row: span 2;
  min-height: 490px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(5, 8, 6, 0.94);
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  opacity: 1;
  transition: opacity 0.22s ease;
  touch-action: pan-y;
}
.lightbox[hidden] {
  display: none;
}
.lightbox-figure {
  display: grid;
  place-items: center;
  gap: 14px;
  margin: 0;
  max-width: min(1120px, calc(100vw - 140px));
  max-height: calc(100vh - 80px);
}
.lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 128px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.lightbox-image.is-changing {
  opacity: 0;
  transform: scale(0.985);
}
.lightbox-counter {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  backdrop-filter: blur(12px);
}
.lightbox-close {
  right: 22px;
  top: 22px;
  width: 46px;
  height: 46px;
  font-size: 0;
}
.lightbox-close::before {
  content: "\00d7";
  font-size: 32px;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  width: 56px;
  height: 68px;
  font-size: 48px;
  line-height: 1;
  transform: translateY(-50%);
}
.lightbox-prev {
  left: clamp(14px, 3vw, 34px);
}
.lightbox-next {
  right: clamp(14px, 3vw, 34px);
}
.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  background: rgba(31, 107, 32, 0.9);
  border-color: rgba(255, 255, 255, 0.45);
}
.lightbox-close:hover,
.lightbox-close:focus-visible {
  transform: translateY(-2px);
}
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: translateY(-50%) scale(1.04);
}
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 2px solid #86d888;
  outline-offset: 3px;
}
.video-title {
  margin-top: 60px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.video-card video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
.video-card h3,
.video-card p {
  padding-inline: 18px;
}
.video-card p {
  padding-bottom: 18px;
  color: #68736a;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
}
.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.contact-cards a,
.contact-cards > span {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}
.contact-cards small {
  display: block;
  color: #6b746d;
  font-weight: 800;
}
.contact-form {
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 8px;
  padding: 28px;
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 850;
  color: #646e66;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  font: inherit;
  background: #fff;
}
.contact-form textarea {
  min-height: 140px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.honeypot {
  display: none !important;
}
.form-message {
  border-radius: 6px;
  padding: 13px;
  font-weight: 800;
}
.form-message.success {
  display: block;
  background: #e7f7e7;
  color: #165217;
  border: 1px solid #b8dfb8;
}
.form-message.error {
  display: block;
  background: #fff0f0;
  color: #9b1c1c;
  border: 1px solid #f1b8b8;
}
.mailto-note {
  font-size: 13px;
}
.map-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.map-frame {
  position: relative;
  width: 100%;
  min-height: 430px;
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
  box-shadow: inset 0 0 0 1px var(--line);
}
.map-card iframe {
  width: 100%;
  height: 430px;
  min-height: 430px;
  border: 0;
}
.map-link {
  width: fit-content;
}
.manual-review {
  margin-top: 30px;
  border: 1px dashed var(--green);
  background: var(--soft);
  border-radius: 8px;
  padding: 26px;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.footer {
  background: var(--black);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 36px;
  padding-block: 60px;
}
.footer-logo {
  width: 130px;
  border-radius: 8px;
}
.footer p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}
.footer h2 {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #86d888;
}
.footer a,
.footer span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  margin-top: 11px;
  font-size: 14px;
}
.social {
  display: grid !important;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-weight: 950;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}
@media (max-width: 980px) {
  .nav,
  .header-call {
    display: none;
  }
  .menu-toggle {
    display: grid;
    color: inherit;
  }
  .site-header {
    color: #fff;
  }
  .site-header.open .nav {
    display: grid;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    color: var(--black);
    padding: 18px 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  }
  .site-header.open .nav a {
    padding: 12px;
  }
  .hero-home {
    min-height: 100vh;
    min-height: 100svh;
    padding-bottom: 100px;
  }
  .trust,
  .service-grid,
  .featured-grid,
  .review-grid,
  .gallery-grid,
  .video-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split-grid,
  .contact-layout,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .project-tile.large {
    grid-column: auto;
    grid-row: auto;
    min-height: 275px;
  }
  .gallery-item.tall {
    grid-row: auto;
    min-height: 235px;
  }
  .cta-actions {
    min-width: 0;
  }
}
@media (max-width: 620px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .brand span {
    display: none;
  }
  .brand img {
    width: 78px;
    height: 56px;
  }
  .hero {
    min-height: 520px;
    padding-top: 110px;
    padding-bottom: 50px;
  }
  .hero-home {
    min-height: 100vh;
    min-height: 100svh;
    padding-bottom: 80px;
  }
  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }
  .actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .trust,
  .service-grid,
  .featured-grid,
  .review-grid,
  .gallery-grid,
  .video-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust {
    margin-top: -45px;
  }
  .trust article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .image-frame {
    min-height: 360px;
  }
  .section {
    padding-block: 68px;
  }
  .map-frame,
  .map-card iframe {
    height: 340px;
    min-height: 340px;
  }
  .lightbox {
    padding: 16px 12px 22px;
  }
  .lightbox-figure {
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 84px);
    max-height: calc(100svh - 84px);
  }
  .lightbox-image {
    max-height: calc(100vh - 132px);
    max-height: calc(100svh - 132px);
  }
  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }
  .lightbox-nav {
    width: 48px;
    height: 58px;
    font-size: 42px;
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
}
