.am-slideshow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 9999;
  background-color: #000;
}

#am-slideshow .dp_dmb_repeat_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--fade-duration, 1s) ease-in-out;
  cursor: pointer;
}

.am-slide .et_pb_section {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}

.am-slide .et_pb_row {
  padding: 0;
}

#am-slideshow  .dp_dmb_repeat_item.active {
  opacity: 1;
  z-index: 1;
}

.am-slide-image {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  object-fit: cover;
}

.am-slide-title {
  color: white;
}

#am-slideshow .pagination-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 9;
}

#am-slideshow .pagination-dots .dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #ffffff69;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

#am-slideshow .pagination-dots .dot::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: transparent;
}

#am-slideshow .pagination-dots .dot.active {
  background-color: #FFF;
}

#am-slideshow .pagination-dots .dot:hover {
  background-color: #FFF;
}