/* Custom layout CSS declarations */
html, body {
	position: relative;
	height: 100%;
	min-height: 100%;
	background: #000;	
	opacity: 1.0;
	-webkit-transition: background 1s linear;
	-moz-transition: background 1s linear;
	-o-transition: background 1s linear;
	-ms-transition: background 1s linear;
	transition: background 1s linear;
	-webkit-animation: fadeInAtLoad 1s;
    animation: fadeInAtLoad 1s;
    /*overflow: auto;
	-webkit-overflow-scrolling: touch;*/
	overflow-x: hidden;
    color: #fff;
    font-size: 16px;
    font-family: 'Muli', sans-serif;
}
#body-sky {
	/*background-color: #000;*/
	background-position: center center !important;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;	
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
	opacity: 1.0;
	box-sizing: content-box !important;
	-webkit-transition: background 1s linear;
	-moz-transition: background 1s linear;
	-o-transition: background 1s linear;
	-ms-transition: background 1s linear;
	transition: background 1s linear;
	-webkit-animation: fadeInAtLoad 1s;
    animation: fadeInAtLoad 1s;
	color: #fff;
}
body.sky1 #body-sky { background: url('../img/bg1.jpg') no-repeat; }
body.sky2 #body-sky { background: url('../img/bg2.jpg') no-repeat; }
body.sky3 #body-sky { background: url('../img/bg3.jpg') no-repeat; }
body.sky4 #body-sky { background: url('../img/bg4.jpg') no-repeat; }
body.sky5 #body-sky { background: url('../img/bg5.jpg') no-repeat; }
body.sky6 #body-sky { background: url('../img/bg6.jpg') no-repeat; }
@media (min-width: 668px) {
	background-attachment: fixed !important;
}
@media (max-width: 667px;) {
	#body-sky {
		backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		
		position: fixed;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100vh;
	    z-index: -1;

	    -webkit-background-size: cover !important;
		-moz-background-size: cover !important;
		-o-background-size: cover !important;
		background-size: cover !important;
	}
}
#body-trees {
	position: fixed;
	bottom: 250px;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../img/trees.png') no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
	z-index: 20;
}
@media (min-width: 768px) {
	#body-trees {
		bottom: 200px;
	}
}
@media (min-width: 1200px) {
	#body-trees {
		bottom: 100px;
	}
}
@media (min-width: 1640px) {
	#body-trees {
		bottom: 50px;
	}
}
@media (max-width: 812px) {
	#body-trees {
		bottom: 0px;
	}
}
@media (max-width: 667px) {
	#body-trees {
		display: none !important;
	}
}
#body-fade {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background-color: rgba(0,0,0,0.25);*/
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 40%, rgba(0,0,0,1) 80%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 40%,rgba(0,0,0,1) 80%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 40%,rgba(0,0,0,1) 80%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
	z-index: 30;
}
@media (max-width: 667px) {
	#body-fade {
		display: none !important;
	}
}
@media (min-width: 768px) {
	#body-fade {
		background: -moz-linear-gradient(top, rgba(0,0,0,0) 45%, rgba(0,0,0,1) 85);
		background: -webkit-linear-gradient(top, rgba(0,0,0,0) 45%,rgba(0,0,0,1) 85%);
		background: linear-gradient(to bottom, rgba(0,0,0,0) 45%,rgba(0,0,0,1) 85%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
	}
}
@media (min-width: 1200px) {
	#body-fade {
		background: -moz-linear-gradient(top, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 90%);
		background: -webkit-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,1) 90%);
		background: linear-gradient(to bottom, rgba(0,0,0,0) 50%,rgba(0,0,0,1) 90%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
	}
}
#body-content {
	position: relative;
	margin: 0;
	padding: 0;
	z-index: 40;
}
header,
section, 
footer {
	position: relative;
	z-index: 50;
}
body.index #body-columns {}


/* Logo */
body.index #body-columns #logo {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@media (max-width: 575px) {
	body.index #body-columns #logo {
		max-width: 180px;
	}
}
@media (min-width: 576px) {
	body.index #body-columns #logo {
		max-width: 240px;
	}
}
@media (min-width: 768px) {
	body.index #body-columns #logo {
		max-width: 180px;
	}
}
@media (min-width: 992px) {
	body.index #body-columns #logo {
		max-width: 180px;
	}
}
@media (min-width: 1200px) {
	body.index #body-columns #logo {
		max-width: 200px;
	}
}
@media (min-width: 1400px) {
	body.index #body-columns #logo {
		max-width: 220px;
	}
}
#roles {}
#roles ul {}
#roles ul li {
	color: #fff;
	font-weight: 400;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1cm;
}
#roles ul li strong {
	font-weight: 900;
}
#roles a {
	border-width: 2px !important;
	border-color: rgba(255,255,255,0.5) !important;
	color: #fff;
	font-size: 14px;
	font-weight; 400;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#roles a:active {}
