.blog-related h2 {
  color:#fac90f;
  text-align:center;
font-size: 35px;
    padding: 0 0 20px;
}

.post-card {
  position:relative;
  background:#1e1a19;
  box-shadow: 0px 0px 36px 4px rgba(0,0,0,0.68);
-webkit-box-shadow: 0px 0px 36px 4px rgba(0,0,0,0.68);
-moz-box-shadow: 0px 0px 36px 4px rgba(0,0,0,0.68);
}

.related-blog-tags {
  position: absolute;
  z-index:9;
  display:block;
  color:#FFF;
background:#182a54;
top: 150px;
        left: -4px;
        padding: 5px 40px 5px 20px;
    font-size: 12px;
}


.rel-blog-cont {
      display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.bh-hor {
   position:relative;
  margin-bottom: 60px;
  display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

/* .bh-hor:hover {
  border-bottom:3px solid #4eace1;
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.15);
-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.15);
-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.15);
} */

.bh-hor .ft-image {
    background-size: cover !important;
    background-position: center !important;
height:200px;
}

/* .bh-hor .read-more-link {
  position: absolute;
    bottom: 20px;
    right: 30px;
} */

.bh-hor .content {
  position:relative;
    display: flex;
    flex-direction: column;
    height: 270px;
    justify-content: flex-start;
}

.bh-hor .read-more-link a {
  font-weight:bold;
  text-transform:uppercase;
  text-decoration:none;
  font-size:14px;
}

.bh-hor .content .proj-category {
  padding: 20px 30px 0px;
    color:#b51d80;
font-size: 14px;
    font-weight: 700;
}

.bh-hor .content .post-title {
    color: #FFF;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Figtree';
    line-height: 20px;
    padding: 4px 30px 20px;
}

.bh-hor .excerpt {
padding: 0 30px;
}

.bh-hor .excerpt p,
.bh-hor .excerpt p span,
.bh-hor .excerpt em,
.bh-hor .excerpt em span {
  font-size: 14px !important;
    line-height: 1.3em !important;
  color:#FFF !important;
}

.bh-hor .read-more-link a {
  text-transform:uppercase;
  text-decoration:none;
  font-size:12px;
  color:#FFF;

}


.bh-hor .read-more-link {
  color:#FFF;
  position: absolute;
    bottom: 0px;
    right: 0;
    left: 0;
    text-align: center;
    background: linear-gradient(90deg, #ea651d, #ea651d, #d92b2b, #02adf0, #9dc1fc, #d92b2b, #ffaa0d, #ea651d);
  background-size: 400%;
overflow: hidden;
  z-index: 1;
  text-transform:uppercase;
  transition: color 190ms ease-in-out;
  padding: 10px 0;
}

.bh-hor .read-more-link:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(90deg, #ea651d, #ea651d, #d92b2b, #02adf0, #9dc1fc, #d92b2b, #ffaa0d, #ea651d);
  background-size: 400%;
  opacity: 0;
  transition: .5s;
}

.bh-hor .read-more-link:hover {
  animation: animate 10s linear infinite;
  color:#FFF;
}
.bh-hor .read-more-link:hover::before {
  filter: blur(25px);
  opacity: .8;
  animation: animate 10s linear infinite;
}
@keyframes animate {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 400%;
  }
}