/**
 * Resets
 */


* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

::-moz-selection {
	background-color: #09f;
	color: #fff;
}

::selection {
	background-color: #09f;
	color: #fff;
}

:focus {
	outline: 0;
}

customhtml > * {
	position: relative;
    z-index: 10;
}

/**
 * Global
 */

body,
html {
	min-height: 100vh;
	margin: 0px;
	padding: 0px;
    overflow: hidden;
}

html {
	position: absolute;
}

body {
	background: #ffffff;
	color: #ffffff;
}

a {
   text-decoration:none;
}


/**
 * Backdrop
 */

#backdrop {
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	max-width: 100%;
	z-index: 2;
}




/*

Full Tutorial: https://scotch.io/tutorials/building-
interactive-scrolling-websites-with-scrollmagic-js

CodePen Collection: https://codepen.io/collection/XmearX/

/*

/* Ignore => Base Styles */
body { background: #e3e3e3; -webkit-font-smoothing: antialiased; }
.ScrollSceneIndicators { z-index: 9999999 !important; }

/* Ignore => Useless Header Styles */
header {
  text-align: center;
  background: rgb(0, 164, 213);
  padding: 50px 0 125px;
  color: #fff;
  position: relative;
}
header * { text-shadow: 0px 1px 1px rgba(150, 150, 150, 0.35); }
header h1 { margin-top: 0; font-size: 50px;  }
header h1 i.fa-heart { color: rgb(221, 75, 80); }
header h1 i.fa-magic { color: rgb(39, 97, 223); } 
header hr { max-width: 80px; border-top: solid 2px #fff; }
header h2 { margin-bottom: 30px; }
header p { margin-bottom: 0px; }
header i.fa-angle-double-down {
  font-size: 50px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #111;
}
header i.fa-angle-double-down:after {
  content: 'Start Scrolling Down';
  position: absolute;
  bottom: 100%;
  left: -35px;
  font-size: 15px;
  width: 104px;
}

/* Create huge scrolling area (imitates height of a page) */
maino { padding: 200px 0 1500px 0; overflow: hidden; }

/* Styles for wrap for demo */
.wrap {
  text-align: center;
  background: #fff;
  padding: 50px 0;
  -moz-box-shadow: 0 0 6px rgba(153, 153, 153, 0.25);
  -webkit-box-shadow: 0 0 6px rgba(153, 153, 153, 0.25);
  box-shadow: 0 0 6px rgba(153, 153, 153, 0.25);
  position: relative;
}

/* Default Animation Styles */
#animation {
  background: #000;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin: 50px auto;
  position: relative;
}
#animation i {
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 30px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/**
 * Container
 */

main {
	background: #fff;
	clear: both;
	overflow: hidden;
	position: absolute;
	max-width: 100%;
	width: 100%;
	z-index: 10001;

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

main > div {
	-moz-flex: 1 0 auto;
	-webkit-flex: 1 0 auto;
	flex: 1 0 auto;
	width: 100%;
}


.subpage_overlay {
	display: block;
	pointer-events: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

body.homepage .subpage_overlay {
	display: none;
}
/**
 * Content
 */

i, em {
	font-style: italic;
}

b, strong {
	font-weight: bold;
}

ul, ol {
	margin: 0;
	padding: 0 0 0 1em;
}

sup {
	top: -0.4em;
	vertical-align: baseline;
	position: relative;
}

sub {
	top: 0.3em;
	vertical-align: baseline;
	position: relative;
}

s {
	
}

.slideshow-nav { 
	margin-bottom: 0.5em; 
}

img {
	border: 0;
	padding: 0;
}

blockquote {
	margin: 0;
	padding: 0 0 0 2em;
}

hr {
	background: rgba(127, 127, 127, 0.2);
	border: 0;
	height: 0.08em;
	display: block;
}

.bodycopy {
	display: none;
}

.container {
	min-height: 100%;
}

.content img {
	float: none;
	margin-bottom: 1em;
}

.clear:after {
	content: "";
	display: table;
	clear: both;
}

.loading[data-loading] {
	display: none;
	position: fixed;
	top: 8px; left: 8px;
	z-index: 1;
}

/**
 * Editor styles
 */

[data-css-presets="true"] main {
	background-color: rgba(255, 255, 255, 0) /*!content_center*/;
	text-align: center /*!text_center*/;
	min-height: 100vh /*!content_stretch*/;
	-webkit-align-items: center /*!vertical_middle*/;
	align-items: center /*!vertical_middle*/;
	left: 0 /*!content_center*/;
	margin-left: auto /*!content_center*/;
	margin-right: auto /*!content_center*/;
	right: 0 /*!content_center*/;
}

[data-css-presets="true"] .content_padded {
	padding: 6rem/*!main_margin*/;
}

[data-css-presets="true"] .content_width {
	width: 100rem /*!content_center*/;
}

[data-css-presets="true"] #backdrop {
	width: 100% /*!background_cover*/;
}

[data-predefined-style="true"] main {
	font-size: 2.8rem;
	font-weight: 700;
	color: rgb(255, 255, 255);
	font-family: "Scout Condensed", Social/*!Persona*/;
	font-style: normal;
	line-height: 1.3;
}

[data-predefined-style="true"] main a {
	color: rgb(255, 255, 255);
    text-decoration: none;

}



main a.image-link,
main a.icon-link,
main a.image-link:hover,
main a.icon-link:hover {
	border-bottom: 0;
	padding-bottom: 0;
}

[data-predefined-style="true"] h1 {
	font-family: 'Source Sans Pro', Social /*!Google*/;
	font-style: normal;
	font-weight: 600;
	padding: 0;
	margin: 0;
	font-size: 5rem;
	line-height: 1.5;
	color: #fff;
	text-shadow:0px 0px 0.2rem rgba(255, 255, 255, 1);
}

[data-predefined-style="true"] h1 a {
	color: rgba(255, 255, 255, 1);
    
}

[data-predefined-style="true"] h1 a:hover {


}

[data-predefined-style="true"] h2 {
	font-family: 'Source Sans Pro', Social /*!Google*/;
	font-style: normal;
	font-weight: 600;
	padding: 0;
	margin: 0;
	font-size: 5rem;
	line-height: 1.5;
	color: rgba(225, 31, 31, 1);
	text-shadow:0px 0px 0.2rem rgba(255, 255, 255, 0);
}

[data-predefined-style="true"] h2 a {
    color: rgba(31, 225, 31, 0);
}

[data-predefined-style="true"] h2 a:hover {
    color: rgba(255, 255, 255, 1);
    opacity: 0;
    animation: blink 1s;
}


[data-predefined-style="true"] h3 {
	font-family: "Scout Condensed", Social/*!Persona*/;
	font-style: normal;
	font-weight: 400;
	padding: 0;
	margin: 0;
	font-size: 4.7rem;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.6);
	text-shadow:2px 2px 34px rgba(255, 255, 255, 0.82);
}

[data-predefined-style="true"] h3 a {
	color: rgba(255, 255, 255, 0.6);
}

[data-predefined-style="true"] h3 a:hover {
    color: rgba(0, 0, 0, 0.6);
    text-shadow:2px 2px 20px rgba(0, 0, 0, 1);
}

[data-predefined-style="true"] h4 {
	font-family: "Scout Condensed", Social/*!Persona*/;
	font-style: normal;
	font-weight: 400;
	padding: 0;
	margin: 0;
	font-size: 4.7rem;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.55);
	text-shadow:2px 2px 33px rgba(255, 255, 255, 0.74);
}

