/*! 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 -----*/
/*Body font*/
.nunito-01 {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
/*Headings and Titles*/
.roboto-serif-01 {
  font-family: "Roboto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 499;
  font-style: italic;
  font-variation-settings:
    "wdth" 100,
    "GRAD" 0;
}
/*Quote Text*/
.niconne-regular {
  font-family: "Niconne", cursive;
  font-weight: 400;
  font-style: normal;
}

/*----- 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-family: "Nunito", sans-serif;
	font-size:16px;
}
a {
	color:#000;
	text-decoration:none;
}
a:hover {
	color:#000;
	text-decoration:underline;
}
a:visited {
	color:#000;
	text-decoration:none;
}
a:active {
	color:#000;
}
a:focus {
	color:#000;
}
p {
}
strong {
	font-weight:600;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Roboto Serif", serif;
	font-weight:499;
	font-style:italic;
	color:#2b454c;
}
h1 {
	font-size:2.4em;
}
h2 {
	font-size:2.2em;
}
h3 {
	font-size:2.0em;
}
h4 {
	font-size:2.0em;
}
h5 {
	font-size:2.0em;
}
h6 {
	font-size:2.0em;
}
.pCen {
	text-align:center;
}
.pRight {
	text-align:right;
}
.pLeft {
	text-align:left;
}
.skip {
	display:block;
	box-sizing:border-box;
	/*padding:0.5em;*/
	text-align:right;
	/*keep font size 16px or 1.0em for mobile devices, don't go below this size*/
}
	.skip a, .skip a:visited {
		display:inline-block;
		padding:0.5em;
		color:#fff;
	}
	.skip a:hover {
		color:#900;
	}
/*----- NAVIGATION -----*/
nav { /*html5 element*/
}
.nav { /*Class*/
	position:relative;
	height:auto;
	overflow:hidden;
	padding:0;
	margin:0;
	background:#fff9f4;
	border-bottom:solid 2px #A97142;
}
.nav ul {
	list-style:outside;
	list-style-type:none;
	max-width:1200px;
	padding:0;
	margin:auto;
}
.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;
	text-transform:uppercase;
	border-bottom:dashed 1px #ccc;
}
.nav ul li:hover {
	background:#CFA98C;
}
.nav ul li:hover a {
	color:#222;
}
.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 li {
		width:20%; /*based on 5 links at 20% each - adjust as required*/
	}
	.nav ul li a {
		border-bottom:none;
		border-right:solid 1px #ccc;
	}
		.nav ul li:last-child a {
			border-right:none;
		}
}
/*Sticky nav related*/
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}
/*Sticky menu state, colour changes*/
#navbar {
	/*bg see .nav*/
	transition: background 0.3s ease-in-out;
}
#navbar.stuck {
	background:rgba(43,69,76,1);
}
#navbar.stuck ul li a {
	color:#fff;
}
#navbar.stuck ul li:hover {
	background:#CFA98C;
}
#navbar.stuck ul li:hover a {
	color:#222;
}
/*----- SITE STRUCTURE -----*/
#wrapper {
	width:100%;
	max-width:1920px;
	margin:auto;
	-webkit-box-shadow: 0 0 5px 5px #cccccc;
	box-shadow: 0 0 10px 4px #cccccc;
}
header {
}
#page {
	/*Main page area*/
}
main {
}
	main p, main ul, main ol {
		font-size:1.2em;
		line-height:1.4em;
	}
