@charset "utf-8";
/*------------------------------------------------------------------------- SECTION: Hero Banner 
*/
section.hero-banner {
	height: 840px;
	color: #fff;
	background: var(--sdsDarkBlueGrey) url(../images/empty-school-hallway.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 {
	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 {
		align-items: center;
		padding-bottom: 40px;
	}
	section.hero-banner .column:first-of-type::after {
		left: 0;
		top: 100%;
		width: 100%;
		height: 160px;
		clip-path: polygon(100% 0, 0 0, 50% 100%);
	}	
}

/*------------------------------------------------------------------------- SECTION: Keywords Strapline 
*/
section.keyword-strapline {
	background-color: var(--sdsDarkRed);
	color: #fff;
	z-index: 2;
}
section.keyword-strapline::before,
section.keyword-strapline::after {
	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.keyword-strapline::after {
	top: 100%;	
}
section.keyword-strapline .container {
	padding: 30px 0;
	max-width: 100%;
	height: 100%;
}
section.keyword-strapline .container::before,
section.keyword-strapline .container::after {
	content: '';
	display: block;
	aspect-ratio: 8.25;
	position: absolute;
	top: 0;
	left: 50%;
	width: 240px;
	background: url(../images/glow.png) center center / 100% no-repeat;
	transform: translateY(-50%);
	animation: shiny__animation 5s ease-in-out 0s infinite alternate-reverse;	
	opacity: 0;
}
section.keyword-strapline .container::after {
	top: 100%;	
	animation-delay: 5s;
}
section.keyword-strapline .keywords {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	list-style: none;
	margin: 0 auto;
	max-width: 1440px;
	padding: 0 40px;
}
section.keyword-strapline .keywords li {
	display: block;
}

section.keyword-strapline .keywords h3 {
	letter-spacing: 3px;
}

@keyframes shiny__animation {
	0% {
		left: calc(100% - 120px);
		opacity: 0;
		transform: translateY(-50%) scale(0%);
	}
	44% {
		left: calc(60% - 120px);
		opacity: 0;
		transform: translateY(-50%) scale(0%)
	}	
	50% {
		left: calc(50% - 120px);
		opacity: 1;
		transform: translateY(-50%) scale(100%);
	}
	56% {
		left: calc(40% - 120px);
		opacity: 0;
		transform: translateY(-50%) scale(0%);
	}	
	100% {
		left: calc(0% - 120px);
		opacity: 0;
		transform: translateY(-50%) scale(0%);
	}
}

@media (max-width: 767px) {
	section.keyword-strapline .keywords {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
}

/*------------------------------------------------------------------------- SECTION: Key Services 
*/
section.key-services {
	background-color: var(--sdsRed);
	color: #fff;
	padding: 40px 0;
}
section.key-services::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 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.key-services .container {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	gap: 20px;
}
section.key-services .service {
	flex: 0 1 160px;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	gap: 10px;
	text-align: center;
}
section.key-services .service .icon {
	filter: invert(1);
	width: 60px;
	height: 60px;
	margin-bottom: 20px;
}
section.key-services .service p {
	font-size: 14px;
	line-height: 1.1em;
}

@media (max-width: 1080px) {
	section.key-services .container {
		flex-wrap: wrap;
		justify-content: center;
	}	
}

/*------------------------------------------------------------------------- SECTION: Records we protect 
*/
section.records-we-protect {
	background-color: var(--sdsDarkBlueGrey);
	color: #fff;
	padding: 60px 0 20px;
	text-align: center;
}
section.records-we-protect::after {
	border-top-color: var(--sdsDarkBlueGrey);
}
section.records-we-protect h2 {
	margin: 0 auto 20px;
}
section.records-we-protect p {
	font-weight: 900;
	font-size: 17px;
	max-width: 480px;
	margin: 0 auto 40px;
}
section.records-we-protect .record-types {
	display: grid;
	grid-template-columns: repeat(6, 160px);
	list-style-type: none;
	margin: 40px auto;
	justify-content: center;
}
section.records-we-protect .record-types li {
	border-right: 1px solid rgba(255,255,255,0.4);	
	border-bottom: 1px solid rgba(255,255,255,0.4);		
	height: 160px;
	margin: 0;
	padding: 0;
}
section.records-we-protect .record-types li a {
	color: #fff;
	width: 100%;
	height: 100%;
	padding: 20px 20px 10px;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;	
}
section.records-we-protect .record-types li a:hover {
	color: var(--sdsLightGrey);
}
section.records-we-protect .record-types li a:hover svg {
	stroke: var(--sdsLightGrey);
}
section.records-we-protect .record-types li a h6 {
	margin-top: 10px;
	line-height: 1em;
}
section.records-we-protect .record-types li a span { 
	text-transform: uppercase;
	margin-top: auto;
	font-size: 13px;
}
section.records-we-protect .footnote {
	text-transform: uppercase;
	text-align: right;
	font-size: 14px;
}

@media (min-width: 961px) {
	section.records-we-protect .record-types li:nth-of-type(6n+6){
		border-right: 0;
	}
	section.records-we-protect .record-types li:nth-of-type(n+13) {
		border-bottom: 0;	
	}	
}
@media (max-width: 960px) and (min-width: 681px) {	
	section.records-we-protect .record-types {
		grid-template-columns: repeat(4, 160px);
	}
	section.records-we-protect .record-types li:nth-of-type(n+17) {
		border-bottom: 0;	
	}	
	section.records-we-protect .record-types li:nth-of-type(4n+4){
		border-right: 0;
	}
	section.records-we-protect .record-types li:nth-of-type(17) {
		border-left: 1px solid rgba(255,255,255,0.4);
	}		
	section.records-we-protect .record-types li:nth-of-type(n+17) {
		transform:translateX(160px);
	}
}
@media (max-width: 680px) and (min-width: 501px) {	
	section.records-we-protect .record-types {
		grid-template-columns: repeat(3, 160px);
	}
	section.records-we-protect .record-types li:nth-of-type(3n+3){
		border-right: 0;
	}
	section.records-we-protect .record-types li:nth-of-type(n+16) {
		border-bottom: 0;	
	}	
}
@media (max-width: 500px) and (min-width: 321px) {
	section.records-we-protect .record-types {
		grid-template-columns: repeat(2, 160px);
	}
	section.records-we-protect .record-types li:nth-of-type(2n+2){
		border-right: 0;
	}
	section.records-we-protect .record-types li:nth-of-type(n+17) {
		border-bottom: 0;	
	}	
}
@media (max-width: 320px) {
	section.records-we-protect .record-types {
		display: block;
	}
	section.records-we-protect .record-types li {
		border-right: 0;
	}
	section.records-we-protect .record-types li:last-of-type {
		border-bottom: 0;	
	}
	section.records-we-protect .footnote {
		text-align: center;
	}
}

/*------------------------------------------------------------------------- SECTION: Closure Timeline 
*/
section.closure-timeline {
	background: #f9f9f9 url(../images/timeline-background.jpg) center top no-repeat;
	background-size: cover;
	text-align: center;
	padding: 200px 0 150px;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 150px), 50% 100%, 0 calc(100% - 150px));
	z-index: -1;
}
section.closure-timeline h2 {
	margin: 0 auto 20px;
}
section.closure-timeline p {
	max-width: 640px;
	margin: 0 auto 40px;
	line-height: 1.3em;
}
section.closure-timeline .timeline::after {
	content: '';
	display: block;
	width: 6px;
	height: 30px;
	background: url(../images/timeline-end.svg) center center / 100% no-repeat;
	margin: 5px auto 0;
}
section.closure-timeline .timeline-node {
	height: 160px;
	background: transparent center center repeat-y;
	position: relative;
}
section.closure-timeline .timeline-node:nth-of-type(1) {
	background-image: url(../images/timeline-segment-01.svg);
}
section.closure-timeline .timeline-node:nth-of-type(2) {
	background-image: url(../images/timeline-segment-02.svg);
	animation-delay: 0.25s;
}
section.closure-timeline .timeline-node:nth-of-type(3) {
	background-image: url(../images/timeline-segment-03.svg);
	animation-delay: 0.5s;
}
section.closure-timeline .timeline-node:nth-of-type(4) {
	background-image: url(../images/timeline-segment-04.svg);
	animation-delay: 0.75s;
}
section.closure-timeline .timeline-node:nth-of-type(5) {
	background-image: url(../images/timeline-segment-05.svg);
	animation-delay: 1s;
}
section.closure-timeline .timeline-node:nth-of-type(6) {
	background-image: url(../images/timeline-segment-06.svg);
	animation-delay: 1.25s;
}
section.closure-timeline .timeline-node::before {
	content: '';
	position: absolute;
	left: calc(50% + 15px);
	top: calc(50% - 5px);
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 10px solid var(--sdsRed);
	border-right: 0;
}
section.closure-timeline .text-block {
	position: relative;
	width: 50%;
	height: 100%;
	padding: 0 40px;
}
section.closure-timeline .text-block h4 {
	height: 50%;
	border-bottom: 1px dotted var(--sdsDarkBlueGrey);
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-end;
	padding-bottom: 15px;
}
section.closure-timeline .timeline-node p {
	margin: 0;
	padding-top: 15px;
	line-height: 1.2em;
}

@media (min-width: 641px) {
	section.closure-timeline .timeline-node:nth-of-type(even)::before {
		transform: scaleX(-1);
		left: calc(50% - 25px);
	}
	section.closure-timeline .timeline-node:nth-of-type(odd) .text-block {
		transform: translateX(100%);
		text-align: left;
	}
	section.closure-timeline .timeline-node:nth-of-type(even) .text-block {
		text-align: right;
	}	
}
@media (max-width: 640px) {
	section.closure-timeline {
		padding-top: 120px;
		clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 50% 100%, 0 calc(100% - 80px));
	}	
	section.closure-timeline .timeline-node {
		background-position: left center;
	}
	section.closure-timeline .timeline-node::before {
		left: 25px;
	}
	section.closure-timeline .text-block {
		width: 100%;
		padding: 0 0 0 40px;
		text-align: left;
	}	
}
@media (max-width: 480px) {
	section.closure-timeline .timeline-node {
		height: 240px;
	}
}
@media (max-width: 320px) {
	section.closure-timeline .timeline-node {
		height: 320px;
		background-position: left -80px;
	}
	section.closure-timeline .timeline-node::before {
		top: calc(50% - 85px);
	}		
	section.closure-timeline .text-block {
		transform: translateY(-80px);	
	}
}

/*------------------------------------------------------------------------- SECTION: Why Schools Choose SDS
*/
section.why-choose-sds {
	padding: 0 0 40px;
	z-index: -2;
}
section.why-choose-sds .container::after {
	content: '';
	display: block;
	aspect-ratio: 2.48;
	width: 80%;
	max-width: 800px;
	position: absolute;
	right: 0;
	left: 0;
	margin: 0 auto;
	bottom: 0;
	background: url(../images/consultancy.svg) center center / 100% no-repeat;
	opacity: 0.25;
	pointer-events: none;
	z-index: -1;
}
section.why-choose-sds .column:first-of-type {
	padding: 40px 0 40px 0;	
}
section.why-choose-sds .column:first-of-type h2,
section.why-choose-sds .column:first-of-type p,
section.why-choose-sds .column:first-of-type ul {
	padding-right: 40px;
}
section.why-choose-sds .column:last-of-type {
	position: relative;
	padding: 660px 0 300px;
	animation-delay: 0.5s;
}
section.why-choose-sds h2 {
	margin-bottom: 30px;
}
section.why-choose-sds ul.check-list {
	margin-bottom: 40px;
}
section.why-choose-sds .button {
	max-width: 240px;
}
section.why-choose-sds .button:hover svg {
	stroke: var(--sdsLightGrey);
}
section.why-choose-sds .image-wrapper {
	width: 50vw;
	height: 800px;
	position: absolute;
	left: 0;
	top: -140px;
}
section.why-choose-sds .image-wrapper img {
	object-position: right center;
}

@media min-width: 1480px) {
	section.why-choose-sds .image-wrapper {
		left: calc((100vw - 1480px) / 2);
	}
}
@media (max-width: 767px) {
	section.why-choose-sds {
		padding: 0;
	}
	section.why-choose-sds .container::after {
		display: none;
	}
	section.why-choose-sds .column:first-of-type {
		padding: 40px 0;
	}
	section.why-choose-sds .column:first-of-type h2,
	section.why-choose-sds .column:first-of-type p,
	section.why-choose-sds .column:first-of-type ul {
		padding-right: 0;
	}	
	section.why-choose-sds .column:last-of-type {
		padding: 0;
	}
	section.why-choose-sds .image-wrapper {
		width: 100vw;
		position: relative;
		top: auto;
		left: -40px;
	}
	section.why-choose-sds .image-caption {
		position: absolute;	
		bottom: 40px;
		z-index: 2;
		background: rgba(0,0,0,0.75);
		color: #fff;
		padding-right: 20px;
		border-left-color: var(--sdsLightGrey);
	}
}

