.box{
    background: #ff0000;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease 0s;
}
.box:hover{ box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
.box img{
    width: 100%;
    height: auto;
    transition: all 0.45s ease;
}
.box:hover img{
    opacity: 0.3;
    filter: grayscale(100%);
}
.box .box-content{
    color: #ff0000;
    background: #fff;
    width: 85%;
    padding: 15px 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    transform: translateX(-200%) translateY(-50%) rotate(-180deg);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transition: all 300ms 0ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.box:hover .box-content{
    transform: translateX(-50%) translateY(-50%) rotate(0deg);
    transition: all 500ms 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.box .title{
    font-size: 25px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0 0 3px;
}
.box .post{
    font-size: 15px;
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.btn-lancelot  {
  color: #e50914;
  background-color: #ffffff;
  border: 1px solid #000000;

}
.btn-lancelot:hover {
  background-color: #ffffff;
  color: #e50914;
  border: 1px solid #000000;
}

@media only screen and (max-width:990px){
    .box{ margin: 0 0 30px; }
    .box .title {
        margin: 0 20px;
        font-size: 14px;
    }
    .box .post {
        font-size: 10px;
    }    
}