body { margin: 0; padding: 0; }

#slider { 
  position: relative; 
  max-width: 100%; 
  height: 700px; 
  background-size: cover; 
  background-position: center; 
  overflow: hidden; 
}

.swiper-slide img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.swiper-pagination { 
  position: absolute; 
  bottom: 10px; 
  text-align: center; 
  width: 100%; 
}

.swiper-pagination-bullet { 
  width: 10px; 
  height: 10px; 
  background-color: transparent; /* Transparent background for dots */
  border: 2px solid #fff; /* White border for dots */
  border-radius: 50%; 
  display: inline-block; 
  margin: 0 5px; 
  cursor: pointer; 
  transition: background-color 0.3s ease; /* Smooth transition for background color */
}

.swiper-pagination-bullet-active { 
  background-color: #fff; /* White background for active dot */
}

@media (max-width:940px) { 
  #slider { 
    width: 100%; 
    height: 400px; 
  } 
}

@media (max-width:567px) { 
  #slider { 
    width: 100%; 
    height: 200px; 
  } 
}

@media (max-width:280px) { 
  #slider { 
    width: 100%; 
    height: 200px; 
  } 
}

/* Your additional CSS styles */

.gorsel {
  transition: 0.7s;
  height: 100%;
  display: none;
  overflow: hidden;
}

.dots {
  position: absolute;
  bottom: 5px;
  left: 0;
  color: rgb(98, 98, 98);
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

li {
  list-style: none;
  width: 20px;
  height: 10px;
  background-color: rgb(200, 200, 200);
  opacity: 0.7;
  margin: 3px;
  border-radius: 20px;
  transition: 0.4s;
}

.active {
  width: 20px;
  background-color: rgb(255, 255, 255);
  opacity: 1;
  border: solid 0.1px;
}