/*
Theme Name: jb
Author: Jenny Beaumont
Author URI: http://www.jennybeaumont.com
Description: Custom theme designed by Pan-Pan for Jenny Beaumont.
Version: 2.0
Text Domain: jb

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
	10.1 Header
	10.2 Posts and pages
	10.3 Home
	10.4 Portfolio
	10.5 Footer
	10.6 Comments
11.0 Media
	12.1 Captions
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
	box-sizing: border-box; /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-font-smoothing: antialiased; /* Turn off the sub-pixel anti-aliasing */
}
*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

blockquote p:before {
	content: open-quote;
	font-size: 3em;
  	line-height: 0.1em;
  	margin-right: 0.25em;
  	vertical-align: -0.4em;
	color: #E2255B;
}

blockquote p:after {
	content: close-quote;
	font-size: 3em;
  	line-height: 0.1em;
  	margin-left: 0.1em;
  	vertical-align: -0.4em;
	color: #E2255B;
}

blockquote p {
  	quotes: "\201C""\201D""\2018""\2019";
	font-size: 22px;
	font-style: italic;
	margin-bottom: 0;
}

.entry-content .wp-block-quote.is-large, .entry-content .wp-block-quote.is-style-large {
margin-bottom: 2em;
padding: 0 2em;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

a img {
	border: none;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
input,
select,
textarea {
	color: #404040;
	font-family: 'Noto Serif', serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
}

::-moz-selection { 
background-color: #E2255B; 
color: #ffffff;
}

::selection {
background-color: #E2255B;
color: #ffffff;
}

h1,
h2,
h3,
h4 {
	clear: both;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
}

.home h3 {
	margin-bottom: 0;
}

p {
	margin-bottom: 1.5em;
}

b,
strong {
	font-weight: bold;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 1.5rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

small,
.smaller {
	font-size: 85%;
}

.medium {
	font-size: 90%;
}

big,
.bigger {
	font-size: 125%;
}

.biggest {
	font-size: 150%;
	font-weight: 700;
}

.allcaps {
	text-transform: uppercase;
}

.social-icons,
.icon {
	font-family: FontAwesome;
}

.icon,
.red {
	color: #E2255B;
}

a.icon:hover {
	text-decoration: none;
	color: #424244;
}

.fa-fw {
	padding-right: 10px;
}

div.icon.inline {
	display: inline-block;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea,
label {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border-radius: 3px;
	background: #E2255B;
	color: #fff;
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
	padding: .6em 1em .4em;
	border: none;
}

button.menu-toggle,
button.menu-toggle:hover {
	background: none;
	color: #939598;
	margin: 0;
	border-radius: 0;
	text-align: right;
	width: 100%;
	font-size: 16px;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
}
button.menu-toggle:after {
	content: ' \f0c9';
	font-family: FontAwesome;
}

.main-navigation.toggled button.menu-toggle:after {
	content: ' \f00d';
	font-family: FontAwesome;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: #424244;
}

button.white,
input[type="submit"].white {
	color: #fff;
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1;
	padding: .6em 1em;
	border: 3px solid #fff;
	border-radius: 2px;
	background: none;
	font-weight: 600;
	letter-spacing: 1px
}

button.white:hover,
input[type="submit"].white:hover {
	color: #424244;
	background: #fff;
}

.button.black {
	color: #E2255B;
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1;
	padding: .6em 1em;
	border: 3px solid #E2255B;
	border-radius: 2px;
	background: none;
	font-weight: 600;
	letter-spacing: 1px;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
}


.button.black:hover {
	color: #fff;
	border: 3px solid #000;
	background: #000;
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
	margin-left: 2px;
}
select {
	margin-left: 2px;
}

input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
	outline: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 0.313em 0;
    text-indent: 0.25em;
}

textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}

.gform_wrapper {
	margin: 0 !important;
	padding: 0 !important;
	max-width: 100% !important;
}

input[type="submit"].gform_button.button{
	height: 75px; 
	width: 75px;
	max-width: 75px; /* for iphone */
	background: #E2255B; 
	text-align:center; 
	color:#FFF;
	line-height:16px;
	border-radius: 50%;
	border: none;
	font-size: 16px;
	font-weight: 400;
	padding: 0;
}

.gform_wrapper .button.gform_button:hover {
	background: #424244;
}

.gfield_label,
.mc4wp-form-fields label {
	text-transform:uppercase; 	
	font-weight: 400 !important;
	margin: 0.625em 0 0.5em;
}
.mc4wp-form-fields label,
.mc4wp-form-fields input {
	display: block;
	width: 100%;
}

.gfield_required {
	color:#E2255B !important;
	font-family: 'Noto Serif', serif;
}

.gfield {
	margin-bottom:20px
}


/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	color: #E2255B;
	text-decoration: none;
}

a:hover,
a:focus,
a:active {
	text-decoration: underline;
}

a.black {
	color: #424244;
	text-decoration: none;
}

a.grey, .grey {
	color: #888;
	text-decoration: none;
}

a.grey .red {
	color: #E2255B;
	text-decoration: none;
}
a.grey:hover,
a.grey:hover .icon {
	color: #424244;
	border-bottom: none;
}

a.test-hover {
	color: blue;
}
a.test-hover:hover {
	color: #e2265b;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
	display: block;
	position: absolute;
	top:85px;
	right:0;
	margin: 0 auto;
}

.main-navigation ul {
	margin: 0 auto; 
	list-style: none; 
	position: relative; 
}

.main-navigation li {
	display: inline-block;	
}

.main-navigation a {
	display: block;
	color: #939598; 
	font-size: 14px; 
	padding: 6px 15px 61px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 500;
}

.main-navigation li:hover > a {
	color: #E2255B; 
}

.nav-menu .current_page_item > a,
.nav-menu .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
	color: #E2255B;
}

