.slick-dots li {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 8px;
  height: 8px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  border-radius: 999px;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: none;
  text-align: center;
  opacity: .25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*Tablet Screens*/
@media (min-width: 40rem) {
  .slick-dots li, .slick-dots li button {
    width: 10px;
    height: 10px;
  }
}
/*Large Screens*/
@media (min-width: 64rem) {
  .slick-dots li, .slick-dots li button {
    width: 12px;
    height: 12px;
  }
}

/*Hero Images carousel*/
#hero-images-carousel-wrapper .slick-dots {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
  margin-bottom: 2rem;
}
#hero-images-carousel-wrapper .slick-dots li button {
  background-color: var(--background-500);
}
#hero-images-carousel-wrapper .slick-dots li.slick-active button {
  opacity: .75;
  background-color: var(--background-0);
}
@media (min-width: 640px) {
  #hero-images-carousel-wrapper .slick-dots {
    margin-bottom: 2.5rem;
  }
}
/*Google Reviews carousel*/
#testimonials .slick-dots {
  display: none !important;
  width: 100%;
  list-style: none;
  text-align: center;
  padding-top: 2rem;
}
#testimonials .slick-dots li button {
  background-color: var(--background-300);
}
#testimonials .slick-dots li.slick-active button {
  opacity: .75;
  background-color: var(--background-700);
}
@media (min-width: 640px) {
  #testimonials .slick-dots {
    padding-top: 2.5rem;
    display: block !important;
  }
}
@media (min-width: 1024px) {
  #testimonials .slick-dots {
    padding-top: 3.5rem;
    display: block !important;
  }
}