.ova-simple-image-carousel .simple-image-carousel.swiper-loading {
  visibility: hidden;
}
.ova-simple-image-carousel .simple-image-carousel .ova-button-prev, .ova-simple-image-carousel .simple-image-carousel .ova-button-next {
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s linear;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  z-index: 99;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  background: var(--primary);
}
.ova-simple-image-carousel .simple-image-carousel .ova-button-prev i, .ova-simple-image-carousel .simple-image-carousel .ova-button-next i {
  color: var(--heading);
  transition: all 0.3s linear;
  font-size: 16px;
  height: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.ova-simple-image-carousel .simple-image-carousel .ova-button-prev {
  left: -50px;
}
.ova-simple-image-carousel .simple-image-carousel .ova-button-next {
  right: -50px;
}
.ova-simple-image-carousel .simple-image-carousel .swiper-pagination {
  bottom: 0px;
}
.ova-simple-image-carousel .simple-image-carousel .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
.ova-simple-image-carousel .simple-image-carousel .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}
.ova-simple-image-carousel .simple-image-carousel.show_dots {
  padding-bottom: 50px;
}
.ova-simple-image-carousel .simple-image-carousel.show_dots .ova-button-prev, .ova-simple-image-carousel .simple-image-carousel.show_dots .ova-button-next {
  top: calc(50% - 25px);
}
.ova-simple-image-carousel .simple-image-carousel:hover .ova-button-prev {
  left: 10px;
}
.ova-simple-image-carousel .simple-image-carousel:hover .ova-button-next {
  right: 10px;
}
.ova-simple-image-carousel .simple-image-carousel .item .simple-image-carousel-img {
  border-radius: 14px;
}
.ova-simple-image-carousel .simple-image-carousel .item .simple-image-carousel-img img {
  object-fit: cover;
}
.ova-simple-image-carousel .simple-image-carousel .item .caption {
  transition: all 0.3s ease;
  display: inline-block;
  direction: ltr;
  padding-top: 15px;
  font-size: 24px;
  line-height: 29px;
  color: #fff;
  text-align: left;
}
.ova-simple-image-carousel.v2 .simple-image-carousel .item {
  position: relative;
}
.ova-simple-image-carousel.v2 .simple-image-carousel .item .simple-image-carousel-img {
  position: relative;
  border-radius: 0;
}
.ova-simple-image-carousel.v2 .simple-image-carousel .item .simple-image-carousel-img:before {
  transition: all 0.3s ease;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
}
.ova-simple-image-carousel.v2 .simple-image-carousel .item .caption {
  position: absolute;
  bottom: 0px;
  left: 20px;
  opacity: 0;
  padding-top: 0;
  font-size: 20px;
}
.ova-simple-image-carousel.v2 .simple-image-carousel .item .caption .line {
  display: inline-block;
  content: "";
  width: 22px;
  height: 4px;
  background-color: #c7ff00;
}
.ova-simple-image-carousel.v2 .simple-image-carousel .item:hover .caption {
  transition: all 0.3s ease;
  opacity: 1;
  bottom: 22px;
}
.ova-simple-image-carousel.v2 .simple-image-carousel .item:hover .simple-image-carousel-img:before {
  transition: all 0.3s ease;
  opacity: 1;
}

.ova-backdrop-filter {
  backdrop-filter: blur(30px);
}
@media screen and (max-width: 1024px) {
  .ova-backdrop-filter {
    backdrop-filter: unset;
  }
}

.ova-custom-menu .main-navigation ul.menu li:before {
  opacity: 0;
  position: absolute;
  content: "";
  bottom: -34px;
  left: calc(50% - 2px);
  width: 2px;
  height: 26px;
  background-color: #c7ff00;
}
@media (max-width: 1024px) {
  .ova-custom-menu .main-navigation ul.menu li:before {
    content: none;
  }
}
.ova-custom-menu .main-navigation ul.menu li:hover:before {
  opacity: 1;
}

.ova-overflow-hidden {
  overflow: hidden;
}