/* 0.0 Constraints */

*,
html,
body {
	margin: 0;
	padding: 0;
}
body {
	background: #ffffff;
	font-family: 'Lato', sans-serif;
	font-size: 10px;
	color: #CCCCCC;
}
.container {
	margin: 0 auto;
	width: 1370px;
}

/* 1.0 Header */

#header-main {
	position: relative;
	height: 100vh;
	background: url('../img/header-bg.jpg') 50% 0 no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
#header-main .credit {
	padding: 15px 20px;
	position: absolute;
	top: 0;
	right: 0;
	text-shadow: 1px 1px 2px rgba(50, 50, 50, 1);
	font-size: 10px;
	z-index: 100;
}
#header-main .credit a {
	opacity: .2;
	color: #ffffff;
	text-decoration: none;
	transition: opacity .3s linear;
    -moz-transition: opacity .3s linear;
    -webkit-transition: opacity .3s linear;
    -ms-transition: opacity .3s linear;
    -o-transition: opacity .3s linear;
}
#header-main .credit a:hover {
	opacity: .7;
}
#header-main .title {
	padding: 25% 0;
	color: #ffffff;
	text-align: center;
	font-weight: 900;
	font-size: 80px;
	text-transform: uppercase;
	letter-spacing: 10px;
	text-shadow: 1px 1px 2px rgba(50, 50, 50, 0.59);
	
	animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-delay: .5s;
    -moz-animation-delay: .5s;
    -webkit-animation-delay: .5s;
}

/* 2.0 Profile */

#profile {
	padding: 60px 0;
	position: relative;
	width: 100%;
	background: rgba(22, 23, 23, .8);
	display: block;
	overflow: auto;
}
#profile .container {
	padding: 40px 0;
	position: relative;
}
#profile .avatar {
	position: absolute;
	top: 50%;
	float: left;
	width: 128px;
	height: 128px;
	-webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
	overflow: hidden;
	background: none;
	-webkit-border-radius: 300px;
	-moz-border-radius: 300px;
	border-radius: 300px;
	cursor: pointer;
}
#profile .avatar:after {
	content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
	bottom: 0;
	right: 0;
	background: none;
	-webkit-border-radius: 300px;
	-moz-border-radius: 300px;
	border-radius: 300px;
	transition: all .3s linear;
    -moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
}
#profile .avatar:hover:after {
    background: rgba(255, 255, 255, .05);
}
#profile .avatar img {
	height: 100%;
	width: auto;
}
#profile .about  {
	margin: 0 0 0 175px;
	padding: 10px 0;
	position: absolute;
	top: 50%;
	width: 300px;
	display: inline-block;
	-webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
#profile .about a {
	color: #ffffff;
	text-decoration: none;
}
#profile .about a:hover {
	text-decoration: underline;
}
#profile .about .name {
	margin: 0 0 10px 0;
	color: #ffffff;
	font-weight: 700;
	font-size: 20px;
}
#profile .about .summary {
	color: #cccccc;
	font-weight: 400;
	line-height: 22px;
	font-size: 14px;
}
#profile .social-media {
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	-webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
	float: right;
}
#profile .social-media a {
	margin: 0 0 0 5px;
	padding: 7px 10px;
	text-align: center;
	width: 15px;
	color: #ffffff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display: inline-block;
}
.facebook {
	background: #4A5FAC;
}
.facebook:hover {
	background: #42569E;
}
.twitter {
	background: #47B5E8;
}
.twitter:hover {
	background: #42ABDB;
}
.instagram {
	background: #547FA3;
}
.instagram:hover {
	background: #4B7394;
}
.google-plus {
	background: #313131;
}
.google-plus:hover {
	background: #2B2B2B;
}
.pinterest {
	background: #D12535;
}
.pinterest:hover {
	background: #C22130;
}
.dribbble {
	background: #E04382;
}
.dribbble:hover {
	background: #D13F79;
}


/* 3.0 Content */

#content {
	margin: 0 auto;
	width: 1370px;
	border-left: 1px solid #E9ECF0;
	border-right: 1px solid #E9ECF0;
}

/* 4.0 Navigation */

