.callout {
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 125px;
	align-items: center;
	text-align: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.callout:before {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.6;
	background-color: black;
	content: '';
	transition: opacity ease 0.6s;
}
.callout:hover:before {
	opacity: 0;
}
.callout.short {
	min-height: 105px;
}
.callout img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: all ease-out 1.2s;
}
.callout:hover img {
	transform: scale(1.2);
}

.callout .content-wrapper {
	position: relative;
	z-index: 11;
	text-align: center;
	margin-top: 10px;
}
.callout a.button-link {
	text-decoration: none;
	color: #fff;
}
.callout .title {
	text-transform: uppercase;
	font-size: 19px;
	line-height: 19px;
	letter-spacing: .04em;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: bold;
	margin-bottom: 5px;
}
.callout .sub-title {
	font-size: 15px;
	line-height: 11px;
	font-weight: 300;
	font-style: italic;
	align-items: center;
	justify-content: center;
	display: flex;
}
.callout .content {
	padding: 0 10px;
}
.callout .sub-title .inner {
	display: inline-block;
	vertical-align: middle;
}
.callout.short .title {
	font-size: 17px;
	line-height: 19px;
}
.callout.short .sub-title .inner {
	display: none;
}
.callout .arrow {
	background-color: var(--Yellow);
	color: var(--Gray);
	font-size: 17px;
	line-height: 30px;
	width: 30px;
	height: 30px;
	border-radius: 15px;
	text-align: center;
	display: inline-block;
	margin: 0 0 0 10px;
}
.callout .arrow i {
	padding-left: 2px;
}

@media screen and (min-width: 64em){
	.callout {
		min-height: 240px;
	}
	.callout.short {
		min-height: 165px;
	}
	.callout .title {
		font-size: 27px;
		line-height: 25px;
	}
	.callout .sub-title {
		font-size: 22px;
		line-height: 53px;
		margin-bottom: 0px;
	}
	.callout .arrow {
		margin: 0 0 5px 10px;
	}
	.callout.short .title {
		font-size: 19px;
		line-height: 19px;
	}
	.callout.short .sub-title .inner {
		display: inline-block;
	}
}