#roles a:hover {
	border-color: rgba(255,255,255,1) !important;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
/*body.sky1 #roles { background-color: rgba(103, 32, 193, 0.48); }
body.sky2 #roles { background-color: rgba(103, 32, 193, 0.48); }
body.sky3 #roles { background-color: rgba(103, 32, 193, 0.48); }
body.sky4 #roles { background-color: rgba(103, 32, 193, 0.48); }
body.sky5 #roles { background-color: rgba(103, 32, 193, 0.48); }
body.sky6 #roles { background-color: rgba(103, 32, 193, 0.48); }*/
@media (max-width: 575px) {
	#roles {
		max-width: 100%;
	}
}
@media (min-width: 576px) {
	#roles {
		max-width: 270px;
	}
}
@media (min-width: 768px) {
	#roles {
		max-width: 210px;
	}
}
@media (min-width: 992px) {
	#roles {
		max-width: 210px;
	}
}
@media (min-width: 1200px) {
	#roles {
		max-width: 230px;
	}
}
@media (min-width: 1400px) {
	#roles {
		max-width: 250px;
	}
}


/* Header */
body.index #body-columns header {}
body.index #body-columns header h1 {
	/*color: #fff;*/
	font-weight: 100;
	font-family: 'Heebo', sans-serif;
	letter-spacing: -0.04cm;
	text-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
}
@media (max-width: 550px) {
	body.index #body-columns header h1 {
		font-size: 3.5rem;
		line-height: 3.5rem;
	}
}
body.index #body-columns header h1 strong {
	font-weight: 300;
}
body.sky1 #body-columns header h1 { color: #8ce4ff; }
body.sky2 #body-columns header h1 { color: #60d1e4; }
body.sky3 #body-columns header h1 { color: #f5bfff; }
body.sky4 #body-columns header h1 { color: #c7c9ff; }
body.sky5 #body-columns header h1 { color: #9fe9ff; }
body.sky6 #body-columns header h1 { color: #8e8dff; }
body.index #body-columns header h2 {
	color: #fff;
	font-weight: 100;
	font-family: 'Heebo', sans-serif;
	letter-spacing: -0.04cm;
	text-shadow: 0px 0px 20px rgba(191, 206, 208,0.88);
}
body.index #body-columns header h5 {
	color: #fff;
	font-weight: 900;
	letter-spacing: 0cm;
}
body.index #body-columns header h5 span {
	font-weight: 200;
}
body.index #body-columns header #contextual-container {}
body.index #body-columns header #contextual {
	background: rgb(118,38,221);
	background: -moz-linear-gradient(left, rgba(118,38,221,1) 0%, rgba(74,21,141,1) 75%);
	background: -webkit-linear-gradient(left, rgba(118,38,221,1) 0%,rgba(74,21,141,1) 75%);
	background: linear-gradient(to right, rgba(118,38,221,1) 0%,rgba(74,21,141,1) 75%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7626dd', endColorstr='#4a158d',GradientType=1 );
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
}
/*body.sky1 #body-columns header #contextual {
	background: rgb(81,170,197);
	background: -moz-linear-gradient(left, rgba(81,170,197,1) 0%, rgba(0,118,143,1) 75%);
	background: -webkit-linear-gradient(left, rgba(81,170,197,1) 0%,rgba(0,118,143,1) 75%);
	background: linear-gradient(to right, rgba(81,170,197,1) 0%,rgba(0,118,143,1) 75%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#51aac5', endColorstr='#00768f',GradientType=1 );
}*/
#contextual .nav-tabs {
	border-bottom: 0px;
}
#contextual .nav-item {
	margin-bottom: 0px !important;
}
@media (max-width: 600px) {
	#contextual .nav-item {
		display: block;
		width: 100%;
	}
}
#contextual .nav-link {
	border-color: transparent;
	background-color: transparent;
	padding-top: 1px !important;
	padding-bottom: 1px !important;
	color: #e0cafc;
	font-size: 0.8rem;
	font-weight: 500;
	/*text-transform: uppercase;*/
	text-decoration: none;
	/*letter-spacing: 0.0175cm;*/
}
#contextual .nav-link.active {
	background-color: rgba(0,0,0,0.4);
	border-color: transparent;
}
#contextual .nav-link:hover {
	border-color: rgba(154,78,246,0.55);
}
/*#contextual .nav-item.active:hover {
	background-color: rgba(0,0,0,0.4);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}*/


