/*
Theme Name: Policy Impact
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: policy-impact
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.

Policy Impact is based on Underscores http://underscores.me/, (C) 2012-2015 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
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: 'PT Sans', sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
	    color: #45454c;
    line-height: 2;

}

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: bold;
}

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-appearance: textfield;
	box-sizing: content-box;
}

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: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-size: 16px;
	font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 { 
	line-height: 1;
}

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: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

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"],
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;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}

textarea {
	padding-left: 3px;
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}


a:hover,
a:focus,
a:active {
	color: midnightblue;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	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;
}

.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 {
	color: #ff5400;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 47.5em) {
	
}

.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: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# 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: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	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. */
}

/*--------------------------------------------------------------
# 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;
}

.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%;
}

/* Search widget. */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
## 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: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
## 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;
}


/*///////////////////////////////// Start Main /////////////////////////////////////////*/

#page{
	margin:0;
	padding:0;
	border-top: 8px solid #021273;
}
.orange_strip{
	border-top: 8px solid #ff5400;
	width: 235px;
	position: absolute;
	top: -8px;
	left: 20px;
}
header{
	width: 100%;
}
.clear_both{
	clear:both;
}
.header_inner{
	max-width: 1300px;
	margin:0 auto;
	padding:20px;
	position: relative;
}
.header_inner nav{
	float: right;
	text-transform: uppercase;
	    width: calc(100% - 270px);
	    margin-top:2px;
}
.header_inner nav ul{
	float: right;
}
.header_inner nav li a{
	float: left;
	margin: 10px;
	padding:3px;
	font-size: .9em;
	color: white;
	transition: opacity .3s;
}
.header_inner nav li:not(.current-menu-item) a:hover{
	opacity: .6;
}
.header_inner nav .sub-menu li.current-menu-item a, .header_inner nav li.current-menu-ancestor > a{
color: #ff5400;
}
.header_inner nav > li.menu-item-has-children > a:before {
    content: ' ';
    width: 0px; 
    height: 10px; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(255,255,255,.7);
    display: inline-block;
    margin-right: 6px;
    margin-top: 6px;
    padding-top: 3px;
}
.header_inner nav .sub-menu:before{
	    content: ' ';
    width: 0px; 
    height: 10px; 
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid white;
    position: absolute;
    top: -10px;
    left: 50px;
}
#logo{
	float: left;
	width: 230px;
	height: auto;
	margin-top: -10px;
	margin-left: 0px;
}
.main-navigation ul.sub-menu{
	background-color: white;
	margin-top: 30px;
}
.header_inner nav .sub-menu li a{
	color: black;
	margin:5px;
	margin-left: 15px;
	border-bottom: 1px dotted #ccc;
}
.header_inner nav .sub-menu li:last-child a{
	border: none;
}
.main_page header#masthead, .picture_section{
	list-style: none;
	background-color: #021273;
	background-image: url(~images/new_york_main.jpg); 
	min-height: 650px;
	background-repeat: no-repeat;
	background-position: top center;
	  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
