.ova-images-slider .item-images-slider:hover .caption {
  transition: all 0.3s ease;
  bottom: 0;
  visibility: visible;
  opacity: 1;
}
.ova-images-slider .item-images-slider .caption {
  transition: all 0.3s ease;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  width: 100%;
  height: 45px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
.ova-images-slider.owl-carousel {
  position: relative;
}
.ova-images-slider.owl-carousel .item-images-slider {
  padding: 20px;
}
.ova-images-slider.owl-carousel .item-images-slider:hover img {
  opacity: 1;
}
.ova-images-slider.owl-carousel img {
  margin: 0 auto;
  width: auto;
  opacity: 0.2;
}
.ova-images-slider.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}
.ova-images-slider.owl-carousel .owl-dots .owl-dot {
  outline: none;
}
.ova-images-slider.owl-carousel .owl-dots .owl-dot span {
  transition: opacity 0.2s ease;
  display: block;
  width: 6px;
  height: 6px;
  margin: 5px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.5;
  -webkit-backface-visibility: visible;
}
.ova-images-slider.owl-carousel .owl-dots .owl-dot.active span {
  width: 12px;
  border-radius: 5px;
  opacity: 1;
}
.ova-images-slider.owl-carousel .owl-nav {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.ova-images-slider.owl-carousel .owl-nav.disabled {
  display: none;
}
.ova-images-slider.owl-carousel .owl-nav:before {
  position: absolute;
  content: "";
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(50% - 70px);
  height: 1px;
  background-color: rgb(208, 215, 222);
}
.ova-images-slider.owl-carousel .owl-nav:after {
  position: absolute;
  content: "";
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(50% - 70px);
  height: 1px;
  background-color: rgb(208, 215, 222);
}
.ova-images-slider.owl-carousel .owl-nav button {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  width: 28px;
  height: 28px;
  background-color: rgb(22, 32, 61);
}
.ova-images-slider.owl-carousel .owl-nav button i {
  display: inline-flex;
  font-size: 9px;
  color: rgb(118, 120, 124);
}
.ova-images-slider.owl-carousel .owl-nav button:hover {
  background-color: var(--primary);
}
.ova-images-slider.owl-carousel .owl-nav button:hover i {
  color: #fff;
}