/* Projects */
body.index #projects {}
body.index #projects .project {
	position: relative;
	background-color: rgba(0,0,0,0.4);
	min-height: 200px;
}
/*body.index #projects .project img {
	position: relative;
	-webkit-filter: grayscale(25%);
	filter: grayscale(25%);
	transition: all 0.5s ease;
}
body.index #projects .project:hover img {
	-webkit-filter: grayscale(0%);
   	filter: grayscale(0%);
	transition: all 0.5s ease;
}*/
body.index #projects .project img.d-xl-block {
	min-width: 100%;
	min-height: 100%;
}
body.index #projects .project img.other-project {
	max-height: 60px;
	margin-bottom: 2.5rem;
	opacity: 0.6;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
body.index #projects .project h6 {
	margin-bottom: 2rem;
	color: #9aa7b3;
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: 0.02cm;
}
body.index #projects .project img.other-project.unity, 
body.index #projects .project img.other-project.lows {
	max-width: 140px;
}
body.index #projects .project a:hover img.other-project {
	opacity: 1;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
body.index #projects .project a {}
body.index #projects .project a .project-link-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer !important;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
body.index #projects .project a:hover .project-link-container {
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
body.index #projects .project a .project-link-container .project-link {
	background-color: rgba(132, 45, 243,0.75);
	-webkit-clip-path: polygon(0 0, 100% 24px, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 24px, 100% 100%, 0 100%);
	padding-top: 1.75rem !important;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	cursor: pointer !important;
}
body.index #projects .project a .project-link-container .project-title {
	background-color: #591ba7;
	-webkit-clip-path: polygon(0 0, 100% 14px, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 14px, 100% 100%, 0 100%);
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 20px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	cursor: pointer !important;
}
body.index #projects .project a .project-link-container .project-title span.badge {
	position: relative;
	opacity: 0;
	background-color: rgba(0,0,0,0.3);
	padding-top: 4px !important;
	padding-bottom: 5px !important;
	color: #e0cafc;
	font-size: 0.8rem;
	font-weight: 500;
	/*text-transform: uppercase;*/
	text-decoration: none;
	-webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -o-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
body.index #projects .project a:hover .project-link-container .project-title span.badge {
	opacity: 1;
	-webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
body.index #projects .project a:hover .project-link-container .project-title {
	padding-bottom: 3.5rem !important;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
@media (max-width: 1199px) {
	body.index #projects .project a:hover .project-link-container .project-title {
		padding-bottom: 2rem !important;
	}
}
.tab-pane.active {
    /*-webkit-animation: fadeInAndShift 1s;
    animation: fadeInAndShift 1s;*/
}
body.index #projects .project .about-container {
	background-color: rgba(132, 45, 243,0.75);
	-webkit-clip-path: polygon(0 0, 100% 28px, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 28px, 100% 100%, 0 100%);
	padding-top: 1.75rem !important;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	cursor: pointer !important;
}
body.index #projects .project .about-container .about {
	background-color: #591ba7;
	-webkit-clip-path: polygon(0 0, 100% 18px, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 18px, 100% 100%, 0 100%);
	padding-top: 2rem;
	padding-bottom: 2rem;
	color: #d1b0fa;
	font-size: 14px;
	font-weight: 400;
	line-height: 19px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	cursor: pointer !important;
}
body.index #projects .project .about-container .about strong {
	color: #fff;
}
body.index #projects .project .about-container.no-pointer, 
body.index #projects .project .about-container.no-pointer .about.no-pointer {
	cursor: default !important;
}


/* Development */
body.index #body-columns #dev {}
body.index #body-columns #dev .bot-container {
	background-color: rgba(0,0,0,0.5);
	padding-top: 2rem;
	padding-bottom: 2rem;
}
body.index #body-columns #dev h5 {
	color: #ffaf3b;
	font-size: 1.6rem;
	font-weight: 200;
	line-height: 1.5rem;
	letter-spacing: -0.02cm;
}
body.index #body-columns #dev h5 strong {
	font-weight: 500;
}
body.index #body-columns #dev p {
	color: #fff;
	font-size: 0.85rem;
	line-height: 1.2rem;
}
body.index #body-columns .shift-nav {
	border: 1px solid #ffaf3b;
	margin-top: 3px;
	padding: 0.1rem 0.4rem;
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	text-decoration: none;
	line-height: 0.65rem;
	white-space: nowrap;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