#accordion{
	list-style: none;
	margin: 0;
	padding: 0;
}
.picture_section{
	text-align: center;
	min-height: 600px;
	display: block;
	position: relative;
}
.main_message{
	display: none;
	max-width: 700px;
	margin:0 auto;
	padding: 20px 50px;
	color: white;
	text-align: center;
	margin-top: 80px;
	text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.95);
	background-color: rgba(0,0,0,.3);
	cursor: pointer;
	position: relative;
}
.main_message p{
	line-height: 1.8em;
}
.main_message h1{
	font-size: 2.5em;
	line-height: 1em;
	margin: 10px;
	margin-bottom: 25px;
}
.main_message:hover{
	background-color: rgba(0,0,0,.4);
}
.picture_section .main_message{
	display: inline-block;
	background-color: transparent;
	position: relative;
	margin-top: 70px;
}
.down_arrow{
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 15px 0 15px;
	border-color: #ff5400 transparent transparent transparent;
	margin:0 auto;
	display: block;
	margin-top: 20px;
	margin-bottom: 5px;
	transition: opacity .2s;
	cursor: pointer;
}
.down_arrow:hover{
	opacity: .5;
}
.texture{
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	/*background-image: url(~images/bg_texture.png);
	background-color: rgba(0,0,0,.6);*/
	background-color: black;
	opacity: .8;
	visibility:visible;
	transition: visibility .5s linear 0s,opacity 0.5s linear;
	transition-delay:0s;

}
.texture_hide{
	opacity:0;
	visibility:hidden;
	transition-delay:0s;
}
#masthead .texture{
	height: calc(100% + 10px);
}
.picture_section .down_arrow{
	margin-bottom: 0;
	margin-top: -10px;
}
.affairs img{
	width: 150px;
	height: auto;
}
.affairs{
	background-image: url(~images/new_york_main.jpg);
}
.relations{
	background-image: url(~images/hungary.jpg);
}
.advertising{
	background-image: url(~images/new_york_main.jpg);
}
.marketing{
	background-image: url(~images/government.jpg);
}
.relations img{
	width: 170px;
	height: auto;
}
.advertising img{
	width: 160px;
	height: auto;
}
.marketing img{
	width:130px;
	height: auto;
}
.gradient_top{
	position: absolute;
	height: 130px;
	opacity: .7;
	width: 100%;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&amp;1+0,0+100 */
background: -moz-linear-gradient(top,  rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,1)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */

}
footer{
	padding: 20px;
	min-height: 300px;	
	    color:rgba(255,255,255,.5);
	    background-color: black;
	        background-image: url(~images/icon.svg);
    background-repeat: no-repeat;
}
footer .menu{
	margin: 0;
	padding: 0;
}
footer .menu > li{
	    float: left;
    list-style: none;
}
footer .menu > li > a{
	padding-right: 60px;
    	margin-right: 5px;
	border-bottom: 1px solid rgba(255,255,255,.4);
}
footer .menu li a{
	color: rgba(255,255,255,.6);
	margin: 5px 10px;
	text-decoration: none;
}
footer .menu li .sub-menu{
	margin: 14px 0;
	padding: 0;
}
footer .menu li .sub-menu a{
	color: rgba(255,255,255,.4);
}
footer .menu li .sub-menu li{
	list-style: none;
}
footer .menu > li:last-child:after{
	clear: both;
}
.footer_inner{
	max-width: 1300px;
	margin:0 auto;
}
.footer_inner .copyright{
	float: right;
	text-align: right;
}
.picture_section_content{
	display: none;
	max-width: 700px;
	padding:15px;
	margin: 0 auto;
}
.button{
	background: #ff5400;
	padding: 15px 35px;
	color: white;
	text-decoration: none;
	display: inline-block;
	margin: 5px 0 15px 0;
	transition: opacity	.3s;
	cursor: pointer;
}
.button_white{
	background:rgba(0,0,0,.4);
	border: 1px solid rgba(255,255,255,.7);
}
.button_centered{
	display: block;
width: 160px;
margin: 10px auto;
}
.button:hover{
	color: white;
	opacity: .7;
}
.is_subpage header#masthead{
	background-image: url(~images/second_bg.jpg);
}
.is_subpage header#masthead .header_inner{
	max-width: 1200px;
}
.is_subpage #content{
	min-height: calc(100vh - 200px);
    width: 100%;
    margin: 5px auto;
    margin-top: -560px;
    padding: 40px;
	max-width: 1300px;
}
.is_subpage #content.has_sidebar{
	max-width: 1100px;
}
.is_subpage #content h1{
	margin-bottom: 39px;
    font-size: 2em;
    font-weight: 500;
    padding-bottom: 5px;
    text-transform: uppercase;
    line-height: 1em;
}
.is_subpage #content h1:first-child{
	text-align: center;
	margin-top: 0;
	opacity: .8;
}
.is_subpage #content h1 b{
	font-size: 1em;
}
.is_subpage #content .no_margin_top{
	margin-top: 0px;
}
.is_subpage #content .no_margin_bottom{
	margin-bottom: 0;
}
.is_subpage #content h3{
	color: #ff5400;
    font-size: 1.2em;
    margin-bottom: 5px;
    line-height: 1em;
}
.full_width_image{
	max-width: 100%;
	height: auto;
}
.is_subpage #content img{
	display: block;
	margin-bottom: 10px;
}
.is_subpage .gradient_top{ 
	opacity: .8;
	    height: 100px;
}
.contact_section{
	float: left;
	padding:20px 0;
	margin:6px;
	border-top: 1px solid rgba(0,0,0,.2);
	width: calc(50% - 15px);
	min-width: 300px;
}
.is_subpage .content_container{
	    background-color: rgba(255,255,255,.9);
}
blockquote{
	font-style: italic;
font-size: 1.2em; 
margin: 0;
color: #666;
}
.left_line{
	border-left: 1px solid #021273;
	margin-left: 20px;
	padding-left: 20px;
}
.right_line{
	border-right: 1px solid #021273;
	margin-right: 20px;
	padding-right: 20px;
}
hr{
	border: none;
	border-bottom: 1px solid #021273;
	background: none;
	background-color: none;
	margin: 40px 0;
}
p{
	margin: 10px 0 25px;
	line-height: 2em;
}
.content_left{
	width: calc(66% - 20px);
	margin-right: 50px;
	float: left;
}
.content_right{
	width: calc(33% - 20px);
	float: left;
}
.about_pic_section{
	text-align: center;
}
.about_quote{
	width: 450px;
	line-height: .8em;
    	font-size: 5em;
	font-family: 'PT Sans Narrow', sans-serif;
	color:#021273;
	float: left;
	text-transform: uppercase;
	text-align: right;
	margin-bottom: 40px;

}
.about_quote_right{
	float: left;
	width: calc(100% - 480px);
	margin-left: 30px;
	padding-left: 30px;
	border-left: 1px solid #ccc;
	margin-bottom: 50px;
}
.is_subpage #content .about_quote_right p{
	font-size: .94em;
	line-height: 1.7em;
	    margin-bottom: 18px;
}
.icon_left{
	width: 300px;
	text-align: center;
	margin-top:31px;
}
.services_icon_section{
	text-align: center;
}
.small_icon_left{
	    width: 200px;
    float: none;
    display: inline-block;
}
.is_subpage #content .icon_left img{
	width: 200px;
	    height: auto;
	    display: inline-block;
}
.icon_right{
	width: calc(100% - 330px);
	padding-left: 50px;
}
.is_subpage #content .icon_left img.orange_media{
	width: 230px;
}
.is_subpage #content .icon_left img.orange_business{
	width: 170px;
}
.is_subpage #content .icon_left img.orange_creative{
	width: 115px !important;
}
.is_subpage #content .icon_left.small_icon_left img{
	width: 150px;
}
.is_subpage #content .icon_left.small_icon_left:hover{
	opacity: .8;
	text-decoration: underline;
}
.is_subpage #content .icon_left.small_icon_left img.orange_business, .is_subpage #content .icon_left.small_icon_left img.orange_government{
	width: 120px;
}
.is_subpage #content .icon_left.small_icon_left.about_quote{
	font-size: 1.2em;
	color:rgba(0,0,0,.6);
	text-transform: inherit;
}
.is_subpage #content .icon_left.small_icon_left.about_quote a{
	color:rgba(0,0,0,.6);
	text-decoration: none;
}
.bio_pic{ 
	display: inline-block;
	width: 350px;
	margin-right:20px;
	padding: 20px;
	text-align: center;
	transition: opacity .3s;
	cursor: pointer;
	vertical-align: top;
}
.bio_pic:hover{
	opacity: .3;
}
.bio_pic:last-child{
	margin-right: 0;
}
.is_subpage #content .bio_pic img{
	display: inline-block; 
	border-radius: 300px;
}
.bio_text{
	border-top: 1px solid #ff5400;
	margin: 0 -40px;
}
.bio_triangle{ 
	    margin-left: 100px;
    margin-top: -30px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 10px 10px;
	border-color: transparent transparent #ff5500 transparent;
}
.bio_text{
display: none;
}
.bio_text_section{
	padding: 40px;
	background-color: rgba(0,0,0,.1);
	
}
.column_1{
	float: left;
	margin-right: 40px;
	width: calc(50% - 20px);
}
.column_2{
	margin:0;
}
.popup_container{
	position: absolute;
	/*background-image: url(~images/close.svg);
	background-size: 30px 30px;
    	background-repeat: no-repeat;
    	background-position: top 20px right 20px;*/
}
.popup_container img.close_button{
	position: absolute;
	top: 20px;	
	right: 20px;
	opacity: .7;
	cursor: pointer;
	width:20px;
}
.popup_container img.close_button:hover{
	opacity: .3;
}
.popup_container .bio_text_section{
	border-top: 3px solid #ff5400;
	background-color: rgba(0,0,0,.9);
	color: rgba(255,255,255,.6);
	width: 100%;
	max-width: 1000px;
}
.popup_container .shorter_bio_text{
	max-width: 800px;
} 
.popup_container .bio_text_section h3{
	color: #ff5400;
}
.is_subpage #content .contact_info_icons{
	text-align: center;
}
.is_subpage #content .contact_info_icons img{
	width: 150px;
	height: 150px;
	display: inline-block;
	
}
.is_subpage #content .contact_info_icons a img:hover{
	opacity: .6;
}
.is_subpage #content .contact_info_icons .info_icon_section{
	max-width: 410px;
	width: 100%;
    padding: 25px;
    margin-bottom: 50px;
    display: inline-block;
    vertical-align: top;
}
.is_subpage .clients_container{
	background-color: white;
}
.is_subpage .clients_container .clients_images{
	text-align: center;
}
.is_subpage .clients_container .clients_images a{
	vertical-align: top;
	display: inline-block;
	text-align: center;
	width: 290px;
	height: 210px;
	padding-right: 12px;
	background-position: bottom right;
	background-repeat: no-repeat;
	background-image: url(~images/logo_shadow.jpg);
	cursor: pointer;
}
.is_subpage .clients_container .clients_images a img{
	display: inline-block !important;
	vertical-align: middle;
	max-width: 150px;
	height: auto;
}
.is_subpage .clients_container .clients_images a:before {
  content: ""; 
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.contact_info_section{
	line-height: 1.4em;
font-size: .8em;
padding: 25px;
padding-bottom: 60px;
border-left: 3px solid #ff5400;
margin-top: 50px;
padding-top: 0;
}
#content .contact_info_section{
	margin-bottom: -50px;
}
footer .contact_info_section{
	float: right;
	padding-bottom: 25px;
	border-width: 2px;
	margin-top: 20px;
}
footer .contact_info_section h4{
	color: white;
}
.is_subpage #content .contact_paragraph{
	padding:20px;
	font-size: .9em;
	background-color: rgba(0,0,0,.1);
	display: block;
	overflow: hidden;
}
.is_subpage #content .contact_paragraph img{
	margin: -20px;
	margin-right: 45px;
	width: 400px;
	height: auto;
}
.is_subpage #content .contact_paragraph h3{
	color: #021273;
}
.is_subpage #content .services_pics h2{
	margin-top: -15px;
	font-size: 1.2em;
}
.wonderplugin-gridgallery-item a div{
	display: none !important;
}
#html5-watermark{
	display: none !important;
}