#magic-line { 
	position: absolute;
	bottom: -2px; 
	left: 0; 
	width: 100px; 
	height: 3px; 
	background: #E2255B;
}

#languages {
	letter-spacing:1px;
	display:inline;
	position:absolute; 
	top:0;
	right:15px;
	font-size: 12px;
}

#languages ul {
	margin:0;
	height:20px;
}

#languages li {
	display:inline;
	padding-top:3px;
}

#languages li.currentlang {
	border-top: 2px solid #E2255B;
}

#languages li.currentlang a {
	color:#E2255B; 
}

#languages a {
	color:#9c9c9c; 
	line-height:24px;
}

#languages a:hover {
	color:#E2255B;
}

/* Small menu */
.menu-toggle {
	display: none;
}

@media screen and (max-width: 800px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
		z-index: 99;
	}
	
	.main-navigation,
	.main-navigation.toggled {
		width: 100%;
		top:85px;
	}
	
	.main-navigation.toggled .nav-menu li {
		background-color: #fff;
		text-align: right;
		display: block;
	}
	
	.main-navigation.toggled a {
		display: block;
		padding: 5px 20px 10px;
		width: 100%;
	}

	.main-navigation ul,
	#magic-line {
		display: none;
	}
}

@media screen and (max-width: 568px) {
	.main-navigation,
	.main-navigation.toggled {
		top:45px;
	}
}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
5.3 Pagination
--------------------------------------------------------------*/

.navigation {
	font-size: 14px;
	line-height: 18px;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
}

.navigation a:active,
.navigation a:hover {
	color: #424244;
	text-decoration: none;
}

.nav-previous {
	float: left;
}

.nav-next {
	float: right;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
	
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.search-field {
	width: 97%;
}
.widget_search .search-submit {
	display: none;
}

/* Twitter feed */
.twitterfeed {
	padding:20px; 
	background-image: url(images/bg_twitter.gif); 
	text-align:center; 
}

.twitterfeed span {
	color: #6BC1E5;
	font-size: 36px;
	display: block;
}

.twitterfeed iframe {
	width: 100%;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/

/*--------------------------------------------------------------
10.1 Header
--------------------------------------------------------------*/

.site-header {
	height: 175px;
	border-bottom: 1px solid #d7d7d7;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	z-index: 999;
}

#logo {
	position: absolute;
	left: 15px;
	top: 60px;
	z-index: 999;
}

#logo object {
	height: auto;
	width: 253px;
}

