/*
Theme Name: BlankSlate
Theme URI: https://opencollective.com/blankslate
Author: Web Guy
Author URI: https://opencollective.com/blankslate#section-contributors
Description: Donate: https://opencollective.com/blankslate. Learn: https://blankslate.me/. BlankSlate is the definitive WordPress boilerplate starter theme. I've carefully constructed the most clean and minimalist theme possible for designers and developers to use as a base to build websites for clients or to build completely custom themes from scratch. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, standardized and as white label as possible, and most importantly, the CSS is reset for cross-browser-compatability, with no intrusive visual CSS styles added whatsoever. A perfect skeleton theme. For support and suggestions, go to: https://github.com/webguyio/blankslate/issues. Thank you.
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 2025
Requires at least: 5.2
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: blankslate

BlankSlate WordPress Theme 2011-2025
BlankSlate is distributed under the terms of the GNU GPL
*/

/*html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}html{scroll-behavior:smooth}body{line-height:1}a{text-decoration-skip-ink:auto}a[href^="tel"]{color:inherit;text-decoration:none}button{outline:0}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{-webkit-appearance:none;appearance:none;border-radius:0}input[type="search"]{-webkit-appearance:textfield}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}*/
body {
	  font-family: "Inter", sans-serif;
}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}
.screen-reader-text:focus{background-color:#f7f7f7;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#007acc;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.skip-link{left:-9999rem;top:2.5rem;z-index:999999999;text-decoration:underline}
.skip-link:focus{display:block;left:6px;top:7px;font-size:14px;font-weight:600;text-decoration:none;line-height:normal;padding:15px 23px 14px;z-index:100000;right:auto}
.visually-hidden:not(:focus):not(:active), .form-allowed-tags:not(:focus):not(:active){position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);white-space:nowrap}

/* colour scheme */

:root {
  --theme-colour: #B900FF;
  --light-grey: #EEEEEE;
  --dark-grey: #333333;
}

/* custom styling */

body {
	background-color: #000;
}

a {
	color: var(--accent-colour);
	font-weight: 900;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
	text-decoration-color: var(--dark-grey);
}

.hero {
	aspect-ratio: 3 / 1;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.hero img {
	display: block;
	height: 101%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	width: 101%;
	z-index: 10;
}

.hero header {
	bottom: 2rem;
	position: absolute;
	width: 100%;
	z-index: 10;
}

.hero header h1 {
	color: #fff;
	font-weight: 900;
}

@media screen and (max-width: 575px) {
	.hero {
		aspect-ratio: 3 / 2.5;
	}
	.hero header h1 {
		font-size: 1.5rem;
	}
}

/* text area */

.text-row {
	background-color: var(--light-grey);
	padding: 3rem 0 2rem;
}

.text-row.wh {
	background-color: #fff;
}

.text-row.sh {
	padding: 1rem 0 1rem;
}

.text-row.sh .nav-links {
	display: flex;
	flex-direction: row;
	font-size: .85rem;
	justify-content: space-between;
	width: 100%;
}

table {
	margin-bottom: 2rem;
}

table tr td:first-child {
	padding: .4rem 0;
	width: 10% !important;
}

table tr td:first-child img {
	height: auto;
	width: 80%;
}

.text-row.about h2 {
	color: var(--accent-colour);
	font-weight: 900;
}

@media screen and (max-width: 991px) {
	table tr td:first-child {
		width: 20% !important;
	}
}

@media screen and (max-width: 575px) {
	table tr td:first-child {
		width: 30% !important;
	}
}

/* navigation */

#header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

#header .menu {
	display: flex;
	flex-direction: row;
	gap: 1.2rem;
	list-style: none;
	margin-bottom: 0;
}

#header .menu a {
	color: #fff;
	font-size: .9rem;
	font-weight: 400;
	text-shadow: 1px 1px 0 #000;
}

#header .menu a:hover {
	color: var(--accent-colour);
	text-decoration: none;
}

.nav-block {
	align-items: center;
	background-color: rgba(0,0,0,.5);
	border-bottom: 2px solid var(--accent-colour);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 1rem 2rem;
	width: 100%;
}

.nav-block #branding img {
	height: 4rem;
	width: auto;
}

