/**Main Body**/
html {
	box-sizing: border-box; 
}

*,
*:before,
*:after {
  	box-sizing: inherit; 
}

html,
body {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 25px;
	margin: 0;
	height: 100%; 
}

.body-container {
	min-width: 100%;
	position: relative;
	background-color: #B0BEC5;
}

a {
	text-decoration: none !important;
}

p > a {
	color: #4A4747;
}


/**Header**/
.header-container {
	height: 650px;
	position: relative;
	background-image: url('../images/galaxy-bg.png');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	text-align: center;
	box-shadow: 0 3px 10px 3px #545454;
}

.header-nav {
	position: relative;
    	top: 100%;
    	transform: translate(0, -100%);
	margin: 0 auto;
	width: 55%;
}

.header-nav > ul {
	margin: 0;
	padding: 10px 0;
}

.nav-item {
	list-style-type: none;
	display: inline-block;
	padding: 0 2em;
}

.nav-item a {
	font-family: 'Oswald', sans-serif;
	font-size: 1.3em;
	font-weight: 300;
	color: #D3D3D3;
	transition: .4s ease;
}
.nav-item a:hover {
	color: #545454;
}

.title-block {
	width: 25%;
	height: 60%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.profile {
	height: 156px;
	width: 156px;
	background-image: url("../images/tiy_profile.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 50%;
	margin: 5px auto 10px auto;
}

.name-title {
	width: 75%;
	margin: 5px auto;
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
}

.name-title h4{
	margin-top: 0;
}

.name-title h1, h4{
	color: #D3D3D3;
	margin-bottom: 0;
}

.header-social-block {
	width: 60%;
	margin: 0 auto;
}

.header-social-icon {
	margin: 0 auto;
}

.header-social-icon .fa {
	width: 30px;
	height: auto;
	color: #FFF;
	transition: .4s ease;
}

.fa-envelope:hover {
	color: #545454;
}

.fa-linkedin:hover {
	color: #545454;
}

.fa-github:hover {
	color: #545454;
}

.fa-desktop:hover {
	color: #545454;
}

.fa-stack-overflow:hover {
	color: #545454;
}



/****Content****/
.content-wrapper {
	position: relative;
	width: 75%;
	margin: 0 auto;
}

.content-wrapper p {
	font-size: 1.1em;
}

#about, #experience, #projects, #contact {
	min-height: 300px;
	padding: 5% 0 5% 0;
}

.title-div {
	display: inline-block;
	font-size: 3.5em;
	text-align: left;
	height: auto;
}

.title-div > h1 {
	margin: 0 auto;
	height: 100%;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	color: #545454;
}

/*About Section*/
#about {
	vertical-align: text-top;
}

.about-blurb {
	padding: 0;
}

.about-blurb .col-md-4 {
	padding: 0;
}

.about-blurb .col-md-8 {
	padding-left: 0;
}

.about-blurb img {
	width: 100%;
	height: auto;
	min-height: 250px;
}

/*Experience Section*/
#experience  h2 {
	margin-top: 0;
	margin-bottom: 0;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
}

#experience  h4 {
	color: inherit;
	margin-top: 0;
	margin-bottom: 0;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
}

/*Projects Section*/
.project-ss-sp {
	background-image: url("../images/colonies-ss.png");
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;

}

.project-ss-sp img {
	-webkit-transition: opacity .3s ease-out;
    	-moz-transition: opacity .3s ease-out;
    	-o-transition: opacity .3s ease-out;
    	transition: opacity .3s ease-out;
}

.project-ss-sp img:hover {
	opacity: 0;
}

#projects  h2 {
	margin-top: 0;
	margin-bottom: 0;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
}

#projects a {
	color: #000;
}

/*Contact Section*/
.contact-sec {
	width: 75%;
	margin: 0 auto 0 0;
}

.hide-experience {
	opacity: 0;
}

.hide-projects {
	opacity: 0;
}

.hide-contact {
	opacity: 0;
}