.nav-callout {
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 180px;
	align-items: center;
	text-align: center;
	justify-content: center;
	border-top: 2px solid #fff;
	position: relative;
}
.nav-callout img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}
.nav-callout .content-wrapper {
	max-width: 300px;
	padding: 30px 20px;
}

.nav-callout .content-wrapper a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    text-decoration: none;
}

.nav-callout .content-wrapper .custom-button {
	position: relative;
	display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nav-callout .custom-button .button-link {
	margin: 0px auto -25px;
	padding: 20px 50px 10px;
}

.nav-callout .custom-button .content {
	padding: 0px 50px;
    color: white;
    text-decoration: none;
    position: relative;
    font-family: 'lfm_fontregular';
    font-size: 45px;
	line-height: 1;
    letter-spacing: 0.02em;
}

.nav-callout .caption {
	font-size: 40px;
	line-height: 45px;
	letter-spacing: .075em;
    font-weight: 600;
	font-family: 'Inter', sans-serif;
	color: #fff;
    text-transform: capitalize;
}

@media screen and (min-width: 64em){
	.nav-callout {
		min-height: 100%;
		border: none;
		background-color: #00234c;
	}
	.nav-callout img {
		transition: opacity 0.3s;
		transition-delay: 0.6s;
		opacity: 0;
	}
	.desktop-menu.active .nav-callout img {
		opacity: 1;
		z-index: 0;
	}
	.desktop-menu.active .nav-callout .content-wrapper {
		z-index: 1;
	}
}
