/*
Theme Name: jensen
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jensen
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

jensen is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: 'Lato', sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

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

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

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

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: 900;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: 900;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #000;
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	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: 0.9375rem;
}

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

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

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*: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. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

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: 900;
}

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: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

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

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	background: #ff3300;
	box-shadow: none;
	color: #fff;
	font-size: 16px;
	border: 1px solid #ff3300;
	padding: .6em 1em .4em;
	text-shadow: none;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	box-shadow: none;
	background: #000;
    color: #fff;
	border: 1px solid #000;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 0;
	padding: .6em 1em .4em;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #000;
}

a:visited {
	color: #000;
}

a:hover,
a:focus,
a:active {
	color: #ff3300;
}

a:focus {
	outline: thin dotted;
}

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

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
/* Nav Font Styling */
    font-size: 20px;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
    font-weight: 900;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

.main-navigation.toggled ul li {
	display: block;
    width: 100%;
}

.main-navigation.toggled ul li a{
    color: #fff;
    background: #ff3300;
    padding: 10px 15px;
    font-size: 16px;
}

.main-navigation.toggled ul li a:hover {
    color: #fff;
    background: #000;
}

.menu-toggle {
    float: right;
    clear: both;
}


@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}

    .main-navigation {
        width: 50%;
        float: right;
        display: inline-block;
        clear: none;
    }

    .main-navigation ul {
		display: block;
        /* Nav Position */
        float: right;
        margin-top: 80px;
    }

    .main-navigation li {
        /* Nav Position */
        margin-left: 30px;
    }
}

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

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: auto;
    margin-right: 20px;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: left;
	text-align: right;
	width: auto;
}

/*--------------------------------------------------------------
# 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:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #ff3300;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 900;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 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-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# 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;
	table-layout: fixed;
}

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

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

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

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

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

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

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

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

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .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%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

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

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}


/*--------------------------------------------------------------
## Responsive Grid
--------------------------------------------------------------*/

/*  SECTIONS  */
.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}

/*  COLUMN SETUP  */
.col {
	display: block;
	float:left;
	margin: 1% 0 1% 2%;
}
.col:first-child { margin-left: 0; }

/*  GROUPING  */
.group:before,
.group:after { content:""; display:table; }
.group:after { clear:both;}
.group { zoom:1; /* For IE 6/7 */ }

/*  GRID OF FOUR  */
.span_4_of_4 { width: 100%; }
.span_3_of_4 { width: 74.5%; }
.span_2_of_4 { width: 49%; }
.span_1_of_4 { width: 23.5%; }
.span_1_of_42 { width: 20.5%; }
.span_1_of_43 { width: 25.5%; }

/*  GRID OF THREE  */
.span_3_of_3 { width: 100%; }
.span_2_of_3 { width: 66%; }
.span_1_of_3 { width: 32%; }

.span_1_of_43:first-child img {
    max-width: 250px;
    image-rendering:-webkit-optimize-contrast;
}

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 960px) {
	.site-info .col {  margin: 1% 0 1% 0%; }
	.span_1_of_4, .span_2_of_4, .span_3_of_4, .span_4_of_4, .span_1_of_42, .span_1_of_43 { width: 50%; }

    .span_1_of_43:first-child img {
        max-width: 300px;
    }

    /* Footer styling */
    .site-info { margin: 0 20px; }
    .site-info .col { margin-top: 20px; }
    .span_1_of_43:first-child  { margin-bottom: 200px; padding-right: 10px; }

    /* Post styling */
    .p-overlay { font-size: 80%; }
}

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 660px) {
	.col {  margin: 1% 0 1% 0%; }
	.span_1_of_4, .span_2_of_4, .span_3_of_4, .span_4_of_4, .span_1_of_42, .span_1_of_43 { width: 100%; }

    /* Footer styling */
    .site-info .col { margin-top: 20px; text-align: left; }
    .span_1_of_43:first-child { margin-bottom: 20px; }
}

