/* Mogambo Springs Specific Styling */

@font-face {
  font-family: "AaMgScript";
  src: url("../../AaMgScript-Regular.woff2") format("woff2"),
    url("../../AaMgScript-Regular.woff") format("woff"),
    url("../../AaMgScript-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Page background */
#mogambosprings {
  background: radial-gradient(
      circle at top,
      rgba(255, 255, 255, 0.9),
      rgba(214, 234, 248, 0.3)
    ),
    linear-gradient(
      135deg,
      rgba(209, 232, 226, 0.45),
      rgba(214, 234, 248, 0.65)
    );
}

/* Hero + landing layout */
.mogambo-landing {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
  padding: 0 clamp(1rem, 5vw, 3rem) clamp(3rem, 6vw, 4.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

@media only screen and (max-width: 640px) {
  .mogambo-landing {
    padding-left: 0;
    padding-right: 0;
  }

  .mogambo-hero .hero-text {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.mogambo-hero {
  position: relative;
  border-radius: 28px;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  /* box-shadow: 0 25px 60px rgba(17, 100, 102, 0.08);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25); */
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.mogambo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(250, 230, 200, 0.35),
    transparent 50%
  );
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--spa-text-dark);
  padding-left: clamp(0.75rem, 3vw, 2rem);
  padding-right: clamp(0.75rem, 3vw, 2rem);
  position: relative;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  color: var(--spa-medium-teal);
  margin: 0;
}

.mogambo-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  color: var(--spa-dark-teal);
}

.hero-subtitle {
  display: block;
  font-size: clamp(0.85rem, 3vw, 1.25rem) !important;
  font-weight: 500;
  color: var(--spa-text-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  border-radius: 6px;
}

.hero-title {
  display: block;
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--spa-dark-teal);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-lede {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  margin: 0;
  color: var(--spa-text-medium);
}

.hero-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.hero-highlights li {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(17, 100, 102, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 15px 30px rgba(17, 100, 102, 0.06);
}

.stat-label {
  font-size: clamp(0.75rem, 1.4vw, 0.95rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--spa-medium-teal);
}

.stat-value {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--spa-text-dark);
  line-height: 1.4;
}

.hero-media {
  margin: 0;
  border-radius: 24px;
  background: white;
  padding: clamp(0.5rem, 1vw, 0.75rem);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.hero-media figcaption {
  margin-top: 0.75rem;
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  color: var(--spa-text-medium);
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mogambo-pillars {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 760px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

.keyword-stage {
  position: relative;
  width: clamp(300px, 50vw, 520px);
  margin: 0 auto;
  /* border-radius: 32px; */
  /* padding: clamp(1.25rem, 3vw, 1.75rem); */
  /* background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.85),
    rgba(224, 240, 248, 0.95)
  ); */
  /* box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08); */
  overflow: hidden;
  min-height: clamp(120px, 18vw, 170px);
}

.keyword-stage-ambient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 210, 127, 0.5),
    transparent 60%
  );
  filter: blur(28px);
  opacity: 0.6;
  pointer-events: none;
}

.keyword-stage span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  letter-spacing: 0.32em;
  text-transform: capitalize;
  font-weight: 900;
  color: var(--spa-dark-teal);
  font-family: "AaMgScript", "AaMgScript-Regular", "Georgia", serif !important;
  opacity: 0;
  animation: keywordOneByOne 32s ease-in-out infinite;
}

.keyword-stage span:nth-child(1) {
  animation-delay: 0s;
}
.keyword-stage span:nth-child(2) {
  animation-delay: 4s;
}
.keyword-stage span:nth-child(3) {
  animation-delay: 8s;
}
.keyword-stage span:nth-child(4) {
  animation-delay: 12s;
}
.keyword-stage span:nth-child(5) {
  animation-delay: 16s;
}
.keyword-stage span:nth-child(6) {
  animation-delay: 20s;
}
.keyword-stage span:nth-child(7) {
  animation-delay: 24s;
}
.keyword-stage span:nth-child(8) {
  animation-delay: 28s;
}

@keyframes keywordOneByOne {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 20px)) scale(0.9);
  }
  8% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  20% {
    opacity: 1;
  }
  21% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 30px)) scale(0.5);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 20px)) scale(0.9);
  }
}

