@charset "utf-8";
/*------------------------------------------------------------------------- FONTS 
*/
@font-face {
    font-family: 'avenir-black';
    src: url('font/avenir-black.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'avenir-bold';
    src: url('font/avenir-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'avenir';
    src: url('font/avenir.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'avenir-italic';
    src: url('font/avenir-italic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*------------------------------------------------------------------------- RESET 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	outline: 0;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
:focus {
	outline: 0;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
.xdebug-error, .xe-warning {
	font-size: 16px;
	color: #000;
}

/*------------------------------------------------------------------------- CORE STYLES
*/
body {
	font-family: 'avenir', sans-serif;
	text-align: left;
	background: #fff;
	margin: 0;
	color: #000;
	overflow-x: hidden;
	display: flex;
	flex-flow: column nowrap;
	min-height: 100vh;
	font-size: 15px;
}
#page {
	width: 100%;
	height: 100%;
	position: relative;
	margin: 0 auto;
	flex: 1;
	padding-bottom: 160px;
}
#home #page {
	padding-bottom: 0;
}
a {
	text-decoration: none;
}
sup {
	vertical-align: super;
	font-size: 70%;
}
p {
	line-height: 1.5em;
	font-size: 15px;
	margin: 0 0 20px;
	position: relative;
}
.no-column-split {
	break-inside: avoid-column;
}
.first-paragraph {
	font-family: 'avenir-bold';
	font-size: 16px;
}
ul {
	margin: 10px 0 20px 15px;
	list-style: disc;
}
ul li {
	margin: 0 0 10px;
	line-height: 1.5em;
	font-size: 15px;
}
ol {
	margin: 10px 0 20px 15px;
	list-style: decimal;
}
ol li {
	padding: 0 0 0 15px;
	margin: 0 0 10px;
	line-height: 1.3em;
	font-size: 15px;	
}

.photo-container {
	margin: 40px 0;
}

.photo-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 320px;
}
.image-wrapper a {
	display: block;
	width: 100%;
	height: 100%;
}

h3 {
	font-family: 'avenir-black';
	font-size: 48px;
	color: #000;
	letter-spacing: -3px;
	text-align: center;
	margin: 0 auto 40px;
	text-transform: lowercase;
	width: 80%;
	max-width: 640px;
}
h3::after {
	content:'';
	display: block;
	width: 80%;
	max-width: 240px;
	background: #900114;
	height: 1px;
	margin: 25px auto 40px;
}
h3 span {
	text-transform: none;
}
h5 {
	font-family: 'avenir-bold';
	font-size: 16px;
	margin-bottom: 5px;
}
h5.strapline {
	font-family: 'avenir-italic';
	font-size: 24px;
	line-height: 1.3em;
	text-align: center;
	margin-bottom: 20px;
}
.photo-caption {
	font-family: 'avenir-italic';
	font-size: 12px;
	display: block;
	margin: 20px auto 0;
}
a:not(#footer) {
	font-family:'avenir-bold';
	color: #900114;
	transition: 0.2s linear all;
	position: relative;
	white-space: nowrap;
}
a:not(#footer)::after {
	background: #900114;
	width: 0%;
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	margin: 0 auto;
	content: '';
	display: block;
	transition: 0.2s linear;
	height: 1px;
	opacity: 0;
}
a:not(#footer):hover::after {
	width: 100%;
	opacity: 0.5;
}
em {
	font-family: 'avenir-italic';
}

.divider-up-arrow::before {
	content: '';
	display: block;
	width: 100%;
	height: 150px;
	border-left: 50vw solid transparent;
	border-right: 50vw solid transparent;
	border-bottom: 150px solid #000;
	position: absolute;
	top: -150px;
}

@media (max-width: 600px)
{
	.divider-up-arrow::before {
		height: 80px;
		border-bottom-width: 80px;
		border-bottom-style: solid;
		top: -80px;	
	}
}
@media (max-width: 400px)
{
	h3 {
		font-size: 32px;
		letter-spacing: -1px;
	}
}

/*------------------------------------------------------------------------- DEFAULT LAYOUT BEHAVIOURS
*/
.wrapper {
	position: relative;
	width: 100%;
	background: transparent;
}
.container {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	position: relative;	
}
.row {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: stretch;
	position: relative;
	width: 100%;
	padding: 0 0 20px;
}
.column {
	flex: 1;
	padding: 0;
}

@media (max-width: 640px)
{
	.row {
					display: block;

	}
	.column {
			width: 100%;
	}
}

/*------------------------------------------------------------------------- HEADER  
*/
#header {
	position: relative;
	text-align: center;
	padding: 40px 0 60px;
	clip-path: polygon(100% 0, 100% calc(100% - 150px), 50% 100%, 0 calc(100% - 150px), 0 0);
	background: #555;
	margin: 0 0 40px;
}
#header::before {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background: url(../images/header-banner.jpg) center center / cover no-repeat;
	opacity: 0.5;
	top: 0;
	z-index:-1;
}
#header h1 {
	width: 80%;
	max-width: 240px;
	height: 60px;
	background: url(../images/sds-group-logo.svg) center center / 100% auto no-repeat;
	margin: 0 auto 30px;
	position: relative;
}
#header h1 a {
	display: block;
	width: 100%;
	height: 100%;
	text-indent: -9999px;
}
#header h2 {
	font-family: 'avenir-black';
	color: #fff;
	letter-spacing: -2px;
	font-size: 64px;
	margin-bottom: 20px;
	z-index:2;
}
#header h3 {
	font-family: 'avenir';
	font-size: 32px;
	color: #fff;
	letter-spacing: 0;
	
}
#header h3::after {
	display: none;
}