#nav-main {
	padding: 20px 30px;
	border-bottom: 1px solid #E9ECF0;
	font-weight: 900;
	font-size: 12px;
}
#nav-main .wrap {
	display: block;
	overflow: auto;
}
#nav-main .title {
	padding: 10px 35px 10px 0;
	display: inline-block;
	float: left;
	border-right: 1px solid #E9ECF0;
}
#nav-main .title a {
	color: #8DC484;
	text-decoration: none;
}
#nav-main .title i {
	margin: 0 10px 0 0;
	color: #D4D6DA;
}
#nav-main .title a:hover {
	text-decoration: underline;
}
#nav-main .navigation {
	padding: 10px 25px;
	display: inline-block;
	float: left;
}
#nav-main .navigation ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
#nav-main .navigation ul li {
	padding: 0 10px;
	display: inline-block;
}
#nav-main .navigation ul li a {
	color: #1b242a;
	text-decoration: none;
}
#nav-main .navigation ul li a:hover {
	text-decoration: underline;
}
#nav-main .search {
	padding: 5px 0 0px 0;
	width: 220px;
	cursor: pointer;
	float: left;
}
#nav-main .search i {
	padding: 7px;
	color: #1b242a;
	background: #F6F7F8;
	-webkit-border-radius: 300px;
	-moz-border-radius: 300px;
	border-radius: 300px;
}
#nav-main .search i:hover {
	background: #000000;
	color: #ffffff;
}
#nav-main .search form {
	padding: 0;
	margin: 0 0 0 0;
	display: inline-block;
	float: right;
	display: none;
}
#nav-main .search form input {
	margin: 0 0 -1px 0;
	float: right;
	border: 1px solid #E9ECF0;
	padding: 5px 5px;
	color: #000000;
	background: #ffffff;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
}
#nav-main .filters {
	padding: 10px 0 10px 25px;
	display: inline-block;
	float: right;
}
#nav-main .filters ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
#nav-main .filters ul li {
	padding: 0 0 0 40px;
	display: inline-block;
}
#nav-main .filters ul li a {
	color: #1b242a;
	text-decoration: none;
}
#nav-main .filters .result {
	font-weight: 400;
}
#nav-main .filters i {
	margin: 0 0 0 5px;
	color: #CACACA;
}
#nav-main .filters #filters-selector {
	float: left;
	position: relative;
	cursor: pointer;
	padding: 0;
}
#nav-main .filters-list {
	padding: 20px 0 10px 0;
	display: none;
	width: auto;
 	-webkit-animation-delay: .5s;
	-moz-animation-delay: .5s;
	animation-delay: .5s;
}
#nav-main .filters-list ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: center;
	width: 100%;
}	
#nav-main .filters-list ul li {
	margin: 0 5px;
	padding: 10px 12px;
	color: #1b242a;
	display: inline-block;
	background: #F6F7F8;
	cursor: pointer;
	text-align: center;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
#nav-main .filters-list ul li:hover {
	background: #2B2B2D;
	color: #ffffff;
}

/* 5.0 Posts */

