.ova-video .icon-content-view {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 15px;
  flex-wrap: nowrap;
}
.ova-video .icon-content-view.video_active {
  cursor: pointer;
}
.ova-video .icon-content-view:hover .content:before {
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ova-video .icon-content-view .content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  background-color: var(--secondary);
  border-radius: 50%;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ova-video .icon-content-view .content i {
  font-size: 11px;
  z-index: 1;
  color: #fff;
}
.ova-video .icon-content-view .content:before {
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background-color: transparent;
  border: 1px solid transparent;
}
.ova-video .icon-content-view .content:hover {
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--primary);
}
.ova-video .icon-content-view .ova-text {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--heading);
}
.ova-video .icon-content-view .ova-text a {
  color: var(--heading);
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ova-video.video-template2 {
  display: flex;
  position: relative;
}
.ova-video.video-template2 .image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  max-width: 479px;
  height: 537px;
}
@media (max-width: 479px) {
  .ova-video.video-template2 .image {
    height: auto;
  }
}
.ova-video.video-template2 .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
.ova-video.video-template2 .image .overlay {
  width: 100%;
  height: 100%;
  background: var(--secondary);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ova-video.video-template2 .image:hover .overlay {
  width: 100%;
  height: 100%;
  background: var(--heading);
  position: absolute;
  opacity: 0.3;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ova-video.video-template2 .icon-content-view {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ova-video.video-template2 .icon-content-view .content {
  margin: 0;
  background-color: unset;
  width: 150px;
  height: 150px;
}
.ova-video.video-template2 .icon-content-view .content:before {
  border: 1px solid #ffffff;
  animation: zoomBig 1.5s linear infinite;
  transform-origin: center;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ova-video.video-template2 .icon-content-view .content i {
  font-size: 26px;
}
@keyframes zoomBig {
  from {
    width: 30%;
    height: 30%;
    opacity: 1;
  }
  to {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}
.ova-video .modal-container {
  display: none;
  background-color: rgba(0, 0, 0, 0.2);
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 10;
}
.ova-video .modal-container .modal {
  width: 900px;
  height: 500px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .ova-video .modal-container .modal {
    width: 768px;
    height: 450px;
  }
}
@media screen and (max-width: 788px) {
  .ova-video .modal-container .modal {
    width: 600px;
    height: 350px;
  }
}
@media screen and (max-width: 620px) {
  .ova-video .modal-container .modal {
    width: 400px;
    height: 250px;
  }
}
@media screen and (max-width: 420px) {
  .ova-video .modal-container .modal {
    width: 320px;
    height: 200px;
  }
}
@media screen and (max-width: 330px) {
  .ova-video .modal-container .modal {
    width: 300px;
    height: 180px;
  }
}
.ova-video .modal-container .modal i {
  position: absolute;
  right: -10px;
  top: -35px;
  padding: 10px;
  cursor: pointer;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ova-video .modal-container .modal i:hover {
  color: #000;
}
.ova-video .modal-container .modal .modal-video {
  width: 100%;
  height: 100%;
}