body.index #body-columns .shift-nav:hover {
	border: 1px solid transparent;
	background-color: rgba(255,255,255,0.3);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
body.index #body-columns #dev .twitch-bot {
	/*border-width: 1px !important;
	border-color: rgba(41,12,77,0.55) !important;*/
	/*border-color: rgba(255,255,255,0.3) !important;*/
}
body.index .accordion .card-header a.btn.collapsed {
	border-color: #9a48ff;
	background-color: transparent;
	transition: all 0.3s ease-in-out;
}
body.index .accordion .card-header a.btn {
	border-color: rgba(255,255,255,0.25);
	background-color: rgba(255,255,255,0.25);
	transition: all 0.3s ease-in-out;
}
body.index .accordion .card-header a.btn.collapsed:hover {
	border-color: #fff;
	background-color: transparent;
	font-weight: normal;
	transition: all 0.3s ease-in-out;
}
body.index .accordion .card-header a.btn:hover {
	border-color: #fff;
	font-weight: normal;
	transition: all 0.3s ease-in-out;
}
body.index #discordBotDetails .card-header a.btn.collapsed::before {
	content: 'Learn More about Persephone Bot ↓';
	transition: all 0.4s ease-in-out;
}
body.index #twitchBotDetails .card-header a.btn.collapsed::before {
	content: 'Learn More about Sylamore Bot ↓';
	transition: all 0.4s ease-in-out;
}
body.index .accordion .card-header a.btn::before {
	content: 'Collapse details ↑';
	transition: all 0.4s ease-in-out;
}
body.index #body-columns #dev ul {}
body.index #body-columns #dev ul li {
	position: relative;
	margin-bottom: 4px;
	padding-left: 16px;
	color: #fff;
	font-size: 0.85rem;
	line-height: 1.1rem;
}
body.index #body-columns #dev ul li.text-muted {
	color: #a8b5c1 !important;
}
body.index #body-columns #dev ul li.text-muted strong {
	color: #ffaf3b;
}
body.index #body-columns #dev ul li.text-muted h6 {
	color: #ffaf3b;
	font-size: 0.9rem;
	text-transform: none;
	letter-spacing: 0cm;
}
body.index #body-columns #dev ul li .material-icon {
	position: absolute;
	top: 3px;
	left: 0;
	color: rgba(255,255,255,0.5);
	font-size: 0.85rem;
	font-weight: 500;
	text-decoration: none;
	line-height: 0.75rem;
}
body.index #body-columns #dev .experience {
	font-size: 0.8rem;
	line-height: 1.2rem;
}
body.index #body-columns #dev .experience .badge-pill {
	display: inline-table;
	vertical-align: middle;
	margin-bottom: 2px;
	margin-right: 0.25rem;
	font-size: 55%;
}
body.index #body-columns #dev .experience .one { background-color: #3e41b3; }
body.index #body-columns #dev .experience .two { background-color: #0076be; }
body.index #body-columns #dev .experience .three { background-color: #00baac; }
body.index #body-columns #dev .experience .four { background-color: #26a651; } /* 29b357 */
body.index #body-columns #dev .experience .five { background-color: #9dc844; }
body.index #body-columns #dev .experience .six { background-color: #ffeb41; }
body.index #body-columns #dev .experience .seven { background-color: #ff8c1a; }
body.index #body-columns #dev .experience .eight { background-color: #ff5733; }
body.index #body-columns #dev .experience .nine { background-color: #c70039; }
body.index #body-columns #dev .experience .ten { background-color: #7f0b7d; } 
body.index #body-columns #dev .experience .eleven { background-color: #c211bf; } 
body.index #body-columns #dev .experience .twelve { background-color: #7219e1; } 
body.index #body-columns #dev .experience h6 {
	/* color: rgb(255, 175, 59); */
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.01cm;
}
body.index #body-columns #dev .experience .progress {
	height: 5px;
	border-radius: 0;
	background-color: rgba(0,0,0,0.3);
}
body.index #body-columns #dev .experience .progress .progress-bar {
	/* padding-right: 0.75rem;
	color: #fff;
	font-size: 0.55rem;
	line-height: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.02cm;
	text-transform: uppercase;
	text-align: right; */
}
body.index #body-columns #dev .experience .border-bottom {
	border-color: rgba(0, 0, 0, 0) !important;
	/*border-color: rgba(154, 72, 255, 0) !important;*/
	/* border-color: rgba(255, 175, 59, 0.4) !important; */
}

