@charset "utf-8";
/*------------------------------------------------------------------------- SECTION: Hero Banner 
*/
section.hero-banner {
	height: 640px;
	color: #fff;
	background: var(--sdsDarkBlueGrey) url(../images/storage-boxes.jpg) center top no-repeat;
	background-size: cover;
}
section.hero-banner .container {
	z-index: 2;
	height: 100%;
	padding: 0;
}
section.hero-banner .container::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(180deg, #000 0%, rgba(0,0,0,0) 100%);
}
section.hero-banner .row {
	height: 100%;
	width: 100%;
	padding: 0;
}
section.hero-banner .column:first-of-type {
	position: relative;
	padding: 100px 40px 40px;
	background: rgba(0,0,0,0.6);
	max-width: 640px;
}
section.hero-banner .column:first-of-type::before {
	content: '';
	display: block;
	position: absolute;
	right: 100%;
	top: 0;
	width: calc((100vw - 1450px) / 2);
	height: 100%;
	background: rgba(0,0,0,0.6);
}
section.hero-banner .column:first-of-type::after {
	content: '';
	display: block;
	position: absolute;
	left: 100%;
	top: 0;
	width: 150px;
	height: 100%;
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	background-color: rgba(0,0,0,0.6);
}
section.hero-banner .column:last-of-type {
	flex: 1;
	display: flex;
	flex-flow: column nowrap;
	align-items: flex-end;
	justify-content: flex-end;
	padding: 40px 40px 80px;
	gap: 20px;
}
section.hero-banner .logo {
	max-width: 300px;
	margin-bottom: 40px;
}
section.hero-banner h1 {
	font-size: 48px;
	margin-bottom: 20px;
}
section.hero-banner h5 {
	margin-bottom: 50px;
}
section.hero-banner p {
	margin: 0;
	padding: 20px 0;
	position: relative;
}
section.hero-banner p::before,
section.hero-banner p::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
}
section.hero-banner p::after {
	top: 100%;
}
section.hero-banner .button {
	max-width: 240px;
}
section.hero-banner .button:hover svg {
	stroke: var(--sdsLightGrey);
}

@media (max-width: 1140px) {
	section.hero-banner h1 {
		font-size: 40px;
	}
	section.hero-banner h5 {
		font-size: 18px;
		margin-bottom: 30px;
	}	
	section.hero-banner p {
		font-size: 15px;
	}
}
@media (max-width: 767px) {
	section.hero-banner {
		height: auto;
	}
	section.hero-banner .column:first-of-type {
		max-width: 100%;
	}
	section.hero-banner .column:last-of-type {
		display: none;
	}
	section.hero-banner .column:first-of-type::after {
		display: none;
	}	
}
