/**Blur**/
a.blur
{
	text-decoration: none;
	color: #fff;
}

a.blur:hover, a.blur:focus
{
	text-decoration: underline;
	color: rgba(255, 255, 255, 0.9);
}

.textshadow a.blur, .textshadow a.blur:hover, .textshadow a.blur:focus
{
	text-decoration: none;
	color: rgba(0,0,0,0);
	outline: 0 none;
	-webkit-transition: 400ms ease 100ms;
	-moz-transition: 400ms ease 100ms;
	transition: 400ms ease 100ms;
}

/* no blur */
.textshadow a.blur.out,
.textshadow a.blur:hover, .textshadow a.blur:focus
{
	text-shadow: 0 0 0 rgba(255, 255, 255, 0.9);
}

/* full blur */
.textshadow a.blur,
.textshadow a.blur.out:hover, .textshadow a.blur.out:focus
{
	text-shadow: 0 0 4px rgba(255, 255, 255, 0.9);
 
}

/**Fade In**/

@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }


.fade-in {
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fade-in.one {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}


/**
 * FONTS
 */

@font-face {
    font-family: 'Neue Haas Unica Pro';
    src: url('https://files.persona.co/84637/NeueHaasUnicaPro-Regular.woff2') format('woff2'),
        url('https://files.persona.co/84637/NeueHaasUnicaPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Unica Pro';
    src: url('https://files.persona.co/84637/NeueHaasUnicaPro-Thin.woff2') format('woff2'),
        url('https://files.persona.co/84637/NeueHaasUnicaPro-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Unica Pro';
    src: url('https://files.persona.co/84637/NeueHaasUnicaPro-Bold.woff2') format('woff2'),
        url('https://files.persona.co/84637/NeueHaasUnicaPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Unica Pro';
    src: url('https://files.persona.co/84637/NeueHaasUnicaPro-Medium.woff2') format('woff2'),
        url('https://files.persona.co/84637/NeueHaasUnicaPro-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}




/**
 * Resets
 */


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

::-moz-selection {
	background-color: #FF5900;
	color: #fff;
}

::selection {
	background-color: #FF5900;
	color: #fff;
}

:focus {
	outline: 0;
}

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

/**
 * Global
 */

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

html {
	position: relative;
}

body {
	background: #333;
	color: #000;
}

a:active {
	opacity: 0.7;
}

/**
 * Backdrop
 */

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

/**
 * Container
 */

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

	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 {
    margin-left: 0.5vh;
	top: -0.3em;
	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: 100;
}

/**
 * Editor styles
 */

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

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

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

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

[data-predefined-style="true"] main {
	font-size: 1rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	font-family: 'Neue Haas Unica Pro', helvetica, sans-serif /*!System*/;
	font-style: normal;
	line-height: 1.5;
    letter-spacing: 0.018rem;
}

[data-predefined-style="true"] main a {
	color: rgba(255, 255, 255, 0.9);
    padding-bottom: 0.05em;
    border-bottom: 0.05em solid rgba(127, 127, 127, 0.4);
    text-decoration: none;
}

[data-predefined-style="true"] main a:hover {
border-bottom: 0.05em solid rgba(62, 62, 62, 0);
}

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: 'Helvetica Neue', Helvetica, sans-serif, 'Helvetica Bold', Social /*!System*/;
	font-style: normal;
	font-weight: 700;
	padding: 0;
	margin: 0;
	font-size: 3.2rem;
	line-height: 1;
	color: rgba(255, 255, 255, 0.9);
	text-rendering: optimizeLegibility;
}

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

[data-predefined-style="true"] h2 {
	font-family: 'Neue Haas Unica Pro', Helvetica, sans-serif, /*!System*/;
	font-style: normal;
	font-weight: normal;
    letter-spacing: 0.160rem;
    text-transform: uppercase;
	padding: 0;
	margin: 0;
	color: rgba(189, 189, 189, 0.9);
	font-size: 1rem;
	line-height: 1.2;
	text-rendering: optimizeLegibility;
}

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

[data-predefined-style="true"] small {
    display: inline-block;
	font-size: 1.1rem;
	line-height: 1.2;
	font-family: 'Neue Haas Unica Pro', Helvetica, sans-serif /*!System*/;
	font-style: normal;
	font-weight: normal;
    text-transform: uppercase;
	color: rgba(189, 189, 189, 0.9);
}

[data-predefined-style="true"] small a {
	color: rgb(0, 255, 216);
	border-bottom-width: 0em;
}


[data-css-presets="true"] .subpage_overlay {
	background-color: rgba(109, 109, 109, 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%;
}

::selection {
    background-color: #FF5900;
    color: #fff;
}

  .animated-lines .line {
    display: block;
    overflow: hidden;
  }

  .animated-lines .line span {
    display: inline-block;
    transform: translateY(20px);
    opacity: 0;
  }