.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}


body #content #micro-news h2.head{
	display: none;
}
body #content #micro-news h2.head{
	display: none;
}
body #content #micro-news h3{
	color:#ff5400 !important;
}
body #content #micro-news .wrapNews{
	border: none !important;
	    width: calc(50% - 45px);
    background-color: rgba(0,0,0,.1);
    overflow: hidden;
    padding: 20px;
    margin-right: 5px;
    margin-bottom: 5px;
    padding-bottom: 60px; 
    display: inline-block;
    border-top: 5px solid #021273 !important;
}
body #micro-news .wrapNews .text{
	    font-size: .9em;
    line-height: 1.3em;
    margin: 5px 0;
    position: static;
}
body #micro-news .wrapNews .postedOn {
    position: absolute;
    left: 20px;
    bottom: 18px;
    border: none;
    font-size: 14px;
}
.orange_header{
	text-align: center;
	color:#ff5400 !important;
}
.blue_header{
	text-align: center;
	color:#021273 !important;
}
.newsroom_icon{
	background-image: url(~images/newsroom_icon.svg);
	width: 106px;
	height: 120px;
	background-repeat: no-repeat;
	float: left;
	padding-right: 30px;
	margin-right: 30px;
	border-right: 1px solid #999;
}
.newsroom_header{
	float: left;
	margin-top: 40px;
}
body #micro-news .wrapNews .link {
    font-family: inherit;
    font-size: .9em;
    right: 20px;
    bottom: 10px;
    padding:5px 10px;
}
.absolute_hr{
	position: absolute;
	bottom: 15px;
	width: calc(100% - 40px); 
	border-color: rgba(0,0,0,.4);
}
body #micro-news .wrapNews .link a{
	text-decoration: none;
}
body #micro-news .wrapNews .link a:after{
	content: "Read More";
    background-image: url(~images/arrows.svg);
    background-position: right center;
    background-repeat: no-repeat;
    width: 102px;
    height: 20px;
    padding-right: 25px;
    color: #555;
    cursor: pointer;
    text-decoration: none;
}
body #micro-news .wrapNews .link:hover{
	background-color: #ff5400 !important;
	color: white !important; 
}
body #content #kush-micro-news-3 .wrapNews{
	border-color: #ff5400 !important;
}
/*////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////*/
/*//////////////          MEDIA QUERIES       ////////////////*/
/*////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////*/


