/* CSS Document */

html {
    box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

.BGImg {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    -webkit-background-size: cover;
    moz-background-size: cover;
    o-background-size: cover;
    background-repeat: no-repeat;
}

.ImgTursa {
    background-position: center;
    background-image: url("../images/Tursa.jpg");
}

h1 {
	font-weight: 100;
	font-size: 5em;
	margin: 1rem 0;
}

h2 {
	font-weight: 100;
	font-size: 2em;
	margin: 0.5rem 0;
}
h3 {
	font-weight: 100;
	font-size: 1.5em;
	margin: 0.25rem 0;
}
img {
	max-width: 100%;
}

p {
  margin: 0.83em 0;
}

a {
  /*color: #B4DE5A;*/
  color: orange;
}

li {
	/* list-style-type: none; */
}

.SpaceSmall {
	height: 2em;
}

section {
	margin: 0;
	padding: 0;
}

.BlockClear {
	color: rgb(255, 255, 255);
}

.BlockLight {
	background-color: rgba(250, 249, 243, 0.87);
	color: rgb(64, 64, 64);
}

.BlockColour {
	background-color: rgba(149, 193, 31, 0.77);
	color: rgb(64, 64, 64);
}

.hero {
    padding: 3em 0 1em;
	text-align: center;
}

.hero h1 {
	text-shadow: 0px 0px 10px rgba(0, 0, 0,.05);
}

.hero h1, .hero h2, .hero h3 {
	background-color: rgba(131, 130, 123, 0.25);
}

body {
	font-family: 'Roboto', sans-serif;
	padding: 0;
	max-width: 42em;
	margin: 0em auto 0;
	position: relative;
}

header {
	position: fixed;
	top: 0;
	z-index: 1;
	margin: 0;
	padding: 0px;
	text-align: right;
}

.SiteNav {
    width: auto;
	position: relative;
	display: block !important;
	line-height: 1;
	font-size: .85em;
    /*background: linear-gradient(0deg, grey, white);*/
}
.SiteNav p {
	margin: 0;
	color: white;
	float: left;
}
.SiteNav ul {
	display: inline-block;
	list-style-type: none;
	margin: 0;
	padding: 0;
	/*text-transform: uppercase;*/
}
.SiteNav ul li {
	display: inline-block;
}
.SiteNav ul li a {
	/*padding-top: .25em;
	padding-bottom: .25em;*/
	text-decoration: none;
	/*text-decoration: underline;*/
	letter-spacing: .15em;
	transition: color 1s;
	background-color: rgba(149, 193, 31, 0.77);
	color: rgb(250, 249, 243);
}
.SiteNav ul li a:hover {
	outline: none;
	transition: color 1s;
	text-decoration: none;
	background-color: rgba(250, 249, 243, 0.87);
	color: rgb(149, 193, 31);
}

/* LARGE - Computer, iPad, etc */
@media (min-width: 801px) {
	html {
		font-size: 18px;
	}
	.SiteNav ul li {
		margin-left: 3.5em;
	}
}

/* SMALL - Phone */
@media (max-width: 800px) {
	.hero h1 {
		font-size: 4.2em;
	}
	ul {
		/*list-style-type: none;*/
		list-style-position: inside;
		padding-left: 0.5em;
		font-size: 0.8em;
	}
	.SiteNav ul li {
		margin-left: 0.25em;
	}
	.BGImg {
		background-attachment: fixed;
	}
}

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

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

.SiteNav ul li:nth-of-type(1) {
	margin-left: 0;
}
