.banner-slider {
  position: relative;
  width: 100%;
  /* max-height: 675px; */
  height: 100%;
  overflow: hidden;
}

.banner-slide {
  position: relative;
}

.banner-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-caption {
  color: white;
  font-size: 46px;
  line-height: 54px;
  font-weight: 500;
  font-family: "Funnel Display", sans-serif;
  max-width1: 500px;
  width: 100%;
  text-align: center;
  margin:auto;
  margin-bottom: 20px;
}
.banner-desc{
  color: white;
  font-size: 18px;
  font-weight: 400;
  width: 100%;
  margin:auto;
  margin-bottom: 20px;
}
.caption-wrapper{
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}
@media(max-width:767px){
  .mobile-relative-caption .caption-wrapper{
    position: relative;
    bottom: auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.banner-slide:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.25;
}

.slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  border: none;
  opacity: 1;
  font-size: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button::before {
  display: none;
}

.slick-dots li.slick-active button {
  background-color: #757575;
}

.banner-slider ul.slick-dots {
  position: absolute;
  bottom: 10px;
  right: 50px;
}

.banner-slider ul.slick-dots li button {
  background-color: var(--primary-color);
}

.banner-slider ul.slick-dots li.slick-active button {
  background-color: #aaa;
}

@media (max-width: 768px) {
  .banner-slide img {
    min-height: 481px;
    object-fit: cover;
}

.banner-caption {
    font-size: 24px;
    bottom: 30px;
    max-width: 100%;
    line-height: 100%;
}

.banner-slider ul.slick-dots {
  right: 20px;
}
}