@charset "utf-8";
/* CSS Document */

body {
	
	margin:0;
	font-family: var(--main-font), sans-serif;
	font-size:1.1em;
	image-rendering:-moz-crisp-edges;          /* Firefox        */
	image-rendering:-o-crisp-edges;            /* Opera          */
	image-rendering:-webkit-optimize-contrast; /* Safari         */
	image-rendering:optimize-contrast;         /* CSS3 Proposed  */
	-ms-interpolation-mode:nearest-neighbor;   /* IE8+           */
	
}

td, th {
	
	font-family: var(--main-font), sans-serif;
	
}

a {
	
	color:var(--link);
	text-decoration:none;
	
}

a:hover {
	
	text-decoration:underline;
	
}

h1 {
	
	font-size:2em;
	color:var(--colour-1);

}

h2 {
	
	font-size:1.8em;
	
}

h3 {
	
	font-size:1.5em;
	
}

h1, h2, h3 {
	
	font-family: var(--header-font), sans-serif;
	margin-bottom: 10px;
	margin-top: 0px;
	line-height:1.2em;
	
}

p {
	
	margin-top:0px;
	margin-bottom:20px;
	
}

/* desert scheme ported from vim to google prettify */
pre.prettyprint { display: block; background-color: #333 }
pre .nocode { background-color: none; color: #000 }
pre .str { color: #ffa0a0 } /* string  - pink */
pre .kwd { color: #f0e68c; font-weight: bold }
pre .com { color: #87ceeb } /* comment - skyblue */
pre .typ { color: #98fb98 } /* type    - lightgreen */
pre .lit { color: #cd5c5c } /* literal - darkred */
pre .pun { color: #fff }    /* punctuation */
pre .pln { color: #fff }    /* plaintext */
pre .tag { color: #f0e68c; font-weight: bold } /* html/xml tag    - lightyellow */
pre .atn { color: #bdb76b; font-weight: bold } /* attribute name  - khaki */
pre .atv { color: #ffa0a0 } /* attribute value - pink */
pre .dec { color: #98fb98 } /* decimal         - lightgreen */

/* Specify class=linenums on a pre to get line numbering */
ol.linenums { margin-top: 0; margin-bottom: 0; color: #AEAEAE } /* IE indents via margin-left */
li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8 { list-style-type: none }
/* Alternate shading for lines */
li.L1,li.L3,li.L5,li.L7,li.L9 { }

@media print {
  pre.prettyprint { background-color: none }
  pre .str, code .str { color: #060 }
  pre .kwd, code .kwd { color: #006; font-weight: bold }
  pre .com, code .com { color: #600; font-style: italic }
  pre .typ, code .typ { color: #404; font-weight: bold }
  pre .lit, code .lit { color: #044 }
  pre .pun, code .pun { color: #440 }
  pre .pln, code .pln { color: #000 }
  pre .tag, code .tag { color: #006; font-weight: bold }
  pre .atn, code .atn { color: #404 }
  pre .atv, code .atv { color: #060 }
}

img {
	
	max-width:100%;
	
}

.inner {
	
	padding:20px;
	max-width:var(--max-width);
	margin:0 auto;
	
}

footer {
	
	padding:20px 20px 30px 20px;
	border-top:1px dotted rgba(100,100,100,0.5);
	text-align: center;
	max-width:var(--max-width);
	margin:0 auto;
	
}

.who {
    position: absolute;
    left: -1000px;
}

.menu {
	
	display:none;
	cursor:pointer;
	text-align:right;
	
}

.menu-icon {
	
	width:40px;
	filter: var(--menu-hue);
	
}

.nav {
	
	margin:0px;
	padding:0px;
	text-align:right;
	
}

.nav li {
	
	display:inline-block;
	list-style-type:none;
	padding-right:20px;
	border-right:1px solid rgba(100,100,100,0.3);
	margin-right:20px;
	
}

.nav li:last-child {
	
	padding-right:0px;
	border-right:0px;
	margin-right:0px;
	
}

.nav-inner {
	
	padding-bottom: 0px;
	
}

.logo-inner {
	
	padding-top: 0px; padding-bottom:0px;
	
}

.full-width-nav-inner {
		
	padding-right:10px;
	padding-top:10px;
	padding-bottom:0px;

}

.card {
	
	padding:20px !important; margin:10px; border-radius:10px; background:#fff; -webkit-box-shadow: 2px 2px 0 0 rgba(0,0,0,0.05); box-shadow: 2px 2px 0 0 rgba(0,0,0,0.05);
	
}

.flex {
	
	display:flex; align-items:stretch; display: -webkit-flex; -webkit-flex-wrap: wrap; display: flex; flex-wrap: wrap;  justify-content: space-between;
	
}

.flex-margin-right {
	
	margin-right:20px;
	
}

.flex-margin-left {
	
	margin-left:20px;
	
}

.flex-border-right {
	
	padding-right:30px !important;
	border-right:1px solid rgba(100,100,100,0.5);
	margin-right:20px;
	
}

.flex-border-left {
	
	padding-left:30px !important;
	border-left:1px solid #ddd;
	margin-left:20px;
	
}

.flex-1, .flex-2, .flex-3, .flex-4, .flex-5 {
	
	padding:0px 15px 0px 15px;
	min-width:200px;
	box-sizing: border-box;
	
}

.flex-1 {
	
	flex:1;
	
}

.flex-2 {
	
	flex:2;
	
}

.flex-3 {
	
	flex:3;
	
}

.flex-4 {
	
	flex:4;
	
}

.flex-5 {
	
	flex:5;
	
}

.socials {
	
	margin:0px;
	padding:0px;
	
}

.socials-round img, .socials-round svg {
	
	border-radius:var(--socials-size);
	
}

.socials li {
	
	display:inline-block;
	list-style-type:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	vertical-align:middle;
	margin-right: 0px;
	padding-right: 0px;
	border-right:0px;
	
}

.socials li a {
	
	border-bottom: none;
	
}

.socials li a:hover {
	
	opacity:0.8;
	
}

.socials li img, .socials li svg {
	
	width:var(--socials-size);
	height:var(--socials-size);
	margin-right: 5px;
	
}

.hr {
	
	clear:both;
	margin-top:20px;
	margin-bottom: 20px;
	border-top:1px dotted rgba(100,100,100,0.5);
	
}

.hr-2 {
	
	clear:both;
	margin-bottom: 20px;
	border-top:1px dotted rgba(100,100,100,0.5);
	
}

.hr-3 {
	
	clear:both;
	margin-top: 20px;
	border-top:1px dotted rgba(100,100,100,0.5);
	
}

.spacer {
	
	clear:both;
	padding-top:10px;
	
}

.spacer-2 {
	
	clear:both;
	padding-top:15px;
	
}

.box {
	
	padding:30px 30px 10px 30px;
	border-radius:5px;
	margin-bottom: 20px;
	background:var(--pale);
	display:inline-block;
	/*webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);*/
	
}

input[type=checkbox]{

	width:auto !important;
	min-width:auto !important;
	
}

input:not([type=hidden]):not([type=radio]):not([type=checkbox]):not([type=button]):not([type=submit]), select, textarea {

	border:1px solid rgba(0,0,0,0.2);
	
}

input:not([type=hidden]):not([type=radio]):not([type=checkbox]), select, textarea, button, .button-link {

	padding:10px;
	font-family: var(--main-font), sans-serif;
	color:#333;
	font-size:1.1em;
	border-radius:5px;
	box-sizing:border-box;
	min-width:100px;
	background:#fff;
	width:100%;
	margin-bottom:20px;
	max-width:500px;
	-webkit-appearance: none;
	
}

input[type=submit],input[type=button],button {
	
	border:0px;
	color:#fff !important;
	background:var(--colour-2) !important;
	cursor:pointer;
	padding:10px 20px 10px 20px;
	font-size:1.1em;
	white-space: normal;
	
}

td input:not([type=hidden]), td select, td textarea, td button, td .button-link {
	
	font-size:1em !important;
	margin-top:0px;
	margin-bottom: 0px !important;
	
}

td input:not([type=hidden]):not([type=radio]):not([type=checkbox]):not([type=button]):not([type=submit]), td select, td textarea {

	border:0px !important;
	background-color:transparent !important;
	
}

label {
	
	font-size:0.9em;
	display:block;
	margin-bottom: 0px;
	color:rgba(0,0,0,0.7);
	
}

select {
	
	padding:9px 25px 9px 9px;
	background:#fff url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADMAAAAyCAYAAADx/eOPAAABE0lEQVRogd3SWxHCUAxF0SABCzUJErBQcVjAAnztDwql95XcHPZMBJxZOZnZYmZ30+/KgtXMnsL3MLMzYxbxMZftX6nqvKmo63yoqOp8VVHV2VVR0/mpoqZzqKKiU6SiolOskl2nSiW7TrVKVp0mlaw6zSrZdLpUsul0q9BsnSEqNFtnmArN0hmqQrN0hqtQtI6LCkXruKlQlI6rCkXpuKuQt06ICnnrhKmQl06oCnnphKvQaJ0pKjRaZ5oKjdKZqkKjdKarUK9OChXq1UmjQq06qVSoVSedCtXqpFShWp20KlSqk1qFSnXSq9CRjoQKHenIqNCejpQK7enIqdBWR1KFtjqyKrT+gwot/6JCN3cVM3sBzdeyZvLDZAAAAAAASUVORK5CYII=') right 10px center no-repeat;
	background-size: 10px 10px;
		
}

input[type=submit]:hover,input[type=button]:hover,button:hover {

	opacity:0.9;
	
}

.hide-on-desktop {
		
	display:none;

}

.large-heading {
	
	font-size:2.8em;
	
}

@keyframes fade {
  0% { opacity: 0 }
  100% { opacity: 1 }
}

.alert {

	background:#fff7b5;
	padding:10px 10px 10px 15px;
	border-radius:10px;
	color:rgba(0,0,0,0.9);
	border:1px solid rgba(0,0,0,0.05);
	clear:both;
	margin:0px auto 15px auto;
	animation: fade 0.5s linear;
	
}

.alert .cross {
	
	float:right;
	margin-left:20px;
	opacity:0.2;
	width:16px;
	cursor:pointer;
	margin-top:4px;
	
}

.alert .cross:hover {
	
	opacity:0.1;
	
}

.alert-green {
	
	background:#bdf977;
	
}

.alert-red {
	
	background:#f98777;
	
}

.alert-orange {
	
	background:#f7b947;
	
}

.alert-blue {
	
	background:#7fd3f4;
	
}

.list {
  list-style: none; /* Remove default bullets */
}

.list li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: var(--colour-1); /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1.5em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}

.data-table {
	border-spacing: 1;
	border-collapse: collapse;
	background: white;
	border-radius: 5px;
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	position: relative;
	-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
	margin-bottom: 20px;
}
.data-table * {
  position: relative;
}
.data-table td, .data-table th {
  padding:10px;
}
.data-table thead tr, .table-header {
  background: var(--colour-1);
  color: #fff;
}
.data-table tbody tr {
  /*height: 50px;*/
}
.data-table tbody tr:last-child {
  border: 0;
}
.data-table td, .data-table th {
  text-align: left;
}
.data-table td.l, .data-table th.l {
  text-align: right;
}
.data-table td.c, .data-table th.c {
  text-align: center;
}
.data-table td.r, .data-table th.r {
  text-align: center;
}

.data-table th{
  color: #fff;
  font-weight: unset;
}

.data-table tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}

.data-table tbody tr {
  font-family: var(--main-font);
  color: #333;
  font-weight: unset;
}

.data-table tbody tr:hover {
  color: #555555;
  background-color: #f5f5f5;
}

.background-blur {
	
	backdrop-filter: blur(10px);
	
}

.shadow-1 {
	
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
	
}

.shadow-2 {
	
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
	
}

.shadow-3 {
	
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
	
}

.shadow-4 {
	
	box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
	
}

::selection {
	
	background:var(--colour-2);
	
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.expand-1 {
	
	transition:transform .2s !important;

}

.expand-1:hover {
	
	transform:scale(1.03) !important;
	
}

.expand-2 {
	
	transition:transform .2s !important;
	
}


.expand-2:hover {
	
	transform:scale(1.1) !important;
	
}

.expand-3 {
	
	transition:transform .2s !important;

}

.expand-3:hover {
	
	transform:scale(1.2) !important;
	
}

.pulse {
	
	animation:heart-pulse .9s infinite ease-out;
	
}

@keyframes heart-pulse{0%{transform:scale(1)}50%{transform:scale(1.1)}100%{transform:scale(1)}}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.flex-border-right:last-child {

	border-right:0px;

}

.flex-seamless {

	padding-bottom: 0px;
	padding-top: 0px;

}

.eucookie-pop-up { display:none; position:fixed; z-index:9999; max-width:300px; font-size:0.9rem; bottom:0;  right:0; background:var(--colour-1); color:#fff; margin:1em; padding:15px; text-align:left; } 
.eucookie-pop-up .dismiss { width:7%; text-align:center; padding-top:1em; } 
.eucookie-pop-up .dismiss a { color:#fff !important; cursor:pointer; font-weight:bold; font-size:150%; padding:1em; } 
.eucookie-pop-up .content { float:left; width:92%;  text-align:center;  } 
.eucookie-pop-up .content a { text-decoration: underline;color:#fff } 

#exit-popup { color: #fff !important; cursor:pointer; position:absolute; top:0px; right:0px;}