/* Community Design */
body.index #body-columns #community {}
body.index #body-columns #community .community-logo {
	/*-webkit-transition: background 1s linear;
	-moz-transition: background 1s linear;
	-o-transition: background 1s linear;
	-ms-transition: background 1s linear;
	transition: background 1s linear;
	-webkit-animation: fadeInAtLoad 1s;
    animation: fadeInAtLoad 1s;*/
}
body.index #body-columns #community h3 {
	color: #fff;
	font-size: 1.75rem;
	font-weight: 200;
	letter-spacing: -0.02cm;
	text-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
}
body.index #body-columns #community h3 strong {
	color: #fff;
	font-weight: 500;
}
body.index #body-columns #community h4 {
	color: #9a48ff;
	font-size: 1.25rem;
	font-weight: 300;
	letter-spacing: 0cm;
}
body.index #body-columns #community h4 a {
	color: #fff;
	font-weight: 500;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
body.index #body-columns #community h4 a:hover {
	color: #9a48ff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
body.index #body-columns #community h5 {
	color: #fbf4dc;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.2rem;
	letter-spacing: 0cm;
	text-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
}
body.index #body-columns #community #community-header {
	position: relative;
	z-index: 42;
}
body.index #body-columns #community #community-body {
	position: relative;
	margin-top: -70px;
	z-index: 41;
}
body.index #body-columns #community .community-container {
	
}
body.index #body-columns #community .community-container .community-details {
	background-color: rgba(0,0,0,0.5);
	padding-top: 5rem !important;
	padding-right: 2.5rem !important;
	padding-bottom: 2.5rem !important;
	padding-left: 2.5rem !important;
}
body.index #body-columns #community .community-details h2 {
	height: auto;
	color: #fbf4dc;
	font-size: 40px;
	font-weight: 400;
	font-family: 'Alice', serif;
	line-height: 44px;
	letter-spacing: -0.02cm;
}
body.index #body-columns #community .community-details h2 strong {
	color: #ffffff;
}
body.index #body-columns #community .community-details p {
	color: rgba(255,255,255,0.75);
	font-size: 0.9rem;
	line-height: 1.25rem;
}
body.index #body-columns #community .community-details .rust-logo {
	max-height: 28px;
	margin-bottom: 4px;
	margin-left: 3px;
}
body.index #body-columns #community .community-details .shift-nav {
	border: 1px solid #9a48ff;
}
body.index #body-columns #community .community-details .shift-nav:hover {
	border: 1px solid transparent;
}
body.index #body-columns #community .community-container ul.responsibilities .badge-pill.one { background-color: #3e41b3; }
body.index #body-columns #community .community-container ul.responsibilities .badge-pill.two { background-color: #0076be; }
body.index #body-columns #community .community-container ul.responsibilities .badge-pill.three { background-color: #00baac; }
body.index #body-columns #community .community-container ul.responsibilities .badge-pill.four { background-color: #26a651; } /* 29b357 */
body.index #body-columns #community .community-container ul.responsibilities .badge-pill.five { background-color: #9dc844; }
body.index #body-columns #community .community-container ul.responsibilities .badge-pill.six { background-color: #ffeb41; }
body.index #body-columns #community .community-container ul.responsibilities .badge-pill.seven { background-color: #ff8c1a; }
body.index #body-columns #community .community-container ul.responsibilities .badge-pill.eight { background-color: #ff5733; }
body.index #body-columns #community .community-container ul.responsibilities .badge-pill.nine { background-color: #c70039; }
body.index #body-columns #community .community-container ul.responsibilities .badge-pill.ten { background-color: #7f0b7d; } 
body.index #body-columns #community .community-container ul.responsibilities .badge-pill.eleven { background-color: #c211bf; } 
body.index #body-columns #community .community-container ul.responsibilities .badge-pill.twelve { background-color: #7219e1; } 
@media (min-width: 1200px) {
	body.index #body-columns #community .community-container .community-resp {
		border-left: 1px solid rgba(255,255,255,0.2);
	}
	body.index #body-columns #community .community-container .community-resp ul.w-xl-100 {
		width: 100% !important;
	}
}


