.imageList > a{
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.imageList > a:hover,
.imageList > a:focus {
	-webkit-transform:translateY(-7px);
	-moz-transform:translateY(-7px);
	-o-transform:translateY(-7px);
	-ms-transform:translateY(-7px);
	transform:translateY(-7px);
	text-decoration:none !important;
}

.imageList > a h2{
    font-size: 24px;
    font-weight: 600;
}

.imageList > a img {
    max-width:400px;
}

/* Large devices (LAPTOP VIEW, 992px and up) */
@media (min-width: 992px) {

    .imageList > a{
        display: flex;
    }

    .imageList > a h2{
        margin-left: 10px;
    }
}