/*  GO FULL WIDTH BELOW 660 PIXELS */
@media only screen and (max-width: 660px) {
	.col {  margin: 1% 0 1% 0%; }
	.span_3_of_3, .span_2_of_3, .span_1_of_3 { width: 100%; }
	.p-overlay { font-size: 100%; }
}

.span_1_of_43:first-child {
    margin-top: 0;
    padding-top: 0;
}

/*--------------------------------------------------------------
## NEW CONTENT
--------------------------------------------------------------*/

/* Keep content central */
.site-main,
.site-footer,
.site-header
{
    padding: 10px 0;
    background: #fff;
}

.site-footer {
    margin-top: 1.5rem;
}


/* Header alignment */
.site-branding {
    width: 40%;
    float: left;
    display: inline-block;
    clear: none;
}

.site-header {
    max-width: 960px;
    margin: 0 auto!important;
    padding: 20px 0 5px;
    background: #fff;
}

@media only screen and (max-width: 960px) {
    .site-branding
    {
        margin-left: 30px;
    }
    #site-navigation
    {
        margin-right: 30px;
    }

}

@media only screen and (max-width: 600px) {
    #site-navigation .menu-toggle
    {
        margin-right: 30px;
    }
    .site-header
    {
        padding-bottom: 0;
    }
}

/* Footer styling */
.site-info {
    max-width: 960px;
    margin: 0 auto;
    font-size: 85%;
}

.site-info .col {
    border-top: 3px solid #000;
    padding-top: 10px;
}

.site-info .col p{
    margin-top: 0;
}

.site-info .col:first-child {
    border-top: none;
}

/* Home content styling */
.page-template-people .entry-content:first-child,
.home .entry-content {
    padding: 15px 40px;
    margin: 0 auto;
    max-width: 960px;
    border: 6px solid #ff3300;
    color: #ff3300;
    font-size: 24px;
}

.page-template-people .entry-content:first-child p,
.home .entry-content p {
    padding: 0;
    margin: 0;
}

#p-home-news,
#p-home-projects {
    background: #e4deda;
}

#p-home-projects,
#p-home-panel {
    padding: 15px 2%;
}

.home .site-main {
    margin: 1% auto!important;
}

/*  Home / News */
#p-home-news {
    padding: 2%;
}

#p-home-news {
    width: 32%;
    background: #e4deda;
    margin-right: 2% ;
    height: 450px;
    float: left;
}

#p-home-panel a,
#p-home-news a,
#p-home-news p {
    color: #ff3300;
    text-decoration: none;
}

#p-home-news a:hover {
    color: #000;
    transition: all 1s ease 0s;
}

#news-list {
    border-top: 3px solid #ff3300;
    padding: 5px 0;
    margin-top: 10px;
}

#news-list p,
#news-list a {
    padding: 0;
    margin: 0;
    display: inline;
}

#news-list b {
    display: block;
}

.news-block {
	line-height: 1.45;
    width: 100%;
    position: relative;
    padding-right: 40px;
}

#news-list #plus {
    background-image: url(img/jensen-plus-icon-red.png);
    height: 30px;
    width: 30px;
    position: absolute;
    bottom: -30;
    right: 0;
}

#p-home-panel h3 {
    text-transform: uppercase;
    font-size: 150%;
    margin: 0;
    letter-spacing: 1px;
}

/*  Home / People */
#p-home-people {
    width: 66%;
    background: #666;
    background-repeat: no-repeat!important;
    background-position: center!important;
    background-size: cover!important;
    height: 450px;
    float: left;
}

#people-home {
    display: table;
    position: relative;
    vertical-align: top;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

#people-home #p-link {
    display: table-cell;
    vertical-align: middle;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    position: relative;
}

#people-home #p-link a p {
    font-weight: 900;
    font-size: 150%;
    border: 5px solid #ff3300;
    padding: 20px 10px;
    margin: 0 auto;
    text-transform: uppercase;
    text-align: center;
    width: 250px;
    position: relative;
    z-index: 10;
}

#people-home #p-link a:hover p {
    border: 5px solid #fff;
    color: #fff;
    position: relative;
    z-index: 10;
}