/* Cabling */
body.index #body-columns #cabling {}
body.index #body-columns #cabling #cabling-body {
	position: relative;
	z-index: 41;
}
body.index #body-columns #cabling .cabling-container {
	
}
body.index #body-columns #cabling .cabling-container .cabling-details {
	background-color: rgba(0,0,0,0.5);
	padding-top: 2.5rem !important;
	padding-right: 2.5rem !important;
	padding-bottom: 2.5rem !important;
	padding-left: 2.5rem !important;
}
body.index #body-columns #cabling .cabling-details h3 {
	color: #fff;
	font-size: 2rem;
	font-weight: 300;
	letter-spacing: -0.02cm;
}
body.index #body-columns #cabling .cabling-details h3 strong {
	font-weight: 700;
}
body.index #body-columns #cabling .cabling-details h5 {
	color: #fbf4dc;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.2rem;
	letter-spacing: 0cm;
}
body.index #body-columns #cabling .cabling-details p {
	color: #fff;
	font-size: 0.9rem;
	line-height: 1.25rem;
}
body.index #body-columns #cabling .cabling-details a {
	border-width: 2px !important;
	border-color: rgba(255,255,255,0.5) !important;
	color: #fff;
	font-size: 14px;
	font-weight; 400;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
body.index #body-columns #cabling .cabling-details a:active {}
body.index #body-columns #cabling .cabling-details a:hover {
	border-color: rgba(255,255,255,1) !important;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
body.index #body-columns #cabling .cabling-service-row {}
body.index #body-columns #cabling .cabling-service-row .cabling-service {}
body.index #body-columns #cabling .cabling-service-row .cabling-service .cabling-service-color {
	display: table;
	width: 20px;
	height: 20px;
	border-radius: 20px;
	margin-top: 3px;
	font-size: 0.25rem;
	/* border: 2px solid rgba(255,255,255,0.05); */
}
body.index #body-columns #cabling .cabling-service-color.one { background-color: #3e41b3; }
body.index #body-columns #cabling .cabling-service-color.two { background-color: #0076be; }
body.index #body-columns #cabling .cabling-service-color.three { background-color: #00baac; }
body.index #body-columns #cabling .cabling-service-color.four { background-color: #26a651; } /* 29b357 */
body.index #body-columns #cabling .cabling-service-color.five { background-color: #9dc844; }
body.index #body-columns #cabling .cabling-service-color.six { background-color: #ffeb41; }
body.index #body-columns #cabling .cabling-service-color.seven { background-color: #ff8c1a; }
body.index #body-columns #cabling .cabling-service-color.eight { background-color: #ff5733; }
body.index #body-columns #cabling .cabling-service-color.nine { background-color: #c70039; }
body.index #body-columns #cabling .cabling-service-color.ten { background-color: #7f0b7d; } 
body.index #body-columns #cabling .cabling-service-color.eleven { background-color: #c211bf; } 
body.index #body-columns #cabling .cabling-service-color.twelve { background-color: #7219e1; } 
body.index #body-columns #cabling .cabling-service-row .cabling-service .cabling-service-heading {
	color: #fff;
	font-size: 1.2em;
	font-weight: 400;
	line-height: 1em;
	letter-spacing: -0.01cm;
}
body.index #body-columns #cabling .cabling-service-row .cabling-service p {
	padding-left: 2.2rem;
	color: rgba(255,255,255,0.6);
	font-size: 0.85rem;
}


/* IT/Systems */
body.index #body-columns #sys {}
body.index #body-columns #sys #sys-body {
	position: relative;
	z-index: 41;
}
body.index #body-columns #sys .sys-container {
	
}
body.index #body-columns #sys .sys-container .sys-details {
	background-color: rgba(0,0,0,0.5);
	padding-top: 2.5rem !important;
	padding-right: 2.5rem !important;
	padding-bottom: 2.5rem !important;
	padding-left: 2.5rem !important;
}
body.index #body-columns #sys .sys-details h2 {
	color: #fff;
	font-size: 2.5rem;
	font-weight: 300;
	letter-spacing: -0.025cm;
	line-height: 2.65rem;
}
body.index #body-columns #sys .sys-details h6 {
	color: #fbf4dc;
	letter-spacing: 0.01cm;
}
body.index #body-columns #sys .sys-details p {
	color: #fff;
	font-size: 0.9rem;
	line-height: 1.25rem;
}
body.index #body-columns #sys .sys-details .shift-nav {
	border: 1px solid #fd05f5;
}
body.index #body-columns #sys .sys-details .shift-nav:hover {
	border: 1px solid transparent;
}
body.index #body-columns #sys .sys-details a img {
	border: 0;
	/* margin-bottom: 2.5rem; */
	opacity: 0.6;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
body.index #body-columns #sys .sys-details a:hover img {
	opacity: 1;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
