body {
            margin-top:50px !important;
        }
        h3,p{
            margin: 0;
        }
        .box:before{
            content: "";
            position: absolute;
					
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color:rgba(0,0,0,0.9);
            opacity: 0;
            transition: all 0.5s ease 0s;
        }
        .box:hover:before{
            opacity: 0.5;
        }
        .box{
            text-align: center;
            position: relative;
            overflow: hidden;
            color: #fff;
					 
					height: 177px;
					object-fit: fill;
					         }
        .box:after{
            content: " ";
            position: absolute;
            height: 100%;
            width: 100%;
            left: 170%;
            top: 0;
            transform: skewX(45deg);
            transition: all 1s ease 0s;
            background-color:#2F73B1;
            z-index: 1;
        }
        .box:hover:after{
            left: -170%;
            top: 0;
        }
        .box img{
            width: auto;
            height: auto;
					 
		 }
        .box .box-content{
            position: absolute;
					             			bottom: -100%;
            left: 0;
            width: 100%;
            transition: all 0.5s ease 0s;
        }
        .box:hover .box-content{
        bottom: 20%;   
				       }
        .box .box-content .name{
            font-size:20px;
            font-weight: 700;
            margin: 0 0 10px;
            display: block;
            text-transform:uppercase;
            letter-spacing: 1px;
        }
        .box .box-content .post{
            display: block;
            font-size: 15px;
            font-style: italic;
            font-weight: 600;
        }

 
        @media screen and (max-width:990px){
            .box{
                margin-bottom: 30px !important;
            }
        }
.row {
  display: flex;
}

/* Create two equal columns that sits next to each other */
.column {
  flex: 50%;
  height: auto; /* Should be removed. Only for demonstration */
}