footer {
	border-top:solid 3px #A97142;
	/*Metallic Bronze*/
	background: #A97142;
	background: linear-gradient(165deg, rgba(169, 113, 66, 1) 0%, rgba(190, 139, 98, 1) 20%, rgba(222, 185, 158, 1) 100%);
	/*Navy Teal*/
	background:rgba(43,69,76,1);
	background: linear-gradient(180deg, rgba(43, 69, 76, 1) 0%, rgba(34, 49, 54, 1) 100%);
}
.footCont {
	box-sizing:border-box;
	display:block;
	flex-wrap:nowrap;
	width:100%;
	max-width:1440px;
	padding:1.0em 2%;
	margin:auto;
	clear:both;
	height:auto;
	overflow:hidden;
	color:#fff;
	/*align-items: flex-end; /*align content to bottom of col*/
}
.footCont a, .footCont a:visited {
	color:#f6f6f6;
}
.footCont a:hover {
	color:#666;
}
.footCont .col {
	flex-basis:29.3333%;
	background:none;
	text-align:center;
}
	@media (min-width:768px) {
		.footCont {
			display:flex;
		}
		.footCont .col {
			margin:2%;
		}
		.footCont .col:first-child {
			text-align:left;
		}
		.footCont .col:nth-child(2) {
			text-align:center;
		}
		.footCont .col:last-child {
			text-align:right;
		}
	}
/*----- LAYOUT CONCEPTS -----*/
.logoCont {
	box-sizing:border-box;
	display:block;
	width:100%;
	padding:0.8em 4%;
	margin:auto;
	text-align:center;
}
	.logo {
		width:100%;
		height:auto;
		max-width:512px;
	}
	.logoStrapline {
		font-size:1.1em;
		color:#ffd5b2;
		text-transform:uppercase;
	}
