/* CSS Document */

/* Background colour 90 15 19 (Hex 5A0F13), 30% transparent */

html {
    box-sizing: border-box;
}

.BGImg {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: bottom center;
    background-image: url("/images/TRSN_Squirrel2.jpg");
    background-size: cover;
    -webkit-background-size: cover;
    moz-background-size: cover;
    o-background-size: cover;
    background-repeat: no-repeat;
    /*background-attachment: fixed; */ /* removed to support iOS */
    /*min-width: 1600px;*/
}

*, *::before, *::after {
  box-sizing: inherit;
}
    
body {
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  max-width: 70em;
  margin: 3em auto 0;
  padding: 0;
  position: relative;
}

header {
    position: fixed;
    top: 0;
	z-index: 1;
    max-width: calc(70em - 0px);
	padding: 0;
    width: calc(100% - 0px);
	text-align: right;
	text-transform: uppercase;
}

footer {
	z-index: 1;
    max-width: calc(70em - 0px);
	padding: 0;
    width: calc(100% - 0px);
	background-color: rgba(90, 15, 19, 0.8);
    text-align: center;
    margin: 0;
}

h1 {
  font-weight: 200;
  font-size: 3em;
  /*letter-spacing: .1em;*/
  margin: 0 0 20px 0;
  text-align: center;
}

h2 {
	font-weight: 200;
	font-size: 2em;
	padding-top: 0%;
  /*letter-spacing: .3em;*/
	/*text-transform: uppercase;*/
	text-shadow: 0px 0px 8px rgba(0, 0, 0,.2);
}
h3 {
	margin: 0;
    padding: 0;
	font-size: 1.5em;
	font-weight: 100;
	line-height: 1.5em;
  /*letter-spacing: .35em;*/
	/*text-transform: uppercase;*/
	text-shadow: 0px 0px 8px rgba(0, 0, 0,.2);
}

.hero-logo-box {
    display: grid;
}

.hero h2 {
    font-size: 3.4em;
	text-shadow: 0px 0px 10px rgba(0, 0, 0,.05);
}
.hero h3 {
	margin: 0.5em 4em;
	line-height: 1.5em;
}
p {
  margin: 0 0 10px;
}

a {
  color: #B4DE5A;
}

li {
	list-style-type: none;
}

.site-nav, .contact-nav {
    width: auto;
	position: relative;
	display: block !important;
	line-height: 1.8;
}
.contact-nav {
    padding: 0px;
    opacity: 0.9;
	color: #fff;
    padding: 0.5em 0;
    margin: 16em 0 0;
	text-align: center;
	/*position: relative;*/
	/*background-color: rgba(90, 15, 19, 0.75);*/
}

.site-nav ul, .contact-nav ul {
	list-style-type: none;
	margin: 0;
    padding: 0;
}
.site-nav ul li {
	display: inline-block;
    background-color: rgba(90, 15, 19, 0.8);
}
.site-nav ul li a {
	font-size: .85em;
	padding-bottom: .5em;
	text-decoration: underline;
	letter-spacing: .15em;
	color: white;
	transition: color 1s;
}
.site-nav ul li a:hover {
	outline: none;
	border-bottom: 1px solid #B4DE5A;
    color: #B4DE5A;
	transition: color 1s;
	text-decoration: none;
}

.hero {
    padding: 6em 0 4em;
	color: #fff;
    margin: 0 0 2em;
	text-align: center;
    font-size: 1em;
	position: relative;
	background-color: rgba(90, 15, 19, 0.75);
}
.hero-content {
    padding: 0;
    margin: 3em 0;
    opacity: 1;
}
.NoWide {
	letter-spacing: .1em;
    text-transform: none;
    text-align: center;
}

.container {
    padding: 0px;
    opacity: 0.9;
	color: #fff;
    padding: 2em 0;
    margin: 16em 0;
	text-align: center;
	position: relative;
	background-color: rgba(90, 15, 19, 0.85);
}

.flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.flex article {
    padding: 10px;
    margin: 10px;
}

.flex h2 {
	/*letter-spacing: 0.015;*/
    text-align: center;
}

.flexA {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.flexA article {
    padding: 10px;
    margin: 10px;
}

.flexA h2 {
	/*letter-spacing: 0.015;*/
    text-align: center;
}

.VideoSec {
    padding: 0px;
    opacity: 1;
	color: #fff;
	text-align: center;
	position: relative;
	background-color: rgba(90, 15, 19, 0.85);
}
.VideoFrame {
    position: relative;
    margin: 0;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.TRSNVideo {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

/****************************************

  Small device, e.g. mobile phone

****************************************/

@media (max-width: 800px) {
.site-nav ul li {
	margin-left: 0.25em;
}
.hero h1 {
	margin-bottom: 0.1em;
    padding: 0;
	text-shadow: 0px 0px 10px rgba(0, 0, 0,.05);
    font-size: 3em;
}
.hero h3 {
	margin: 0.5em 0.5em;
}
.flex article, .flexA article {
    flex: 90%;
}
.contact-nav ul li {
	display: inline-block;
    margin: 0 0;
    padding: 0 1em;
}
.hero-logo {
	margin-bottom: 3em;
    max-width: 100vw;
    max-height: 100%;
}
/* Not sure whether this needed?
.BGImg {
    background-attachment: fixed;
}*/
}

/****************************************

  Normal device e.g. iPad / Laptop

****************************************/

@media (min-width: 801px) {
.site-nav ul li {
	margin-left: 3.5em;
}
.hero h1 {
	margin-bottom: 0.1em;
    padding: 0;
	text-shadow: 0px 0px 10px rgba(0, 0, 0,.05);
    font-size: 3.4em;
}
.hero h3 {
	margin: 0.5em 4em;
}
.flex article, .flexA article {
    flex: 40%;
}
.contact-nav ul li {
	display: inline-block;
    margin: 0 0;
    padding: 0 4em;
}
.hero-logo {
	margin-bottom: 3em;
    max-width: 40em;
    max-height: 100%;
}
}

@supports not (-webkit-touch-callout: none) {
.BGImg {
    background-attachment: fixed;
}
}

@supports (-webkit-touch-callout: none) {
.BGImg {
    background-attachment: scroll;
}
}
