/*! HTML5 Boilerplate v8.0.0 JK Customised | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */

/*----- GOOGLE FONTS -----*/
/*Dont use import*/
/*----- BASE STYLES - OPINIONATED DEFAULTS -----*/
html {
	color: #222;
    font-size: 1em;
    line-height: 1.4;
}
/*
 * Remove text-shadow in selection highlight:
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
    background: #b3d4fc;
    text-shadow: none;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
audio, canvas, iframe, img, svg, video {
	/*Remove the gap between audio, canvas, iframes, images, videos and the bottom of their containers:*/
    vertical-align: middle;
}
fieldset {
	/*Remove default fieldset styles.*/
    border: 0;
    margin: 0;
    padding: 0;
}
textarea {
	/*Allow only vertical resizing of textareas.*/
    resize: vertical;
}

/*----- CORE STYLES - Mobile First Styles -----*/
body {
	font-size:16px;
	font-family: 'Inter', sans-serif;
	font-weight:400;
}
a {
	color:#069;
	text-decoration:none;
}
a:hover {
	color:#000;
	text-decoration:underline;
}
a:visited {
	color:#069;
	text-decoration:none;
}
a:active {
	color:#000;
}
a:focus {
	color:#000;
}
p {
}
strong {
	font-weight:600;
}
h1, h2, h3, h4, h5, h6 {
	font-size:2.5em;
	font-weight:500;
}
h1 {
	font-size:3.0em;
	font-weight:700;
}
h2 {
}
h3 {
}
h4 {
}
h5 {
}
h6 {
}
.pCen {
	text-align:center;
}
.pRight {
	text-align:right;
}
.skip {
	position:absolute;
	top:0px;
	right:16px;
	display:block;
	padding:0.5em;
	text-align:right;
	/*keep font size 16px or 1.0em for mobile devices, don't go below this size*/
}
	.skip, .skip:visited {
		color:#fff;
	}
	.skip:hover {
		color:#eee;
	}
	.skip:focus {
	}
	.skip:active {
	}
	.skipTxt {
		display:none;
	}
	.skipArrow {
		display:inline-block;
	}