[data-predefined-style="true"] h4 a {
	color: rgba(255, 255, 255, 0.55);
}

[data-predefined-style="true"] h4 a:hover {
    color: rgba(0, 0, 0, 0.55);
    text-shadow:2px 2px 20px rgba(0, 0, 0, 1);
}


[data-predefined-style="true"] h5 {
	font-family: "Scout Condensed", Social/*!Persona*/;
	font-style: normal;
	font-weight: 400;
	padding: 0;
	margin: 0;
	font-size: 4.7rem;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.4);
	text-shadow:2px 2px 32px rgba(255, 255, 255, 0.66);
}

[data-predefined-style="true"] h5 a {
	color: rgba(255, 255, 255, 0.4);
}

[data-predefined-style="true"] h5 a:hover {
    color: rgba(0, 0, 0, 0.4);
    text-shadow:2px 2px 20px rgba(0, 0, 0, 1);
}

[data-predefined-style="true"] h6 {
	font-family: "Scout Condensed", Social/*!Persona*/;
	font-style: normal;
	font-weight: 400;
	padding: 0;
	margin: 0;
	font-size: 4.7rem;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.35);
	text-shadow:2px 2px 31px rgba(255, 255, 255, 0.58);
}

[data-predefined-style="true"] h6 a {
	color: rgba(255, 255, 255, 0.35);
}

[data-predefined-style="true"] h6 a:hover {
    color: rgba(0, 0, 0, 0.35);
    text-shadow:2px 2px 20px rgba(0, 0, 0, 1);
}

[data-predefined-style="true"] h7 {
	font-family: "Scout Condensed", Social/*!Persona*/;
	font-style: normal;
	font-weight: 400;
	padding: 0;
	margin: 0;
	font-size: 4.7rem;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.3);
	text-shadow:2px 2px 30px rgba(255, 255, 255, 0.5);
}

[data-predefined-style="true"] h7 a {
	color: rgba(255, 255, 255, 0.3);
}

[data-predefined-style="true"] h7 a:hover {
    color: rgba(0, 0, 0, 0.3);
    text-shadow:2px 2px 20px rgba(0, 0, 0, 1);
}

[data-predefined-style="true"] h8 {
	font-family: "Scout Condensed", Social/*!Persona*/;
	font-style: normal;
	font-weight: 400;
	padding: 0;
	margin: 0;
	font-size: 4.7rem;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.25);
	text-shadow:2px 2px 29px rgba(255, 255, 255, 0.42);
}