/*------------------------------------------------------------------------- SERVICES SECTION
*/
#services-area {
	text-align: center;
}
#services-area::before,
#services-area::after {
	content: '';
	display: block;
	position: absolute;
	margin: 0 auto;
	width: 80%;
	max-width: 560px;
	height: 1px;
	background: #900114;
	left: 0;
	right: 0;
}
#services-area::before {
	top: 0;	
}
#services-area::after {
	bottom: 0;	
}
#services-area .container {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: stretch;
	gap: 10px;
	padding: 30px 20px;
}
#services-area .service {
	background: #282c37	url(../images/sds-logo-bg.svg) -40px -20px / 180px no-repeat;
	flex: 1 0 180px;
	position: relative;
	padding: 20px;
	max-width: 480px;
}
#services-area .service::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 82px;
	background: url(../images/services-arrow.svg) center top / 100% 82px no-repeat;
}
#services-area .service h4 {
	color: #fff;
	position: relative;
	font-size: 20px;
	text-transform: lowercase;
	font-family: 'avenir-black';
	margin: 0 auto 10px;
}
#services-area .service h4::before {
	content: '';
	display: block;
	width: 40px;
	height: 40px;
	margin: 0 auto 40px;
	background: center center / 100% no-repeat;
}
#services-area .service.storage h4::before {
	background-image: url(../images/icon-storage.svg);
}
#services-area .service.safeguarding h4::before {
	background-image: url(../images/icon-safeguarding.svg);
}
#services-area .service.collection h4::before {
	background-image: url(../images/icon-collection.svg);
}
#services-area .service.scanning h4::before {
	background-image: url(../images/icon-scanning.svg);
}
#services-area .service.disposal h4::before {
	background-image: url(../images/icon-disposal.svg);
}
#services-area .service p {
	color: #fff;
	font-size: 12px;
	line-height: 1.1em;
}

@media (max-width: 480px)
{
	#services-area .service {
		flex: 1 0 180px;
	}
}

/*------------------------------------------------------------------------- BODY TEXT (INTRO TEXT ON HOME PAGE)
*/
#body-text-area {
	padding: 40px 20px 20px;
}
#body-text-area .container {
	width: 100%;
	max-width: 640px;
}

/*------------------------------------------------------------------------- DOCUMENT RETENTION SECTION
*/
#document-retention-area {
	background: #313332 url(../images/document-retention-bg.jpg) center top / cover no-repeat;
	clip-path: polygon(0 0, 50% 150px, 100% 0, 100% calc(100% - 150px), 50% 100%, 0 calc(100% - 150px));
	padding: 200px 20px;
}
#document-retention-area .container {
	width: 100%;
	max-width: 640px;
}
#document-retention-area .container.records {
	max-width: 1080px;	
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: center;
	gap: 10px;
	padding: 40px 0 0;
}
#document-retention-area .container.records .record {
	background: #900114 url(../images/sds-logo-bg.svg) center 20px / 90px no-repeat;
	flex: 0 1 180px;
	padding: 40px 20px;
	text-align: center;
	display: flex;
	justify-content: space-between;
	flex-flow: row wrap;
	position: relative;
}
#document-retention-area .container.records .record::after  {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, rgba(255,255,0,0) 0%, rgba(255,255,0,1) 50%, rgba(255,255,0,0) 100%);
	position: absolute;
	bottom: 0;
	left: 0;
}
#document-retention-area .container.records .record h5 {
	font-size: 20px;
	text-transform: lowercase;
	font-family: 'avenir-black';
	margin: 0 auto 20px;
}
#document-retention-area .container.records .record p {
	font-size: 11px;
	margin: 0 auto;
	line-height: 1em;
}
#document-retention-area h5,
#document-retention-area h3,
#document-retention-area p {
	color: #fff;
}
#document-retention-area h3::after {
	background: #fff;
}
#document-retention-area a {
	color: #ccc;
}
#document-retention-area a:hover {
	color: #ddd;
}
#document-retention-area a::after {
	background: #ddd;
}

