.fixed-image {
	position: relative;
	padding: 0;
	width: 100%;
	height: auto;
}

.fixed-image h2 {
	font-size: 2.25rem
}

.fixed-image-background {
	position: absolute;
	width: 100%;
	height: 100%;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover
}

@supports (-webkit-overflow-scrolling:touch) {
	.fixed-image-background {
		background-attachment: initial !important
	}
}

.fixed-image-background:before {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, .16)
}

.fixed-image-content>div {
	position: relative;
	width: 100%;
	height: 100%;
	color: #fff;
	padding-top: 25px;
	padding-left: 15px
}

.fixed-image-content>.fixed-image-wrapper {
	max-width: 1366px;
	margin: auto
}

@media(min-width:768px) {
	.fixed-image-content>div {
		padding-top: 60px;
		padding-left: 90px
	}
	.fixed-image-content h2 {
		font-size: 2.25rem
	}
}