.people-overlay {
    height: 100%;
    width: 100%;
    top: -100%;
    transition: all 0.6s ease 0s;
}


#people-home #p-link a:hover .people-overlay {
    content: "";
    position: absolute;
    background: rgba(224,38,11,0.85);
    top: 0;
    z-index: 8;
    display: block;
    transition: all 1s ease 0s;
}

/*  GO FULL WIDTH BELOW 1220 PIXELS */
@media only screen and (max-width: 1220px) {
    #p-home-news p,
	#p-home-news a {
        font-size: 90%;
    }

.news-block {
	line-height: 1.25;
}
}

/*  GO FULL WIDTH BELOW 960 PIXELS */
@media only screen and (max-width: 960px) {
    /* Home content styling */
    .home .entry-content {
        font-size: 18px;
    }

    #p-home-panel {
        width: 100%;
        display: block;
    }

    #p-home-news {
        width: 100%;
        display: block;
        border-right: none;
        height: auto;
    }

    #p-home-people {
        width: 100%;
        display: inline-block;
        background-repeat: no-repeat!important;
        background-position: center!important;
        background-size: cover!important;
        height: 400px;}

}

/*--------------------------------------------------------------
## Post Overlay
--------------------------------------------------------------*/

.p-wrapper {
    position: relative;
    max-height: 600px;
    overflow: hidden;
    color: #fff;
}

.p-wrapper a {
    color: #fff;
    text-decoration: none;
}

.p-overlay {
    position: absolute;
    top: -100%;
    background: rgba(224,38,11,0.85);
    height: 100%;
    width: 100%;
    padding: 5%;
    transition: all 0.6s ease 0s;
}

.p-wrapper img {
    width: 100%;
    display: block;
}

.p-wrapper:hover .p-overlay {
    display: block;
    top: 0%;
    transition: all 1s ease 0s;
}

#plus {
    background-image: url(img/jensen-plus-icon.png);
    height: 30px;
    width: 30px;
    position: absolute;
    bottom: 5%;
    right: 5%;
}

.p-overlay entry-header,
.p-overlay h2,
.p-overlay p {
    margin: 0;
    padding: 0;
}

.p-overlay p b {
    text-transform: uppercase;
    font-weight: 100;
    font-size: 70%;
}

.p-overlay p {
    font-size: 130%;
}

/*  GO FULL WIDTH BELOW 1100 PIXELS */
@media only screen and (max-width: 1100px) {
    .p-overlay entry-header,
    .p-overlay h2,
    .p-overlay p {
        font-size: 100%;
    }
}

/*  GO FULL WIDTH BELOW 660 PIXELS */
@media only screen and (max-width: 660px) {
    .p-overlay p {
        display: block;
    }
    .p-overlay entry-header,
    .p-overlay h2,
    .p-overlay p {
        font-size: 130%;
    }
}

/*--------------------------------------------------------------
## Project Mobile
--------------------------------------------------------------*/

/*  GO FULL WIDTH BELOW 960 PIXELS */
@media only screen and (max-width: 960px) {
    .p-overlay {
        position: relative;
        display: block;
        top: 0;
        height: auto;
        min-height: 200px;
    }

    .p-wrapper {
        max-height: none;
    }

    .p-wrapper p:nth-child(3) {
        padding-bottom: 40px;
    }

    .category-projects .section:last-child .col:nth-child(2) { display: none; }

}



/*--------------------------------------------------------------
## Slider Menu
--------------------------------------------------------------*/

.tp-parallax-wrap:nth-child(2) {
    max-width: 960px!important;
    margin: 0 auto!important;
    position: relative!important;
    top: 20px!important;
    left: 0!important;
    z-index: 200000!important;
}

.tp-parallax-wrap:nth-child(2) .tp-loop-wrap .tp-mask-wrap {
    width: 960px!important;
    position: relative!important;
}

.tp-parallax-wrap:nth-child(2) .tp-loop-wrap .tp-mask-wrap .tp-caption a {
    margin-bottom: 0px!important;
    display: block;
    line-height: 15px!important;
    color: #fff;
    text-decoration: none;
    font-size: 140%;
    font-weight: 600;
    text-shadow: 1px 1px 1px rgba(50, 50, 50, 1);
}

