.ova-news-update {
  display: flex;
  align-items: center;
  background-color: var(--heading);
}
@media screen and (max-width: 767px) {
  .ova-news-update {
    flex-direction: column;
  }
}
.ova-news-update .content-left {
  width: 140px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  column-gap: 10px;
  border-right: 1px solid #1e3165;
}
@media screen and (max-width: 767px) {
  .ova-news-update .content-left {
    justify-content: center;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #1e3165;
  }
}
.ova-news-update .content-left .icon {
  line-height: 1;
}
.ova-news-update .content-left .icon i {
  font-size: 23px;
  color: var(--primary);
}
.ova-news-update .content-left .icon svg {
  width: 23px;
  height: 23px;
  fill: var(--primary);
}
.ova-news-update .content-left .title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.ova-news-update .content-right {
  position: relative;
  width: calc(100% - 140px);
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .ova-news-update .content-right {
    text-align: center;
    width: 100%;
    padding: 30px;
  }
}
.ova-news-update .content-right .title {
  transition: all 0.3s linear;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.ova-news-update .content-right .title a {
  color: #B0B8CF;
}
.ova-news-update .content-right .title a:hover {
  color: #fff;
}
.ova-news-update .swiper.swiper-loading .swiper-wrapper {
  opacity: 0;
  visibility: hidden;
}
.ova-news-update .button-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  z-index: 2;
}
.ova-news-update .button-dots.swiper-pagination-bullets {
  width: 100% !important;
  left: 50% !important;
  transform: translate(0, -50%) !important;
}
.ova-news-update .button-dots .swiper-pagination-bullet {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: inherit;
  background-color: #FFFFFF;
  opacity: 0;
  -webkit-backface-visibility: visible;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ova-news-update .button-dots .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
  opacity: 0.6;
}
.ova-news-update .button-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary);
}
.ova-news-update .swiper-nav {
  position: absolute;
  top: 50%;
  right: 30px;
  display: flex;
  gap: 10px;
  line-height: 1;
  transform: translateY(-50%);
  background: transparent;
  z-index: 2;
}
.ova-news-update .swiper-nav .button-nav {
  cursor: pointer;
}
.ova-news-update .swiper-nav .button-nav i {
  display: inline-flex;
  font-size: 20px;
  color: #FFFFFF;
}
.ova-news-update .swiper-nav .button-nav i:hover {
  color: var(--primary);
}

.rtl .ova-news-update .content-left {
  border-left: 1px solid #1e3165;
  border-right: none;
}
.rtl .ova-news-update .content-right .swiper-nav {
  left: 0;
  right: unset;
}