#logo .fallback {
	background: url(images/logo.gif) no-repeat;
	width: 253px;
	height: auto;
}

#logo .mobile {
	display: none;
}

@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) {
	
	#logo {
		top: 25px;
	}
		#logo .mobile {
		display: block;
		height: auto;
		width: 60px;
		
	}
	#logo .full {
		display: none;
	}
	
	.site-header {
		height: 125px;
	}

}

/*--------------------------------------------------------------
10.2 Posts and pages
--------------------------------------------------------------*/

.site-main,
.inner-wrapper {
	max-width: 900px;
	margin : 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

.site-main {
	padding: 40px 15px;
	min-height: 620px;
}

.hentry {
	margin: 0 0 4em;
}

.entry-title a {
	color: #E2255B;
}

.entry-title a:hover {
	color: #424244;
	text-decoration: none;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.single .wp-post-image {
	margin-bottom:20px;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.entry-meta {
	color: #414141;
	font-size: 12px;
	border-bottom: 1px solid #d7d7d7;
	margin-top:10px
}

.entry-meta span {
	font-style: italic;
	color: #aaaaaa;
}
.date {
	font-style: italic;
	color: #666;
	font-size: 12px;
	display: inline-block;
	margin-bottom: 5px;
}
.entry-meta span a {
	font-style: normal;
	color: #424244;
}
.entry-meta span a:hover {
	font-style: normal;
	color: #E2255B;
	text-decoration: none;
}

.entry-footer {
	margin: 20px 0;
	padding: 60px 20px 20px;
	overflow: hidden;
	border-top: 1px solid #e7e7e7;

}

.entry-footer .author {
	padding-top: 20px;
}

.tag-links {
	margin-left: 20px;
}

.comments-link {
	float: right;
}

.comments-link .icon {
	margin: 0 5px;
}

.read-more {
	float: right;
	background-color: #E2255B;
	padding: 3px 10px 7px;
}

.read-more a {
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0 2px 0 10px;
}

.read-more a .icon {
	color: #fff;
}

.read-more a:hover,
.read-more a:hover .icon {
	color: #424244;
}

@media (max-width: 767px) {
	.page p .alignnone {
		margin: 0 auto;
		display: block;
	}
}
/*--------------------------------------------------------------
10.3 Home
--------------------------------------------------------------*/

#intro {
	background: #fff url(images/bg_intro_bw.png) no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	color: #414141;
	z-index: -10;
}

#intro .inner-wrapper {
	padding: 40px 0 60px;
}

#intro a {
	color: #414141;
	border-bottom: dotted 1px #414141;
	text-decoration: none;
	transition: all 0.2s ease-in-out 0s;
}

#intro a:hover {
	color: #E2255B;
	border-bottom: dotted 1px #E2255B;
	text-decoration: none;
}

#intro h1 {
	margin-bottom: 20px;
}

#intro p {
	line-height: 1.6;
}

.project-text .feaures {
	color: #888;
}

a .wp-post-image {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
}
a .wp-post-image:hover {
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-ms-filter: grayscale(0);
	-o-filter: grayscale(0);
	filter: grayscale(0);
}

#intro h1,
#intro p {
	margin: 0 15px;
}


@media (min-width: 992px) {
	
	#portfolio {
		margin-top: -35px;
	}
	
	.project-text {
		margin: 35px 0 0;
		padding: 40px 0 60px !important;
		border-right: 1px solid #eee;
	}
	
	.macbook {
		background-repeat: no-repeat;
	}
	
	.macbook-placeholder {
		height: 520px;
		border-left: 1px solid #eee;
	}
	
	.macbook-alt {
		display: none;
	}
}
@media (max-width: 991px) {

	.macbook {
		background: none !important; 
	}
	
	.macbook-alt {
		display: block;
	}
	
	.macbook-alt img {
		margin: 50px 15px 0 0;
		webkit-box-shadow: 1px 1px 6px 0px rgba(136,136,136,1);
		-moz-box-shadow: 1px 1px 6px 0px rgba(136,136,136,1);
		box-shadow: 1px 1px 6px 0px rgba(136,136,136,1);
	}
	
	.project-text {
		padding: 40px 15px !important;
	}
}

