.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 .owl-nav {
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 1;
  transform: translateY(-50%);
  background: transparent;
  direction: ltr;
}
.ova-news-update .content-right .owl-nav .owl-prev i, .ova-news-update .content-right .owl-nav .owl-next i {
  display: inline-flex;
  font-size: 20px;
  color: #fff;
}
.ova-news-update .content-right .owl-nav .owl-prev i:hover, .ova-news-update .content-right .owl-nav .owl-next i:hover {
  color: var(--primary);
}
.ova-news-update .content-right .owl-nav .owl-prev {
  margin-right: 10px;
}
.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;
}

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