#rev_slider_4_1 .tp-parallax-wrap:nth-child(2) .tp-loop-wrap .tp-mask-wrap {
    width: 960px!important;
    position: absolute;
}

#rev_slider_4_1 .tp-revslider-mainul .tp-parallax-wrap:nth-child(2) {
    max-width: 960px!important;
    margin: 0 auto!important;
    position: relative!important;
    top: 0px!important;
    left: 0!important;
    z-index: 1!important;
}


/*  GO FULL WIDTH BELOW 960 PIXELS */
@media only screen and (max-width: 960px) {
    .tp-parallax-wrap:nth-child(2) .tp-loop-wrap .tp-mask-wrap .tp-caption a {
        line-height: 20px!important;
        font-size: 200%!important;
        margin-left: 30px!important;
    }
}

.tp-parallax-wrap:nth-child(3) {
    max-width: 960px!important;
    min-height: 100%!important;
    margin: 0 auto!important;
    position: relative!important;
    top: 0!important;
    bottom: 0!important;
    left: 0!important;
    z-index: 100000!important;
}

.tp-parallax-wrap:nth-child(3) .tp-loop-wrap {
    width: 960px!important;
    position: absolute!important;
    bottom: 30px!important;
}

.tp-parallax-wrap:nth-child(3) .tp-loop-wrap .tp-mask-wrap {
    position: relative!important;
}

.tp-parallax-wrap:nth-child(3) .tp-loop-wrap .tp-mask-wrap .tp-caption h3,
.tp-parallax-wrap:nth-child(3) .tp-loop-wrap .tp-mask-wrap .tp-caption p {
    margin-bottom: 0px!important;
    display: block;
    line-height: 15px!important;
    color: #fff;
    text-decoration: none;
    font-size: 140%!important;
    text-shadow: 1px 1px 1px rgba(50, 50, 50, 1);
}

/*  GO FULL WIDTH BELOW 960 PIXELS */
@media only screen and (max-width: 960px) {
    .tp-parallax-wrap:nth-child(3) .tp-loop-wrap .tp-mask-wrap .tp-caption h3,
    .tp-parallax-wrap:nth-child(3) .tp-loop-wrap .tp-mask-wrap .tp-caption p {
        line-height: 20px !important;
        font-size: 170% !important;
        margin-left: 30px !important;
    }
}

/*  GO FULL WIDTH BELOW 960 PIXELS */
@media only screen and (max-height: 900px) {
    .tp-parallax-wrap:nth-child(3) .tp-loop-wrap .tp-mask-wrap .tp-caption h3,
    .tp-parallax-wrap:nth-child(3) .tp-loop-wrap .tp-mask-wrap .tp-caption p,
    .tp-parallax-wrap:nth-child(2) .tp-loop-wrap .tp-mask-wrap .tp-caption a {
        line-height: 20px!important;
        font-size: 170%!important;
    }
}

#rev_slider_4_1 .tp-revslider-mainul .tp-parallax-wrap:nth-child(2) {
    max-width: 960px!important;
    margin: 0 auto!important;
    position: relative!important;
    top: 0px!important;
    left: 0!important;
    z-index: 1!important;
}

#rev_slider_4_1 .tp-parallax-wrap:nth-child(3) {
    max-width: 960px!important;
    min-height: 52px!important;
    margin: 0 auto!important;
    position: relative!important;
    top: 0!important;
    bottom: 0!important;
    left: 0!important;
    z-index: 100000!important;
}

#rev_slider_4_1 .tp-parallax-wrap:nth-child(3) .tp-loop-wrap {
    width: auto;
    position: absolute!important;
    top: 0!important;
}

#rev_slider_4_1 .tp-parallax-wrap:nth-child(3) .tp-loop-wrap .tp-mask-wrap {
    position: absolute;
}