@media (max-width: 767px) {
	.project-text {
		padding: 15px !important;
	}
	
}

#blog {
	padding: 20px 0 60px;
}

#quotes {
	background: #404040;
	color: #fff;
}

#quotes .inner-wrapper {
	padding: 20px 15px 60px;
}
#quotes blockquote {
	text-align: center; 
}

.quote-author {
	max-width: 320px;
	margin: 0 auto;
	margin-top: 10px;
	text-align: center; 
}

.quote-author span {
	color: #939598;
	font-style: italic;
	float: left;
}
.quote-author img {
	float: left;
	margin-right: 5px;
}

@media (max-width: 767px) {
	
	#quotes .inner-wrapper {
		padding: 60px 20px;
	}
	.quote-author span {
		float: none;
		display: block;
	}
	.quote-author img {
		float: none;
		margin-right: 5px;
	}
}

.home .col-sm-4 {
	min-height: 420px;
}
/*--------------------------------------------------------------
10.4 Portfolio
--------------------------------------------------------------*/

.portfolio-item {
	margin-bottom: 25px;
}

.portfolio-item a:hover img {
	border: 1px solid #E2255B;
}

.portfolio-item a h2 {
	color: #404040;
}
.portfolio-item a:hover,
.portfolio-item a:hover h2  {
	color: #E2255B;
	text-decoration: none;
}

.portfolio-item img {
	display: block;
	padding: 4px;
	background-color: #ffffff;
	border: 1px solid #dddddd;
}

.portfolio-item h2 {
	font-size: 16px;
	line-height: 20px;
	margin: 10px 0 0;
}
.portfolio-item span {
	color: #888;
	display: block; 
	font-size: 14px;
	font-style: italic;
	line-height: 16px;
}

#references ul {
	list-style: none;
	margin: 20px 0;
}

#references ul li {
	float: left;
	width: 33%;
}

@media (max-width: 767px) {
	#references ul li {
		float: left;
		width: 50%;
	}
}

@media (max-width: 568px) {
	#references {
		display: none;
	}
}

#references ul li a {
	color: #424244;
}

#references ul li a:hover {
	color: #E2255B;
	text-decoration: none;
}

.single-portfolio .addtoany_share_save_container {
	display: none;
}

.single-portfolio .details,
.single-portfolio .features {
	font-size: 14px;
}

.single-portfolio .details span {
	color: #E2255B;
	display: inline-block;
	width: 75px;
}

.single-portfolio .features span {
	color: #E2255B;
	display: inline-block;
}

.single-portfolio .details a {
	color: #424244;
	border-bottom: #d7d7d7 dotted 1px;
}

.single-portfolio .details a:hover {
	color: #E2255B;
	text-decoration: none;
}

.single-portfolio .quote span {
	font-size: 12px;
	color: #939598;
	font-style: italic;
}

.single-portfolio  .alignnone {
	-webkit-box-shadow: 1px 1px 6px 0px rgba(136,136,136,1);
	-moz-box-shadow: 1px 1px 6px 0px rgba(136,136,136,1);
	box-shadow: 1px 1px 6px 0px rgba(136,136,136,1);
}

@media (min-width: 1000px) {
	
	.quote.affix-top {
		margin-top: 170px;
	}

	.affix {
		top: 15px;
		margin-top: 0;
		width: 300px;
	}
	
	.affix-bottom {
		position: relative;
		margin-top: 0;
		padding-bottom: 40px
	}
	
}

@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 1024px) { 

	.affix,
	.affix-top,
	.affix-bottom {
		position: relative !important;
		top: auto !important;
		width: auto;
	}
	
	.about-intro {
		text-align: center;
	}
	.about-intro img {
		margin-bottom: 10px;
	}
	.separator {
		display: none;
	}
}

@media only screen 
and (min-device-width : 568px) 
and (max-device-width : 1024px) { 

	.quote,
	.quote.affix,
	.quote.affix-top {
		margin: 100px 0;
	}
}

@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) {
	
	.quote,
	.quote.affix,
	.quote.affix-top {
		margin: 40px 0;
	}
	
	.conf,
	.conf.affix,
	.conf.affix-top {
		display: none;
	}
}

