@import url("https://fonts.googleapis.com/css2?family=Aladin&family=Pacifico&family=Poppins:wght@300;400;500;600;700&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap");

:root {
  --green: #1e9a1e;
  --green-dark: #006600;
  --green-deep: #060;
  --navy: #121026;
  --text: #333;
  --muted: #555;
  --footer-text: #bbb;
  --border: #e2dfdf;
  --max: 1820px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
}

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

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

a:hover {
  color: var(--green-dark);
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: Poppins, Roboto, sans-serif;
  line-height: 1.25;
  color: #222;
}

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

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  padding: 8px 12px;
  z-index: 10000;
}

/* —— Top bar —— */
.top-bar {
  background: #006600;
  color: #ccc;
  font-size: 13px;
  min-height: 30px;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}

.top-bar i {
  margin-right: 6px;
}

.top-bar a {
  color: #ccc;
}

/* —— Mid header —— */
.mid-header {
  padding: 12px 0;
  background: #fff;
}

.mid-header .container {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  flex-shrink: 0;
  overflow: visible;
}

.brand img {
  display: block;
  height: 93px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  object-position: left center;
}

.slogan {
  flex: 1;
  margin: 0;
  font-family: Pacifico, cursive;
  font-size: 26px;
  line-height: 1.2;
  color: #111;
  font-weight: 400;
}

.quote-btn {
  display: inline-block;
  border: 2px solid red;
  color: red;
  font-weight: 500;
  border-radius: 9px;
  padding: 10px 16px;
  min-height: 44px;
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.quote-btn:hover {
  background: red;
  color: #fff;
}

.header-banner {
  position: relative;
  width: 280px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 2px;
}

.header-banner img {
  width: 100%;
  height: 78px;
  object-fit: cover;
}

.banner-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 8px 12px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
  color: #fff;
}

.banner-copy strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.banner-copy em {
  display: inline-block;
  margin-top: 6px;
  background: #c00;
  color: #fff;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
}

/* —— Main nav —— */
.nav-wrap {
  background: #006600;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font: 700 14px/1 Trebuchet MS, sans-serif;
  letter-spacing: 0.08em;
  padding: 12px 8px;
  cursor: pointer;
}

.search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: #fff;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 16px;
  flex-shrink: 0;
}

.search-toggle:hover {
  background: var(--green);
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 5px 0;
  justify-content: center;
  flex: 1;
}

.primary-nav > li {
  position: relative;
}

.primary-nav > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-size: 13px;
  line-height: 44px;
  height: 44px;
  padding: 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.primary-nav > li > a .fa-angle-down {
  font-size: 10px;
  opacity: 0.85;
}

.primary-nav > li:hover > a,
.primary-nav > li.active > a,
.primary-nav > li > a:focus {
  background: var(--green);
  color: #fff;
}

.mega {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: min(1100px, 94vw);
  max-height: min(72vh, 740px);
  overflow-x: hidden;
  overflow-y: auto;
  background: #161422;
  color: #e7dcdc;
  padding: 18px 22px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 60;
}

.primary-nav > li:hover > .mega,
.primary-nav > li:focus-within > .mega {
  display: grid;
}

.mega.cols-2 {
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}

.mega.cols-3 {
  grid-template-columns: 1fr 1fr 1fr;
  min-width: min(1240px, 96vw);
  gap: 16px 24px;
}

.primary-nav > li:nth-last-child(-n+4) > .mega {
  left: auto;
  right: 0;
}

.mega h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mega a {
  display: block;
  color: #e7dcdc;
  font-size: 13px;
  line-height: 1.35;
  padding: 2px 0;
  font-weight: 400;
}

.mega a:hover {
  color: #fff;
}

.search-bar {
  display: none;
  background: #004d00;
  padding: 12px 0 16px;
}

.search-bar.open {
  display: block;
}

.search-bar form {
  display: flex;
  max-width: 520px;
}

.search-bar input {
  flex: 1;
  border: 0;
  padding: 10px 14px;
  font-size: 15px;
}

.search-bar button {
  background: var(--green);
  color: #fff;
  border: 0;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 600;
}

.search-bar button:hover {
  background: var(--green-dark);
}

/* —— Hero slider —— */
.hero-slider {
  position: relative;
  height: min(78vh, 620px);
  min-height: 420px;
  overflow: hidden;
  background: #111;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
}