.section-eyebrow {
  text-transform: uppercase;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  letter-spacing: 0.3em;
  color: var(--spa-medium-teal);
  margin: 0;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--spa-dark-teal);
}

.section-lede {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--spa-text-medium);
  line-height: 1.7;
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(2.75rem, 5vw, 5rem);
}

.feature-card {
  background: white;
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  /* border: 1px solid rgba(255, 255, 255, 0.4); */
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(17, 100, 102, 0.12);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card-media {
  border-radius: 6px;
  overflow: hidden;
  background: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.feature-card-media img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--spa-text-dark);
}

.feature-card-body h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  color: var(--spa-dark-teal);
  font-family: "AaMgScript", "AaMgScript-Regular", "Georgia", serif !important;
  position: relative;
}

.feature-card-body h3::after {
  content: "";
  width: 85px;
  height: 2px;
  background: linear-gradient(90deg, #ffd27f, transparent);
  display: block;
  margin-top: 0.35rem;
}

.feature-card-body p {
  margin: 0;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  text-shadow: none;
  color: var(--spa-text-medium);
}

.feature-grid .feature-card:nth-of-type(1) {
  background: var(--spa-pastel-mint);
}

.feature-grid .feature-card:nth-of-type(2) {
  background: var(--spa-pastel-sage);
}

.feature-grid .feature-card:nth-of-type(3) {
  background: var(--spa-pastel-lavender);
}

.feature-grid .feature-card:nth-of-type(4) {
  background: var(--spa-pastel-peach);
}

.feature-grid .feature-card:nth-of-type(5) {
  background: var(--spa-pastel-blue);
}

.feature-grid .feature-card:nth-of-type(6) {
  background: linear-gradient(
    135deg,
    var(--spa-pastel-mint),
    var(--spa-pastel-blue)
  );
}

.feature-grid .feature-card:nth-of-type(7) {
  background: linear-gradient(
    135deg,
    var(--spa-pastel-sage),
    var(--spa-pastel-lavender)
  );
}

.feature-grid .feature-card:nth-of-type(8) {
  background: linear-gradient(
    135deg,
    var(--spa-pastel-peach),
    var(--spa-pastel-mint)
  );
}

@media only screen and (min-width: 600px) {
  .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (min-width: 900px) {
  .mogambo-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
  }

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

  .mogambo-hero .hero-text {
    padding-left: 0;
    padding-right: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-card {
    flex-direction: row;
    align-items: center;
    gap: 2.25rem;
  }

  .feature-card-media,
  .feature-card-body {
    flex: 1;
    align-self: flex-end;
  }

  .feature-card--reverse {
    flex-direction: row-reverse;
  }
}

@media only screen and (min-width: 1200px) {
  .feature-card-media {
    max-width: 420px;
  }
}

@media only screen and (max-width: 600px) {
  .feature-card {
    margin-bottom: 20px;
    border-radius: 0;
  }

  .feature-card-title {
    padding: 16px 20px;
    font-size: 1.25rem;
  }

  .feature-card-content {
    padding: 20px;
  }

  .feature-card-image img {
    height: auto;
  }
}

/* Logo styling */
.mogambo-logo {
  display: inline-block;
  padding: 15px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  from {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  to {
    box-shadow: 0 5px 20px rgba(17, 100, 102, 0.3);
  }
}

.mogambo-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(17, 100, 102, 0.2);
}

/* Feature boxes */
.mogambo-feature {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--spa-pastel-lavender);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideIn 0.5s ease-out;
  animation-fill-mode: both;
  overflow: hidden;
}

/* Image sizing for better visual balance */
.mogambo-feature img.IpatungaDblock {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.5s ease;
}

/* Specific styling for feature images */
img.feature-image {
  display: block;
  width: 100%;
}

/* Specific styling for amenities image */
img.amenities-image {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.mogambo-feature:nth-child(1) {
  animation-delay: 0.2s;
}

.mogambo-feature:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mogambo-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.mogambo-feature h3 {
  color: var(--spa-dark-teal);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 22px;
}

.mogambo-feature p {
  color: var(--spa-text-medium);
  line-height: 1.7;
}

/* Amenities list container */
.amenities-list-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: left;
}

.mogambo-amenities {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0;
  padding: 20px;
  background-color: var(--spa-pastel-mint);
  background-image: url("../../pbayImages/pattern-leaves.svg");
  background-size: 200px;
  background-blend-mode: overlay;
  border-radius: 8px;
  position: relative;
  animation: fadeIn 0.8s ease-out;
  animation-delay: 0.6s;
  animation-fill-mode: both;
  justify-content: center;
  align-items: center;
}

/* Ensure amenities images are properly sized */
.mogambo-amenities img.IpatungaDblock {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.mogambo-amenities:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0)
  );
  border-radius: 8px;
}

