body {
	background-color: #000000ed;
	overflow-x: hidden;
	margin:0;
}

* {
	font-family: Verdana,sans-serif;
    font-size: 15px;
    line-height: 1.5;
	box-sizing: border-box;
	color: white;
	-webkit-font-smoothing: antialiased;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Segoe UI",Arial,sans-serif;
    font-weight: 400;
    margin: 10px 0;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

/* SITE HEADER */


.top {
    position: relative;
    background-color: #121212;;
    height: 68px;
    padding-top: 20px;
    line-height: 50px;
    overflow: hidden;
    z-index: 2;
}

.top-logo {
    font-family: fontawesome;
    text-decoration: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 37px;
    letter-spacing: 3px;
    color: #555555;
    display: block;
    position: absolute;
    top: 17px;
}

.top-logo img {
    width: 48px;
    display: inline-block;
    line-height: 1;
    height: 48px;
}

.top-title {
    text-decoration: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 37px;
    letter-spacing: 3px;
    display: inline-block;
}

.top-container, .top-panel {
    padding: 0.01em 16px;
}


#site-header {
    background: #191919;
    margin: 0;
	z-index: 6;
}

#site-header nav {
	width:100%;
}

#site-header > div {
    height: 50px;
}

.header-wrapper {
    display: block;
    width: auto;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    float: left;
    text-align: center;
    height: 100%;
}

ul.horizontal {
    font-family: Verdana,sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #000!important;
    box-sizing: inherit;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
	width:100%;
}

li {
    /* vertical-align: middle; */
    /* font-family: Verdana,sans-serif; */
    /* font-size: 15px; */
    /* line-height: 1.5; */
    /* color: #000!important; */
    list-style-type: none;
    /* box-sizing: inherit; */
    float: left;
}

nav a {
    font-family: Verdana,sans-serif;
    font-size: 15px;
    line-height: 1.5;
    list-style-type: none;
    box-sizing: inherit;
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    /* background-color: #4CAF50; */
}

nav a.active {
    background: #E91E63;
}

nav a:hover {
	background: #000;
}


/* PAGE HEADER */


.page-header {
    margin-left: 15px;
    padding: 0px 15px;
}

/* PAGE */
.container {
	max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
    display: block;
}

.page-block {
    background: #212121;
    /*margin: 15px;*/
}


/* UTILITY */


.auto-center {
	width: 100%;
    text-align: center;
    text-align: -webkit-center;
}

.auto-center-child {
	width: 100%;
	max-width: 1280px;
}

.sticky + .content {
  padding-top: 65px;
}

.content {
  padding-top: 16px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%
}

.vmiddle {
    vertical-align: middle;
}

.hidden {
	display: none;
}

.darken {
	filter: brightness(50%);
}

.abs-centered {
    position:absolute;
    left:0%;
    right:0%;
    top:0%;
    bottom:0%;
    margin:auto;
	transition: background 0.7s cubic-bezier(.25,.8,.25,1);
	pointer-events: none;
}

.no-scroll {
	overflow-y:hidden;
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

.card-1, .card-1-hover {
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.card-1-hover:hover {
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.card-2, .card-2-hover {
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	z-index: 1;
}

.card-2-hover:hover {
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
	/*transform: scale(1.2);*/
	z-index: 2;
}

.card-3 {
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.card-4 {
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.card-5 {
	box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}


/* ANIMATION */


@keyframes fade-in {
	from {opacity: 0%;}
	to   {opacity: 100%;}
}

@keyframes reveal {
  from { transform: scale(0.001); }
  to { transform: scale(1); }
}

@keyframes slide {
  to { transform: translateX(1.5em) }
}