.core-3-across-imagebox {
	text-align: center;
	margin-bottom: 30px;
}
.core-3-across-imagebox .slide {
	margin-bottom: 3px;
}
.core-3-across-imagebox .slide:last-child {
	margin-bottom: 15px;
}
.core-3-across-imagebox .inner {
	position: relative;
}
.core-3-across-imagebox .img-cont {
	position: relative;
	overflow: hidden;
}
.core-3-across-imagebox:not(.full-width) .slides {
	max-width: 1171px;
    margin-left: auto;
    margin-right: auto;
}
.core-3-across-imagebox .img-cont::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 75%;
	background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
	transition: 300ms ease-in-out;
	pointer-events: none;
}
.core-3-across-imagebox .slide .inner::before {
	background: linear-gradient(to bottom, rgba(0,0,0,0), transparent);
	transition: 300ms ease-in-out;
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: 300ms ease-in-out;
    pointer-events: none;
    z-index: 1;
    height: 75%;
}
.core-3-across-imagebox .img-cont img {
	width: 100%;
}
.core-3-across-imagebox .content-section {
	position: absolute;
	left: 15px;
	bottom: 15px;
	margin-right: 15px;
	text-align: left;
	pointer-events: none;
}
.core-3-across-imagebox .content-section h4,
.core-3-across-imagebox .content-section h4 a {
	color: white;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    line-height: 1.3em;
    font-weight: 600;
}
.core-3-across-imagebox .title-cont {
	padding: 20px 20px 5px;
	text-align: left;
}
.core-3-across-imagebox .title-cont h2 {
	color: #404040;
    font-size: 52px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
	line-height: 1.2em;
	margin: 0;
}
.core-3-across-imagebox  a.view-all {
	text-transform: uppercase;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    background-color: #db5723;
    padding: 18px 33px;
    border-radius: 25px;
    line-height: 1em;
    display: inline-block;
    margin: 0 auto;
    position: relative;
}

@media screen and (max-width: 640px) {
	.core-3-across-imagebox .title-cont a.view-all.desktop {
		display: none;
	}
}
@media screen and (min-width: 640px) {
	@supports (display: grid) {
		.core-3-across-imagebox:not(.slides-across-1) .slides {
			display: grid;
			grid-template-columns: 1fr 1fr;
			column-gap: 10px;
		}
	}
	.core-3-across-imagebox .img-cont {
		border-radius: 6px;
	}
	.core-3-across-imagebox .title-cont {
		padding: 20px 0px 6px;
		text-align: left;
		max-width: 1171px;
		margin-left: auto;
		margin-right: auto;
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.core-3-across-imagebox a.view-all {
		align-self: end;
		justify-self: flex-end;
		margin: 0;
		padding: 13px 25px;
		margin-bottom: 15px;
	}
	.core-3-across-imagebox a.view-all.mobile { display: none;}
	.core-3-across-imagebox {
		padding: 0 15px;
	}
}

@media screen and (min-width: 1024px) {
	@supports (display: grid) {
		.core-3-across-imagebox.slides-across-3 .slides {
			grid-template-columns: 1fr 1fr 1fr;
		}
	
		.core-3-across-imagebox.slides-across-4 .slides {
			grid-template-columns: 1fr 1fr 1fr 1fr;
		}
	
		.core-3-across-imagebox:not(.full-width) .slides {
			column-gap: 6px;
			row-gap: 6px;
		}
	}
	.core-3-across-imagebox {
		margin-bottom: 120px;
	}
	
	.core-3-across-imagebox:not(.full-width) .slide {
		margin-bottom: 0px;
	}

	.core-3-across-imagebox .content-section {
		left: 27px;
		bottom: 11px;
		margin-right: 32px;
	}
	.core-3-across-imagebox .title-cont h2 {
		font-size: 70px;
		line-height: 1.3em;
	}
	.core-3-across-imagebox .content-section h4, 
	.core-3-across-imagebox .content-section h4 a {
		font-size: 36px;
		line-height: 1.2em;
	}
	.core-3-across-imagebox .img-cont::before {
		content: '';
		width: calc(100% - 20px);
		height: calc(100% - 20px);
		border: solid rgb(255, 255, 255, 0) 2px;
		border-radius: 6px;
		pointer-events: none;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		position: absolute;
		z-index: 1;
		transition: 300ms ease-in-out;
	}
	.core-3-across-imagebox .slide:hover .img-cont::before {
		border: solid rgb(255, 255, 255, 1) 2px;
		transition: 300ms ease-in-out;
	}
	.core-3-across-imagebox .img-cont::after {
		height: 100%;
		transition: 300ms ease-in-out;
	}
	.core-3-across-imagebox .slide:hover .inner::after {
		background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
		transition: 150ms ease-in-out;
	}
	.core-3-across-imagebox .slide:hover .inner::before {
		background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
		transition: 150ms ease-in-out;
	}
	.core-3-across-imagebox .slide:hover .img-cont::after {
		background: linear-gradient(to top, rgba(0,0,0,0), transparent);
		transition: 300ms ease-in-out;
	}
}

/* Internet Explorer Fallback */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 640px) {
	.core-3-across-imagebox:not(.slides-across-1) .slides {
		display: flex;
		flex-wrap: wrap;
	}

	.core-3-across-imagebox:not(.slides-across-1) .slide {
		width: 50%;
	}

	.core-3-across-imagebox .slide {
		padding-left: 3px;
		padding-right: 3px;
	}
	.core-3-across-imagebox .title-cont {
		display: flex;
		justify-content: space-between
		;
	}
	.core-3-across-imagebox .title-cont {
		align-items: center;
	}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 640px) {
	.core-3-across-imagebox .title-cont h2 {
		font-size: 43px;
	}

}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 1024px) {
	.core-3-across-imagebox.slides-across-2 .slide {
		width: 50%;
	}

	.core-3-across-imagebox.slides-across-3 .slide {
		width: 33.33333%;
		margin-bottom: 6px;
	}

	.core-3-across-imagebox.slides-across-4 .slide {
		width: 25%;
	}

	.core-3-across-imagebox .slide {
		padding-left: 3px;
		padding-right: 3px;
	}
	.core-3-across-imagebox .title-cont h2 {
		font-size: 70px;
	}
}