.ova-blog {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding: 0;
  margin: 0;
}
@media (max-width: 1100px) {
  .ova-blog {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .ova-blog {
    grid-template-columns: 1fr;
  }
}
.ova-blog.ova-column_2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .ova-blog.ova-column_2 {
    grid-template-columns: 1fr;
  }
}
.ova-blog.ova-column_4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1400px) {
  .ova-blog.ova-column_4 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1100px) {
  .ova-blog.ova-column_4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .ova-blog.ova-column_4 {
    grid-template-columns: 1fr;
  }
}
.ova-blog .item {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  list-style: none;
}
.ova-blog .item:hover {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.ova-blog .item:hover .media .box-img a img {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transform: scale(1.05);
}
.ova-blog .item:hover .media .box-img .overlay {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  background-color: rgba(0, 0, 0, 0.5);
}
.ova-blog .item:hover .content .post-title a {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  text-decoration: underline;
}
.ova-blog .item:hover .content .post-title a:hover {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  color: var(--secondary);
}
.ova-blog .item:hover .content .read-more a {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  color: var(--primary);
}
.ova-blog .item:hover .content .read-more a:hover {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  color: var(--secondary);
}
.ova-blog .item:nth-child(odd) .category {
  background-color: var(--primary);
}
.ova-blog .item:nth-child(even) .category {
  background-color: var(--secondary);
}
.ova-blog .item .category {
  display: inline-block;
  margin: 0 0 22px 0;
  padding: 8px 25px;
  color: #fff;
  background-color: var(--primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}
.ova-blog .item .media {
  position: relative;
}
.ova-blog .item .media .box-img {
  overflow: hidden;
}
.ova-blog .item .media .box-img a img {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  display: block;
  width: 100%;
  height: 290px;
  object-fit: cover;
  transform: scale(1.001);
}
.ova-blog .item .media .category {
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 25px;
  transform: translateY(50%);
  margin: 0;
}
.ova-blog .item .content {
  padding: 20px;
}
.ova-blog .item .content .post-time {
  display: flex;
  align-items: center;
}
.ova-blog .item .content .post-time .icon-time {
  display: inline-flex;
  line-height: 1;
  margin: 0 7px 0 0;
}
.ova-blog .item .content .post-time .post-date {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  font-weight: 300;
  line-height: 1.3;
}
.ova-blog .item .content .post-comment .right a {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  color: var(--text);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
}
.ova-blog .item .content .post-comment .right a:hover {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  color: var(--primary);
}
.ova-blog .item .content .post-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
}
.ova-blog .item .content .post-meta .item-meta {
  list-style: none;
}
.ova-blog .item .content .post-meta .item-meta i {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.ova-blog .item .content .post-meta .item-meta.post-time {
  margin: 0 30px 0 0;
}
.ova-blog .item .content .post-title {
  margin: 15px 0;
}
.ova-blog .item .content .post-title a {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--heading);
}
.ova-blog .item .content .post-title a:hover {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  color: var(--secondary);
}
@media (max-width: 1200px) {
  .ova-blog .item .content .post-title a {
    font-size: 23px;
  }
}
@media (max-width: 767px) {
  .ova-blog .item .content .post-title a {
    font-size: 20px;
  }
}
.ova-blog .item .content .read-more {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  line-height: 1;
}
.ova-blog .item .content .read-more a {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--text);
}
.ova-blog .item .content .read-more a:hover {
  color: var(--secondary);
}
.ova-blog .item .content .read-more a .text {
  margin: 0 10px 0 0;
}
.ova-blog .item .content .read-more a .icon i {
  font-size: 14px;
}
.ova-blog.template2 {
  grid-template-columns: 2fr 1fr 1fr;
}
@media (max-width: 1200px) {
  .ova-blog.template2 {
    grid-template-columns: 1fr;
  }
}
.ova-blog.template2.ova-column_2 {
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 1024px) {
  .ova-blog.template2.ova-column_2 {
    grid-template-columns: 1fr;
  }
}
.ova-blog.template2.ova-column_4 {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
@media (max-width: 1400px) {
  .ova-blog.template2.ova-column_4 {
    grid-template-columns: 2fr 1fr;
  }
}
@media (max-width: 1024px) {
  .ova-blog.template2.ova-column_4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .ova-blog.template2.ova-column_4 {
    grid-template-columns: 1fr;
  }
}
.ova-blog.template2 .item:first-child .content .post-meta .item-meta.post-comment {
  display: block;
}
.ova-blog.template2 .item:hover .content .read-more a {
  color: var(--secondary);
}
.ova-blog.template2 .item .media .box-img a img {
  height: 425px;
}
@media (max-width: 1024px) {
  .ova-blog.template2 .item .media .box-img a img {
    height: auto;
  }
}
.ova-blog.template2 .item .content {
  padding: 32px 0 15px 0;
}
.ova-blog.template2 .item .content .post-title {
  margin: 7px 0 15px 0;
}
.ova-blog.template2 .item .content .post-meta .item-meta.post-comment {
  display: none;
}
.ova-blog.template2 .item .content .read-more a:hover {
  color: var(--primary);
}
.ova-blog.template3 .item {
  position: relative;
  border-radius: 7px;
}
.ova-blog.template3 .item:hover .media .box-img .overlay {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  background-color: var(--heading);
  opacity: 0.65;
}
.ova-blog.template3 .item:hover .content .top-content .category {
  background-color: var(--secondary);
}
.ova-blog.template3 .item:hover .content .top-content .post-title a {
  text-decoration: none;
  color: #fff;
}
.ova-blog.template3 .item:hover .content .top-content .author .name a {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  color: #fff;
}
.ova-blog.template3 .item:hover .content .bottom-content .post-time {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.ova-blog.template3 .item:hover .content .bottom-content .post-time .icon-time i {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  color: #fff;
}
.ova-blog.template3 .item:hover .content .bottom-content .post-time .post-date {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  color: #fff;
}
.ova-blog.template3 .item:hover .content .bottom-content .divider {
  background-color: #ffffff4d;
}
.ova-blog.template3 .item:hover .content .bottom-content .read-more a {
  color: #fff;
}
.ova-blog.template3 .item .media {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.ova-blog.template3 .item .media .box-img {
  height: 100%;
  border-radius: 9px;
}
.ova-blog.template3 .item .media .box-img a {
  display: block;
  height: 100%;
}
.ova-blog.template3 .item .media .box-img a img {
  height: 100%;
}
.ova-blog.template3 .item .media .box-img .overlay {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  background-color: #fff;
  box-shadow: 0px 5px 60px rgba(28, 35, 31, 0.07);
  opacity: 1;
}
.ova-blog.template3 .item .content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: 7px;
  padding: 40px 50px 25px 50px;
}
.ova-blog.template3 .item .content .top-content .category {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  display: inline-block;
  margin: 0 0 22px 0;
  border-radius: 30px;
  background-color: var(--primary);
}
.ova-blog.template3 .item .content .top-content .post-title {
  margin: 0 0 21px 0;
}
.ova-blog.template3 .item .content .top-content .post-title a:hover {
  color: var(--secondary);
}
.ova-blog.template3 .item .content .top-content .author {
  display: inline-flex;
  align-items: center;
  margin: 0 0 20px 0;
}
.ova-blog.template3 .item .content .top-content .author .image {
  display: inline-flex;
  margin: 0 15px 0 0;
}
.ova-blog.template3 .item .content .top-content .author .image img {
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.ova-blog.template3 .item .content .top-content .author .name a {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  font-size: 18px;
  font-weight: 500;
  color: var(--headding);
}
.ova-blog.template3 .item .content .top-content .author .name a:hover {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  color: var(--primary);
}
.ova-blog.template3 .item .content .bottom-content .post-time {
  display: inline-flex;
  align-items: center;
  margin: 0 0 20px 0;
}
.ova-blog.template3 .item .content .bottom-content .post-time .icon-time i {
  color: var(--primary);
}
.ova-blog.template3 .item .content .bottom-content .post-time .post-date {
  text-transform: uppercase;
}
.ova-blog.template3 .item .content .bottom-content .divider {
  width: 100%;
  height: 1px;
  background-color: #1c231f1a;
  margin: 0 0 24px 0;
}
.ova-blog.template3 .item .content .bottom-content .read-more a {
  color: var(--text);
}
.ova-blog.template3 .item .content .bottom-content .read-more a:hover {
  color: var(--primary);
}