.dng-carousel-wrapper {
  width: 100%;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.dng-carousel-wrapper img {
  width: auto !important;
  min-width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767px) {
  .dng-carousel-wrapper img {
    height: 400px;
  }
}

.dng-carousel__nav {
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  cursor: pointer;
}

@media (max-width: 767px) {
  .dng-carousel__nav {
    bottom: 35%;
    transform: translateY(-35%);
    -webkit-transform: translateY(-35%);
  }
}

.dng-carousel__nav-inner {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}

.dng-carousel__next i,
.dng-carousel__prev i {
  width: 44px;
  height: 44px;
  color: var(--e-global-color-a33dd03);
  background: var(--e-global-color-708c8ce);
  text-align: center;
  line-height: 40px;
}

.dng-carousel__next:hover i,
.dng-carousel__prev:hover i {
  background: var(--e-global-color-dc19d0f);
}