#rev_slider_4_1 .tp-parallax-wrap:nth-child(3) .tp-loop-wrap .tp-mask-wrap .tp-caption{
    max-width: 50% !important;
}



/*--------------------------------------------------------------
## Project Archive
--------------------------------------------------------------*/

.archive-panel {
    max-width: 960px;
    margin: 0 auto;
}

.archive-panel .subnav_menu {
    width: 30%;
    display: inline-block;
    float: left;
    padding-right: 3%;
}

.archive-panel header {
    width: 67%;
    display: inline-block;
    font-size: 1em;
    color: #ff3300;
}

.archive-panel .archive-description p {
    margin: 0;
}

.archive-panel .subnav_menu h2,
.archive-panel header h1 {
    font-size: 1.5em;
    margin: 0;
}

.archive-panel .subnav_menu h2:after,
.archive-panel header h1:after,
.single .entry-header h1:after,
.post-type-archive-news h2:after {
    display: block;
    content: "";
    border-bottom: 6px solid #000;
    width: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.archive-panel header h1:after {
    border-bottom: 6px solid #ff3300;
}


.archive-panel .subnav_menu ul {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.archive-panel .subnav_menu a {
    text-decoration: none;
}

.subnav_menu .current-cat >  a,
.subnav_menu .current-cat >  a:active {
    color: #ff3300;
    font-weight: 900;
}

.category-2 .subnav li:first-child a {
    color: #ff3300;
    font-weight: 900;
}

.category .posts-navigation {
    border-top: 1px solid #eee;
    margin-top: 30px;
    padding-top: 30px;
}

/*  GO FULL WIDTH BELOW 960 PIXELS */
@media only screen and (max-width: 960px) {
    /* Home content styling */
    .archive-panel .subnav_menu {
        width: 100%;
        padding-right: 0%;
    }

    .archive-panel header {
        width: 100%;
    }

}

.single header .subnav li:before {
    content: none;
}

.single header ul {
    list-style: none!important;
    margin-left: 0;
}

.single header .subnav li {
    display: inline-block;
    list-style: none;
}

.single header .subnav li a {
    text-decoration: none;
}

.single header .subnav li a:before {
    content: " + "
}

.single header .subnav li:first-child a:before {
    content: ""
}

.category-planning .entry-header .cat-item-3 a,
.category-landscape-architecture ~ .entry-header .cat-item-4 a,
.category-urban-design .entry-header .cat-item-5 a,
.category-social-planning .entry-header .cat-item-6 a {
    color: #000;
    font-weight: 900;
}

/*--------------------------------------------------------------
## Project Single
--------------------------------------------------------------*/

.single article {
    margin: 0 auto;
    max-width: 960px;
    margin-bottom: 30px;
}

.single .entry-header p {
}


.single #sing-feat {
    width: 100%;
    min-height: 500px;
    background-position: center!important;
    background-size: cover!important;
    background-repeat: no-repeat!important;
}

.single .sing-foot {
    background-color: #e4deda;
    width: 100%;
    padding: 20px 0;
}

.single .sing-foot .archive-panel .subnav_menu {
    float: none;
}

.category-planning .sing-foot .cat-item-3 a,
.category-landscape-architecture .sing-foot .cat-item-4 a,
.category-urban-design .sing-foot .cat-item-5 a,
.category-social-planning .sing-foot .cat-item-6 a {
    color: #ff3300;
    font-weight: 900;
}


/*  GO FULL WIDTH BELOW 1200 PIXELS */
@media only screen and (max-width: 1200px) {
    .single #sing-feat {
        min-height: 600px;
    }
}

/*  GO FULL WIDTH BELOW 960 PIXELS */
@media only screen and (max-width: 960px) {
    .single #sing-feat {
        min-height: 350px;
    }
    .single-news article,
    .single article {
        margin: auto 3%;
    }
}

/*  GO FULL WIDTH BELOW 700 PIXELS */
@media only screen and (max-width: 700px) {
    .single #sing-feat {
        min-height: 250px;
    }
}

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 480px) {
    .single #sing-feat {
        min-height: 200px;
    }
}

