.hero-banner {
	position: relative;
	min-height: 600px;
	background: #000;
}

.hero-banner__wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.hero-banner__column {
	min-height: 600px;
	color: #fff;
	display: flex;
	justify-content: flex-end;
}

.hero-banner__column h1 {
	font-size: 30px;
	font-weight: 100;
	line-height: unset;
	color: #fff;
}

.hero-banner__column p {
	color: #fff;
}

.hero-banner__column a {
	text-decoration: unset;
	font-weight: bold;
	color: #fff;
}



.hero-banner__column.bg-image {
	background-size: 140%;
	background-repeat: no-repeat;
	animation: backgroundScroll 10s linear infinite;
}

.hero-banner__column-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	width: 70%;
	padding-right: 40px;
}

.hero-banner__column--accent-heading {
	position: absolute;
	left: 55%;
	top: 50px;
	color: #fff;
	font-size: 30px;
	font-weight: 300;
}


.button__wrapper {
	position: absolute;
	width: 100%;
	margin: 0 auto;
	bottom: 50px;
	display: flex;
	justify-content: center;
	z-index: 100;
}

.hero-banner__buttons {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	width: 100%;
	grid-gap: 25px;
	max-width: 1280px;
}

.hero-banner__buttons--link {
	color: #fff;
	text-decoration: none;
	font-size: 22px;
	border: 1px solid #d2d2d2;
	padding: 10px 25px;
	height: fit-content;
	text-align: center;
	font-weight: 300;
}

.hero-banner__buttons--link:hover {
	border-bottom: 3px white solid;
	margin-bottom: -3px;
	color: white;
	font-weight: 300;
}

.hero-banner__buttons--link a {
	color: white;
}

@media (max-width: 767px) {
	.hero-banner__wrapper {
		display: flex;
		flex-direction: column-reverse;
	}
	.hero-banner__column {
		min-height: 200px;
	}
	.hero-banner__column--accent-heading {
	}
	.hero-banner__column-text {
		width: 100%;
		padding: 10px 20px;
	}
	.hero-banner__column {
		justify-content: center;
	}
	.button__wrapper {
		position: unset;
	}
	.hero-banner__buttons {
		grid-template-columns: 1fr;
		padding: unset;
	}
}