.mogambo-amenities-title {
  width: 100%;
  margin-bottom: 20px;
  color: var(--spa-dark-teal);
  text-align: center;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.mogambo-amenities ul {
  flex: 0 1 auto;
  min-width: 250px;
  max-width: 400px;
  padding-left: 0;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: block;
  list-style-type: none;
  text-align: left;
}

/* Improved list item styling for better alignment */
.mogambo-amenities ul.iLeft li {
  position: relative;
  padding: 8px 0 8px 30px;
  margin-bottom: 5px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.mogambo-amenities ul.iLeft li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: linear-gradient(
    to right,
    var(--spa-pastel-peach),
    var(--spa-light-teal)
  );
  border-radius: 4px;
  display: block;
}

/* Override the general styling for amenities list items */
#spaMain .mogambo-amenities ul.iLeft li {
  display: flex;
  align-items: center;
  padding: 8px 0 8px 30px;
  position: relative;
  text-align: left;
  margin-left: 20px;
}

#spaMain .mogambo-amenities ul.iLeft li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 20px;
  background-color: #f0c75e; /* Yellow color for the bar */
  border-radius: 0;
}

#spaMain .mogambo-amenities ul.iLeft li:after {
  content: "◆";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--spa-light-teal);
  font-size: 12px;
  line-height: 1;
}

/* Specific styling to match the image */
#spaMain .mogambo-amenities ul.iLeft {
  width: 80%;
  max-width: 350px;
  margin: 0 auto;
  text-align: left;
}

#spaMain .mogambo-amenities ul.iLeft li {
  color: var(--spa-text-dark);
  font-size: 16px;
  padding-left: 35px;
  margin-left: 0;
}

#spaMain .mogambo-amenities ul.iLeft li:before {
  left: 0;
  height: 22px;
}

#spaMain .mogambo-amenities ul.iLeft li:after {
  left: 12px;
}

.mogambo-amenities img {
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}

.mogambo-amenities img:hover {
  transform: scale(1.02);
}

.mogambo-amenities li {
  transition: transform 0.2s ease;
}

.mogambo-amenities li:hover {
  transform: translateX(5px);
  color: var(--spa-dark-teal);
}

/* Hours and info */
.mogambo-hours {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  margin-top: 30px;
  text-align: center;
  border-top: 3px solid var(--spa-pastel-peach);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.8s ease-out;
  animation-delay: 0.8s;
  animation-fill-mode: both;
}

.mogambo-hours p {
  font-size: 18px;
  color: var(--spa-text-dark);
  margin: 0;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--spa-pastel-lavender);
  outline-offset: 2px;
}

/* Image gallery */
.mogambo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}