body.index #body-columns #sys .sys-details ul li {
	font-size: 0.9rem;
	line-height: 1.35rem;
}
body.index #body-columns #sys .sys-details ul .badge-pill.one { background-color: #3e41b3; }
body.index #body-columns #sys .sys-details ul .badge-pill.two { background-color: #0076be; }
body.index #body-columns #sys .sys-details ul .badge-pill.three { background-color: #00baac; }
body.index #body-columns #sys .sys-details ul .badge-pill.four { background-color: #26a651; } /* 29b357 */
body.index #body-columns #sys .sys-details ul .badge-pill.five { background-color: #9dc844; }
body.index #body-columns #sys .sys-details ul .badge-pill.six { background-color: #ffeb41; }
body.index #body-columns #sys .sys-details ul .badge-pill.seven { background-color: #ff8c1a; }
body.index #body-columns #sys .sys-details ul .badge-pill.eight { background-color: #ff5733; }
body.index #body-columns #sys .sys-details ul .badge-pill.nine { background-color: #c70039; }
body.index #body-columns #sys .sys-details ul .badge-pill.ten { background-color: #7f0b7d; } 
body.index #body-columns #sys .sys-details ul .badge-pill.eleven { background-color: #c211bf; } 
body.index #body-columns #sys .sys-details ul .badge-pill.twelve { background-color: #7219e1; } 


