@charset "utf-8";
/* CSS Document */

:root {
  --bg: white;
  --txt: #999;
  --base: #444;
  --key1: #6cce5b;
  --key2: #69C;
  --key3: #69ff8a;
}

@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900");
@import url("https://fonts.googleapis.com/css?family=Nothing You Could Do:100,300,400,500,700,900");

@keyframes quoteslide {
    from {margin-bottom: -65px;}
    to {margin-bottom: 0px;}
}

@keyframes notifyslide {
	0% { margin-top: -200px; }
	10% { margin-top: 0px; }		
	90% { margin-top: 0px; }		
	100% { margin-top: -200px; }
}

@keyframes bannerslide {
	0% { margin-bottom: -400px; }
	100% { margin-bottom: 0px; }		
}

@keyframes fadeout {
    from {opacity: 1;}
    to {opacity: 0;}
}

html {
	background-color: var(--bg);
	height: 100%;
	width: 100%;
	padding: 0px;
	margin: 0px;
	scroll-behavior: smooth;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
	box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--txt);
	font-family: 'Roboto', sans-serif;
    font-size: 38px;
	overflow: scroll;
	overflow-x: hidden;
	padding: 0px;
	margin: 0px;
	width: 100%;
}

::-webkit-scrollbar {
    width: 0px;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}

h1 {
	padding-left: 5%;
	padding-right: 5%;
}

h2 {
	margin-top: 50px;
	margin-bottom: 25px;
	font-size: 20px;
	font-weight: bold;
	color: var(--key1);
}

h3 {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
}

h4 {
	margin: 10px 30px 10px 30px;
	font-size: 15px;
	color: var(--txt);
}

a:link, a:visited {
	color: var(--key2);
	text-decoration: none;
}

a:hover {
	color: var(--key1);
}

#quoteme {
	position: fixed;
	bottom: 0px;
	left: 0px;
	right: 0px;
	width: 18%;
	margin: auto;
	height: 35px;
	min-width: 250px;
	background-color: var(--key3);
	border-radius: 60px 60px 0 0;
	text-align: center;
	color: #fff;
	font-size: 26px;
	font-weight: 450;
	padding: 10px;
	border: solid 1px #80bd72;
	box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.3);
	animation-name: quoteslide;
    animation-delay: 1s;
    animation-duration: 2s;
	animation-fill-mode: both;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.4);
}

#notifyfull {
	position:absolute;
	top: 10%;
	bottom: 10%;
	left: 10%;
	right: 10%;
}

header.main {
	width: 100vw;
	margin-bottom: 25px;
}

#header_bar {
	width: 95vw;
	height: 190px;
	background-image: url(../img/header.png);
	background-size: 100% 100%;
	border-bottom: 8px solid var(--key1);
	margin: auto;
}

main {
	width: 100%;
}

#header_logo {
	padding-top: 20px;
	width: 250px;
}

#footer_logo {
	float: right;
	width: 200px;
	margin: 25px;
	margin-top: 75px;
}

.logo {
	width: 100%;
}


#logo {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	animation-name: fadein;
    animation-duration: 3s;
	animation-fill-mode: both;
}


#backimage {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url("../img/back2.jpeg");
	background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
	animation-name: fadein;
    animation-duration: 7s;
	animation-fill-mode: both;
}


#contentbody {
	left: 0;
	width: 95vw;
	max-width: 100%;
	z-index: 1;
	margin: auto;
	margin-bottom: 20px;
	text-align: center;
}

.sectionhead {
	width: 100%;
	min-height: 31px;
	background-color: var(--base);
	color: var(--txt);
	font-size: 18px;
	font-weight: bold;
	line-height: 34px;
	padding: 5px 0 6px 0;
	margin-left: 5%;
	margin-right: 5%;
	margin: auto;
	border-bottom: 2px solid #ccc;
	text-align: center;
}

.sectionbody {
	width: 90%;
	background-color: var(--bg);
	padding: 10px 5% 80px 5%;
	line-height: 30px;
	font-size: 18px;
	margin-left: 5%;
	margin-right: 5%;
	margin: auto;
	margin-bottom: 20px;
}

.sectionbody h2 {
	font-size: 35px;
}


.centre-container {
	text-align: center;
}

.centre-container-mid {
	text-align: center;
	width: 50%;
	min-width: 350px;
	margin:auto;
	padding: 20px;
}

input[type=text], input[type=email], input[type=password] {
	width: 80%;
	padding: 6px 20px;
	box-sizing: border-box;
	border: 2px solid #ccc;
	border-radius: 4px;
	background-color: #f8f8f8;
	margin: 20px;
	font-size: 24px;
	box-shadow: 2px 7px 10px 5px rgba(200,200,200,0.2);
}

