/**
 * Resets
 */


* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
    align-items: top;
}

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

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

:focus {
	outline: 0;
}

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

/**
 * Global
 */

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

@keyframes gradientShift {
    0%, 100% {
                background-position: 0% 50%;
            }
     50% {
                background-position: 100% 50%;
            }
        }

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

html {
	position: relative;
}

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


/**
 * 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%;
}

.title {
     color: #8da3cc;
}

.title:after{
	 background: linear-gradient(90deg, rgba(8, 17, 45, 0.85), rgba(15, 30, 65, 0.75), rgba(25, 45, 85, 0.65), rgba(35, 60, 105, 0.55), rgba(50, 80, 130, 0.45));
     background-size: 300% 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;
    background: none;
}

b, strong:hover {
	height: 0;
    background: none;
}

ul, ol {
	margin: 0;
	padding: 0 0 0 1em;
    list-style:square;
}

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

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

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

img {
	border: 0;
	padding: 0;
    border: .1px solid;
    border-color: rgb(0,0,0,0.2);
    border-radius: 8px;
    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.ico img {
	border:none;
}

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: 0em;
}

.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: rgb(255, 255, 255)/*!content_center*/;
	text-align: left /*!text_left*/;
	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: 10rem/*!main_margin*/;
}

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

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

[data-predefined-style="true"] main {
	font-size: 2rem;
	font-weight: 400;
	color: rgba(8, 17, 45, 0.85);
	font-family: "Marat Sans", Social /*!Persona*/;
	font-style: normal;
	line-height: 1.4;
}

[data-predefined-style="true"] main a {
	color: rgba(8, 17, 45, 0.85);
    padding-bottom: 0.1em;
    text-decoration: none;
}

main a {
	position: relative;
    text-decoration: none;
    display: inline-block;
    padding-bottom: 8px;
    transition: color 0.3s ease;
}

main a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 1px;
     background: linear-gradient(90deg, #0066cc, #0088ff, #09f, #0055bb, #004499);     background-size: 200% 100%;
     border-radius: 2px;
     transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     animation: gradientShift 3s ease-in-out infinite;
}

main a:hover::after {
            width: 100%;
        }
    
main a.image-link,
main a.icon-link,
main a.image-link:hover,
main a.icon-link:hover {
	height: 0;
    background: none;
    animation: none;
    transition: none;
    width: 0%;
}

[data-predefined-style="true"] h1 {
	font-family: "Marat Sans", Social /*!Persona*/;
	font-style: normal;
	font-weight: 700;
	padding: 0;
	margin: 0;
	font-size: 8rem;
	line-height: 1;
	color: rgba(8, 17, 45, 0.85);
	text-rendering: optimizeLegibility;
}

[data-predefined-style="true"] h1 a {
	color: rgb(50, 124, 225);
}

[data-predefined-style="true"] h2 {
	font-family: "Marat Sans", Social /*!Persona*/;
	font-style: normal;
	font-weight: 700;
	padding: 0;
	margin: 0;
	color: rgba(8, 17, 45, 0.85);
	font-size: 2.8rem;
	line-height: 1.5;
	text-rendering: optimizeLegibility;
}

[data-predefined-style="true"] h2 a {
	color: rgb(50, 124, 225);
}

[data-predefined-style="true"] small {
	display: inline-block;
	font-size: 1.4rem;
	line-height: 1.4;
	letter-spacing: .1em;
    text-transform: uppercase;
    font-family: Rajdhani, Social /*!Google*/;
	font-style: normal;
	font-weight: 500;
	color: rgba(7, 16, 43, 0.6);
}

[data-predefined-style="true"] small a {
	color: rgb(50, 124, 225);
}


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

