#instafeed .post {
    position: relative;
    width: 100%;
    height: 345px;
    background: #000;
    display: block;
    overflow: hidden;
  }
  @media only screen and (max-width: 600px) {
    #instafeed .post{
        width: 100%;
    }

  } 
  #instafeed .post .image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    transition: all 0.15s ease-in-out;
  }
  #instafeed .post ul {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: #f69800;
    display: flex;
    justify-content: space-around;
    transform: translateY(-100%);
    transition: all 0.15s ease-in-out;
    color: #fff;
  }
  #instafeed .post ul li {
    text-align: center;
    line-height: 50px;
  }
  #instafeed .post:hover .image {
    opacity: 0.5;
    transform: scale(1.15) translate3d(0, 0, 0);
  }
  #instafeed .post:hover ul {
    transform: translateX(0);
  }