.ova-image-box {
  transition: all 0.5s ease;
  position: relative;
}
.ova-image-box:hover {
  transition: all 0.5s ease;
}
.ova-image-box:hover .icon {
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--heading);
}
.ova-image-box:hover .icon i {
  transition: all 0.3s ease;
}
.ova-image-box:hover .img-wrapper {
  transition: all 0.5s ease;
}
.ova-image-box:hover .img-wrapper:before {
  transition: all 0.5s ease;
  opacity: 0.75;
}
.ova-image-box:hover .img-wrapper .icon-arrow {
  transition: all 0.5s ease;
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.ova-image-box.ova-image-box-template1 {
  text-align: center;
}
.ova-image-box.ova-image-box-template2 {
  padding: 40px;
  background-color: #FCF5F5;
}
.ova-image-box.ova-image-box-template2:hover {
  background-color: var(--primary);
}
.ova-image-box.ova-image-box-template2:hover .icon {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.ova-image-box.ova-image-box-template2:hover .icon i {
  color: #fff;
}
.ova-image-box.ova-image-box-template2:hover .title {
  color: #fff;
}
.ova-image-box.ova-image-box-template2:hover .img-wrapper {
  top: 20px;
  opacity: 1;
}
.ova-image-box.ova-image-box-template2 .icon {
  margin: 0 0 30px 0;
  border-bottom: 1px solid rgba(39, 37, 42, 0.1);
}
.ova-image-box.ova-image-box-template2 .title {
  font-size: 18px;
}
.ova-image-box.ova-image-box-template2 .img-wrapper {
  position: absolute;
  top: 30px;
  right: 30px;
  transform: rotate(15deg);
  opacity: 0;
}
.ova-image-box.ova-image-box-template2 .img-wrapper:before {
  content: none;
}
.ova-image-box.ova-image-box-template2 .img-wrapper img {
  width: 70px;
  min-width: 70px;
  height: 90px;
  border-radius: 35px;
}
.ova-image-box .icon {
  transition: all 0.3s ease;
  margin: 40px 0 30px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(39, 37, 42, 0.1);
}
.ova-image-box .icon i {
  transition: all 0.3s ease;
  display: inline-flex;
  font-size: 65px;
  color: var(--primary);
}
.ova-image-box .title {
  transition: all 0.3s ease;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--heading);
  white-space: pre-line;
}
@media (max-width: 1024px) {
  .ova-image-box .title {
    white-space: normal;
  }
}
.ova-image-box a:hover .title {
  transition: all 0.3s ease;
  color: var(--primary);
}
.ova-image-box .img-wrapper {
  transition: all 0.5s ease;
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 150px;
}
.ova-image-box .img-wrapper:before {
  transition: all 0.5s ease;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  background-color: var(--heading);
  opacity: 0;
}
.ova-image-box .img-wrapper .icon-arrow {
  transition: all 0.5s ease;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  cursor: pointer;
}
.ova-image-box .img-wrapper .icon-arrow:hover {
  transition: all 0.3s ease;
  background-color: #fff;
}
.ova-image-box .img-wrapper .icon-arrow:hover i {
  transition: all 0.3s ease;
  color: var(--primary);
}
.ova-image-box .img-wrapper .icon-arrow i {
  transition: all 0.3s ease;
  display: inline-flex;
  transform: rotate(-45deg);
  color: #fff;
}
.ova-image-box .img-wrapper img {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 300px;
  height: 390px;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .ova-image-box .img-wrapper img {
    height: 340px;
  }
}