.elementor-widget-mellis_elementor_ova_video .elementor-widget-container {
  display: flex;
}

.ova-video {
  display: inline-block;
  position: relative;
}
.ova-video.version_1 .ova-img {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.ova-video.version_1 .ova-img .title {
  font-family: var(--primary-font);
  font-size: 12px;
  text-transform: uppercase;
}
.ova-video.version_2 {
  position: relative;
  flex: 0 0 100%;
}
.ova-video.version_2 .ova-img .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  padding: 0 20%;
  width: 100%;
}
@media (max-width: 1100px) {
  .ova-video.version_2 .ova-img .title {
    font-size: 85px;
    padding: 0 10%;
  }
}
@media (max-width: 767px) {
  .ova-video.version_2 .ova-img .title {
    font-size: 45px;
  }
}
.ova-video.version_2 .ova-img img {
  display: flex;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.ova-video.version_2 .ova-img .icon-content-view {
  position: absolute;
  bottom: 0;
  right: 0;
}
.ova-video.version_2 .ova-img .icon-content-view .content {
  width: 165px;
  height: 150px;
}
@media (max-width: 600px) {
  .ova-video.version_2 .ova-img .icon-content-view .content {
    width: 80px;
    height: 80px;
  }
}
.ova-video.version_2 .ova-img .icon-content-view .content i {
  font-size: 30px;
}
.ova-video .title {
  margin: 0;
  line-height: 1;
}
.ova-video .icon-content-view {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.ova-video .icon-content-view.video_active {
  cursor: pointer;
}
.ova-video .icon-content-view .content {
  position: relative;
  width: 105px;
  height: 100px;
  min-width: 64px;
  min-height: 64px;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  transition: all 0.3s ease;
}
.ova-video .icon-content-view .content i {
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 21px;
  display: inline-flex;
  z-index: 1;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: lineScale 2.5s linear infinite;
}
@media (max-width: 767px) {
  .ova-video .icon-content-view .content i {
    animation: unset;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
}
.ova-video .icon-content-view .content:hover {
  transition: all 0.3s ease;
  background-color: transparent;
}
.ova-video .icon-content-view .content:hover i {
  color: var(--primary);
}
.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%;
}
@keyframes lineScale {
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.5);
    -moz-animation: translate(-50%, -50%) scale(1.5);
    transform: translate(-50%, -50%) scale(1.5);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -moz-animation: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
}