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%;
}

.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  background: rgba(222, 222, 222, 1) !important;
}

.owl-carousel .owl-dot {
  position: relative;
  background: rgba(222, 222, 222, 1) !important;
}

.owl-carousel .owl-dot.active {
  background: rgb(255, 255, 255) !important;
  border: 2px solid rgba(244, 91, 105, 1) !important;
}

.owl-carousel .owl-dot.active:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: rgba(244, 91, 105, 1) !important;
}


#testimonials-slider .testimonial-item {
  transition: transform 0.5s ease, opacity 0.5s ease;
  position: relative;
  /* flex-direction: column; */
  align-items: center;
}

#testimonials-slider .testimonial-item img {
  width: 50%;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.5s ease;
}

#testimonials-slider .testimonial-item .content {
  display: none;
  transition: opacity 0.5s ease;
}

/* Active center item */
#testimonials-slider .owl-item.active.center .testimonial-item {
  transform: scale(1.05);
}

#testimonials-slider .owl-item.active.center .testimonial-item {
  max-height: 300px;
  width: 100%;
}

#testimonials-slider .owl-item.active.center .testimonial-item .content {
  display: block;
  opacity: 1;
}

/* Side items */
#testimonials-slider .owl-item:not(.active).testimonial-item {
  opacity: 0.6;
}

/* Make side images smaller */
#testimonials-slider .owl-item:not(.active) .testimonial-item img {
  transform: scale(0.8);
}

#testimonials-slider .testimonial-nav button {
  @apply bg-rose-500 text-white px-4 py-2 rounded flex items-center gap-2;
}