#posts {
	padding: 40px 3% 40px 0;
	opacity: 0;
}
#posts .no-results {
	text-align: center;
	color: #000000;
	font-size: 14px;
	width: 100%;
}
.clear { 
	clear: both; 
}
.loading {
	width: 24px;
	height: 60px;
	margin: 0 auto;
	background: url('http://static.tumblr.com/xxlkr4u/0Wtn2akxo/loading.gif') bottom center no-repeat;
}
.post {
	margin: 0 0 20px 3%;
	width: 29.3%;
	display: block;
	border-bottom: 1px solid #E9ECF0;
	background: #ffffff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	overflow: hidden;
}
.permalink .post {
	margin: 0 0 20px 3%;
	width: 94%;
	display: block;
	border-bottom: 1px solid #E9ECF0;
}
.post .media {
	margin: 0 0 15px 0;
	position: relative;
}
.post .media .hover {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 3px;
	right: 0;
	text-align: center;
	background: rgba(27, 36, 42, .6);
	color: #ffffff;
	letter-spacing: 20px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	cursor: pointer;
}
.post .media .hover .contain {
	position: absolute;
	top: 50%;
	left: 37%;
	display: inline-block;
	-webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.post .media img {
	width: 100%;
	height: auto;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	overflow: hidden;
}
.post .media iframe {
	width: 100% !important;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	overflow: hidden;
	border: none;
}
.permalink .post .media {
	margin: 0 auto 15px auto;
	display: block;
	width: 90%;
}
.permalink .post .media img {
	width: 100%;
	height: auto;
}
.permalink .post .media .hover {
	display: none;
}
.permalink .ask .title,
.permalink .video .media,
.permalink .audio .media {
	margin: 0 auto 15px auto !important;
	display: block;
	width: 100% !important;
}
.permalink .post .content {
	padding: 0 5px 5px 5px;
	font-size: 16px !important;
	font-weight: 300;
}
.permalink .post .content img {
	max-width: 500px;
	width: 70%;
	height: auto;
}
.post .title {
	padding: 0 5px 10px 5px;
	position: relative;
	font-weight: 900;
	font-size: 24px;
}
.post .title a {
	color: #000000;
	text-decoration: none;
}
.post .title a:hover {
	text-decoration: underline;
}
.post .content {
	padding: 0 5px 5px 5px;
	font-size: 16px;
	color: #1b242a;
	font-weight: 300;
}
.post .content img {
	margin: 5px 15px 0 0;
	display: block;
	float: left;
}
.post .content strong {
	font-size: 15px;
}
.post .asker a {
	color: #000000;
	font-weight: 400;
	text-decoration: none;
}
.post .content a {
	color: #000000;
	font-weight: 400;
	text-decoration: underline;
}
.post .asker a:hover {
	text-decoration: underline;
}
.post .content a:hover {
	text-decoration: none;
}
.post .content p {
	line-height: 24px;
	margin: 0 0 10px 0;
}
.post .footer {
	margin: 0 5px 15px 5px;
	font-size: 12px;
	color: #BBBBBB;
	font-weight: 300;
	display: block;
	overflow: auto;
	font-style: italic;
}
.post .footer .tags {
	padding: 0 0 10px 0;
	width: 100%;
}
.post .footer .tags a {
	color: #BBBBBB;
	text-decoration: none;
}
.post .footer .tags a:hover {
	text-decoration: underline;
}
.post .footer .tags ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.post .footer .tags ul li {
	display: inline-block;
	float: left;
	margin-right: 10px;
}
.post .footer .left {
	float: left;
	display: inline-block;
}
.post .footer .left a {
	color: #BBBBBB;
	text-decoration: none;
}
.post .footer .left a:hover {
	text-decoration: underline;
}
.post .footer .right {
	float: right;
	display: inline-block;
}
.post .footer .right i {
	margin: 0 0 0 10px;
}
.post .footer .right a {
	color: #BBBBBB;
	text-decoration: none;
}
.audio .title,
.video .title,
.photo .title {
	padding: 0 5px 5px 5px;
	font-size: 16px;
}
.audio .content,
.video .content,
.photo .content,
.link .content,
.ask .content {
	font-size: 14px !important;
}
.audio .content strong,
.video .content strong, 
.photo .content strong,
.link .content strong,
.ask .content strong {
	font-size: 13px !important;
}
.audio .content p,
.video .content p,
.photo .content p,
.link .content p,
.ask .content p {
	line-height: 20px;
}
.link .title a {
	color: #000000;
	text-decoration: underline;
}
.link .title a:hover {
	text-decoration: none;
}
.link .title i {
	margin: 0 10px 0 0;
	color: #D4D6DA;
	font-size: 18px;
}
.quote .title .fa-quote-left {
	color: #D4D6DA;
}
.quote .title .fa-quote-right {
	color: #D4D6DA;
	float: right;
}
.quote .title p {
	padding: 0 10px;
}
.quote .content {
	margin: 10px 0 0 0;
	color: #D4D6DA;
	font-size: 14px !important;
	text-align: right;
	width: 100%;
}
.ask .asker p {
	color: #C2C2C2;
	margin: 5px 0 0 0;
	font-size: 14px;
	text-align: right;
	width: 100%;
	font-weight: 300;
}
.ask .title {
	padding: 7px 10px;
	background: #EEF0F3;
	border: 1px solid #D9D9D9;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font-size: 14px;
	font-weight: 400;
}
.permalink .ask .title {
	margin: 0 auto 15px auto !important;
	width: 99% !important;
	font-size: 18px;
}
.ask .content {
	padding: 10px 0 0 5px;
	font-size: 14px;
	color: #1b242a;
	font-weight: 300;
	float: left;
	width: 100%;
}
.chat .content {
	padding: 0 5px;
	color: #1b242a;
	font-weight: 300;
	float: left;
	font-size: 14px;
	display: block;
	overflow: auto;
}
.ask .footer,
.chat .footer {
	padding: 0;
}
.odd {
	margin: 0 0 3px 0px;
	padding: 6px 5px;
	display: block;
	overflow: auto;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.even {
	margin: 0 0 3px 0px;
	padding: 6px 5px;
	background: #EEF0F3;
	display: block;
	overflow: auto;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

/* 5.1 Notes */

.notes-list {
	margin: 0 0 20px 0;
	width: 100%;
	display: block;
	overflow: auto;
}
.notes-list ol li {
	padding: 15px;
	background: #ffffff;
	border-bottom: 1px solid #E9ECF0;
	font-size: 14px;
	text-align: left;
}
.notes-list ol li blockquote {
	margin: 10px 0 0 0;
}
.notes-list ol li blockquote a {
	text-decoration: none
}
.notes-list ol li blockquote a:hover {
	text-decoration: underline;
}
.notes-list a:hover {
	text-decoration: none;
}
.notes-list ol li .avatar {
	display: none;
}
.notes-list .more_notes_link_container {
	border: none !important;
	margin: 20px 0 0 0;
}

/* 5.2 Contact */

form input,
form textarea {
	margin: 0 0 5px 0;
	padding: 10px 1%;
	color: #1b242a;
	background: #F6F7F8;
	width: 97.75%;
	border: none;
	font-family: Lato, Sans-Serif;
	border: 1px solid #E8E8E8;
}
form textarea {
	height: 125px;
}
form input[type="submit"] {
	padding: 20px 0;
	width: 100%;
	cursor: pointer;
	text-align: center;
}
form input[type="submit"]:hover {
	background: #2B2B2D;
	color: #ffffff;
}
form .contact-name {
	width: 47.5%;
	float: left;
}
form .contact-email {
	width: 47.5%;
	float: right;
}
#submit_form {
	height: 300px !important;
}

/* 6.0 Pagination */

#pagination {
	padding: 80px 0;
	font-size: 13px;
}
#pagination ul {
	margin: 0 auto;
	padding: 0;
	list-style-type: none;
	text-align: center;
}
#pagination ul li {
	display: inline-block;
}
#pagination ul li a {
	padding: 10px 20px;
	background: #2B2B2D;
	color: #ffffff;
	text-transform: uppercase;
	text-align: center;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-decoration: none;
}
#pagination ul li a:hover {
	background: #202021;
}

