.ova-gallery-slide .gallery-slide-img {
  position: relative;
  overflow: hidden;
}
.ova-gallery-slide .gallery-slide-img:before {
  transition: all 0.4s ease-out 0s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0.09%, rgba(0, 0, 0, 0.99) 100%);
  opacity: 0;
}
.ova-gallery-slide .gallery-slide-img:hover:before {
  transition: all 0.4s ease-out 0s;
  opacity: 1;
}
.ova-gallery-slide .gallery-slide-img:hover.grayscale img {
  filter: none;
}
.ova-gallery-slide .gallery-slide-img:hover .info-normal {
  transition: all 0.4s ease;
  top: 60%;
  opacity: 0;
  visibility: hidden;
}
.ova-gallery-slide .gallery-slide-img:hover .info {
  transition: all 0.4s ease;
  bottom: 35px;
  opacity: 1;
  visibility: visible;
}
.ova-gallery-slide .gallery-slide-img.grayscale img {
  filter: grayscale(100%);
}
.ova-gallery-slide .gallery-slide-img img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .ova-gallery-slide .gallery-slide-img img {
    height: 360px;
  }
}
.ova-gallery-slide .gallery-slide-img .view-detail {
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  width: 44px;
  height: 44px;
  background-color: #fff;
  border-radius: 50%;
  color: var(--primary);
  z-index: 1;
  cursor: pointer;
}
.ova-gallery-slide .gallery-slide-img .view-detail i {
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  display: inline-flex;
  font-size: 14px;
  transform: rotate(-45deg);
}
.ova-gallery-slide .gallery-slide-img .view-detail:hover {
  transition: all 0.3s ease;
  background-color: var(--secondary);
}
.ova-gallery-slide .gallery-slide-img .view-detail:hover i {
  transform: rotate(-135deg);
  color: #fff;
}
.ova-gallery-slide .gallery-slide-img .info-normal {
  transition: all 0.4s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 20px;
  text-align: center;
}
.ova-gallery-slide .gallery-slide-img .info-normal .title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
}
.ova-gallery-slide .gallery-slide-img .info-normal .icon {
  position: absolute;
  left: calc(50% + 50px);
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary);
}
.ova-gallery-slide .gallery-slide-img .info-normal .icon i {
  display: inline-flex;
  font-size: 30px;
  color: #fff;
}
.ova-gallery-slide .gallery-slide-img .info {
  transition: all 0.4s ease;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100% - 60px);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
}
.ova-gallery-slide .gallery-slide-img .info .title {
  margin: 0 0 10px 0;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
}
.ova-gallery-slide .gallery-slide-img .info .description {
  margin: 0 0 20px 0;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
}
.ova-gallery-slide .gallery-slide-carousel.swiper-loading {
  visibility: hidden;
}
.ova-gallery-slide .gallery-slide-carousel.show_dots {
  padding-bottom: 50px;
}
.ova-gallery-slide .gallery-slide-carousel .swiper-pagination {
  bottom: 0px;
}
.ova-gallery-slide .gallery-slide-carousel .swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 5px;
  border-radius: 0;
}
.ova-gallery-slide .gallery-slide-carousel .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}

.elementor-widget-container #ova-gallery-slide-control button {
  transition: all 0.3s ease;
  width: 46px;
  height: 46px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: none;
  margin: 0;
  padding: 0;
}
.elementor-widget-container #ova-gallery-slide-control button.owl-next {
  background-color: var(--primary);
}
.elementor-widget-container #ova-gallery-slide-control button.owl-next:hover {
  background-color: var(--secondary);
}
.elementor-widget-container #ova-gallery-slide-control button.owl-prev {
  background-color: var(--heading);
}
.elementor-widget-container #ova-gallery-slide-control button.owl-prev:hover {
  background-color: var(--text);
}
.elementor-widget-container #ova-gallery-slide-control button i {
  display: inline-flex;
  font-size: 12px;
  color: #fff;
}