.ova_feature2 {
  width: 100%;
  position: relative;
  margin: 0;
}
.ova_feature2 .box {
  display: block;
  transform-style: preserve-3d;
  perspective: 1000px;
  padding: 0;
  border: 0;
}
.ova_feature2 .box .content_1 {
  background-repeat: no-repeat;
  background-size: cover;
  transform: rotateY(0deg);
  transform-style: preserve-3d;
  min-height: 300px;
  transition: transform 0.6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
}
.ova_feature2 .box .content_1 .title a {
  color: #ffffff;
  font-weight: 600;
  font-size: 36px;
  line-height: 30px;
}
.ova_feature2 .box .content_2 {
  background: #23d3d3;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 2px;
  transform: rotateY(180deg);
  transform-style: preserve-3d;
  min-height: 300px;
  transition: transform 0.6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0px 20px 0px 20px;
}
.ova_feature2 .box .content_2 .excerpt {
  display: block;
  font-size: 20px;
  line-height: 26px;
  color: #ffffff;
}
.ova_feature2 .box .content_2 .readmore {
  display: block;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  position: relative;
  font-weight: 600;
}
.ova_feature2 .box .content_2 .readmore:after {
  position: absolute;
  content: "";
  width: 96%;
  left: 0;
  background: #ffffff;
  height: 2px;
  bottom: -1px;
}
.ova_feature2 .box .content_2 .readmore:hover {
  color: #202b5d;
  transition: 0.4s ease;
}
.ova_feature2 .box .content_2 .readmore:hover:after {
  background: #202b5d;
  transition: 0.4s ease;
}
.ova_feature2 .box .content_2 .readmore svg {
  width: 20px;
  height: 20px;
  margin-left: -5px;
}
.ova_feature2 .box:hover .content_1 {
  transform: rotateY(-180deg);
  transform-style: preserve-3d;
}
.ova_feature2 .box:hover .content_2 {
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}