/* 7.0 Footer */

#footer-main {
	padding: 12px 30px 10px 30px;
	border-top: 1px solid #E9ECF0;
	border-bottom: 1px solid #E9ECF0;
	font-weight: 900;
	font-size: 12px;
	display: block;
	overflow: auto;
}
#footer-main .title {
	padding: 10px 35px 10px 0;
	display: inline-block;
	float: left;
	color: #BEBEBE;
	border-right: 1px solid #E9ECF0;
}
#footer-main .title a {
	color: #8DC484;
	text-decoration: none;
}
#footer-main .title i {
	margin: 0 10px 0 0;
	color: #D4D6DA;
}
#footer-main .title a:hover {
	text-decoration: underline;
}
#footer-main .navigation {
	padding: 10px 25px;
	display: inline-block;
	float: left;
}
#footer-main .navigation ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
#footer-main .navigation ul li {
	padding: 0 10px;
	display: inline-block;
}
#footer-main .navigation ul li a {
	color: #1b242a;
	text-decoration: none;
}
#footer-main .navigation ul li a:hover {
	text-decoration: underline;
}
#footer-main .social-media {
	padding: 5px 0;
	display: inline-block;
	float: right;
}
#footer-main .social-media a {
	margin: 0 0 0 5px;
	padding: 5px 10px;
	text-align: center;
	width: 10px;
	font-size: 14px;
	color: #ffffff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display: inline-block;
}

/* 8.0 Copyright */

#copyright {
	padding: 80px 0;
	font-weight: 400;
}
#copyright p {
	margin: 0 0 20px;
	color: #BEBEBE;
	font-size: 12px;
	text-align: center;
	letter-spacing: 1px;
}
#copyright i {
	color: #FE6CA4;
}
#copyright .credit a {
	color: #BEBEBE;
	text-decoration: none;
}
#copyright .credit a:hover {
	text-decoration: underline;
}

/* 9.0 Misc. */