/*----- NAVIGATION -----*/
nav { /*html5 element*/
}
.nav { /*Class*/
	position:relative;
	display:block;
	clear:both;
	height:auto;
	overflow:hidden;
	padding:0;
	margin:0;
	background:#F0F0F0;
	background: -moz-linear-gradient(180deg, rgba(207,207,207,1) 0%, rgba(240,240,240,1) 50%, rgba(240,240,240,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(207,207,207,1) 0%, rgba(240,240,240,1) 50%, rgba(240,240,240,1) 100%);
	background: linear-gradient(180deg, rgba(207,207,207,1) 0%, rgba(240,240,240,1) 50%, rgba(240,240,240,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cfcfcf",endColorstr="#f0f0f0",GradientType=1);
}
.nav ul {
	list-style:outside;
	list-style-type:none;
	padding:0;
	margin:0;
}
.nav ul li {
	display:block;
	float:left;
	width:100%;
	-webkit-transition: background 400ms ease-in-out;
	-moz-transition: background 400ms ease-in-out;
	-ms-transition: background 400ms ease-in-out;
	-o-transition: background 400ms ease-in-out;
	transition: background 400ms ease-in-out;
}
.nav ul li a {
	display:block;
	width:100%;
	padding:0.75em 0;
	color:#222;
	font-weight:600;
	text-align:center;
	text-decoration:none;
	border-bottom:dashed 1px #ccc;
}
.nav ul li a:visited {
	color:#222;
}
.nav ul li:hover {
	background:#464646;
}
.nav ul li:hover a {
	color:#ffffff;
}
.nav ul li a i {
	font-size:1.2em;
}
.nav-mobile { /*Mobile menu specific*/
	display:none;
	cursor:pointer;
	position:absolute;
	top:5px;
	right:5px;
	height:40px;
	width:40px;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	background-color: rgba(0,0,0,1.0);
	background-image: url(../img/gfx/nav.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
@media (min-width: 1px) and (max-width: 767px) {
	/*mobile specific*/
	nav {
		min-height:45px;
	}
	.nav-list {
		display:none;
	}
	.nav-mobile {
		display:block;
	}
	.nav-active {
		display:block;
	}
	.nav-mobile-open {
		border-radius:5px 5px 0 0;
		-webkit-border-radius:5px 5px 0 0;
		-moz-border-radius:5px 5px 0 0;
	} /*end mobile specific*/
}
@media (min-width: 768px) {
	.nav ul {
		max-width:1440px;
		margin:auto;
	}
	.nav ul li {
		width:14%; /*based on 5 links at 20% each - adjust as required*/
	}
	.nav ul li:first-child {
		width:4%;
	}
	.nav ul li:nth-child(5) {
		width:24%;
	}
	.nav ul li a {
		border-bottom:none;
		border-right:solid 1px #ccc;
	}
		.nav ul li:last-child a {
			border-right:none;
		}
}
/*----- SITE STRUCTURE -----*/
#wrapper {
	width:100%;
	max-width:1920px; /*rslide max width is the same as this, see .js settings*/
	margin:auto;
	-webkit-box-shadow: 0 0 5px 5px #cccccc;
	box-shadow: 0 0 10px 4px #cccccc;
}
header {
	display:block;
	height:auto;
	overflow:hidden;
	background: rgb(148,0,0);
	background: -moz-linear-gradient(180deg, rgba(119,0,0,1) 0%, rgba(148,0,0,1) 20%, rgba(156,5,5,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(119,0,0,1) 0%, rgba(148,0,0,1) 20%, rgba(156,5,5,1) 100%);
	background: linear-gradient(180deg, rgba(119,0,0,1) 0%, rgba(148,0,0,1) 20%, rgba(156,5,5,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#770000",endColorstr="#9c0505",GradientType=1);
}
.logoCont, .logoTitleCont {
	box-sizing:border-box;
	width:100%;
	float:left;
}
.logoCont {
	display:block;
	min-width:150px;
	/*background:#ccc;*/
	padding-top:0.4em;
	text-align:center;
}
.logo {
	width:100%;
	max-width:160px;
	height:auto;
}
.logoTitleCont {
	display:none;
	/*background:#999;*/
	text-align:center;
}
.logoTitle {
	font-size:2.2em;
	font-weight:700;
	color:#ffffff;
}
.socialBar, .counter {
	display:block;
	box-sizing:border-box;
	width:100%;
	height:auto;
	overflow:hidden;
	color:#fff;
}
.socialBar {
	padding:0.5em;
	margin-left:1.0em;
}
	.socialBar i {
		color:#eee;
		font-size:1.3em;
		margin:0 0.2em;
	}
	.socialBar a {
		display:inline-block;
		padding:0em 0.6em;
	}
.donateCont {
	display:flex;
	padding:1.0em;
}
.donateCont div {
	margin:auto;
}
@media (min-width:768px) {
	header {
		position:relative;
	}
	.donateCont {
		position:absolute;
		right:10px;
		top:50px;
		margin-right:10px;
	}
}
.counter {
	padding:0.5em;
	text-align:center;
}
	.cText {
		color:#EEE;
		text-transform:uppercase;
	}
	.cDigit {
		color:#FFF;
		text-transform:uppercase;
		font-weight:600;
	}
#page {
	/*Main page area*/
}
main {
}
	main p, main ul, main ol {
		font-size:1.2em;
		line-height:1.4em;
	}
aside {
}
footer {
	background:#333;
}
.footCont {
	display:block;
	flex-wrap:nowrap;
	width:100%;
	clear:both;
	height:auto;
	overflow:hidden;
}
.footCont .col {
	flex-basis:29.3333%;
	height:auto;
	overflow:hidden;
	margin-bottom:1.2em;
	background:;
	text-align:center;
	color:#fff;
}
.footCont .col a, .footCont .col a:visited {
	color:#eee;
}
/*----- LAYOUT CONCEPTS -----*/
.container {
	display:block;
	box-sizing:border-box;
	padding:3% 6%;
}
.containerShort {
	display:block;
	box-sizing:border-box;
	padding:0.6em 6%;
}
.containerRow {
	display:block;
	clear:both;
	width:100%;
}
.col {
	flex:1;
	box-sizing:border-box;
}
.full {
	width:100%;
	height:auto;
	overflow:hidden;
}
.w1200 {
	max-width:1200px;
	margin:auto;
}
/*Time Line*/

/*----- IMAGE STYLES -----*/
.responsive {
	width:100%;
	height:auto;
}
.img180 {
	max-width:180px;
}
.img200 {
	max-width:200px;
}
.img300 {
	max-width:300px;
}
.img380 {
	max-width:380px;
}
.img400 {
	max-width:400px;
}
.img500 {
	max-width:500px;
}
.imgBlock {
	/*Image container for floating*/
	display:block;
	clear:both;
	width:100%;
	height:auto;
	overflow:hidden;
	margin:auto;
	text-align:center;
}
.imgCaption {
	display:block;
	clear:both;
	padding:0.3em 0;
	text-align:center;
	font-size:1.0em;
	color:#222;
	font-style:italic;
}
/*----- TEXT STYLES -----*/
.iSm {
	font-size:1.2em;
	margin-right:0.5em;
}
.iMed {
	font-size:2.6em;
}
.iLg {
	font-size:4.0em;
}
.footTitle {
	font-size:1.4em;
	font-weight:500;
}
.footStrapline {
	font-size:1.2em;
	font-weight:500;
	font-style:italic;
}
.tmName {
	font-size:1.7em;
}
.newsTitle {
	margin:0.2em 0;
}
.newsDesc {
	margin:0.2em 0;
	font-size:0.9em;
}
/*Text Colours*/
.cWhite {
	color:#fff;
}
.cGreen {
	color:#3C6;
}
.cNavyBlue {
	color:#003a57;
}
.cRose {
	color:#ff5555;
}
/*Lists*/
.nBull {
	/*list-style:outside;
	list-style-type:none;*/
}
.nBull li {
	margin:0.6em 0;
}
.nBull li i {
	margin-right:0;
	margin-left:-30px;
}
.listSmall {
	font-size:0.9em;
}
/*----- BLOCK STYLES -----*/
.boxPad {
	box-sizing:border-box;
	padding:0.6em 0.8em;
}
.quote {
	display:block;
	box-sizing:border-box;
	width:100%;
	padding:1.0em 0;
	border-top:solid 4px #f0f0f0;
	border-bottom:solid 4px #f0f0f0;
	font-weight:600;
	font-size:1.4em;
	text-align:center;
	color:#9c0505;
}
.quote q {
	font-size:1.4em;
	font-weight:600;
}
/*Timeline - https://codepen.io/Devcrud/pen/XWboGgL*/
.container2 {
	max-width:80%;
	margin:50px auto;
}
.timeline {
	position:relative;
	padding-left:4rem;
	margin:0 0 0 0 30px;
}
.timeline::before {
	content:'';
	position:absolute;
	left:0;
	top:0;
	width:4px;
	height:100%;
	background:#f0f0f0;
}
.entry {
	position:relative;
	margin-bottom:2.5rem;
}
.entryIcon {
	position:absolute;
	left:-88px;
	top:4px;
	width:50px;
	height:50px;
	border-radius:50%;
	text-align:center;
	font-size:2.0rem;
	background:#2f393e;
}
.entryIcon i {
	position:absolute;
	left:50%;
	top:50%;
	transform: translate(-50%, -50%);
	color:#fff;
	font-size:0.8em;
}
.entryIcon img {
	width:100%;
	height:100%;
	border-radius:50%;
}
.entryBody {
	background:#F9F8EE;
	border-radius:5px;
	padding:1.0em 2.2em 1.0em 2.2em;;
	box-shadow:1px 3px 9px rgba(0,0,0, .1);
}
.entryBody::before {
	content:'';
	background:inherit;
	width:20px;
	height:20px;
	display:block;
	position:absolute;
	left:-10px;
	transform:rotate(45deg);
	border-radius:0 0 0 2px;
}
.tlTitle {
	margin-top:0;
}
.tlSub {
	font-size:1.0em;
	opacity:0.85;
}
.tlBadge {
	box-sizing:border-box;
	background:rgba(255,255,255,0.25);
	padding:0.2em 0.6em;
	border-radius:4px;
}
.bordBottom {
	height:auto;
	overflow:hidden;
	border-bottom:solid 2px #ccc;
}
/*Block Colours*/
.bgLtGrey {
	background:#f0f0f0;
}
.bgSteelGrey {
	background:#2f393e;
}
.bgMidGrey {
	background:#464646;
}
.bgDarkGrey {
	background:#333;
}
.bgBlue {
	background:#069;
}
.bgRed {
	background:#f40000;
}
/*Text Colour Adjustments for Block Colours*/
.bgSteelGrey, .bgMidGrey, .bgDarkGrey, .bgBlue {
	color:#fff;
}
.bgBlue a, .bgBlue a:visited {
	color:#fff;
}
/*----- BANNER STYLES -----*/
/*Consider moving to own stylesheet*/

/*----- FORM STYLES ------*/
/*Consider moving to own stylesheet*/
.btn {
	display:inline-block;
	box-sizing:border-box;
	height:auto;
	overflow:hidden;
	padding:0.4em 0.8em;
	background:#2F393E;
	border-radius:4px;
	color:#fff;
	-webkit-transition: background 400ms ease-in-out;
	-moz-transition: background 400ms ease-in-out;
	-ms-transition: background 400ms ease-in-out;
	-o-transition: background 400ms ease-in-out;
	transition: background 400ms ease-in-out;
}
.btn:visited {
	color:#fff;
}
.btn:hover {
	background:#069;
	color:#fff;
}
/*----- MEDIA QUERIES START -----*/
@media (min-width: 1px) and (max-width: 767px) {
}
@media (min-width:380px) {
	.skipTxt {
		display:inline-block;
	}
	.skipArrow {
		display:none;
	}
}
@media (min-width: 640px) {
	.logoCont {
		/*width:28%;*/
		padding-bottom:0.4em;
		/*max-width:240px;*/
	}
	/*.logoTitleCont {
		width:72%;
		min-height:153px;
		text-align:left;
		display:flex;
		justify-content:left;
		align-items:center;
	}*/
	.logoTitle {
		font-size:3.6em;
	}
}
@media (min-width: 768px) {
	.footCont {
		display:flex;
		flex-wrap:wrap;
		align-items: flex-end;
	}
	.footCont .col {
		margin:2%;
		margin-bottom:2%;
	}
	.footCont .col.address {
		text-align:left;
	}
	.footCont .col.credit {
		text-align:right;
	}
	.imgBlock {
		float:right;
		clear:none;
		width:auto;
		margin-left:2.0em;
	}
}
@media (min-width: 900px) {
	.logoCont {
		/*width:20%;*/
		padding-bottom:0.8em;
	}
	.logoTitleCont {
		/*width:54%;*/
	}
	.counter {
		/*Remove this but counter-act the width with logoTitleCont*/
		/*display:block;
		width:26%;
		float:right;
		min-height:153px;
		display:flex;
		justify-content:left;
		align-items:center;*/
	}
	/*
	.counter span {
		display:block;
		clear:both;
	}
	.cDigit {
		font-size:1.4em;
	}
	*/
}
@media (min-width: 1024px) {
	.logoTitle {
		font-size:4.2em;
	}
	.containerRow {
		display:flex;
	}
	.col {
		margin:1%;
	}
}
@media (min-width: 1200px) {
}
@media (min-width: 1440px) {
}
@media (min-width: 1680px) {
}
@media (min-width: 1920px) {
	.skip {
		position:relative;
		float:right;
		width:20%;
	}
	.socialBar {
		float:;
		width:70%;
	}
	.container {	
		padding:3% 12%;
	}
	.containerShort {
		padding:0.6em 12%;
	}
}
 /* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

 .hidden, 
 [hidden] {
  display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap; /* 1 */
}

/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

/*
* Hide visually and from screen readers, but maintain layout
*/

.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/

.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.clearfix:after {
  clear: both;
}

 
/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

   @media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

 
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

   @media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}