.image-grid {
	height: auto;
	width: 100%;
}
.image-grid img {
	height: 100%;
	width: 100%;
}
.brick {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;   
}
.brick img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(0, 0, 0, 0.5); ;
	opacity:80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
	padding: 25px 10px;
	color: #000000;
	transform: translateX(-100%);
	opacity: 0; 
	transition: transform 0.5s, opacity 0.5s;        
    line-height: 1.5;
}
.overlay-content h4{
	color: #fff;
	font-family: Montserrat-Medium;
	margin:0;
	text-transform: uppercase;
	letter-spacing: 0px;
}
.overlay-content p{
	color: #000000;
	font-family: Montserrat-Regular;
	margin:0;
	text-transform: capitalize;
	font-weight: bold;
}
.brick:hover .overlay-content {
    transform: translateX(0);
    opacity: 80%; 
}
@media (min-width: 1025px){
	.image-row {
	   padding: 0 20px;
	}
}
@media (min-width:375px) {
    .qodef-content-grid-1300 .qodef-content-grid {
        width: 100% !important;
    }
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	    max-width:100% !important;
    }
}