/* latin-ext */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(../fonts/source-sans-pro-extended.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(../fonts/source-sans-pro.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* @group General HTML */

html, body {
	padding: 0;
	margin: 0;
}

body {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 1px;
  background-color: transparent;
  background-image: url('../../../rw_common/images/MarlonDanielHeader.jpeg');
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  letter-spacing: -1px;
}

.center {
  text-align: center;
}

.nowrap {
  white-space: nowrap;
}

a {
	transition: all 100ms ease-in-out;
}

/* @end */

/* @group FreeStyle and ExtraContent Functionality */

/* Hide FreeStyle and ExtraContent containers, unless they are in their designated placeholders */
#contentWrapper #fs,
#sidebar #fs,
#contentWrapper div[id*='myExtraContent'],
#sidebar div[id*='myExtraContent'] {
	display: none;
}

/* @end */

#shootingStar {
  display: none;
  position: absolute;
  width: 5px;
  height: 3px;
  top: -10px;
  left: -10px;
  border-radius: 50%;
  background: white;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  animation: shootingStar 30s ease-in;
  animation-delay: 30s;
  animation-iteration-count: infinite;
}

@keyframes shootingStar {
    0%{
        left: 25%;
        top: -2px;
        width: 1px;
        height: 1px;
    }
    10%{
        left: 120%;
        top: 20%;
        width: 10px;
        height: 5px;
    }
    100%{
        left: 120%;
        top: 20%;
        width: 10px;
        height: 5px;
    }
}

#jetPath {
  display: none;
  position: absolute;
  top: -10px;
  left: -10px;
  animation: jetPath 120s linear;
  animation-delay: 1s;
  animation-iteration-count: infinite;
}

@keyframes jetPath {
    0% {
        left: 0%;
        top: 20%;
    }
    50% {
        left: 80%;
        top: -2px;
    }
    100% {
      left: 80%;
      top: -2px;
    }
}

#jetBeacon {
  background-color: rgba(255, 0, 0, 0);
  animation: jetBeacon 1000ms linear;
  animation-iteration-count: infinite;
  opacity: 1;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: block;
}

@keyframes jetBeacon {
    0%{
        background-color: rgba(255, 0, 0, 1);
    }
    10%{
        background-color: rgba(255, 0, 0, 0);
    }
    20%{
        background-color: rgba(255, 0, 0, 1);
    }
    30%{
        background-color: rgba(255, 0, 0, 0);
    }
}

/* @group Main Wrappers, Padding and Clearers */

#main {
	position: relative;
	margin: 0 auto;
	padding-top: 43%;
}

.nocturnalWidth {
	margin: 0 auto;
}

.nocturnalClearer {
	clear: both;
}

/* Mobile menu */

#toggle_wrapper {
	will-change: transform;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	position: fixed;
	z-index: 899;
	top: 20px;
	right: 20px;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	background: white;
	cursor: pointer;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
	transition: all 300ms ease-in;
}

#menu-toggle {
  width: 75px;
  height: 75px;
  margin: 0;
  position: absolute;
	top: 0;
	right: 0;
}

#menu-toggle * {
	transition: .25s ease-in-out;
}

#menu-toggle span {
  display: block;
  background: #000000;
  border-radius: 2px;
}

#menu-toggle #hamburger {
  position: absolute;
  height: 100%;
  width: 100%;
}

#menu-toggle #hamburger span {
  width: 40px;
  height: 4px;
  position: relative;
  top: 12px;
  left: 18px;
  margin: 10px 0;
}

#menu-toggle #hamburger span:nth-child(1) {
  transition-delay: .5s;
}

#menu-toggle #hamburger span:nth-child(2) {
  transition-delay: .625s;
}

#menu-toggle #hamburger span:nth-child(3) {
  transition-delay: .75s;
}

#menu-toggle #cross {
  position: absolute;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
}

#menu-toggle #cross span:nth-child(1) {
  height: 0%;
  width: 4px;
  position: absolute;
  top: 10%;
  left: 37px;
  transition-delay: 0s;
}
#menu-toggle #cross span:nth-child(2) {
  width: 0%;
  height: 4px;
  position: absolute;
  left: 10%;
  top: 37px;
  transition-delay: .25s;
}