textarea {
	width: 100%;
	padding: 12px 20px;
	box-sizing: border-box;
	border: 2px solid #ccc;
	border-radius: 4px;
	background-color: #f8f8f8;
	resize: none;
	margin-bottom: 20px;
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
}

.button {
	background-color: var(--key3);
	border: none;
	border-radius: 4px;
	color: white;
	padding: 8px 20px;
	text-decoration: none;
	margin: auto;
	cursor: pointer;
	font-size: 14px;
	width: 60px;
}



.button:hover {
	background-color: var(--key2);
}

button {
	background-color: var(--key1);
	border: none;
	border-radius: 4px;
	color: white;
	padding: 16px 50px;
	text-decoration: none;
	margin: 4px 2px;
	cursor: pointer;
	font-size: 24px;
}



button:hover {
	background-color: var(--key2);
}


input[type=submit] {
	background-color: var(--key2);
	border: none;
	border-radius: 4px;
	color: white;
	padding: 16px 50px;
	text-decoration: none;
	margin: 4px 2px;
	cursor: pointer;
	font-size: 24px;
	box-shadow: 2px 7px 10px 5px rgba(200,200,200,0.2);
}

input[type=submit]:hover {
	background-color: var(--key1);
}

 /* Style the navigation menu */
.topnav {
  position: absolute;
  top: 0px;
  right: 2.5vw;
  overflow: hidden;
  background-color: transparent;
  width: 370px;
  height: 100vh;
}

.topnav:hover {
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

.topnav #myLinks a {
  padding-right: 0px;
  padding-left: 30px;
}

/* Style navigation menu links */
.topnav a {
  color: var(--txt);
  padding-top: 14px;
  text-decoration: none;
  font-size: 30px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  color: var(--key2);
}

/* Style the active link (or home/logo) */
.active {
  background-color: transparent;
  color: var(--key2);
} 


.row_img {
	width: 25%;
	min-width: 280px;
	margin: 2%;
	box-shadow: 4px 4px 8px #999999;
}

.info_img {
	width: 7%;
	min-width: 100px;
	margin: 3% 10% 0 10%;
}

.img_row {
	text-align: center;
	width: 100%;
	margin: auto;
}

.content_row {
	text-align: center;
	width: 80%;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 50px;
	clear:both;
}

.row_img_container {
	width: 100%;
	padding: 10px;
}

.section_img {
	width: 100%;
	box-shadow: 4px 4px 8px #999999;
}

.section_img_right {
	float: right;
	width: 40%;
	max-width: 600px;
	padding: 10px;
	margin-top: 5px;
}

.section_img_left {
	float: left;
	width: 40%;
	max-width: 600px;
	padding: 10px;
	margin-right: 30px;
	margin-top: 5px;
}

ul {
	text-align: center;
	padding: 0px;
	font-size: 18px;
}
ul a:link, ul a:visited {
	text-decoration: none;
}

.list {
	text-align: center;
	padding: 0px;
	font-size: 18px;
}
list a:link, list a:visited {
	text-decoration: none;
}

.keylist {
	display: inline-block;	
	list-style-type:none;
	background-color: #02adbc;
	width: 300px;
	padding: 10px;
	margin: 10px;
	text-align: center;
	border: solid 1px #02adbc;
	border-radius: 25px;
	box-shadow: 2px 2px 5px #999999;
	color: white;
}
.keylist:hover {
	background-color: white;
	color: #02adbc;
}

li.clear{
	display: inline-block;
	background-color: transparent;
	list-style-type:none;
	padding: 10px 40px 10px 40px;
	margin: 10px;
	text-align: center;
	border: solid 1px #02adbc;
	border-radius: 25px;
	box-shadow: 2px 2px 5px #999999;
	color: #02adbc;
}
li.clear:hover, li.clear a:hover {
	background-color: #02adbc;
	color: white;
}
li.clear a:link, li.clear a:visited {
	color: #02adbc;
}
li.clear a:hover {
	color: white;
}

.clearlist {
	display: inline-block;
	background-color: transparent;
	list-style-type:none;
	padding: 10px 40px 10px 40px;
	margin: 10px;
	text-align: center;
	border: solid 1px #02adbc;
	border-radius: 25px;
	box-shadow: 2px 2px 5px #999999;
	color: #02adbc;
}
.clearlist:hover {
	background-color: #02adbc;
	color: white;
}

.contact1 {
	display: inline-block;
	width: 35%;
	min-width: 400px;
	text-align: left;
	vertical-align: middle;
	margin: 20px 5% 35px 5%;
	color: #032060;
}
.contact2 {
	display: inline-block;
	width: 20%;
	min-width: 400px;
	text-align: left;
	vertical-align: middle;
	margin: 25px 5% 40px 5%;
	color: #032060;
}

