body {
	background-color: #02040c;
	color: white;
	font-family: Roboto, 'Open Sans', Helvetica, sans-serif;
}
body::after {
    content: "";
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background-image: radial-gradient(circle at 100% 100%, #000129 0, #02040c 60%);
}
*::selection {
	background-color: #2dd4dc;
	color: black;
}
*::-moz-selection {
	background-color: #2dd4dc;
	color: black;
}
header {
	padding: 2.5rem 0;
	/* border-top: 4px solid #3bb6ff; */
}
nav {
	padding: 0 48px;
}
h1 {
	color: #18bbff;
	font-weight: 100;
	font-size: 4rem !important;
	letter-spacing: -3px;
}
h2 {
	font-weight: 300;
	font-size: 2.75rem;
}
h3 {
	font-size: 2rem;
}
p {
	color: #a6a7aa;
	color: #DEE3E6;
	font-weight: 300;
	font-size: 1.25rem;
}
a {
	text-decoration: none;
	color: #00efff;
	color: #486CFF;
}
a:hover {
	text-decoration: none;
	color: #00efff;
}
.logo {
	width: 480px;
	height: 180px;
	display: block;
	background-image: url('../Slice_logo_lg.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 0 auto;
	overflow: hidden;
	text-indent: -2000rem;
	position: relative;
}
.logo::after {
	content: 'Design & Development';
	color: rgba(255,255,255,.5);
	display: block;
	font-size: .8rem;
	text-align: right;
	width: 100%;
	height: 20px;
	position: absolute;
	width: auto;
	bottom: 1.25rem;
	right: 1.25rem;
	text-indent: 0;
}


ul {
	list-style: none;
	margin-bottom: 0;
}
ul li {
	float: left;
}
ul li a {
	position: relative;
	text-decoration: none;
	display: block;
	padding: 1rem 0;
	margin: 0 1rem;
	color: white;
	color: #18bbff;
}
ul li a:hover, ul li.active a, ul li.active a:hover {
	color: #fff;
	text-decoration: none;
}
ul:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	clear: both;
}

#navigation a span {
	display: block;
	height: 2px;
	width: 0;
	background-color: #00aeef;
	position: absolute;
	bottom: 0; left: 0;
	transition: width 0.125s;
	-webkit-transition: width 0.125s;
}

#navigation li a:hover span, #navigation li.active a span, #navigation li.active a:hover span {
	width: 100%;
	-webkit-transition: width 0.125s;
	transition: width 0.125s;
	background-color: #00efff;
	background-image: linear-gradient(#00efff, #ffffff, #00efff);
	box-shadow: 0 0 4px #00aeef95;
}

.sub {
	text-align: center;
	line-height: 1.25;
    background-image: linear-gradient(#00aeef, #00dbde, #00aeef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}
.sub::after {
	content: '';
	display: block;
	width: 5rem;
	height: 4px;
	margin: 2rem auto;
	background-color: #00efff;
	background-image: linear-gradient(#00efff, #ffffff, #00efff);
	box-shadow: 0 0 4px #00aeef95;
}
p.lead {
	position: relative;
	line-height: 2em;
	color: rgb(205, 220, 255);
}
.lead .fas {
	color: #18bbff;
}