#menu-toggle.open #hamburger span {
  width: 0%;
}
#menu-toggle.open #hamburger span:nth-child(1) {
  transition-delay: 0s;
}
#menu-toggle.open #hamburger span:nth-child(2) {
  transition-delay: .125s;
}
#menu-toggle.open #hamburger span:nth-child(3) {
  transition-delay: .25s;
}
#menu-toggle.open #cross span:nth-child(1) {
  height: 80%;
  transition-delay: .625s;
}
#menu-toggle.open #cross span:nth-child(2) {
  width: 80%;
  transition-delay: .375s;
}

#menu_label:before {
  content: 'Menu';
  right: 90px;
  bottom: 20px;
  position: absolute;
  transition: all 300ms ease-in-out;
  transform: scale(1);
  opacity: 1;
}

body.mobile_menu_open #menu_label:before,
body.pageIsScrolling #menu_label:before {
  transform: scale(0);
  opacity: 0;
}

body.mobile_menu_open {
	overflow: hidden;
}

#mobile_menu {
	margin-right: -100%;
	opacity: 0;
	transition: all 300ms ease-in-out;
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	padding: 15px 120px 15px 15px;
	z-index: 898;
	overflow: auto;
	background-color: white;
}

.mobile_menu_open #mobile_menu {
	margin-right: 0;
	opacity: 1;
}

nav ul {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

nav li {
  will-change: transform, opacity;
  margin: 25px 0;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease-out;
}

.mobile_menu_open nav li {
  transform: translateY(0);
  opacity: 1;
}

nav li:nth-child(1) {
  transition-delay: 0.1s;
}

nav li:nth-child(2) {
  transition-delay: 0.2s;
}

nav li:nth-child(3) {
  transition-delay: 0.3s;
}

nav li:nth-child(4) {
  transition-delay: 0.4s;
}

nav li:nth-child(5) {
  transition-delay: 0.5s;
}

nav li:nth-child(6) {
  transition-delay: 0.6s;
}

nav li:nth-child(7) {
  transition-delay: 0.7s;
}

nav li:nth-child(8) {
  transition-delay: 0.8s;
}

nav li:nth-child(9) {
  transition-delay: 0.9s;
}

nav li:nth-child(10) {
  transition-delay: 1.0s;
}

nav li:nth-child(11) {
  transition-delay: 1.1s;
}

nav li:nth-child(12) {
  transition-delay: 1.2s;
}

nav li:nth-child(13) {
  transition-delay: 1.3s;
}

nav li:nth-child(14) {
  transition-delay: 1.4s;
}

nav li:nth-child(15) {
  transition-delay: 1.5s;
}

nav li:nth-child(16) {
  transition-delay: 1.6s;
}

nav li:nth-child(17) {
  transition-delay: 1.7s;
}

nav li:nth-child(18) {
  transition-delay: 1.8s;
}

nav li:nth-child(19) {
  transition-delay: 1.9s;
}

nav li:nth-child(20) {
  transition-delay: 2.0s;
}

nav li:nth-child(21) {
  transition-delay: 2.1s;
}

nav li:nth-child(22) {
  transition-delay: 2.2s;
}

nav li:nth-child(23) {
  transition-delay: 2.3s;
}

nav li:nth-child(24) {
  transition-delay: 2.4s;
}

nav li:nth-child(25) {
  transition-delay: 2.5s;
}

nav a {
  text-decoration: none !important;
  font-size: 9vw;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
	nav a {
	  font-size: 3vw;
	  font-weight: 300;
	}
}

nav a:hover {
	opacity: 0.5;
}

nav a.current,
nav a.currentAncestor {
	font-weight: 400;
	opacity: 0.5;
	cursor: default;
}

nav ul ul {
	display: none;
}

/* Header Container */

#header {
	position: relative;
	z-index: 100;
	height: auto;
}

#headerContentWrap {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: space-between;
}

#siteTitle h1 {
	padding: 0;
	margin: 0;
}

