.my-text {
  /* add these styles to make the text move smoothly */
  display: inline-block;
  animation: slide-left 10s ease forwards;
  overflow: hidden;
  line-height: 1;
}

.half-circle {
  height: 160px;
  overflow: hidden;
}
.half-circle .img-container {
  position: relative;
}
.half-circle .img-container:hover:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}
.half-circle img {
  border-radius: 50%;
  position: relative;
}

.categories-slider .slick-arrow {
  display: none !important;
}
.categories-slider .slick-prev {
  left: -10px;
  height: 50px;
  width: 30px;
  z-index: 3;
}
.categories-slider .slick-prev:before {
  font-size: 50px;
}
.categories-slider .slick-next {
  right: -10px;
  height: 50px;
  width: 30px;
  z-index: 3;
}
.categories-slider .slick-next:before {
  font-size: 50px;
}

.brand-slider .slick-prev {
  left: -10px;
}
.brand-slider .slick-next {
  right: -10px;
}

.categories-slider:hover .slick-arrow {
  display: inline-block !important;
}

.brand-slider .slick-track {
  display: flex;
  align-items: center;
}
.brand-slider .slick-track img {
  max-height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes slide-left {
  /* use % to specify the animation at different stages (in this case, 0% and 100%) */
  0% {
    transform: translateX(100vw);
  }
  100% {
    /* adjust the value to control how much the text moves */
    transform: translateX(0);
  }
}
@media (max-width: 1024px) {
  .half-circle {
    height: 90px;
  }
}/*# sourceMappingURL=dashboard.css.map */