/* two col buttons */

.two-image-links {
	position: relative;
	width: 100%;
	padding: 60px 6%;
	background:var(--black-color-lighter);
	z-index: 10;

}

.two-image-links .max-width {
	display: flex;
	flex-wrap:wrap;
	justify-content: center;
	align-items: center;
}

.two-image-links .lhs,
.two-image-links .rhs{
	margin: 0 1%;
	width: 48%;
	position: relative;
}
.two-image-links .image{
	padding-bottom:56.25%;
	background-size: cover;
	overflow:hidden;
}

.two-image-links .image:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0);
	transition:all 0.3s;
}
.two-image-links .image-link:hover .image:before{
	background:rgba(0,0,0,0.5);
}
.two-image-links .info {
	position: absolute;
	bottom: 15px;
	padding: 15px 30px;
	background: rgba(0,0,0,0.75);
	text-shadow:0 1px 1px rgba(0,0,0,0.5);
}


.two-image-links a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
}

.two-image-links h3 {
	color: var(--white-color);
	font-size: 1.75em;
	font-weight: 700;
	display: block;
	margin: 0;
}

.two-image-links p {
	margin: 5px 0 0 0;
	color: var(--gold-color);
	line-height: 1.25em;
}

@media only screen and (max-width:1025px) {
	.two-image-links {
		padding: 0;
	}
	
	.two-image-links .lhs{
		width:50%;
		margin:0  0 0 0;
	}
	
	.two-image-links .rhs {
		width:50%;
		margin: 0 ;
	}
}

@media only screen and (max-width:769px) {
	.two-image-links .lhs,
	.two-image-links .rhs {
		width: 100%;
	}
	
	.two-image-links .max-width {
		flex-direction: column;
	}
	.two-image-links h3 {
		font-size:1.25em;
	}
	.two-image-links p{
		font-size:0.875em;
	}
}