/*------------------------------------------------------------------------- SECTION: Peace of Mind
*/
section.peace-of-mind {
	color: #fff;
	background: var(--sdsDarkBlueGrey) url(../images/closed-school-gates.jpg) center center no-repeat;
	background-size: cover;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 150px), 50% 100%, 0 calc(100% - 150px));
	padding: 120px 0 180px;
}
section.peace-of-mind .container {
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	height: 100%;
}
section.peace-of-mind .customer-types {
	list-style-type: none;
	display: grid;
	grid-template-columns: repeat(6, minmax(140px, 160px));
	justify-content: center;
	margin: 80px 0;
}
section.peace-of-mind .customer-types li {
	text-align: center;
	margin-bottom: 20px;
}
section.peace-of-mind .icon {
	filter: invert(1) brightness(80%);
	width: 50px;
	height: 50px;
	margin: 0 auto 10px;
}
section.peace-of-mind h2 {
	font-size: 56px;	
}
section.peace-of-mind h2:first-of-type {
	max-width: 480px;
}
section.peace-of-mind h2:last-of-type {
	text-align: right;
	max-width: 680px;
	align-self: flex-end;
}

@media (max-width: 880px) {
	section.peace-of-mind .customer-types {
		grid-template-columns: repeat(3, minmax(140px, 160px));
	}
}
@media (max-width: 640px) {
	section.peace-of-mind {
		clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 50% 100%, 0 calc(100% - 80px));
	}
	section.peace-of-mind h2 {
		font-size: 40px;
	}
}
@media (max-width: 480px) {
	section.peace-of-mind .customer-types {
		grid-template-columns: repeat(2, minmax(140px, 160px));
	}
}
@media (max-width: 380px) {
	section.peace-of-mind .customer-types {
		grid-template-columns: repeat(1, minmax(140px, 160px));
	}
}

/*------------------------------------------------------------------------- SECTION: contact form
*/
section.contact-form {
	padding: 40px 0;
}
section.contact-form .column:first-of-type {
	padding: 0 80px 0 0;
}
section.contact-form .contact-points {
	list-style-type: none;
	margin: 20px 0;
}
section.contact-form .contact-points a {
	color: var(--sdsRed);
	font-weight: 900;
	font-size: 22px;
	transition: all 0.25s ease;
}
section.contact-form .contact-points a:hover {
	color: var(--sdsLightGrey);
}
section.contact-form .contact-points a .icon {
	width: 30px;
	height: 30px;
	margin-right: 20px;
	filter: var(--filterRed);
	vertical-align: middle;
	transition: all 0.25s ease;
}
section.contact-form .contact-points a:hover .icon {
	filter: var(--filterGrey);
}
section.contact-form button:hover svg {
	stroke: var(--sdsLightGrey);
}


@media (max-width: 767px) {
	section.contact-form .column:first-of-type {
		padding: 0 0 40px 0;
	}

}