@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mulish", sans-serif;

}

body {
  background-color: #000612;

  color: white;

}

.dots div.active {
  width: 50px;
}

.menulist {
  transition: all 0.3s;
}

.wrapper {
  position: relative;
  margin: 0 auto;

  height: 238px;
  overflow: hidden;
  cursor: grab;
}

.wrapper .tab-box {
  display: flex;
  gap: 3rem;

  overflow-x: hidden;

}

.tab-box article {



  list-style-type: none;

}

.blurred {
  position: absolute;
  top: 0;
  background: linear-gradient(-90deg, #000612 70%, transparent);
  right: 0;
  width: 100px;
  height: 100%;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

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

.dots div {
  width: 14px;
  height: 14px;
  transition: border-radius 0.5s ease-in-out;
}

.dots .active {
  border-radius: 10px;
  width: 20px;
  transition: width 0.5s ease-in-out;
}