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: #4977e5;
  /* 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%;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  /* IE 10+ */
  scrollbar-width: none;
  /* Firefox */
}

@media (min-width: 1024px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

.mobile-menu {
  transition: all 0.3s ease;
}