.widget_minimax_image .img-thumbnail {
    border: none!important;
    padding: 0!important;
    border-radius: 0;
}


/*--------------------------------------------------------------
## People
--------------------------------------------------------------*/

/*  Header image */

#peop-feat {
    width: 100%;
    min-height: 600px;
    background-position: center 20%!important;
    background-size: cover!important;
    background-repeat: no-repeat!important;
}

#sing-peop-feat {
    width: 100%;
    min-height: 450px;
    background-position: top!important;
    background-size: cover!important;
    background-repeat: no-repeat!important;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -webkit-transition: opacity 1s ease-in-out;
}

#sing-peop-feat:hover {
    opacity: 0.5;
}

#sing-peop #sing-peop-feat:hover {
    opacity: 1;
}


#people-arch {
    background-color: #000;
    position: relative;
}

#sing-peop #people-arch {
    background-color: #ff3300;
}

#people-arch a:hover {
    color: #ff3300;
    transition: all 1s ease 0s;
}


#people-arch {
    background-color: #000;
    position: relative;
}


#people-arch a,
#people-arch {
    color: #fff;
    text-decoration: none;
}

#people-arch .entry-content {
    padding: 15px;
    margin: 0;
}

#people-arch article {
    margin: 0;
    padding-right: 50px;
}

#people-arch .entry-content h1,
#people-arch .entry-content h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

#people-arch .entry-content h1:after,
#people-arch .entry-content h2:after,
.single-ourpeople .entry-header h2:after {
    display: block;
    content: "";
    border-bottom: 6px solid #fff;
    width: 40px;
    margin-top: 10px;
}

.single-ourpeople .entry-header h2:after {
    border-bottom: 6px solid #000;
}

#people-arch #plus {
    bottom: 15px;
    right: 15px;
}

#people-arch p {
    display: none;
}

/*  Single People */
#sing-peop {
    background: #fff;
    margin: 1% auto;
}

#sing-peop .col {
    margin: 0;
}

#sing-peop article .entry-content {
    padding: 2% 5%;
    margin: 0;
}

#sing-peop article,
#sing-peop entry-content {
    margin: 0;
}

.page-template-people article:first-child {
    margin: 3% auto;
}

/*  GO FULL WIDTH BELOW 960 PIXELS */
@media only screen and (max-width: 960px) {
    #sing-peop #people-arch {
        width: 100%;
    }

}


/*--------------------------------------------------------------
## News
--------------------------------------------------------------*/

#peop-feat {
    position: relative;
}

.arch-news {
    text-transform: uppercase;
    font-size: 300%;
    border: 6px solid #ff3300;
    padding: 7px 12px;
    color: #ff3300;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    width:250px;
    height: 100px;
    bottom: 0;
    top: 0;
    margin: auto;
}

#news-content {
    margin: 20px auto;
    max-width: 960px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

#news-content h2 {
    margin: 0;
}

#news-content a {
    text-decoration: none;
}

#news-content .entry-content {
    margin: 0;
}

#news-content span {
    color: #777;
}


