.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.gradient {
	background: linear-gradient(45deg, #1c1814, #686260);
}

.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: flex-end;
	height: 100%;
	padding-right: 40px;
	width:620px;
	margin-left: 14px;
	padding-bottom:100px;
}



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

.hero-banner__overlay {
	background-image: url(https://f.hubspotusercontent20.net/hubfs/2527977/white.png);
	background-position: center center;
	background-size: 120%;
	background-repeat: no-repeat;
	min-height: 600px;
	width: 100%;
	position: absolute;
	z-index: 2;
	top: 0px;
	opacity: 0.3;
	pointer-events: none;
}

.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%;
	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:first-child{
	margin-left: 20px;
}

.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;
}

@keyframes backgroundScroll {
	0% {
		background-position: 0 0;
		opacity: 0;
	}
	5% {
		background-position: -10px 0;
		opacity: 0.5;
	}
	50% {
		background-position: -100px 0;
		opacity: 0.75;
	}
	95% {
		background-position: -190px 0;
		opacity: 0.5;
	}
	100% {
		background-position: -200px 0;
		opacity: 0;
	}
}

@media (max-width: 767px) {
	.hero-banner__wrapper {
		display: flex;
		flex-direction: column-reverse;
	}
	.hero-banner__column {
		min-height: 200px;
	}

	.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;
		background: linear-gradient(154deg, #1c1814, #686260);
		padding: 10px 25px;
	}
	.hero-banner__column--accent-heading{
		left: 25%;
		top: 10px;
		font-size: 18px;
	}
	.hero-banner__buttons--link:first-child{
		margin-left: unset;
	}
}