html,
body {
  margin: 0 !important;
  padding: 0 !important;
  background-color: #f2f4f3;
}

body {
  background: #f2f4f3 url("../images/globalconnections.jpg") center / cover
    no-repeat fixed;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
}

h3 {
  padding: 0;
  margin: 0;
}

h5 {
  color: #010812;
}

li {
  padding: 3px;
  margin: 0 0 0 50px;
  list-style: none;
  font-size: 1.2em;
}

li a {
  background-color: #0b2c1f;
  transition: transform 0.2s ease-in-out;
  text-decoration: none;
}

li a:hover {
  color: #fff;
  transform: scale(1.2);
}

div div div img {
  margin: 25px 5px 25px 25px;
}

textarea {
  resize: none;
}

.back-color-1 {
  background-color: #111827;
  background-color: #307784;
}

.nav-link-2 {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  text-decoration: none;
  background: 0 0;
  border: 0;
  background-color: #0b2c1f;
  color: #fff;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}

.anchor-text-color {
  color: #f2f4f3;
}

.header {
  color: #010812;
  background-color: #307784;
}

.bg-color-1 {
  background-color: #22333b;
}

.bg-color-2 {
  background-color: #f2f4f3;
}

.bg-color-3 {
  background-color: #0a0908;
}

.bg-color-4 {
  background-color: #a9927d;
}

.bg-color-5 {
  background-color: #5e503f;
}

.corner-left {
  border-radius: 8px 0 0 8px;
}

.corner-right {
  border-radius: 0 8px 8px 0;
}

.red-hat-display-100 {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.navbar-nav .nav-link {
  border-bottom: 2px solid transparent; /* keeps the height steady */
}

.navbar-nav .nav-link:hover {
  border-bottom: 2px solid hsl(42, 98%, 52%); /* Bootstrap’s primary blue, or your color */
}

img {
  opacity: 0.8;
}

/* Font Style */
.rubik-dirt-regular {
  font-family: "Rubik Dirt", system-ui;
  font-weight: 500;
  font-style: normal;
}

.discount {
  margin-right: 40px;
  margin-top: 13px;
  font-style: italic;
  justify-content: center;
  align-items: center;
  color: rgb(218, 218, 16);
  opacity: 0; /* Start invisible */
  animation: fadeInOut 4s ease-in-out infinite;
}

.center-vh {
  /* Mobile-safe viewport height; fallback to 100vh */
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center; /* vertical */
  justify-content: center; /* horizontal */
  text-align: center; /* optional */
}

.header-top-padding {
  padding: 40px 50px;
}

.bottom-padding {
  padding-bottom: 40px;
}

.naturalhealing {
  color: rgb(225, 160, 7);
}

.ecotherapy {
  background-color: rgb(187, 170, 149);
}

.meaning-purpose {
  background-color: #1856a2;
}

.stress-anxiety {
  background-color: #40e0d0;
}

.traumatic-growth {
  background-color: #00b500;
}

.burnt-orange {
  color: rgb(16, 81, 16);
}

.client-height {
  height: 300px;
  padding: 20px 0 20px 0;
}

.no-left-space {
  margin-left: 0 !important;
  padding-left: 0 !important;
  margin-right: 0 !important;
  padding-right: 0 !important;
}

.slide-in-left {
  animation: slideInLeft 1s ease-out; /* run animation once */
  text-align: center; /* center the text */
}

.blur-around {
  border-radius: 12px;
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.15);
  /*        ^ ^  ^blur ^spread  ^color */
}

.main-div {
  background-color: #bcc0be;
}

.slide-in-right {
  animation: slideInRight 1s ease-out; /* run animation once */
  text-align: center; /* center the text */
}

#work {
  visibility: hidden;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100vw); /* start way left */
    opacity: 0; /* fade in */
  }
  to {
    transform: translateX(0); /* end at natural spot */
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100vw); /* start way right */
    opacity: 0; /* fade in */
  }
  to {
    transform: translateX(0); /* end at natural spot */
    opacity: 1;
  }
}

.pop-in {
  opacity: 0;
  transform: scale(0.5); /* start shrunken */
  animation: popIn 2s ease forwards;
  /* animation: popIn 0.8s ease forwards; */
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1); /* grow to normal size */
  }
}

@media (min-width: 300px) and (max-width: 880px) {
  #dEcotherapy,
  #dStressAnxiety,
  #dTraumaticGrowth,
  #dMeaningPurpose {
    height: 330px;
    margin-bottom: 40px;
    padding: 20px 0 20px 0;
  }
}

@media (max-width: 990px) {
  #searchQuestions {
    margin: 25px auto !important;
  }

  #specials {
    display: none;
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  } /* fully transparent */
  25% {
    opacity: 1;
  } /* fade in */
  75% {
    opacity: 1;
  } /* stay visible */
  100% {
    opacity: 0;
  } /* fade out */
}
