.hero {
	display: block;
	position: relative;
	color: var(--color-white)
}

.hero a {
	color: var(--color-white);
	display: block;
	position: relative
}

.hero__content {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	padding: var(--gutter)
}

.hero__content__inner {
	max-width: 330px
}

@media(min-width:768px) {
	.hero__content__inner {
		max-width: 440px
	}
}

.hero.horizontal-alignment-mobile-start .hero__content {
	justify-content: start
}

.hero.horizontal-alignment-mobile-center .hero__content {
	justify-content: center;
	text-align: center
}

.hero.horizontal-alignment-mobile-end .hero__content {
	justify-content: end;
	text-align: right
}

.hero.vertical-alignment-mobile-start .hero__content {
	align-items: start
}

.hero.vertical-alignment-mobile-center .hero__content {
	align-items: center
}

.hero.vertical-alignment-mobile-end .hero__content {
	align-items: end
}

@media(min-width:768px) {
	.hero.horizontal-alignment-start .hero__content {
		justify-content: start;
        text-align: left;
	}

	.hero.horizontal-alignment-center .hero__content {
		justify-content: center;
		text-align: center
	}

	.hero.horizontal-alignment-end .hero__content {
		justify-content: end;
		text-align: right
	}

	.hero.vertical-alignment-start .hero__content {
		align-items: start
	}

	.hero.vertical-alignment-center .hero__content {
		align-items: center
	}

	.hero.vertical-alignment-end .hero__content {
		align-items: end
	}
}

.hero h2 {
	margin-bottom: 15px
}

@media(min-width:768px) {
	.hero h2 {
		font-size: 48px;
		margin-bottom: 20px
	}
}

@media(min-width:768px) {
	.hero p {
		font-size: 18px
	}
}

.hero .button {
	margin-top: 20px
}