/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.carousel-caption {
  bottom: 5%;
  left: 10%;
  right: auto;
  text-align: left;
  position: absolute;
  z-index: 10;
  pointer-events: none; /* Prevents flicker */
}

.carousel-caption h3 {
  font-size: 2.5rem;
  color: #fff;
  background-color: #1d4e38;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  margin: 0;
  pointer-events: auto;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .carousel-caption h3 {
    font-size: 1.5rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 576px) {
  .carousel-caption h3 {
    font-size: 1.2rem;
    padding: 0.3rem 0.6rem;
  }
}