.about-intro {
	margin-bottom: 40px;
}

/*--------------------------------------------------------------
10.5 Footer
--------------------------------------------------------------*/

#contact {
	background: #0d0d0d url(images/bg_connections_pink.png) no-repeat center center;
	min-height: 319px;
	color: #fff;
	padding: 40px;
	text-align: center;
}

.site-footer {
	background-color: #E2255B;
	margin: 0 auto;
	color: #FFF;
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	text-align: center;
	padding: 20px 0;
	height: 150px;
}

.credits p {
	font-size: 12px;
}

.site-footer a {
	color:#FFF;
}

.social-icons { 
	margin: 20px 4px 20px 0 
}

.social-icons a {
	position: relative;
	cursor: pointer;
	display: inline-block;
	text-decoration:none;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: normal;
	padding: 0 5px
}

.social-icons a > i {
	text-align: center;
	letter-spacing:normal !important;
	width:175px;
	color: white;
	font-weight:normal;
	font-style:normal;
	position: absolute;
	left: 40%;
	margin-left: -87px;
	padding: 2px 5px;
	bottom: 100%;
	margin-bottom: 5px;
	visibility:hidden;
	opacity:0;
	-webkit-transition: opacity 0.3s ease-in;
	-moz-transition: opacity 0.3s ease-in;
	-ms-transition: opacity 0.3s ease-in;
	-o-transition: opacity 0.3s ease-in;
	transition: opacity 0.3s ease-in;
	text-decoration:none;
	font-family: 'Raleway', sans-serif;
	font-size: 12px
}

.social-icons a:hover > i {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
10.6 Comments
--------------------------------------------------------------*/
#comments {
	clear: both;
}

#comments .navigation {
	padding: 0 0 18px 0;
}

#respond {
	border-top: 1px solid #e7e7e7;
}

h3#comments-title,
h3#reply-title {
	color: #000;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 0;
}

h3#comments-title {
	padding: 24px 0;
}

.comment-list {
	list-style: none;
	margin: 0;
}

.comment-list li.comment {
	border-bottom: 1px solid #e7e7e7;
	line-height: 24px;
	margin: 0 0 24px 0;
	padding: 0 0 0 90px;
	position: relative;
}

.comment-list li:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

#comments .comment-body ul,
#comments .comment-body ol {
	margin-bottom: 18px;
}

#comments .comment-body p:last-child {
	margin-bottom: 6px;
}

#comments .comment-body blockquote p:last-child {
	margin-bottom: 24px;
}

.comment-list ol {
	list-style: decimal;
}

.comment-list .avatar {
	position: absolute;
	top: 4px;
	left: 0;
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.comment-author cite {
	color: #000;
	font-style: normal;
	font-weight: bold;
}

.comment-author .says {
	font-style: italic;
}

.comment-meta {
	font-size: 12px;
	margin: 0 0 18px 0;
}

.comment-meta a:link,
.comment-meta a:visited {
	color: #888;
	text-decoration: none;
}
.comment-meta a:active,
.comment-meta a:hover {
	color: #ff4b33;
}
.reply {
	font-size: 12px;
	padding: 0 0 24px 0;
}

.reply a,
a.comment-edit-link {
	color: #888;
}

.reply a:hover,
a.comment-edit-link:hover {
	color: #ff4b33;
}

.comment-list .children {
	list-style: none;
	margin: 0;
}

.comment-list .children li {
	border: none;
	margin: 0;
}

.nopassword,
.nocomments {
	display: none;
}

#comments .pingback {
	border-bottom: 1px solid #e7e7e7;
	margin-bottom: 18px;
	padding-bottom: 18px;
}

.comment-list li.comment+li.pingback {
	margin-top: -6px;
}

#comments .pingback p {
	color: #888;
	display: block;
	font-size: 12px;
	line-height: 18px;
	margin: 0;
}

#comments .pingback .url {
	font-size: 13px;
	font-style: italic;
}

/*--------------------------------------------------------------
11.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
	background: #f1f1f1;
	padding: 4px;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 10px;
	color: #888;
	font-size: 14px;
}
