.single-content p.content-paragraph {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  line-height: 1.6;
}
.single-content figure {
  margin-top: 2em;
  margin-bottom: 2em;
  text-align: center;
}
.single-content figure img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.button-primary {
  background-color: #0cc0b1;
  border: 1px solid #0cc0b1;
  font-size: 1rem;
  border-radius: 9999px;
  padding: .5rem 1.5rem;
  color: #28282d;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
}
.button-primary:hover {
  background-color: #079A91;
  border: 1px solid #079A91;
}
.button-primary:active {
  background-color: #0A7B75;
  border: 1px solid #0A7B75;
}
.button-secondary {
  background-color: #fff;
  border: 1px solid #079a91;
  font-size: 1rem;
  border-radius: 9999px;
  padding: .5rem 1.5rem;
  color: #28282d;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
}
.button-secondary:hover {
  border: 1px solid #0a7b75;
  background-color: #effefa;
}
.button-secondary:active {
  border: 1px solid #0d625e;
  background-color: #cafdf3;
}

.fixed-header {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}
.fixed-header.show {
  transform: translateY(0);
}

.nav-link-active {
  color: #0cc0b1 !important; /* tailwind turquoise-500 */
}

.fixed-header-mobile {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for effect */
  z-index: 1000; /* Ensure it appears above other content */
}

.fixed-header-mobile svg {
  color: #28282d !important;
}
/* Animated scroll*/
@keyframes scroll {
	0% {
		transform: translateY(0);
	}
	30% {
		transform: translateY(100px);
	}
}
svg #wheel {
	animation: scroll ease 2s infinite;
}