/* Modals */
.modal-backdrop.show {
	opacity: 0.75;
}
.modal-backdrop.fade {
	transition: opacity .3s linear;
}
.modal.fade .modal-dialog {
	transition: -webkit-transform .5s ease-out;
	transition: transform .5s ease-out;
	transition: transform .5s ease-out,-webkit-transform .5s ease-out;
	-webkit-transform: translate(0,0);
	transform: translate(0,0);
}
.modal-content {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	/*background-color: rgba(41,12,77,0.9);*/
	background: -moz-linear-gradient(top, rgba(57,17,107,0.9) 0%, rgba(41,12,77,0.9) 100%);
	background: -webkit-linear-gradient(top, rgba(57,17,107,0.9) 0%,rgba(41,12,77,0.9) 100%);
	background: linear-gradient(to bottom, rgba(57,17,107,0.9) 0%,rgba(41,12,77,0.9) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e639116b', endColorstr='#e6290c4d',GradientType=0 );
	background-clip: padding-box;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: 0;
	outline: 0;
	box-shadow: 10px 10px 40px rgba(0,0,0,0.6);
	/*-webkit-transition: background 0.8s linear;
	-moz-transition: background 0.8s linear;
	-o-transition: background 0.8s linear;
	-ms-transition: background 0.8s linear;
	transition: background 0.8s linear;
	-webkit-animation: fadeInAtLoad 0.8s;
    animation: fadeInAtLoad 0.8s;*/
}
.modal-content { background-clip: border-box; }
.modal-content .carousel .close {
	top: 20px;
	right: 20px;
	padding: 0.65rem 1.15rem 0.75rem 1.15rem !important;
	background-color: rgb(137, 41, 255);
	z-index: 50;
	color: #fff;
	font-weight: 700;
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.modal-content .carousel .close:hover {
	background-color: #fff;
	color: rgb(137, 41, 255);
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.modal-content .project-info {
	position: relative;
	border-left: 20px solid rgba(137, 41, 255, 0.2);
}
.modal-content .project-info #project-info-stars {
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 100%;
	/*background: url('../img/trees.png') no-repeat;*/
	background-position: center bottom;
	background-size: 100% auto;
	z-index: 30;
}
.modal-content .project-info #project-info-trees {
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../img/trees.png') no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
	opacity: 0.4;
	z-index: 31;
}
.modal-content .project-info #project-info-content {
	position: relative;
	z-index: 32;
}
.modal-content .modal-header {
	position: relative;
	border-color: rgba(137, 41, 255,0.5);
}
.modal-title {
	color: #fff;
	font-size: 2.75rem;
	font-weight: 100;
	font-family: 'Heebo', sans-serif;
	letter-spacing: -0.02cm;
}
.modal-content .modal-header .close {
	position: absolute;
	top: 5px;
	right: 5px;
	float: none;
	font-size: 1.85rem;
	font-weight: 500;
	line-height: 1;
	color: #8929ff;
	text-shadow: 0 0 0 transparent;
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.modal-content .modal-header .close:hover {
	color: #fff;
	text-shadow: 0 0 0 transparent;
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.modal-content .carousel-control-next, 
.modal-content .carousel-control-prev {
	position: absolute;
	top: 50%;
	bottom: auto !important;
	width: 40px;
	height: 40px;
	padding: 0.75rem 0.75rem;
	background-color: rgb(137, 41, 255);
	-webkit-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	bottom: auto !important;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: .6;
	color: #fff;
	z-index: 50;
}
.modal-content .carousel-control-prev {
	left: -40px;
}
.modal-content .carousel-control-next {
	right: -40px;
}
@media (max-width: 575px) {
	.modal-content .carousel-control-prev {
		left: 0px;
	}
	.modal-content .carousel-control-next {
		right: 0px;
	}
}
.modal-content .carousel-control-next:focus, 
.modal-content .carousel-control-next:hover, 
.modal-content .carousel-control-prev:focus, 
.modal-content .carousel-control-prev:hover {
	outline: 0;
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: #fff;
	text-decoration: none;	
}
.modal-content .modal-body .section-heading {
	color: #8929ff;
	border-color: rgba(137, 41, 255,0.5) !important;
}
.modal-content .modal-body .project-copy {
	color: #bfbfbf;
	font-size: 0.9rem;
	line-height: 1.1rem;
}
.modal-content .modal-body .project-copy p {
	color: #bfbfbf;
	font-size: 0.8rem;
	line-height: 1rem;
}
.modal-content .modal-body h6 {
	color: #8929ff;
	font-weight: 400;
}
.modal-content .modal-body ul {
	padding: 0.1rem 0;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 500;
}
.modal-content .modal-body ul li {
	padding: 0.1rem 0;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 500;
}
.modal-content .modal-body ul li a {
	color: #8929ff;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.modal-content .modal-body ul li a:hover {
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
ul.responsibilities li {
	padding: 0.1rem 0;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 500;
}
ul.responsibilities li.disabled {
	color: rgba(137, 41, 255,0.3);
}
ul.responsibilities .badge-pill {
	display: inline-table;
	vertical-align: middle;
	width: 10px;
	height: 10px;
	margin-bottom: 2px;
	margin-right: 0.25rem;
	padding: 0 0.1em;
	font-size: 55%;
}
ul.responsibilities .badge-pill.one { background-color: #0076be; }
ul.responsibilities .badge-pill.two { background-color: #00baac; }
ul.responsibilities .badge-pill.three { background-color: #29b357; } /* #229954 #00b33e */
ul.responsibilities .badge-pill.four { background-color: #ffeb41; }
ul.responsibilities .badge-pill.five { background-color: #ff8c1a; }
ul.responsibilities .badge-pill.six { background-color: #ff5733; }
ul.responsibilities .badge-pill.seven { background-color: #c70039; }
ul.responsibilities .badge-pill.eight { background-color: #7f0b7d; }
ul.responsibilities .badge-pill.nine { background-color: #c211bf; }
ul.responsibilities .badge-pill.ten { background-color: #7219e1; } 
ul.responsibilities li a {
	color: #8929ff;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
ul.responsibilities li a:hover {
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
ul.responsibilities ul li.disabled {
	color: rgba(137, 41, 255,0.6);
	/*text-decoration: line-through;*/
}
ul.responsibilities ul li.disabled .badge-pill {
	/*opacity: 0.35;*/
	background-color: transparent;
	padding-top: 0.3em;
    box-shadow: inset 0px 0px 0px 1px rgba(137, 41, 255,0.5);
    box-sizing: border-box;
}
.modal-content .modal-footer {}
.modal-content .modal-footer .btn-secondary {
	background-color: transparent;
	border-color: #8929ff;
	border-radius: 0;
	padding: .2rem .5rem;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 400;
	/*color: #fff;
	font-size: 0.9rem;
	font-weight: 400;*/
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.modal-content .modal-footer .btn-secondary:hover {
	background-color: #8929ff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.modal-content .modal-footer .btn-tertiary {
	background-color: transparent;
	border-color: #8929ff;
	border-radius: 0;
	padding: .2rem .5rem;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 400;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.modal-content .modal-footer .btn-tertiary:hover {
	background-color: #8929ff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}


/* Footer */
body.index footer {}


/* Animations */
@-webkit-keyframes fadeInAtLoad {
	from { opacity: 0.2; }
	to { opacity: 1; }
}
@keyframes fadeInAtLoad {
	from { opacity: 0.2; }
	to { opacity: 1; }
}
@-webkit-keyframes fadeInAndShift {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes fadeInAndShift {
    0% { opacity: 0; }
    100% { opacity: 1; }
}


/* Icons */
.material-icon {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 18px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
}