.burgerbox {
	background: transparent;
	border: none;
	box-shadow: none;
	display: none;
	height: 40px;
	outline: none;
	padding: 0;
	position: relative;
	width: 30px;
}
.burgerbox .burgerbar {
	background-color: #fff;
	display: block;
	height: 3px;
	width: 30px;
}
.burgerbox .burgerbar+.burgerbar {
  margin-top: 4px;
}

@media screen and (max-width: 1399px) {
	.nav-block #branding img {
		height: 3rem;
	}
	#header .menu a {
		font-size: .75rem;
	}
}

@media screen and (max-width: 1199px) {
	.nav-block #branding img {
		height: 2.5rem;
	}
	#header .menu a {
		font-size: .65rem;
	}
}

@media screen and (max-width: 991px) {
	.nav-block #branding img {
		height: 2.5rem;
	}
	.burgerbox {
		display: block;
	}
	#menu {
		height: 0;
		left: 0;
		overflow: hidden;
		position: fixed;
		top: 4.5rem;
		width: 100%;

		-webkit-transition: height .5s ease-in-out;
		-moz-transition: height .5s ease-in-out;
		-ms-transition: height .5s ease-in-out;
		-o-transition: height .5s ease-in-out;
		transition: height .5s ease-in-out;
	}
	#menu.visible {
		height: inherit;
	}
	#menu .menu {
		background-color: var(--accent-colour);
		flex-direction: column;
		gap: 0;
		margin: auto;
		max-width: 696px;
		padding: 0;
		width: 100%;
	}
	#header .menu a {
		display: block;
		font-size: 1rem;
		padding: .5rem 1rem;
		text-shadow: none;
	}
}

@media screen and (max-width: 767px) {
	#menu .menu {
		max-width: 516px;
	}
}

@media screen and (max-width: 575px) {
	#menu .menu {
		max-width: inherit;
		width: calc(100% - 24px);
	}
}

/* call to action boxes */

.cta {
	background-color: #000;
	color: #fff;
	display: block;
	font-weight: normal;
	height: 250px;
	margin-bottom: 2rem;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.cta img {
	display: block;
	height: 102%;
	left: 50%;
	object-fit: cover;
	opacity: .5;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	width: 102%;
	z-index: 25;
}

.cta .content {
	bottom: 0;
	display: block;
	padding: 1rem;
	position: absolute;
	width: 100%;
	z-index: 50;
}

.cta .content strong {
	font-weight: 900;
}

.cta .content span {
	border: 2px solid var(--accent-colour);
	color: #fff;
	display: block;
	font-weight: 900;
	padding: .5rem;
	text-align: center;
	width: 100%;
}

.cta:hover .content span {
	background-color: var(--accent-colour);
}

/* sponsor section */

.sponsor {
	position: relative;
	margin-top: -10rem;
	z-index: 500;
}

.sponsor .sponsor-head {
	background-color: var(--accent-colour);
	color: #fff;
	font-weight: 700;
	margin-bottom: 0;
	padding: .25rem;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}

.sponsor .sponsor-content {
	background-color: #fff;
	padding: 2rem 2rem 1rem;
}

.sponsor .sponsor-content img {
	display: block;
	height: auto;
	margin: auto;
	margin-bottom: 2rem;
	max-width: 400px;
	width: 100%;
}

@media screen and (max-width: 991px) {
	.sponsor {
		margin-top: 0;
	}
}

/* footer */

#footer {
	background-color: var(--accent-colour);
	color: #fff;
	font-size: .75rem;
	padding: 2rem 0;
}

#footer a {
	color: #fff;
	font-weight: 900;
	text-decoration: none;
}

#footer a:hover {
	color: var(--dark-grey);
}

#footer .logo-col {
	align-items: flex-end;
	display: flex;
}

#footer .footer-logo {
	height: auto;
	width: 100%;
}

#footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#copyright {
	background-color: #000;
	color: #fff;
	font-size: .75rem;
	padding-top: 1rem;
}

#copyright .col {
	display: flex;
	justify-content: space-between;
}

#copyright a {
	color: #fff;
	font-weight: 400;
	text-decoration: none;
}

#copyright a:hover {
	color: var(--accent-colour);
}