[data-predefined-style="true"] h8 a {
	color: rgba(255, 255, 255, 0.25);
}

[data-predefined-style="true"] h8 a:hover {
    color: rgba(0, 0, 0, 0.25);
    text-shadow:2px 2px 20px rgba(0, 0, 0, 1);
}

[data-predefined-style="true"] h9 {
	font-family: "Scout Condensed", Social/*!Persona*/;
	font-style: normal;
	font-weight: 400;
	padding: 0;
	margin: 0;
	font-size: 4.7rem;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.2);
	text-shadow:2px 2px 28px rgba(255, 255, 255, 0.34);
}

[data-predefined-style="true"] h9 a {
	color: rgba(255, 255, 255, 0.2);
}

[data-predefined-style="true"] h9 a:hover {
    color: rgba(0, 0, 0, 0.2);
    text-shadow:2px 2px 20px rgba(0, 0, 0, 1);
}

[data-predefined-style="true"] h10 {
	font-family: "Scout Condensed", Social/*!Persona*/;
	font-style: normal;
	font-weight: 400;
	padding: 0;
	margin: 0;
	font-size: 4.7rem;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.15);
	text-shadow:2px 2px 27px rgba(255, 255, 255, 0.26);
}

[data-predefined-style="true"] h10 a {
	color: rgba(255, 255, 255, 0.15);
}

[data-predefined-style="true"] h10 a:hover {
    color: rgba(0, 0, 0, 0.15);
    text-shadow:2px 2px 20px rgba(0, 0, 0, 1);
}

[data-predefined-style="true"] h11 {
	font-family: "Scout Condensed", Social/*!Persona*/;
	font-style: normal;
	font-weight: 400;
	padding: 0;
	margin: 0;
	font-size: 4.7rem;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.1);
    text-shadow:2px 2px 26px rgba(255, 255, 255, 0.18);
}

[data-predefined-style="true"] h11 a {
	color: rgba(255, 255, 255, 0.1);
}

[data-predefined-style="true"] h11 a:hover {
    color: rgba(0, 0, 0, 0.1);
    text-shadow:2px 2px 20px rgba(0, 0, 0, 1);
}

[data-predefined-style="true"] h12 {
	font-family: "Scout Condensed", Social/*!Persona*/;
	font-style: normal;
	font-weight: 400;
	padding: 0;
	margin: 0;
	font-size: 4.7rem;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.07);
    text-shadow:2px 2px 25px rgba(255, 255, 255, 0.1);
}

[data-predefined-style="true"] h12 a {
	color: rgba(255, 255, 255, 0.07);
}

[data-predefined-style="true"] h12 a:hover {
    color: rgba(0, 0, 0, 0.07);
    text-shadow:2px 2px 20px rgba(0, 0, 0, 0.35);
}

[data-predefined-style="true"] smallinvis {
	font-family: "Scout Condensed", Social/*!Persona*/;
	font-style: normal;
	font-weight: 400;
	padding: 0;
	margin: 0;
	font-size: 2rem;
	line-height: 1.0;
	color: rgba(255, 255, 255, 0);
	text-rendering: optimizeLegibility;
}

[data-predefined-style="true"] biginvis {
	font-family: "Scout Condensed", Social/*!Persona*/;
	font-style: normal;
	font-weight: 400;
	padding: 0;
	margin: 0;
	font-size: 4.7rem;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0);
	text-rendering: optimizeLegibility;
}

[data-predefined-style="true"] small {
	display: inline-block;
	font-size: 1.5rem;
	line-height: 1.5;
	font-family: "MVB Solitaire", Social/*!Persona*/;
	font-style: normal;
	font-weight: 400;
	color: rgba(255, 255, 255, 1);
    background-color: rgba(0, 0, 0, 0.75);
}

[data-predefined-style="true"] small a {
	color: rgba(255, 255, 255, 1);
    border-bottom: 0.05em solid rgba(255, 255, 255, 0.5);
	border-bottom-width: 0.1em;
    padding-bottom: 0.08em;
}


[data-css-presets="true"] .subpage_overlay {
	background-color: rgba(0, 0, 0, 0.4)/*!subpage_overlay*/;
}
/**
 * Backstage Icon
 */

#backstage_icon {
	display: block;
}

/**
 * Breakpoints
 */

[data-css-presets="true"].mobile #plugin,
[data-css-presets="true"].mobile #backdrop,
.mobile #backdrop,
.mobile #plugin {
	position: relative;
	height: 50vh;
	min-width: 100%;
	width: calc(100% - 80rem) /*!right_fit*/;
	top: 0;
	bottom: auto;
	left: 0 /*!right_fit*/;
}

.mobile main,
[data-css-presets="true"].mobile main {
	position: relative;
	min-height: 10px;
	max-width: 100%;
	width: 100%;
}

.mobile main.content_width,
[data-css-presets="true"].mobile main.content_width {
	max-width: 100%;
	width: 100%;
}



