.ova-offer .offer-img {
  position: relative;
}
.ova-offer .offer-img:hover .info {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
  bottom: 0;
}
.ova-offer .offer-img:hover .info.info-hidden {
  visibility: visible;
  opacity: 1;
  bottom: 28px;
}
.ova-offer .offer-img img {
  width: 100%;
  height: 422px;
  object-fit: cover;
}
.ova-offer .offer-img .info {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  position: absolute;
  bottom: 28px;
  left: 30px;
  width: calc(100% - 60px);
  padding: 0 16px 22px 16px;
  background-color: #fff;
  border-top: 3px solid var(--heading);
}
.ova-offer .offer-img .info.info-hidden {
  visibility: hidden;
  opacity: 0;
  bottom: 0;
}
.ova-offer .offer-img .info .top-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}
.ova-offer .offer-img .info .icon {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  margin: 0 -16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  background-color: var(--heading);
  cursor: pointer;
}
.ova-offer .offer-img .info .icon:hover {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background-color: var(--primary);
}
.ova-offer .offer-img .info i {
  display: inline-flex;
  font-size: 20px;
  color: #fff;
}
.ova-offer .offer-img .info svg {
  display: inline-flex;
  width: 20px;
  fill: #fff;
}
.ova-offer .offer-img .info .title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  cursor: pointer;
}
.ova-offer .offer-img .info .title:hover {
  color: var(--primary);
}
.ova-offer .offer-img .info .description {
  margin: 20px 0 0 0;
}
.ova-offer.template2 .offer-img .info {
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 16px;
  visibility: hidden;
  opacity: 0;
}
.ova-offer.template2 .offer-img .info.info-hidden {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}
.ova-offer.template2 .offer-img .info .top-info {
  align-items: center;
}
.ova-offer .swiper.swiper-loading .swiper-wrapper {
  opacity: 0;
  visibility: hidden;
}
.ova-offer .swiper .swiper-wrapper .swiper-slide {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .ova-offer .swiper .swiper-wrapper .swiper-slide {
    padding: 0 1px;
  }
}
.ova-offer .button-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 30px;
}
.ova-offer .button-dots.swiper-pagination-bullets {
  width: 100% !important;
  left: 50% !important;
  transform: translate(0, -50%) !important;
}
.ova-offer .button-dots .swiper-pagination-bullet {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #D0D7DE;
  opacity: 1;
  margin: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ova-offer .button-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary);
}
.ova-offer .button-dots .swiper-pagination-bullet:hover {
  background-color: var(--primary);
}
.ova-offer .button-nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  margin-top: -35px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ova-offer .button-nav.button-prev {
  left: -30px;
  transform: translate(0, -50%);
}
.ova-offer .button-nav.button-next {
  right: -30px;
  transform: translate(0, -50%);
}
.ova-offer .button-nav i {
  display: flex;
  font-size: 20px;
  color: var(--text);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ova-offer .button-nav i:hover {
  color: var(--primary);
}
.ova-offer .button-nav:focus {
  outline: none;
}
@media screen and (max-width: 768px) {
  .ova-offer .button-nav {
    display: none;
  }
}
.ova-offer:hover .button-nav {
  opacity: 1;
  visibility: visible;
}