@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;
	}	
}

/*------------------------------------------------------------------------- SECTION: Key USPs 
*/
section.key-usps {
	background-color: var(--sdsRed);
	color: #fff;
	text-align: center;
}
section.key-usps::after {
	border-top-color: var(--sdsRed);	
}
section.key-usps::before {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(90deg, rgba(255,255,0,0) 0%, var(--sdsYellow) 50%, rgba(255,255,0,0) 100%);
}
section.key-usps .container {
	height: 100%;
	padding: 40px 0 20px;	
}
section.key-usps .container::before {
	content: '';
	display: block;
	aspect-ratio: 8.25;
	position: absolute;
	top: 0;
	left: 50%;
	width: 200px;
	background: url(../images/glow.png) center center / 100% no-repeat;
	transform: translateY(-50%);
	opacity: 1;
}
section.key-usps ul {
	display: flex;
	flex-flow: row nowrap;
	gap: 10px;
	margin: 0 auto;
}
section.key-usps ul li {
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	gap: 10px;
	padding: 0 10px;
	flex: 1;
}
section.key-usps ul li::before {
	content: '';
	width: 60px;
	height: 60px;
	background: url(../images/icons/quality.svg) center center / 100% no-repeat;
	filter: var(--filterYellow);
	transition: all 0.25s ease;
}
section.key-usps ul li:hover::before {
	transform: scale(110%);
	filter: invert(1);	
}
section.key-usps h6 {
	letter-spacing: -1px;
	font-size: 18px;
	line-height: 1.1em;
}

@media (max-width: 640px) {
	section.key-usps ul {
		flex-wrap: wrap;
	}
	section.key-usps ul li {
		flex: 0 1 calc(50% - 10px);
	}

}
@media (max-width: 640px) {
	section.key-usps ul li {
		flex: 1 0 100%;
		max-width: 320px;
		margin: 0 auto 10px;
	}	
}

/*------------------------------------------------------------------------- SECTION: Key USPs 
*/
section.school-closure {
	padding: 200px 0 40px;
}
section.school-closure h2 {
	margin-bottom: 40px;
}
section.school-closure h6 {
	margin-bottom: 20px;
}
section.school-closure .image-wrapper {
	height: 400px;
	margin: 0 0 40px;
}
section.school-closure table {
	font-size: 15px;
}
section.school-closure table thead th {
	font-weight: bold;
	text-transform: uppercase;
}
section.school-closure table tr {
	border-bottom: 1px solid var(--sdsDarkBlueGrey);
	transition: background-color 0.25s ease;
}
section.school-closure table tr:hover {
	background-color: #f9f9f9;
}
section.school-closure table thead tr th,
section.school-closure table tr td {
	padding: 15px 10px;
	position: relative;
}
section.school-closure table thead tr th:first-of-type,
section.school-closure table tr td:first-of-type {
	padding-left: 0;
}
section.school-closure table tr p {
	margin: 0;
	line-height: 1.1em;
}

@media (min-width: 768px) {
	section.school-closure .column:first-of-type {
		padding-right: 80px;
	}	
}
@media (max-width: 767px) {
    section.school-closure table, 
    section.school-closure tbody, 
    section.school-closure td, 
    section.school-closure tr {
	    display: block;
    }
    section.school-closuree thead, 
    section.school-closure th,
    section.school-closure thead tr {
		display: none;
	}
	section.school-closure table {
		border-top: 1px solid var(--sdsDarkBlueGrey);
	}
	section.school-closure table tbody tr td {
		padding: 10px 10px 10px 140px !important;
	}
	section.school-closure table tbody tr td::before {
		position: absolute;
		left: 0;
		top: 5px;
		width: 90px;
		height: 100%;
		white-space: nowrap;
		content: attr(data-label);
		padding: 5px 10px 5px 0;
		font-size: 12px;
		font-weight: bold;
        text-transform: uppercase;
        z-index: 2;
	}
}
@media (max-width: 640px) {
	section.school-closure {
		padding: 120px 0 40px;
	}	
}
@media (max-width: 440px) {
	section.school-closure table tbody tr td::before {
		position:relative;
		width: 100%;
		top: auto !important;
		display: block;
	}
	section.school-closure table tbody tr td {
		padding: 0 !important;
	}
   section.school-closure table tbody tr td:first-of-type {
        padding-top: 10px !important;
    }
    section.school-closure table tbody tr td:last-of-type {
        padding: 5px 0 10px !important;
    }	
}

/*------------------------------------------------------------------------- SECTION: Example Records
*/
section.example-records {
	padding: 0 40px;
	color: var(--sdsDarkBlueGrey);
}
section.example-records .container {
	padding: 40px;
	background-color: #f9f9f9;
}
section.example-records .records {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	justify-items: center;
	gap: 40px 20px;
}
section.example-records .records .record {
	text-align: center;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
}
section.example-records .records .record .icon {
	width: 50px;
	height: 50px;
	margin: 0 auto 10px;
	filter: var(--filterBlueGrey);
}
/*------------------------------------------------------------------------- SECTION: Cost Model
*/
section.cost-model {
	padding: 40px 0 0;
}

section.cost-model .column {
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-end;
}

section.cost-model h2 {
	margin-bottom: 40px;
}
section.cost-model ol.roman {
	list-style-type: lower-roman;
	margin: 0 0 20px 20px;
}
section.cost-model ol.roman li {
	padding: 0;
}
section.cost-model ol.roman li::marker {
	font-style: italic;
}
section.cost-model ol.roman li::before {
	display: inline-block;
	content: ')';
	font-style: italic;
	font-weight: bold;
	margin-right: 10px;
}
section.cost-model .check-list {
	margin: 0;
}

@media (min-width: 768px) {
section.cost-model .row {
	gap: 40px;
}	
	
}