.nav-callout {
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 125px;
	align-items: center;
	text-align: left;
	justify-content: center;
	position: relative;
	font-family: "proxima-nova", sans-serif;
	background-color: #3a3a3a;
}
[data-callout-actions] > div:first-of-type .nav-callout {
	background-color: var(--red);
}
.nav-callout .img-container {
	position: relative;
	margin-right: 15px;
}
.nav-callout img {
	width: 52px;
	height: 52px;
	max-width: none;
}
.nav-callout img:nth-child(2) {
	position: absolute;
	left: 0;
	top: 0;
}
.nav-callout img.img-hover {
	opacity: 0;
}
.nav-callout .content-wrapper {
	position: relative;
	z-index: 1;
	text-align: left;
	max-width: 250px;
	line-height: 1.4;
}
.nav-callout .content-wrapper a {
	color: var(--white);
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nav-callout .caption:before {
	content: '';
	display: block;
}
.nav-callout .content {
	font-size: 14px;
	line-height: 28px;
	letter-spacing: .025em;
	font-style: italic;
	display: inline-block;
	margin-top: -1px;
	border-bottom: 2px solid transparent;
}
.nav-callout:hover .content {
	border-bottom: 2px solid var(--white);
}
.nav-callout .caption {
	font-size: 22px;
	font-weight: 300;
	line-height: 10px;
	letter-spacing: .075em;
	text-transform: uppercase;
}
.nav-callout:hover .caption {
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-color: var(--white);
	text-decoration-thickness: 2px;
}
.nav-callout .custom-button .button-link {
	margin: 0px auto -25px;
	padding: 20px 50px 10px;
}

.panel-header .nav-callout .content {
	font-size: 12px;
	line-height: 20px;
	letter-spacing: .075em;
}
.panel-header .nav-callout .caption {
	font-size: 16px;
	line-height: 17px;
}
.panel-header .nav-callout .img-container {
	margin-right: 0;
}
.panel-header .nav-callout img {
	width: 46px;
	height: 46px;
}
.panel-header .nav-callout .content-wrapper {
	text-align: center;
	max-width: 150px;
	line-height: 1;
}
.panel-header .nav-callout .content-wrapper a {
	flex-direction: column;
}
.panel-header div[class$="common_nav_callout"] {
	width: 100%;
}
@media screen and (min-width: 64em){
	.nav-callout {
		min-height: 180px;
		border: none;
	}
	.nav-callout .content {
		font-size: 32px;
		line-height: 30px;
		margin-top: 0;
	}
	.nav-callout .content-wrapper {
		max-width: 405px;
		line-height: 24px;
	}
	.nav-callout .caption {
		font-size: 36px;
		line-height: 39px;
	}
	.nav-callout .img-container {
		margin-right: 20px;
	}
	.nav-callout img {
		transition: opacity 0.3s;
		opacity: 1;
		width: 92px;
		height: 92px;
	}
	.nav-callout:hover img {
		opacity: 1;
	}
	.nav-callout:hover .has-hover img {
		opacity: 0;
	}
	.nav-callout:hover .has-hover img.img-hover {
		opacity: 1;
	}
	.panel-header .nav-callout .content-wrapper {
		max-width: 250px;
	}
	.panel-header .nav-callout .content {
		font-size: 22px;
		line-height: 30px;
	}
	.panel-header .nav-callout .caption {
		font-size: 28px;
		line-height: 35px;
	}
	.panel-header .nav-callout img {
		width: 92px;
		height: 92px;
	}
}