/*  Single News */
.single-news article .section {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.single-news .read-more {
    float: left;
    margin-bottom: 30px;
    display: inline;
    margin-left: 30px;
}

/*--------------------------------------------------------------
## Search Archive
--------------------------------------------------------------*/

.search article {
    border-top: 1px solid #eee;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
}


/*--------------------------------------------------------------
## Contact Page
--------------------------------------------------------------*/

.page-id-11 .entry-header {
    display: none;
}


.page-id-11 .textwidget {
    border-top: solid 6px #000;
    padding-top: 20px;
}


/*--------------------------------------------------------------
## Global
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Page Widths
--------------------------------------------------------------*/

.page article,
.single-news article,
.search .page-header,
.search article,
.error-404,
.no-results {
    max-width: 960px;
    margin: 0 auto;
}


/*  GO FULL WIDTH BELOW 960 PIXELS */
@media only screen and (max-width: 960px) {
    .page article,
    .single-news article,
    .search .page-header,
    .search article,
    .error-404,
    .no-results,
    .site-footer,
    .sing-foot .archive-panel {
        margin: auto 3%;
    }
}


/*--------------------------------------------------------------
## Page Navigation
--------------------------------------------------------------*/

.read-more {
    background: #ff3300;
    padding: 8px 10px;
    text-decoration: none;
    color: #fff!important;
}

.read-more:hover {
    background: #000;
    text-decoration: underline;
    transition: all 1s ease 0s;
}


.posts-navigation {
    max-width: 960px;
    margin: 0 auto!important;
}

.post-navigation {
    display: inline;
}

.nav-previous,
.nav-next {
    height: 40px;
    padding-top: 8px;
}

.nav-previous a,
.nav-next a {
    background: #000;
    padding: 10px 10px;
    text-decoration: none;
    color: #fff!important;
}

.nav-previous a:hover,
.nav-next a:hover  {
    background: #ff3300;
    text-decoration: underline;
    transition: all 1s ease 0s;
}

/*--------------------------------------------------------------
## Entry Meta
--------------------------------------------------------------*/

.entry-meta {
    color: #777;
}


/*--------------------------------------------------------------
## MiniMax styling
--------------------------------------------------------------*/

#minimax-front-builder {
    display: none;
}

.minimax_content_area {
    padding: 10px 0;
}

/*--------------------------------------------------------------
## Page Backgrounds
--------------------------------------------------------------*/

.page-id-11 #main,
.single-ourpeople #main,
.archive #main,
.category-projects #main,
.page-template-people #main {
    background: #e4deda;
    padding: 15px 3%;
}

/*--------------------------------------------------------------
## Home Navigation
--------------------------------------------------------------*/

.tparrows { background: none; }
.tparrows:hover { background: none; opacity: 0.5;}

.tparrows.tp-rightarrow::before { content: url(img/right.png)!important; }
.tparrows.tp-leftarrow::before { content: url(img/left.png)!important; }

/*  GO FULL WIDTH BELOW 960 PIXELS */
@media only screen and (max-width: 600px) {
.tparrows { display: none; }
.tparrows.tp-rightarrow::before { display: none; }
.tparrows.tp-leftarrow::before { display: none; }
}

/*--------------------------------------------------------------
## ULs
--------------------------------------------------------------*/

.minimax_column ul,
article ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: 20px;
}

.minimax_column ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.minimax_column ul li:before,
article li:before {
    content: "_";
    top: 3px;
    display: inline-block;
    width: 20px;
    margin-left: -20px;
}

.minimax_column .minimax_image + .minimax_image {
    padding-top: 20px;
}

/*--------------------------------------------------------------
## Keyframes
--------------------------------------------------------------*/

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeInDown {
    0% { opacity: 0; transform: translate3d(0, 100%, 0); }
    100% { opacity: 1; transform: none;}
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translate3d(100%, 0, 0); }
  100% { opacity: 1; transform: none; }
}

/*
 * CSS Page Transitions
 * Don't forget to add vendor prefixes!
 */
.m-scene .scene_element {
    animation-duration: 0.5s;
    transition-timing-function: ease-in;
    animation-fill-mode: both;
}

  /** An element that fades in and slides from the right */
.m-scene .scene_element--fadeinright {
    animation-name: fadeInRight;
}

  /** Reverse "exit" animations */
.m-scene .is-exiting.scene_element {
    animation-direction: alternate-reverse;
}

.videoCaption {
    font-size: 130%;
	max-width: 960px;
    margin: 0 auto;
    padding: 7.5px 10px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    text-align: center;
}

/*  GO FULL WIDTH BELOW 960 PIXELS */
@media only screen and (max-width: 600px) {
    .videoCaption {
        font-size: 100%;
    }
}

#p-link-new{

	color: #ff3300;
	border: 2px solid #ff3300;
  text-align: center;
  width: 200px;
  margin: 0 auto;
  font-weight: bold;
  font-size: 20px;
	margin-top: 165px;

}

#p-link-new:hover{

	border: 4px solid #ff3300;

}

#p-home-people:hover{

opacity: 0.8;

}