.mogambo-gallery-item {
  flex: 1;
  min-width: 250px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.mogambo-gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.mogambo-gallery-item:hover img {
  transform: scale(1.05);
}

/* Responsive class for better mobile experience */
.mogambo-responsive {
  width: 100%;
  max-width: 100%;
}

/* Responsive adjustments */
@media only screen and (min-width: 600px) {
  /* Ensure images are properly sized on larger screens */
  .mogambo-feature img.IpatungaDblock,
  .mogambo-amenities img.IpatungaDblock {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* Specific styling for feature images on larger screens */
  img.feature-image {
    width: 100%;
    height: auto;
  }

  /* Specific styling for amenities image on larger screens */
  img.amenities-image {
    width: 100%;
    height: auto;
  }

  /* Add a slight zoom effect on hover */
  .mogambo-feature:hover img.IpatungaDblock {
    transform: scale(1.02);
    transition: transform 0.5s ease;
  }

  /* Adjust feature box padding for better image display */
  .mogambo-feature {
    padding: 0 0 25px 0;
  }

  .mogambo-feature p {
    padding: 0 25px;
    margin-top: 20px;
  }

  /* Ensure amenities section displays properly */
  .mogambo-amenities {
    padding: 20px 0;
    text-align: center;
    justify-content: center;
  }

  .amenities-list-container {
    max-width: 500px;
    margin: 0 auto;
  }

  .mogambo-amenities-title {
    padding: 0 20px;
  }

  .mogambo-amenities ul {
    padding: 0;
    margin: 0 auto;
    max-width: 400px;
    display: block;
    text-align: left;
  }

  .mogambo-amenities ul.iLeft li {
    text-align: left;
    margin-left: 40px;
    display: block;
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 768px) {
  .mogambo-hero {
    padding: 30px 0;
  }

  .mogambo-feature {
    padding: 20px;
  }

  .mogambo-amenities {
    padding: 15px;
  }

  .mogambo-gallery-item {
    min-width: 100%;
  }

  /* Disable animations on mobile for performance */
  .mogambo-hero,
  .mogambo-feature,
  .mogambo-amenities,
  .mogambo-hours {
    animation: none;
  }
}

/* Additional responsive adjustments for smaller screens */
@media only screen and (max-width: 600px) {
  /* Remove padding and margin for key elements */
  .mogambo-hero {
    padding: 0;
    margin-bottom: 15px;
    border-radius: 0;
  }

  .mogambo-logo {
    padding: 10px;
    margin-bottom: 10px;
  }

  .mogambo-feature {
    padding: 0;
    margin-bottom: 15px;
    border-left: none;
    box-shadow: none;
  }

  .mogambo-feature img {
    border-radius: 0;
    max-height: none;
  }

  /* Reset specific image heights for mobile */
  img.feature-image,
  img.amenities-image {
    height: auto !important;
    max-height: none !important;
  }

  .mogambo-amenities {
    padding: 0;
    margin: 15px 0;
    border-radius: 0;
  }

  .mogambo-hours {
    padding: 10px 0;
    margin-top: 15px;
    border-radius: 0;
    box-shadow: none;
  }

  #spaMain {
    padding: 10px;
    border-radius: 0;
    box-shadow: none;
  }

  .leoxSudlanan {
    padding: 10px 0;
    border-radius: 0;
    box-shadow: none;
  }

  /* Additional adjustments for the responsive class */
  .mogambo-responsive {
    padding: 0 !important;
    margin: 0 !important;
  }

  .mogambo-responsive .IpatungaInlineBlock {
    display: block;
    width: 100%;
  }

  .mogambo-responsive p {
    padding: 0 10px;
  }

  .mogambo-responsive .mogambo-feature p {
    padding: 0 10px;
  }

  .mogambo-responsive .mogambo-amenities ul {
    padding-left: 20px;
  }

  /* Fix for image overflow */
  .mogambo-responsive img {
    max-width: 100%;
    height: auto;
  }

  /* Adjust list item alignment for mobile */
  .mogambo-responsive .mogambo-amenities ul.iLeft {
    padding-left: 10px;
    text-align: left;
    padding-right: 10px;
  }

  .mogambo-responsive .mogambo-amenities ul.iLeft li {
    padding: 6px 0 6px 25px;
    margin-bottom: 3px;
    justify-content: flex-start;
    text-align: left;
  }

  .mogambo-responsive .mogambo-amenities ul.iLeft li:before {
    height: 16px;
    width: 6px;
  }

  .mogambo-responsive .mogambo-amenities ul.iLeft li:after {
    font-size: 10px;
    left: 10px;
  }
}