@media screen and (max-width:1180px){
	footer .menu{
		margin-top: 10px;
	}
	footer .menu li .sub-menu {
		margin-left: 15px;
	}

}
@media screen and (max-width:950px){ 
	body .menu > li {
		float: none;
		font-size: .9em;
		clear: both; 
	}
	.menu-toggle {
		display: block;
		float: right;
		height: 40px;
	}
	#primary-menu{
		z-index: 1000;
	}
	.header_inner nav ul{
		position: static;
	}
	.main-navigation ul.sub-menu{
		    margin-top: -5px;
    		margin-bottom: 15px;
	}
	.header_inner nav .sub-menu:before{
	    content: ' ';
	    width: 0px; 
	    height: 0px; 
	    border:none;
	    position: static;
	    top: 0px;
	    left: 0px;
	}
	.main-navigation ul ul{
		box-shadow: none;
		margin-top: -15px;
		margin-left: 15px;
	}
	.main-navigation.toggled .menu-menu-1-container > ul
	{
		background-color: white;
		padding: 20px;
		position: absolute;
		right: 15px;
		min-width: 200px;
		top: 80px;
		-webkit-box-shadow: 1px 1px 19px 0px rgba(0,0,0,0.75);
		-moz-box-shadow: 1px 1px 19px 0px rgba(0,0,0,0.75);
		box-shadow: 1px 1px 19px 0px rgba(0,0,0,0.75);

	}
	.main-navigation.toggled .menu-menu-1-container > ul:after, .main-navigation.toggled .menu-menu-1-container > ul:before {
		bottom: 100%;
		left: 90%;
		border: solid transparent;
		content: " ";
		height: 0;
		width: 0;
		position: absolute;
		pointer-events: none;
	}
	.header_inner nav li a{
		float: none;
	}
	.main-navigation.toggled .menu-menu-1-container > ul:after {
		border-color: rgba(136, 183, 213, 0);
		border-bottom-color: white;
		border-width: 10px;
		margin-left: -10px;
	}
	.main-navigation.toggled .menu-menu-1-container > ul:before {
		border-color: rgba(194, 225, 245, 0);
		border-width: 16px;
		margin-left: -16px;
	}
	.main-navigation.toggled .menu-menu-1-container li{
		float: none;
	}
	.main-navigation.toggled .menu-menu-1-container li a {
		color: black;
	}
	.main-navigation ul {
		display: none;
	}
}
@media screen and (max-width:850px){
	.about_quote_right{
		float: none;
		width: 100%;
		border: none;
		margin-left: 0px;
		padding: 0px;
	}
	.is_subpage #content .contact_paragraph img{
		display: none;
	}
	.is_subpage #content .contact_info_icons .info_icon_section{
	    margin-bottom: 0px;
	}
	.about_quote{
		float: none;
		margin: 0 auto;
		width: 100%;
   		text-align: left;
   		margin-bottom: 20px;
	}
	.icon_left{
		text-align: center;
	}
	body #content #micro-news .wrapNews{
	    display: block;
	    clear: both;
	    float: none;
	    width: calc(100% - 40px);
	}
}
@media screen and (max-width:500px){
	.newsroom_container #content{
		padding:20px;
	}
	.bio_pic{
		width: 250px;
	}
	.about_quote{
		font-size: 3em;
	}
	
	footer .contact_info_section{
		float: left;
		margin-top: 60px;
	}
	.foot_nav{
		float: none !important;
	}
	footer{
		background-image: none;
	}
	.column_1{
		width: 100% !important;
	}


}