@media (max-width: 600px)
{
	#document-retention-area {
		clip-path: polygon(0 0, 50% 80px, 100% 0, 100% calc(100% - 80px), 50% 100%, 0 calc(100% - 80px));
		background-size: auto;
		background-position: center bottom;
	}
}
@media (max-width: 480px)
{
	#document-retention-area .container.records .record {
		flex: 1 0 180px;
	}
}


/*------------------------------------------------------------------------- UNBURDENING THE BURSAR SECTION
*/
#solution-area {
	padding: 60px 20px 160px;
}
#solution-area .container {
	width: 100%;
	max-width: 640px;
}
@media (max-width: 600px)
{
	#solution-area {
		padding-bottom: 100px;
	}
}

/*------------------------------------------------------------------------- CONTACT FORM AREA
*/
#contact-form-area {
	background: #f9f9f9;
	color: #000;
	padding: 0;
}
#contact-form-area .container {
	padding: 0 20px 200px;
}
#contact-form-area::before {
	border-bottom-color: #f9f9f9;
}
#contact-form-area .column {
	padding: 0 20px;
}

@media (max-width: 480px)
{
	#contact-form-area .column {
		padding: 0;
	}
}

/*------------------------------------------------------------------------- FORM ELEMENTS
*/
form {
	width: 100%;
	max-width: 440px;
	padding: 0;
	position: relative;
	margin: -25px auto 0;
}
fieldset {
	padding: 0 0 10px;
	max-width: 480px;
	margin: 0 auto;	
	position: relative;
}
input,
textarea {
	background: #f9f9f9;
	max-width: 440px;
	width: 100%;
	height: 40px;
	padding: 5px 10px;
	font-family: 'avenir';
	transition: 0.2s linear;
	color: #999;
	font-size: 14px;
	border: 1px solid #999;
}
textarea {
	height: 180px;
	padding: 15px 10px;
	resize: none;
	overflow: hidden;
}
input:hover,
textarea:hover {
	border-color: #900114;
	color: #555;
}
input:focus,
textarea:focus {
	background-color: #fff;
	color: #000;
	border-color: #900114;
}
textarea::placeholder,
input::placeholder {
	font-family: 'avenir-italic';	
	color: #999;
	font-size: 14px;
}    
textarea:focus::placeholder,
input:focus::placeholder {
	color: #777;
}
label {
	display: none;
}
label[for=confirm] {
	display: inline-block;
	padding-left: 10px;
	font-size: 15px;
	font-family: 'avenir';
	color: #000;
	line-height: 1.1em;
	margin: 10px 0;
}
fieldset.checkbox {
	display: flex;
}
input[type=checkbox] {
	padding: 0;
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: top;	
	margin: 10px 0;
}
button {
	background: #900114 url(../images/send.svg) 5px center / 28px no-repeat;
	text-align: left;
	color: #fff;
	font-family: 'avenir-black';
	font-size: 22px;
	text-transform: lowercase;
	letter-spacing: -1px;
	width: 100%;
	max-width: 240px;
	height: 40px;
	transition: 0.2s linear;
	position: relative;
	padding: 0 0 0 44px;
	border: 0;
	margin: 10px 0 0;
}
button:hover {
	cursor: pointer;
	background-color: #282c37;
	background-position: 8px center;
	color: #ccc;	
}
fieldset.recaptcha {
	padding: 0 0 10px;
}
div.g-recaptcha {
	transform: scale(0.9);
	margin-left: -20px;
}

@media (max-width: 767px)
{
	form {
		margin-top: 0;
	}
}

/*--------------------------------------------- Change Autocomplete styles in Chrome
*/
input:-webkit-autofill,
textarea:-webkit-autofill {
	-webkit-text-fill-color: #999;
	-webkit-box-shadow: 0 0 0px 1000px #f9f9f9 inset;
	border: 1px solid #999;
}
input:-webkit-autofill:hover, 
textarea:-webkit-autofill:hover {
	-webkit-text-fill-color: #555;
	-webkit-box-shadow: 0 0 0px 1000px #fff inset;
	border: 1px solid #900114;	
}
input:-webkit-autofill:focus,
textarea:-webkit-autofill:focus {
	border: 1px solid #900114;
	-webkit-text-fill-color: #000;
	-webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

/*------------------------------------------------------------------------- FOOTER
*/
#footer {
	text-align: center;
	color: #fff;
	background: #000;
}
#footer .container {
	padding: 0 20px 10px;
	margin-top: -100px;
}
.footer-links {
	list-style-type: none;
	margin: 10px auto;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}
