/* Custom Styles */
@tailwind base;
@tailwind components;
@tailwind utilities;

html{
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.roboto-slab-font {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Additional styling for smoother transitions */
.slider-container {
  overflow: hidden;
  width: 100%;
  max-width: 1464px;
}

.slider {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.sm\:block {
    display: block !important;
}

/* Mobile view */
@media (max-width: 768px) {
  .slider-container {
      width: 100%;
  }
}

@media (max-width: 600px) {
  .slide {
    min-width: 51.5%;
    box-sizing: border-box;
  }
}

/* Dots styling */
.dot-container {
  display: flex;
  justify-content: center;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #717171;
}

@media (max-width: 640px) {
    .hidden {
        display: none !important;
    }
}
/* Slider end */