.hero-slider .slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.slide-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px 72px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.18) 45%,
    rgba(0, 0, 0, 0.35)
  );
  pointer-events: none;
}

.slide-copy h2 {
  font-family: Poppins, Roboto, sans-serif;
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.slide-copy p {
  margin: 0;
  font-size: clamp(16px, 2vw, 22px);
  color: #fff;
  font-weight: 400;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.9;
}

.slide-arrow:hover {
  opacity: 1;
  color: #fff;
}

.slide-prev {
  left: 12px;
}

.slide-next {
  right: 12px;
}

.slide-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slide-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
}

.slide-dots button.is-active {
  background: #fff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.offers {
  display: flex;
  align-items: stretch;
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  min-height: 44px;
}

.offers > strong {
  position: relative;
  z-index: 2;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 0 16px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.offers-clip {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.offers-track {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0 16px;
  width: max-content;
  animation: offers-scroll 45s linear infinite;
  white-space: nowrap;
}

.offers:hover .offers-track {
  animation-play-state: paused;
}

.offers-track a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.offers-track img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes offers-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.social-rail {
  position: fixed;
  right: 0;
  top: 38%;
  z-index: 40;
  display: flex;
  flex-direction: column;
}

.social-rail a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.social-rail a:hover {
  color: #fff;
  filter: brightness(1.1);
}

.social-rail .fb { background: #3b5998; }
.social-rail .tw { background: #1da1f2; }
.social-rail .ig { background: #e1306c; }
.social-rail .tk { background: #111; }

.hp {
  position: absolute;
  left: -10000px;
  height: 0;
  overflow: hidden;
}

.mobile-cta {
  display: none;
}

.themes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 28px 0 8px;
  text-align: center;
}

.themes a {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.themes i {
  display: block;
  font-size: 28px;
  color: #006600;
  margin-bottom: 6px;
}

.review .posted {
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}

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

.section.alt {
  background: #f7f7f7;
}

.display {
  font-family: Aladin, cursive;
  font-size: 41px;
  font-weight: 400;
  text-align: center;
  margin: 0 0 14px;
}

.lede {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.widget-title {
  font-size: 20px;
  font-weight: 700;
  padding-left: 10px;
  border-left: 4px solid var(--green);
  margin: 0 0 15px;
}

.about-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.btn:hover {
  background: var(--green-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: #fff;
}

/* Why choose */
.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}

.why i {
  font-size: 42px;
  color: #006600;
}

.why h3 {
  font-size: 19px;
  margin: 10px 0 8px;
}

.why p {
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

/* Cards — Pamoja-style photo tiles */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cards.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.card {
  background: transparent;
  overflow: hidden;
}

.card-media {
  position: relative;
  display: block;
  color: #fff;
}

.card-media:hover {
  color: #fff;
}

.card-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.card-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #006600;
  color: #fff;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
}

.card-media:hover .card-label {
  background: #1e9a1e;
}

.card-price {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 8px;
  border-radius: 2px;
}

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

.blog-card {
  background: #f4f4f4;
}

.blog-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.blog-body {
  padding: 14px 14px 18px;
}

.blog-card h3 {
  font-family: Poppins, Roboto, sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  text-transform: none;
  padding: 0;
  line-height: 1.3;
}

.blog-card h3 a {
  color: #111;
}

.blog-card h3 a:hover {
  color: var(--green-dark);
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.btn-read {
  display: inline-block;
  margin-top: 14px;
  background: #e30613;
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
}

.btn-read:hover {
  background: #c00;
  color: #fff;
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review {
  border: 1px solid var(--border);
  padding: 16px 18px;
  background: #fff;
}

.review .who {
  font-weight: 700;
  margin-bottom: 4px;
}

.stars {
  color: #f4a733;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.review p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Page layout */
.page-hero {
  background: #0e2a0e center / cover no-repeat;
  color: #fff;
  padding: 48px 0 36px;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: Aladin, cursive;
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 6px;
}

.crumbs {
  font-size: 13px;
  color: #ddd;
}

.crumbs a {
  color: #fff;
}

.layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  padding: 36px 0 56px;
}

.prose h2 {
  font-size: 24px;
  margin: 1.4em 0 0.5em;
}

.prose h3 {
  font-size: 18px;
  margin: 1.2em 0 0.4em;
}

.prose p,
.prose li {
  color: var(--muted);
}

.day {
  border-left: 3px solid var(--green);
  padding: 4px 0 8px 14px;
  margin: 0 0 16px;
}

.day h3 {
  font-size: 16px;
  margin: 0 0 4px;
  color: #111;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 12px;
}

.price-box {
  border: 1px solid var(--border);
  background: #f7faf4;
  padding: 16px 18px;
  margin: 20px 0 28px;
}

.from-price {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin: 0 0 4px;
}

.price-note {
  font-size: 13px;
  margin: 8px 0 0;
}

.glance {
  margin: 0 0 28px;
  padding-left: 18px;
}

.inc-ex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0;
}

.inc-ex ul {
  margin: 0;
  padding-left: 18px;
}

.safari-gallery img {
  height: 200px;
}

aside .box small {
  display: block;
  color: #888;
  font-size: 12px;
}

aside .box {
  border: 1px solid var(--border);
  padding: 16px;
  margin-bottom: 18px;
}

aside .box a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  border-bottom: 1px solid #f0f0f0;
}

aside .box a:hover {
  color: var(--green);
}

/* Forms */
.form label {
  display: block;
  font-weight: 500;
  margin: 12px 0 4px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid #ccc;
  font: inherit;
  border-radius: 2px;
}

.form textarea {
  min-height: 120px;
}

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

.form-note {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  background: #eaf7ea;
  border-left: 4px solid var(--green);
}

.form-note.show {
  display: block;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--footer-text);
  padding: 50px 0 20px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.site-footer .widget-title {
  color: #fff;
  border-left-color: var(--green);
}

.site-footer a {
  color: var(--footer-text);
}

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

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

.site-footer li {
  margin: 0 0 6px;
}

.site-info {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 28px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.footer-heading::after {
  content: "";
  width: 56px;
  height: 3px;
  background: var(--green);
  flex-shrink: 0;
}

.footer-band p {
  margin: 0 0 8px;
  color: #fff;
  line-height: 1.7;
}

.footer-dots {
  border: 0;
  border-top: 2px dotted rgba(255, 255, 255, 0.5);
  margin: 16px 0;
}

.partners-label {
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 10px !important;
}

.partners-box {
  display: inline-block;
  background: #fff;
  padding: 8px 10px;
}

.partners-box img {
  height: 70px;
  width: auto;
}

.pay-cards {
  max-width: 420px;
  height: auto;
  margin-top: 4px;
}

.wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  z-index: 70;
}

.wa:hover {
  color: #fff;
  filter: brightness(1.05);
}

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

.dest-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  color: #fff;
}

.dest-card img,
.dest-grid > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.dest-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  font-weight: 700;
  color: #fff;
}

@media (max-width: 1100px) {
  .slogan {
    display: none;
  }
}

@media (max-width: 1200px) {
  .cards,
  .cards.cols-5,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .header-banner {
    display: none;
  }

  .why,
  .blog-grid,
  .reviews,
  .dest-grid,
  .footer-grid,
  .footer-band,
  .about-split,
  .layout,
  .form-row,
  .themes,
  .cards,
  .cards.cols-5 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: block;
  }

  .social-rail {
    display: none;
  }

  .nav-inner {
    flex-wrap: wrap;
  }

  .primary-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 0 0 10px;
  }

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

  .primary-nav > li > a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mega,
  .primary-nav > li:hover > .mega,
  .primary-nav > li:focus-within > .mega {
    position: static;
    min-width: 0;
    display: none;
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
  }

  .primary-nav > li.open > .mega {
    display: grid;
  }

  .why,
  .blog-grid,
  .reviews,
  .dest-grid,
  .footer-grid,
  .footer-band,
  .about-split,
  .layout,
  .form-row,
  .cards,
  .cards.cols-5,
  .inc-ex {
    grid-template-columns: 1fr;
  }

  .brand img {
    height: 64px;
    max-width: 220px;
  }

  .hero-slider {
    min-height: 280px;
    height: 360px;
  }

  .slide-copy {
    padding: 24px 48px;
  }

  .mobile-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    background: #006600;
  }

  .mobile-cta a {
    flex: 1;
    color: #fff;
    text-align: center;
    padding: 14px 10px;
    min-height: 44px;
    font-weight: 700;
    font-size: 15px;
  }

  .mobile-cta a:hover {
    color: #fff;
    background: #004d00;
  }

  .wa {
    bottom: 72px;
  }

  body {
    padding-bottom: 56px;
  }
}