.contact-item {
	vertical-align: middle;
	margin: 0px 0 95px 0;
}

.centre-form {
	position: absolute;
	top:35%;
	bottom: 25%;
	left: 10%;
	right: 10%;
	text-align: center;
	max-width: 500px;
	margin: auto;
	font-size: 20px;
	background-color: rgba(0,0,0,0.3);
	padding: 25px;
	border-radius: 10px;
	color: #bbb;
}

.centre-notify {
	position: fixed;
	top:30%;
	bottom: 25%;
	left: 10%;
	right: 10%;
	text-align: center;
	max-width: 600px;
	margin: auto;
	font-size: 20px;
	background-color: rgba(0,0,0,0.6);
	padding: 25px;
	border-radius: 10px;
	color: #bbb;
	animation-name: fadeout;
    animation-delay: 10s;
    animation-duration: 2s;
	animation-fill-mode: both;
}

.notify {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	text-align: center;
	margin: auto;
	padding: 10px;
	font-size: 30px;
	background-color: var(--key2);
	color: #fff;
	animation-name: notifyslide;
    animation-delay: 1s;
    animation-duration: 8s;
	animation-fill-mode: both;
	box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.4);
}

.cookiebanner {
	position: fixed;
	bottom: 0px;
	left: 0px;
	right: 0px;
	text-align: center;
	margin: auto;
	padding: 10px 10%;
	font-size: 14px;
	background-color: var(--key1);
	color: #fff;
	animation-name: bannerslide;
    animation-delay: 1s;
    animation-duration: 3s;
	animation-fill-mode: both;
	box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.4);
}
.cookiebanner a:link, .cookiebanner a:visited {
	color: var(--key2);
}

.cookiebanner a:hover {
	color: #FF0;
}

.cookiebanner h4 {
	color: white;
	font-size: 18px;
}

.section_drop {
	width: 100%;
	height: 70px;
	background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.2)); 
	margin-top: -70px;
}

footer {
	width: 100%;
	min-height: 290px;
	background-color: var(--base);
	background-image: url(../img/footerext.png);
	background-size: 100% 100%;	
	z-index: 99;
}

#sitemap{
	padding-top: 0px;
	margin: 0px 70px;
	color: #ddd;
	line-height: 12px;
}
#sitemap a {
}
.sitemapli {
	display: inline-block;
	padding: 5px 10px 5px 10px;
	font-size: 11px;
	margin: 5px;
	border: solid 1px #ccc;
	border-radius: 4px;
	color: #CCC;
}
.sitemapli a:link, .sitemapli a:visited {
	color: #CCC;
}
.sitemapli:hover {
	color: #FFF;
}

.footerbody {
	text-align: center;
	margin: 0 20px 0 20px;
	padding-top: 50px;
	padding-bottomp: 10px;
}
.footerquote {
	font-weight: 400;
	font-style: normal;
	font-size: 35px;
	color: var(--txt);
	margin: 30px;
}

.copyinfo {
	margin: 12px 25px 0 20px;
	padding-bottom: 5px;
	font-size: 10px;
	color: #bbb;
}

.copyinfo a:link, .copyinfo a:visited {
	color: #bbb;
	text-decoration: none;
}

.copyinfo a:hover {
	color: #ddd;
}

.social {
	display: inline-block;
	margin-left: 1%;
	margin-right: 1%;
}

.login {
	display: inline-block;
	background-color: #999;
	width: 80%;
	max-width: 700px;
	min-height: 350px;
	padding: 20px;
	margin: 1.5vh 0.5vw;
	border-radius: 20px;
	color: white;
}



@media screen and (min-width: 1200px) {
	.topnav {
	  width: 70%;
	  height: 50px;
	  text-align: right;
	}
	
	.topnav #myLinks {
	  display: inline-block;
	}
	
	/* Style navigation menu links */
	.topnav a {
	  padding: 14px 16px;
	  text-decoration: none;
	  font-size: 18px;
	  display: inline-block;
	}
	
	.topnav a.icon {
	  display: none;
	}
}

@media screen and (max-width: 1200px) {

}


@media screen and (max-width: 700px) {
	.section_img_left {
		width: 90%;
		margin: auto;
		float: none;
	}
	
	.section_img_right {
		width: 90%;
		margin: auto;
		float: none;
	}
	
	h3 {
		text-align: center;
	}
	.row_img {
		width: 90%;
		margin: auto;
		margin-bottom: 15px;
		float: none;
	}
	.contact-item {
		vertical-align: middle;
		margin: 0 0 30px 0;
	}

}