@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  overflow-x: hidden;
}
.owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}
.owl-dot {
  width: 14px;
  height: 14px;
  background-color: #444;
  border: 2px solid #d4af37;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.owl-dot.active,
.owl-dot:hover {
  background-color: #d4af37;
  transform: scale(1.2);
}
@media (max-width: 640px) {
  .owl-dot {
    width: 18px;
    height: 18px;
  }
}