.credit {
	display:block;
	box-sizing:border-box;
	width:100%;
	padding:1.0em 4%;
	text-align:center;
	background:rgba(20,20,20,0.2);
	color:#fff;
}
.credit a, .credit a:visited {
	color:#ccc;
}
.credit a:hover {
	color:#666;
}
/*----- Colours -----*/
.colourBrz {
	color:#a97146;
}
.colourTeal {
	color:#2b454c;
	color:rgb(43,69,76);
}
.colourLightBrz {
	color:#ffd5b2;
}
.colourRed {
	color:#C80000;
}
.colourRedDark {
	color:#5B0000;
}
.colourWhite {
	color:#fff;
}
.bgGrey {
	background:#fcfcfc;
}
.bgBrz {
	background:#a97146;
}
.bgTeal {
	background:#2b454c;
	background:rgb(43,69,76);
}
.bgLightBrz {
	background:#ffd5b2;
}
.bgBrzMid {
	background:#CFA98C;
}
.bgRed {
	background:#C80000;
}
.bgRedDark {
	background:#5B0000;
}
.bgAnimFade {
    background: linear-gradient(0deg, #c80000, #5b0000);
    background-size: 400% 400%;

    -webkit-animation: hollolGrad 30s ease infinite;
    -moz-animation: hollolGrad 30s ease infinite;
    animation: hollolGrad 30s ease infinite;
}

@-webkit-keyframes hollolGrad {
    0%{background-position:50% 0%}
    50%{background-position:51% 100%}
    100%{background-position:50% 0%}
}
@-moz-keyframes hollolGrad {
    0%{background-position:50% 0%}
    50%{background-position:51% 100%}
    100%{background-position:50% 0%}
}
@keyframes hollolGrad {
    0%{background-position:50% 0%}
    50%{background-position:51% 100%}
    100%{background-position:50% 0%}
}
/*----- IMAGE STYLES -----*/
.responsive {
	width:100%;
	height:auto;
}
.footLogo {
	width:100%;
	height:auto;
	max-width:180px;
}
.imgPadd {
	box-sizing:border-box;
	width:96%;
	padding:2%;
	background:#f1f1f1;
}
.img300 {
	max-width:300px;
}
/*----- TEXT STYLES -----*/
.iSm, .iMed, .iLrg {
	display:inline-block;
	padding:0.1em 0.2em;
}
.iSm {
	font-size:1.2em;
}
.iMed {
	font-size:1.8em;
}
.iLrg {
	font-size:3.4em;
}
.txtLightBrz {
	color:#FFD5B2;
}
.footTitle {
	font-size:1.5em;
	font-family: "Roboto Serif", serif;
	font-weight:499;
	font-style:italic;
}
.footSubTitle {
	font-size:1.3em;
	font-family: "Roboto Serif", serif;
	font-weight:499;
	font-style:italic;
}
.footLinks {
	list-style:outside;
	list-style-type:none;
	margin:0;
	padding:0;
}
.footLinks li {
	margin:0.5em 0;
}
.listA {
	/*No bullets, no margin*/
	list-style:outside;
	list-style-type:none;
	margin:0;
	padding:0;
}
.txtTitle1 {
	font-size:1.4em;
	font-family: "Roboto Serif", serif;
	font-weight:499;
	font-style:italic;
}
.txtTitle2 {
	font-size:2.0em;
	font-family: "Roboto Serif", serif;
	font-weight:499;
	font-style:italic;
}
.txtQuote {
	font-size:2.0em;
	font-family: "Niconne", cursive;
  	font-weight: 400;
  	font-style: normal;
}
/*----- BLOCK STYLES -----*/
.spacer40 {
	height:40px;
}
.spacer {
	height:80px;
}
.iFrame {
	width:100%;
}
.fullWidth {
	box-sizing:border-box;
	display:block;
	width:100%;
}
.narrowWidth {
	box-sizing:border-box;
	display:block;
	width:100%;
	max-width:1200px;
	padding:1.0em 4%;
	margin:auto;
}
.narrowWidth2 {
	box-sizing:border-box;
	display:block;
	width:100%;
	max-width:768px;
	padding:1.0em 4%;
	margin:auto;
}
.container {
	box-sizing:border-box;
	display:block;
	width:100%;
	padding:1.0em 4%;
}
.containerRow {
		display:block;
		clear:both;
		width:100%;
	}
	.col {
		flex:1;
		box-sizing:border-box;
		margin:0.5em auto;
	}
.colBorder {
	border:solid 1px #efefef;
	border-radius:6px;
}
/*----- BANNER STYLES -----*/
/*Consider moving to own stylesheet*/
.bannerCont {
	box-sizing:border-box;
	display:block;
	width:100%;
	height:auto;
}
.banner {
	width:100%;
	height:auto;
}

/*----- FORM STYLES ------*/
/*Consider moving to own stylesheet*/
.btn, .btn2 {
	display:inline-block;
	box-sizing:border-box;
	padding:0.4em 0.8em;
	border-radius:6px;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}
.btn, .btn:visited {
	background:#2B454C;
	color:#fff;
}
.btn:hover {
	transform:scale(1.1);
	background:#CFA98C;
	color:#222;
	text-decoration:none;
}
.btn2, .btn2:visited {
	background:#2B454C;
	color:#fff;
}
.btn2:hover {
	transform:scale(1.1);
	background:#fff;
	color:#222;
	text-decoration:none;
}
/*----- MEDIA QUERIES START -----*/
@media (min-width: 1px) and (max-width: 767px) {
}
@media (min-width: 640px) {
	.logoStrapline {
		font-size:1.3em;
	}
}
@media (min-width: 768px) {
	.containerRow {
		display:flex;
	}
	.col {
		margin:1%;
	}
	.txtTitle1 {
		font-size:1.6em;
	}
	.txtTitle2 {
		font-size:2.4em;
	}
	.txtQuote {
		font-size:2.6em;
	}
}
@media (min-width: 1024px) {
	h1 {
		font-size:2.8em;
	}
	h2 {
		font-size:2.6em;
	}
	h3 {
		font-size:2.4em;
	}
	h4 {
		font-size:2.4em;
	}
	h5 {
		font-size:2.2em;
	}
	h6 {
		font-size:2.2em;
	}
}
@media (min-width: 1200px) {
}
@media (min-width: 1440px) {
	h1 {
		font-size:3.2em;
	}
	h2 {
		font-size:2.8em;
	}
	h3 {
		font-size:2.6em;
	}
	h4 {
		font-size:2.6em;
	}
	h5 {
		font-size:2.4em;
	}
	h6 {
		font-size:2.4em;
	}
}
@media (min-width: 1680px) {
	.container {
		padding:1.0em 6%;
	}
}
@media (min-width: 1920px) {
}
 /* ==========================================================================
   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;
    }
}