blockquote {
	padding: 0 4px 0 10px;
	margin: 0 0 0 10px;
	border-left: 3px solid #E9ECF0;
}
pre {
	margin: 5px 0;
	padding: 8px;
	background: #E9ECF0;
}
:focus {
	outline: none; 
}

/* 10.0 Responsive */

/* Responsive: Stage 1 */
/* Width: greater than 1281px */
@media all and (max-width: 1370px) and (min-width: 1281px) {
	.container {
		width: 1180px;
	}
	#header-main .title {
		font-size: 60px
	}
	#profile .container {
		padding: 40px 0;
	}
	#profile .avatar {
		width: 120px;
		height: 120px;
	}
	#profile .about {
		margin: 0 0 0 155px;
	}
	#content {
		width: 1180px;
	}
}
/* Responsive: Stage 2 */
/* Width: less than 1280px and greater than 960px */
@media all and (max-width: 1280px) and (min-width: 960px) {
	.container {
		width: 960px;
	}
	#header-main .title {
		font-size: 60px
	}
	#profile .container {
		padding: 20px 0;
		width: 900px;
	}
	#profile .avatar {
		width: 100px;
		height: 100px;
	}
	#profile .about {
		margin: 0 0 0 135px;
	}
	#nav-main .search {
		padding: 5px 0 0px 0;
		width: 170px;
		cursor: pointer;
		float: left;
	}
	#nav-main .search i {
		display: none;
	}
	#nav-main .search form {
		display: block;
	}
	#content {
		width: 95%;
	}
}
/* Responsive: Stage 3 */
/* Width: less than 960px (mobile and tablets) */
@media all and (max-width: 960px) {
    .container {
       width: 98%;
    }
    #header-main {
       height: 300px;
       background-size: auto;
       background-attachment: fixed;
    }
    #header-main .title {
       padding: 115px 0;
    }
    #profile {
       padding: 0;
       position: relative;
       background: #2B2B2D;
    }
    #profile .container {
       padding: 80px 0 60px;
       position: static;
    }
    #profile .avatar {
       display: none;
    }
    #profile .about {
       position: static;
       margin: 0;
       padding: 0;
       width: 100%;
       text-align: center;
    }
    #profile .social-media {
       position: static;
       width: 100%;
       padding: 0;
       text-align: center;
    }
    #content {
       margin: 0 auto;
       width: 98%;
    }
    #nav-main .wrap {
       padding: 10px 0;
    }
    #nav-main .title {
       display: none;
    }
    #nav-main .navigation {
       padding: 0;
       text-align: center;
       display: block;
       width: 100%;
    }
    #nav-main .navigation ul li {
       margin: 0;
       padding: 0;
       display: block;
    }
    #nav-main .navigation ul li a {
       display: block;
       margin: 5px 0;
       padding: 10px 0;
       text-align: center;
       background: #F6F7F8;
       color: #000000;
       width: 100%;
    }
   #nav-main .navigation ul li a:hover {
       background: #2B2B2D;
       color: #ffffff;
       text-decoration: none;
    }
	#nav-main .search {
       padding: 0;
       width: 100%;
   }
    #nav-main .search i {
       padding: 10px 0 !important;
       display: block;
       width: 100%;
       -webkit-border-radius: 0 !important;
       -moz-border-radius: 0 !important;
       border-radius: 0 !important;
       text-align: center;
    }
    #nav-main .search form {
       margin: 5px 0 0 0;
       display: none;
       float: none;
       width: 100%;
    }
    #nav-main .search #search-box {
       padding: 10px 0;
       color: #000000;
       background: #ffffff;
       float: none;
       display: block;
       width: 99.6%;
       text-align: center;
       border: 1px solid #E9ECF0;
       -webkit-border-radius: 0;
       -moz-border-radius: 0;
       border-radius: 0;
    }
    #nav-main .filters {
       display: none;
    }
    .post {
       width: 94%;
    }
	.post .media .hover {
		background: rgba(27, 36, 42, .0);
	}
	.post .media .hover .contain p {
		display: none;
	}
    .html_photoset {
		margin: 0 auto;
		display: block;
		width: 100%;
		max-width: 700px;
    }
	form .contact-name {
		width: 97.75%;
		float: left;
	}
	form .contact-email {
		width: 97.75%;
		float: left;
	}
    #pagination {
       padding: 20px 0;
    }
    #footer-main {
       display: none;
    }
    #copyright {
       padding: 40px 0;
	}
}