/*
COLORS
Red - #bd2126
Red Highlight - #ff2f1c
Navy - #0d223f
Navy Highlight - #0e2d57
Royal - #1d64c5
Light Gray - #eeeeee
Text Gray - #86868b
White - #ffffff
Black - #000000
*/

/* IMAGE LINKS */
.module.image-links{
	padding: 80px 0;
	text-align: center;
}

@media(max-width: 1023px){
	.module.image-links{
		padding: 20px 0;
	}
}

.module.image-links .image-link{
	position: relative;
	bottom: 0;
	display: inline-block;
	vertical-align: top;
	margin: 0 11px;
	width: calc((100% / 3) - 22px);
	height: 240px;
	color: #ffffff;
	font-size: 35px;
	text-decoration: none;
	border-radius: 20px;
	background-color: #0d223f;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	box-shadow: 0px 15px 20px -15px rgba(0,0,0,0.50);

	-moz-transition: all 0.25s linear;
	-webkit-transition: all 0.25s linear;
	transition: all 0.25s linear;
}

@media(max-width: 1023px){
	.module.image-links .image-link{
		display: block;
		margin: 20px; auto;
		width: auto;
		height: auto;
	}
}

.module.image-links .image-link:hover{
	bottom: 10px;
	box-shadow: 0px 35px 20px -15px rgba(0,0,0,0.50);
}

.module.image-links .image-link:first-child{
	margin: 0 11px 0 0;
}

@media(max-width: 1023px){
	.module.image-links .image-link:first-child{
		margin: 20px; auto;
	}
}

.module.image-links .image-link:last-child{
	margin: 0 0 0 11px;
}

@media(max-width: 1023px){
	.module.image-links .image-link:last-child{
		margin: 20px; auto;
	}
}

.module.image-links .image-link .table{
	border-radius: 20px;
	background-color: rgba(7,27,54,0.35);
}

@media(max-width: 1023px){
	.module.image-links .image-link .table .table-cell{
		padding: 20px;
	}
}

.module.image-links .image-link .title{
	color: #ffffff;
}