.post{
    opacity: 0.4;
    transition: all 1s ease-in-out;
    border-bottom: 1px solid #77B195;
}
.post:hover{
    opacity: 1;
}
.post img{
    right:-100%;
    transition: all 0.7s ease-in-out;
}
.post:hover img{
    right: 0%;
}
.hover-progress-bar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0; 
    height: 1px; 
    background-color: #77B195; 
    transition: width 1s ease; 
  }
  
  .hover-progress-bar:hover::after {
    width: 100%; /* Fill the entire width */
  }
@media screen and (max-width:991px){
    .post{
        opacity: 1;
    }
}
