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

/* Floating Socials */
.social-float {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: #fff;
  box-shadow: 0 3px 53px 0 rgba(0, 0, 0, 0.1);
  padding: 18px 15px;
  border-radius: 0 2rem 2rem 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
}

.social-float a {
  transition: all 0.1s ease;
}

.social-float a:hover {
  transform: scale(1.1);
}

.social-float a:active {
  transform: scale(1);
}

@media only screen and (max-width: 47.9375em) {
  .social-float {
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    flex-direction: row;
    width: max-content;
    justify-content: center;
    gap: 20px;
    padding: 10px 25px;
    border-radius: 2rem 2rem 0 0;
  }

  .why-choose-card {
    height: max-content;
  }

  .why-choose-card .circle {
    position: absolute;
    top: -1rem;
    right: 50%;
    transform: translateX(50%);
  }

  .why-choose-card .left-content {
    padding-top: 3rem;
    padding-bottom: 1rem;
    text-align: center;
  }
}