.categories-carousel .elementor-element.category-item {
  margin: 10px;
  box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  color: var(--e-global-color-text);
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
  font-weight: var(--e-global-typography-text-font-weight);
}

.categories-carousel .elementor-element.category-item .item-content {
  padding: 20px;
  background-color: white;
}

.categories-carousel .elementor-element.category-item h3 {
  margin: 0 0 10px;
  color: var(--e-global-color-secondary);
}

.categories-carousel .elementor-element.category-item .image-wrap {
  overflow: hidden;
  position: relative;
}

.categories-carousel .elementor-element.category-item .image-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.categories-carousel .elementor-element.category-item .image-wrap:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23fff'%3E%3Cpath d='M460-460H240v-40h220v-220h40v220h220v40H500v220h-40v-220Z'/%3E%3C/svg%3E");
  width: 60px;
  height: 60px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.categories-carousel .elementor-element.category-item .image-wrap img {
  transition: transform 4s ease-out;
}

.categories-carousel .elementor-element.category-item:hover .image-wrap img {
  transform: scale(1.2);
}

.categories-carousel .elementor-element.category-item:hover .image-wrap:before,
.categories-carousel .elementor-element.category-item:hover .image-wrap:after {
  opacity: 1;
}

.slider-nav {
  position: absolute;
  top: 40%;
  left: -114px;
  width: calc(100% + 228px);
  display: flex;
  justify-content: space-between;
  z-index: 99;
}

.slick-arrow {
      padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    background-color: rgb(249 176 0);
    color: #fff !important;
    transition: all 0.3s ease;
}

.slick-arrow:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 7L9 12L15 17' stroke='%23F9B000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  transition: all 0.3s ease;
  filter: brightness(3.5);
}

.slick-arrow.slick-next:after {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 17L15 12L9 7' stroke='%23F9B000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.slick-arrow:hover {
  background-color: #f9b000;
}

.slick-arrow:hover:after,
.slick-arrow:hover:before {
  filter: brightness(0) saturate(100%) invert(100%);
}

.elementor-editor-active .categories-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 0
}

.elementor-editor-active .categories-carousel .elementor-element.category-item {
    width: calc(25% - 20px);
}


@media only screen and (max-width: 1530px) {
  .slider-nav  {
    width: 100%;
    left: 0px;
  }

  .categories-carousel {
    padding: 0 50px;
  }
}