.footer-links li {
	position: relative;
	display: inline-block;
	font-size: 15px;
	text-transform: uppercase;
}
.footer-links li::after {
	content: '';
	background: url(../images/sds-bullet.svg) center center / 100% no-repeat;
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0px 20px;
	text-align: center;
}
.footer-links li:last-of-type::after {
	display: none;
}
#footer a {
	color: #fff;
	position: relative;
	font-size: 14px;
	transition: all 0.2s linear;
}
#footer a:hover {
	color: #ddd;
}
#footer a::after {
	background: #ddd;
	width: 0%;
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	margin: 0 auto;
	content: '';
	display: block;
	transition: 0.2s linear;
	height: 1px;
	opacity: 0;
}
#footer a:hover::after {
	width: 100%;
	opacity: 0.35;
}
#footer .since-1994 {
	min-height: 150px;
	padding: 120px 0 0;
	background: url(../images/30-years.svg) center top / 100% auto no-repeat;
	max-width: 200px;
	font-size: 8px;
	line-height: 1em;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	margin: 0 auto;
	font-family: 'avenir-black';
}
#footer p {
	font-size: 14px;
	margin: 0 0 10px;
	text-align: center;
	width: 100%;
}

@media (max-width: 600px)
{
	.footer-links {
		flex-flow: column nowrap;
	}
	.footer-links li::after {
		display: none;
	}
}

/*------------------------------------------------------------------------- BACK TO TOP BUTTON 
*/
a#top {
	position: fixed;
	bottom: -60px;
	right: 20px;
	width: 32px;
	height: 32px;
	z-index: 99;
	opacity: 0;
	border-radius: 50%;
	text-indent: -9999px;
	transition: 0.2s linear;
	background: #900114 url(../images/up-arrow.svg) center center / 12px no-repeat;
}
a#top.show {
	opacity: 0.6;
	bottom: 20px;
}
a#top:hover {
	opacity: 1;
}

/*------------------------------------------------------------------------- CSS ANIMATIONS
*/
.step__animate:nth-child(n+1) {
	animation-delay: 0s;
}
.step__animate:nth-child(n+2) {
	animation-delay: 0.2s;
}
.step__animate:nth-child(n+3) {
	animation-delay: 0.4s;
}
.step__animate:nth-child(n+4) {
	animation-delay: 0.6s;
}
.step__animate:nth-child(n+5) {
	animation-delay: 0.8s;
}
.step__animate:nth-child(n+6) {
	animation-delay: 1.0s;
}
.step__animate:nth-child(n+7) {
	animation-delay: 1.2s;
}
.step__animate:nth-child(n+8) {
	animation-delay: 1.4s;
}
.step__animate:nth-child(n+9) {
	animation-delay: 1.6s;
}
.step__animate:nth-child(n+10) {
	animation-delay: 1.8s;
}
.step__animate:nth-child(n+11) {
	animation-delay: 2s;
}
.step__animate {
	animation-duration: 2s;
}


/*------------------------------------------------------------------------- GENERIC ALERT BOX
*/
.alert {
	background: #900114;
    padding: 20px;
	position: relative;
	margin: 0 auto 45px;
	width: 100%;
	max-width: 440px;
}
.alert::after {
	content: '';
	display: block;
	width: 100%;
	height: 20px;
	background: url(../images/red-triangle.svg) center top / 100% 100% no-repeat;
	position: absolute;
	bottom:-60px;
	left: 0;
	right: 0;
	margin: 0 auto 40px;
	z-index: 10;
}
#contact-form-area .alert h4 {
	font-size: 22px;
	margin: 0 0 20px;
	font-family: 'avenir-black';
	color: #fff;
	text-align: left;
	letter-spacing: -1px;
	text-transform: lowercase;
}
.alert h4::before {
	content: '!';
	display: block;
	float: left;
	width: 24px;
	height: 24px;
	line-height: 24px;
	font-family: 'avenir-black';
	font-size: 20px;
	letter-spacing: 0;
	margin-right: 20px;
	text-align: center;
	background: #fff;
	color: #900114;
	border-radius: 50%;
}
#contact-form-area .alert p {
	margin: 10px 0 0;
	font-size: 14px;
	padding: 0;
	color: #fff;
}
#contact-form-area .alert ul {
	margin: 0 0 0;
	list-style: none;
}
#contact-form-area .alert ul li {
	margin: 0 0 4px;
	padding: 0 0 0 40px;
	font-size: 14px;
	line-height:1.05em;	
	color: #fff;
	background: url(../images/sds-bullet.svg) left top / 14px no-repeat;
}

@media (max-width: 767px)
{
	.alert {
		margin: 30px auto 20px;
	}
}