.navbar {
  background: linear-gradient(90.25deg, hsla(0, 0%, 98.8%, .35) 5.68%, hsla(0, 0%, 98.8%, .3) 143.91%);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  width: 100%;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 9999;
}


.slider-section {
  overflow: hidden;
  position: relative;
  /* width: 100%; */
  height: 400px;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  width: 100%;
  height: 100%;
}

.slide-items {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slider-dots {
  text-align: center;
  margin-top: 15px;
  /* background: red; */
  margin-top: -30px;
  position: absolute;
  /* width: 100%; */
  right: 20px;
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;

}

.dot.active {
  background: #00b5b7;
}

@media (max-width: 700px) {
  .slider-section{
    height: 120px;
  }
  .slide-items{
    width: 100%;
    background-size: contain;
  }
}