#siteTitle h1 a {
	text-decoration: none;
	font-weight: normal;
	font-style: normal;
	padding: 0;
	margin: 0;
	font-size: 36px;
	line-height: 1.00em;
}

@media screen and (min-width: 768px) {
  #headerContentWrap {
    flex-direction: row;
    align-items: center;
  }

	#siteTitle h1 a {
		font-size: 48px;
	}
}

/* @end */

/* @group Banner Container */

#banner {
	display: block;
	position: relative;
	z-index: 5;
  padding: %banner_spacing%vh 0;

}

/* @end */

/* @group Banner Content */

#siteSlogan {
	font-weight: bold;
	font-style: normal;
	text-decoration: none;
	font-size: %slogan_size_mobile%vw;
}

@media screen and (min-width: 768px) {
  #siteSlogan {
  	font-size: %slogan_size_desktop%vw;
  }
}

/* @group Navigation */

#nav {
	float: none;
	width: 100%;
	clear: both;
}

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

#nav li {
	padding: 0;
	margin: 0;
}

#nav a {
	padding: 15px 0;
	display: block;
	float: left;
	line-height: 1.10em;
}

#nav ul ul {
	display: none;
}

@media screen and (min-width: 768px) {
	#nav {
		width: auto;
		clear: none;
		display: block;
		text-align: right;
	}

	#nav ul {
		display: block;
	}

	#nav li {
		display: block;
		float: left;
	}

	#nav a {
		margin: 0px;
		padding: 10px;
		display: block;
		float: left;
    font-size: 1.25rem;
	}
}

/* @end */

/* @group Content Container */

#contentContainer {
	display: block;
	position: relative;
	margin-bottom: 40px;
	margin-top: 40px;
}

@media screen and (min-width: 768px) {
	#contentContainer {
		margin-bottom: 80px;
		margin-top: 80px;
	}
}

#contentContainer::before {
	display: table;
	content: ' ';
}

#contentContainer #content {
	padding: 0;
	margin: 0;
	position: relative;
}

#contentWrapper {
	display: block;
	position: relative;

}

/* @end */

/* @group Sidebar */

#aside {
	display: block;
	margin-top: 10px;
}

@media screen and (min-width: 768px) {
	#aside {
		margin-top: 0;
	}
}

#sidebar {
	display: block;
	position: relative;
}

#pluginSidebar {
	display: block;
	position: relative;
}

/* @end */

/* @group Sidebar Block Navigation */

#blockNav {
	position: relative;
}

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

#blockNav li {
	padding: 0;
	margin: 0;
}

#blockNav a {
	display: none;
	text-decoration: none;
	padding: 5px 0;
}

#blockNav a.current {
	font-weight: bold;
	cursor: default;
	opacity: 0.50;
}

#blockNav li.currentListItem li a,
#blockNav li.currentAncestorListItem li a {
	display: block;
}

#blockNav ul ul li:last-child {
	margin-bottom: 20px;
}

#blockNav ul ul ul li:last-child {
	margin-bottom: 0px;
}

/* @end */

/* @group Footer Container */

#footer {
	position: relative;
	height: auto;
	padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.0rem;
}

#footerContent {
	padding: 10px;
	display: block;
	position: relative;
  border-radius: 5px;
}

#footerText {
	position: relative;
}

#lastUpdated {
	position: relative;
	display: none;
}

#lastUpdated:before {
  content: 'Webpage updated: ';
}

/* @end */

/* @group Breadcrumb */

#breadcrumb {
	position: relative;
	width: 100%;
}

#breadcrumb:before {
  content: 'Currently viewing ';
}

#breadcrumb ul {
	list-style: none;
	margin: 0;
	padding: 0;
  display: inline-block;
}

#breadcrumb li {
	display: inline-block;
}

/* @end */

.form-input-button[type="reset"],
.form-input-button[type="submit"] {
  font-size: inherit;
  opacity: 1;
  transition: all 100ms ease-in-out;
}

.form-input-button[type="reset"]:hover,
.form-input-button[type="submit"]:hover {
  opacity: 0.75;
}
