body {
  margin: 0px;
  padding: 0px;
}

/* nav */

nav {
  list-style-type: none;
}

/* Custom container class */
.container-custom {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =========== Top Section =========== */
.top-secs {
  background: #c13a3a;
}

.secs-top-left {
  display: flex;
  gap: 15px;
}

.secs-top-right {
  display: flex;
  gap: 15px;
  font-size: small;
  color: white;
}

/* Custom utility classes using CSS variables */
.bg-primary {
  background-color: var(--color-primary);
}

.text-primary {
  color: var(--color-primary);
}

.border-primary {
  border-color: var(--color-primary);
}

.bg-cta {
  background-color: var(--color-cta);
}

.text-cta {
  color: var(--color-cta);
}

/* Add similar classes for your other custom colors */

.takeaways {
  list-style-type: disc;
  /* keeps the bullet style */
  font-size: 18px;
  /* increase text size */
  color: #333;
  /* text color */
  padding-left: 1.5rem;
  /* spacing before bullets */
}

.takeaways li::marker {
  font-size: 22px;
  /* bullet size */
  color: #1D765D;
  /* bullet color */
}

#photo-slide .owl-theme .owl-nav {
  margin: 0px !important;
  position: absolute;
  top: 50%;
  bottom: 50%;
  justify-content: space-between;
  width: 100%;
  left: -2%;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  /* circle size */
  height: 20px;
  border-radius: 50%;
  /* make it round */
  background: #1D765D;
  /* circle color */
  cursor: pointer;
  border: none;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1D765D;
  cursor: pointer;
  border: none;
}