/*
Theme Name: ici
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0
License: GNU General Public License
License URI: license.txt
Text Domain: ici
Domain Path: /languages/
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.

 ici is based on Underscores http://underscores.me/, (C) 2012-2013 Automattic, Inc.

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/
*/

/* ------------------------------------------------------------------------------------------------- */

/*  Web_Fonts  */

/* 	Google Fonts - Arvo 400, 700  |  Mate  |  Archivo Narrow 400, 700
------------------------------------------------------------------------------------------------- 
Example:

font-family: 'Arvo', serif;
font-family: 'Mate', serif;
font-family: 'Archivo Narrow', sans-serif;

h1 { 
	font-family: 'Arvo', serif; 
	font-weight: 400; 
}

/* http://paulirish.com/2012/box-sizing-border-box-ftw/ */
@import url(https://fonts.googleapis.com/css?family=Arvo);
@import url(https://fonts.googleapis.com/css?family=Archivo+Narrow);
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*exclude fancybox from the above styles*/
#fancybox-wrap,
.fancybox-wrap * {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
}

​
/* =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 centred 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/ */
}

body {
  background: #fff;
}

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:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

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

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  /* Improves readability when focused and also mouse hovered in all browsers people.opera.com/patrickl/experiments/keyboard/test */
  outline: 0;
}

a img {
  border: 0;
}

/* =Global
----------------------------------------------- */

body,
button,
input,
select,
textarea {
  color: #404041;
  /*font-family: 'Mate', serif;*/
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

article {
  font-size: 1.125em;
  line-height: 1.53;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  margin-bottom: 1em;
  font-family: "Archivo Narrow", sans-serif;
  font-weight: 400;
  color: #003b71;
}

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

/* Text elements */
p {
  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;
}

b,
strong {
  font-weight: bold;
}

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: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  padding: 1.6em;
  overflow: auto;
  max-width: 100%;
}

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

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: 0.5ex;
}

small {
  font-size: 75%;
}

big {
  font-size: 125%;
}

figure {
  margin: 0;
}

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

th {
  font-weight: bold;
}

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

button,
input,
select,
textarea {
  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 */
  *vertical-align: middle;
  /* Improves appearance and consistency in all browsers */
}

button,
input {
  line-height: normal;
  /* Addresses FF3/4 setting line-height using !important in the UA stylesheet */
}

button,
html input[type="button"],
input[type="reset"]

/*,
input[type="submit"]*/
  {
  border: 1px solid #ccc;
  border-color: #ccc #ccc #bbb #ccc;
  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, 0.8);
  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: 0.6em 1em 0.4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
html input[type="button"]:hover,
input[type="reset"]:hover

/*,
input[type="submit"]:hover*/
  {
  border-color: #ccc #bbb #aaa #bbb;
  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,
html input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
html input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #aaa #bbb #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="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* Addresses box sizing set to content-box in IE8/9 */
  padding: 0;
  /* Addresses excess padding in IE8/9 */
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
  border: 0;
  padding: 0;
}

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 {
  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: 98%;
}

.alert {
  color: red;
  background-color: yellow;
}

/* Links */
a {
  color: #404041;
  -webkit-transition: all 0.2s ease-out;
  /* Saf3.2+, Chrome */
  -moz-transition: all 0.2s ease-out;
  /* FF4+ */
  -ms-transition: all 0.2s ease-out;
  /* IE10 */
  -o-transition: all 0.2s ease-out;
  /* Opera 10.5+ */
  transition: all 0.2s ease-out;
}

a:visited {
  color: #404041;
}

a:hover,
a:focus,
a:active {
  color: #0075ae;
}

/* Alignment */
.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;
}

/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  left: 0;
}

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

/* Clearing */
.clear:before,
.clear:after,
[class*="content"]:before,
[class*="content"]:after,
[class*="site"]:before,
[class*="site"]:after {
  content: "";
  display: table;
}

.clear:after,
[class*="content"]:after,
[class*="site"]:after {
  clear: both;
}

/* =Menu
----------------------------------------------- */

.main-navigation {
  clear: right;
  display: block;
  float: right;
  margin-top: 18px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.125em;
  letter-spacing: 1px;
}

.main-navigation ul,
.sidebar_menu .menu-main-menu-container ul,
footer .menu-main-menu-container ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation li {
  float: left;
  position: relative;
  border-left: 1px solid #404041;
}

.main-navigation li:first-child {
  border: none;
}

footer .menu-main-menu-container .menu>li {
  border-left: 1px solid #6d6e70;
  border-left: 1px solid rgba(64, 180, 229, 0.5);
  float: left;
  width: 20%;
  min-height: 200px;
  padding: 0;
}

footer .menu-main-menu-container ul a {
  width: 100%;
}

footer .menu-main-menu-container .menu li>a {
  text-decoration: underline;
}

footer .menu-main-menu-container .sub-menu li {
  width: 100%;
}

footer .menu-main-menu-container .sub-menu li>a {
  text-decoration: none;
}

footer .menu-main-menu-container .sub-menu li {
  border-left: none;
  padding-bottom: 8px;
  line-height: 1.4;
}

footer .menu-main-menu-container ul ul {
  float: left;
  margin-top: 28px;
}

footer .menu-main-menu-container .menu>li:first-child,
footer .menu-main-menu-container .menu>li:last-child {
  border-left: none;
}

.main-navigation a,
.sidebar_menu .menu-main-menu-container a,
footer .menu-main-menu-container a {
  display: block;
  padding: 0 12px;
  text-decoration: none;
}

.sidebar_menu .menu-main-menu-container a {
  line-height: 1.25;
  padding-bottom: 16px;
  font-family: "Archivo Narrow", sans-serif;
  color: #0075c9;
  -webkit-transition: all, 0.2s ease-out;
  -moz-transition: all, 0.2s ease-out;
  -ms-transition: all, 0.2s ease-out;
  -o-transition: all, 0.2s ease-out;
  transition: all, 0.2s ease-out;
}

.sidebar_menu .menu-main-menu-container a:hover,
.sidebar_menu .menu-main-menu-container .current-menu-item>a {
  color: #404041;
}

/* hide the sidebar menus initially */
.sidebar_menu .consulting-services,
.sidebar_menu .clients,
.sidebar_menu .webcasts,
.sidebar_menu .about,
.sidebar_menu .contact-us {
  display: none;
}

/* show the sidebar menu in sections */
.slug-consulting-services .sidebar_menu .consulting-services,
.parent-pageid-14 .sidebar_menu .consulting-services {
  display: block;
}

/*.slug-consulting-services .sidebar_menu .consulting-services > a { display: none; }*/

.slug-clients .sidebar_menu .clients,
.parent-pageid-16 .sidebar_menu .clients {
  display: block;
}

.slug-about-ici .sidebar_menu .about,
.parent-pageid-20 .sidebar_menu .about,
.single-press-releases .sidebar_menu .about {
  display: block;
}

.single-press-releases .sidebar_menu .about {
  margin-top: 28px;
}

.main-navigation ul ul {
  background: url(images/gray-texture.jpg) 0 0 transparent;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  opacity: 0;
  height: 0;
  float: left;
  position: absolute;
  top: 1.7em;
  left: 0;
  font-size: 16px;
  z-index: 99999;
  border: 1px solid #a4b2ba;
  overflow: hidden;
  -webkit-transition: height, opacity 1s, 0.1s ease-out;
  -moz-transition: height, opacity 1s, 0.1s ease-out;
  -ms-transition: height, opacity 1s, 0.1s ease-out;
  -o-transition: height, opacity 1s, 0.1s ease-out;
  transition: height, opacity 1s, 0.1s ease-out;
}

.main-navigation ul ul.active {
  opacity: 1;
  height: auto;
}

.main-navigation ul ul li {
  border-left: none;
}

.main-navigation ul ul li a {
  padding: 8px 12px;
  line-height: 1.2;
}

.main-navigation ul ul li a:hover {
  color: #404041;
  background-color: rgb(164, 178, 186);
  background-color: rgba(164, 178, 186, 0.6);
}

.main-navigation ul ul ul {
  left: 100%;
  top: 0;
}

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

.main-navigation ul ul li {}

.main-navigation li:hover>a {}

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

.main-navigation ul ul a:hover {}

.main-navigation ul li:hover>ul {
  /*display: block;*/
}

.main-navigation li.current_page_item a,
.main-navigation li.current-menu-item a {}

/* =Content
----------------------------------------------- */

.sticky {}

.hentry {
  margin: 0 0 1.5em;
}

.byline,
.updated {
  display: none;
}

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

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

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

/*
Layout: Content-Sidebar 
Content Area is 750px wide
Sidebar is 250px wide
*/
.content-area-wrap,
.header-wrap,
.footer-wrap {
  width: 1000px;
  margin: 0 auto;
}

.page .content-area-wrap {
  padding-top: 20px;
}

.content-area {
  width: 75%;
  /* 750/1000 achieved with negative right margin above */
  float: left;
}

.site-content {
  margin: 0 0;
  padding-top: 34px;
}

.page .site-content {
  padding-top: 0;
}

.site-main .widget-area {
  float: right;
  overflow: hidden;
  width: 25%;
  /* 250/1000 */
  padding-left: 60px;
}

.site-footer {
  clear: both;
  width: 100%;
}

.site-content .entry-header {
  width: 75%;
  margin: 0;
}

/*  Layout: Content- Full Width  */
.page-template-page-templatesfull-width-page-php .content-area,
.home .content-area {
  float: none;
  margin: 0;
  width: 100%;
}

/*.site-header { 	background-color: #c8d9e3; }
.header-wrap { 	background-color: #f1b363; }
.site-footer { background-color: #e3c8cd; } 
.footer-wrap { background-color: #f5eda7; } 
.content-area-wrap { background-color: #c9e3c8; }
.content-area { background-color: #ccf1f7; }
#secondary { background-color: #dcccf7; }*/

/* =Asides
----------------------------------------------- */

.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}

/* =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;
}

.wp-caption {
  border: 1px solid #ccc;
  margin-bottom: 1.5em;
  max-width: 100%;
}

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

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

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

.site-main .gallery {
  margin-bottom: 1.5em;
}

.gallery-caption {}

.site-main .gallery a img {
  border: none;
  height: auto;
  max-width: 90%;
}

.site-main .gallery dd {
  margin: 0;
}

.site-main .gallery-columns-4 .gallery-item {}

.site-main .gallery-columns-4 .gallery-item img {}

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

/* =Navigation
----------------------------------------------- */

.site-main [class*="navigation"] {
  /*width: 1040px;*/
  margin: 0 auto 1.5em;
  overflow: hidden;
}

[class*="navigation"] .nav-previous {
  float: left;
  width: 50%;
}

[class*="navigation"] .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/* =Comments
----------------------------------------------- */

.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {}

/* =Widgets
----------------------------------------------- */

.widget {
  margin: 0 0 1.5em;
}

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

/* =Infinite Scroll
----------------------------------------------- */

/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-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;
}

.site-header,
.process-bar {
  background: url(images/gray-texture.jpg) center top transparent;
}

.process-bar {
  border-top: 1px solid #d0d2d3;
  border-bottom: 1px solid #d0d2d3;
}
.site-header.hidden {
  opacity: 0;
}
.site-title a,
.site-description {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 31px 144px;
  width: 0;
  height: 0;
  background: url(images/logo.png) center center no-repeat transparent;
  text-indent: -9999px;
  transition: none;
}
.site-header.active{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999999;
}
.admin-bar .site-header.active {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header.active {
    top: 46px;
  }
}
.site-header.active.visible{
  display: block;
}
.site-header.active .header-aside {
  display: none;
}
.site-header.active .header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header.active .site-title{
  margin-bottom: 0;
}
.site-header.active .site-title a,
.site-header.active .site-description {
  background: url(images/mini-logo.png) center left no-repeat transparent;
  background-size: contain;
}
.site-header.active .main-navigation {
  margin-top: 0;
}
.site-header.active .site-branding {
  margin: 0;
}
.site-description {
  padding: 0;
  background: none;
}

.site-branding {
  float: left;
  margin: 34px 0 20px;
}

.site-footer {
  padding: 60px 0 90px;
  background: url(images/blue-texture.jpg) center top no-repeat #1f3249;
  background-size: cover;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.875em;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer li.current_page_item>a,
.site-footer li.current-menu-item>a {
  color: #bd955a;
}

.site-footer ul ul a {
  color: #fff;
  font-weight: 400;
}

.footer-aside-first {
  width: 100%;
  overflow: hidden;
}

.footer-aside-second {
  float: right;
  width: 20%;
  overflow: hidden;
  margin-top: -160px;
  z-index: 2;
  position: relative;
}

.footer-aside-second h4 {
  margin-bottom: 12px;
  color: #fff;
}

.footer-aside-second a {
  display: block;
  background-color: #2f7096;
  background-color: rgba(64, 180, 229, 0.5);
  padding: 6px;
  margin-bottom: 6px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.25em;
  font-weight: 400;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.footer-aside-second a:hover {
  color: #fff;
  background-color: #23536f;
}

.footer-aside-second a.tele:hover {
  color: #fff;
  cursor: default;
}

.footer-aside-second a.linkedin {
  display: inline-block;
  overflow: hidden;
  margin: 20px 0 0;
  padding: 19px;
  float: right;
  width: 0;
  height: 0;
  background: url(images/linkedin.gif) center center no-repeat rgba(0, 0, 0, 0);
  text-indent: -9999px;
}

.footer-aside-second .cwu {
  float: right;
  margin: 42px 12px 0 0;
}

.footer-aside-third {
  clear: both;
  margin-top: 30px;
}

.site-info {
  padding: 1em 0;
  text-align: center;
}

/* ----------------------------------------------------------------------
Page Headers
----------------------------------- */

.page-template-default .masthead-graphic,
.page-template .masthead-graphic,
.single-webcasts .masthead-graphic,
.single-press-releases .masthead-graphic {
  background: url(img/masthead-image-goes-here.jpg);
  background-position: center 0;
  background-repeat: no-repeat;
  background-color: #a3c7d6;
  height: 175px;
  background-size: cover;
}

.home .masthead-graphic,
.home .title-bar,
.page-template-page-templatesnew-home-php .masthead-graphic,
.page-template-page-templatesnew-home-php .title-bar {
  display: none;
}

.home.page .content-area-wrap {
  padding-top: 0;
}

article .entry-header {
  display: none;
}

.title-bar {
  background-color: #ccc;
}

.slug-consulting-services .masthead-graphic,
.parent-pageid-14 .masthead-graphic {
  background-image: url(images/headers/header-consulting.jpg);
}

.slug-clients .masthead-graphic,
.parent-pageid-16 .masthead-graphic {
  background-image: url(images/headers/header-clients.jpg);
}

.slug-about-ici .masthead-graphic,
.single-press-releases .masthead-graphic,
.parent-pageid-20 .masthead-graphic {
  background-image: url(images/headers/header-about.jpg);
}

.slug-webcast-speeches .masthead-graphic,
.single-webcasts .masthead-graphic {
  background-image: url(images/headers/header-webcasts.jpg);
}

.slug-contact .masthead-graphic {
  background-image: url(images/headers/header-contact.jpg);
}

.slug-consulting-services .title-bar,
.parent-pageid-16.slug-free-atm-strategy-discussion .title-bar,
.parent-pageid-14 .title-bar {
  background-color: #6ca439;
}

.parent-pageid-14.page-id-2433 .title-bar  {
  background-color: #4196b4;
}
.slug-clients .title-bar,
.slug-free-pricing-analysis .title-bar,
.parent-pageid-16 .title-bar {
  background-color: #d74022;
}

.slug-webcast-speeches .title-bar,
.single-webcasts .title-bar {
  background-color: #4196b4;
}

.slug-about-ici .title-bar,
.parent-pageid-20 .title-bar,
.single-press-releases .title-bar {
  background-color: #628f7c;
}

.slug-contact .title-bar {
  background-color: #777779;
}

.page-title {
  width: 1000px;
  margin: 0 auto;
}

.page-title ._title {
  padding: 4px 0;
  font-size: 1.125em;
  color: #fff;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------------
Home Page 
----------------------------------- */

.home .feature-box-slider,
.page-template-page-templatesnew-home-php .feature-box-slider {
  width: 106%;
  position: relative;
  margin: 50px -3% 74px;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.featured-boxes .box {
  position: relative;
  width: 226px;
  height: 95%;
  padding: 26px 14px 14px;
  background-color: #405c6e;
  font-family: "Archivo Narrow", sans-serif;
  color: #fff;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.featured-boxes .box._0,
.featured-boxes .box._4,
.featured-boxes .box._8 {
  background-color: #0075ae;
}

.featured-boxes .box._1,
.featured-boxes .box._5,
.featured-boxes .box._9 {
  background-color: #628f7c;
}

.featured-boxes .box._2,
.featured-boxes .box._6,
.featured-boxes .box._10 {
  background-color: #4196b4;
}

.featured-boxes .box._3,
.featured-boxes .box._7,
.featured-boxes .box._11 {
  background-color: #c79e42;
}

.featured-boxes .box .testimonial {
  font-size: 1.375em;
  line-height: 1.2;
}

.featured-boxes .box h1,
.featured-boxes .box h2,
.featured-boxes .box h3,
.featured-boxes .box h4,
.featured-boxes .box h5,
.featured-boxes .box h6,
.featured-boxes .box p,
.featured-boxes .box a {
  color: #fff;
}

.featured-boxes .box-title {
  font-family: "Arvo", serif;
  font-weight: 400;
  font-size: 0.875em;
}

.featured-boxes ._title,
.featured-boxes .team-name {
  font-size: 1.5em;
  line-height: 1.2;
  margin-bottom: 0;
}

.featured-boxes .box_news ._title {
  font-size: 1.2em;
}

.featured-boxes .box_news h3+h3 {
  margin-top: 20px;
}

.featured-boxes .box_news ._title a {
  text-decoration: none;
}

.featured-boxes .box_news ._title a:hover {
  color: #354d43;
}

.featured-boxes ._date,
.featured-boxes .team-title {
  font-size: 0.875em;
  line-height: 1;
}

.featured-boxes ._bottom-link {
  display: block;
  position: absolute;
  left: 12px;
  bottom: 6px;
  font-size: 0.75em;
  line-height: 1;
  border-top: 1px solid #fff;
  background: url(images/bottom-link-arrow.png) right center no-repeat;
  padding: 8px 0;
  width: 84%;
  text-transform: uppercase;
  text-decoration: none;
}

.featured-boxes .team-spot {
  display: block;
  text-decoration: none;
}

.featured-boxes .pic-crop {
  height: 154px;
  width: 198px;
  overflow: hidden;
  position: absolute;
  bottom: 14px;
  left: 14px;
}

.home .feature-box-slider .left-arrow,
.home .feature-box-slider .right-arrow,
.page-template-page-templatesnew-home-php .feature-box-slider .left-arrow,
.page-template-page-templatesnew-home-php .feature-box-slider .right-arrow {
  float: left;
  width: 45px;
  margin-top: 140px;
}

.home .feature-box-slider .right-arrow,
.page-template-page-templatesnew-home-php .feature-box-slider .right-arrow {
  float: right;
}

.home .feature-box-slider .left-arrow span,
.home .feature-box-slider .right-arrow span,
.page-template-page-templatesnew-home-php .feature-box-slider .left-arrow span,
.page-template-page-templatesnew-home-php .feature-box-slider .right-arrow span,
.home-hero-toggles #prev,
.home-hero-toggles #next {
  display: block;
  width: 30px;
  height: 30px;
  background: url(images/slider-arrows.png) left center no-repeat;
  cursor: pointer;
}

.home .feature-box-slider .right-arrow span,
.home-hero-toggles #next,
.page-template-page-templatesnew-home-php .feature-box-slider .right-arrow span {
  background-position: right center;
  float: right;
}

.home .featured-boxes,
.page-template-page-templatesnew-home-php .featured-boxes {
  float: left;
  width: 90.5%;
  height: 318px;
  overflow: hidden;
}

.home .feature-box-slider .featured-boxes>ul,
.page-template-page-templatesnew-home-php .feature-box-slider .featured-boxes>ul {
  display: block;
  width: 10000px;
}

.home .feature-box-slider ul,
.home .feature-box-slider li,
.page-template-page-templatesnew-home-php .feature-box-slider ul li,
.page-template-page-templatesnew-home-php .feature-box-slider ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.home .feature-box-slider ul li,
.page-template-page-templatesnew-home-php .feature-box-slider ul li {
  float: left;
  width: 226px;
  height: 318px;
  margin: 0 8px;
}

@media only screen and (max-width: 750px) {
  .feature-box-slider {
    display: none;
  }
}

.process-bar .wrapper {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  height: 244px;
}

.process-bar #wheel {
  width: 350px;
  float: left;
  height: 320px;
  margin: -35px 0 0;
  overflow: hidden;
}

.process-bar ._content {
  width: 60%;
  float: right;
  padding: 24px 0 0;
  position: relative;
}

.process-bar ._content._mobile-wheel {
  display: none;
}

.home .entry-content {
  clear: both;
  padding-top: 50px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.25em;
  line-height: 1.6;
}

.slug-home-page ._content p span {
  font-weight: bold;
  font-size: 1.5em;
  display: block;
  padding: 0 0 0.25em;
}

.hideme,
.request_recording_form_wrap {
  display: none;
}

.request_recording {
  width: 500px;
}

.search-results .page-header .page-title,
.search-no-results .page-header .page-title,
.error404 .page-header .page-title {
  margin: 1em 0;
  font-size: 1.5em;
}

.search-results article .entry-header {
  display: block;
}

.ici_dif {
  position: absolute;
  top: 102px;
  left: 110px;
  z-index: 100;
  font-size: 22px;
  color: #003b70;
  font-family: "Archivo Narrow", sans-serif;
  text-transform: uppercase;
  width: 130px;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}

#wheel ._wheel_sections {}

#wheel ._wheel_sections ul {
  position: relative;
  width: 100%;
  height: 161px;
}

#wheel ._wheel_bg {
  background: url("images/wheel-bg.png") center center no-repeat transparent;
  height: 320px;
  width: 320px;
  margin: 0 auto;
}

#wheel ._wheel_top_3 li,
#wheel ._wheel_bottom_3 li {
  position: absolute;
  width: 143px;
  height: 75px;
  background-image: url("images/wheel-sprite-lt-blue.png");
  background-repeat: no-repeat;
  background-color: transparent;
  text-indent: -9999px;
  cursor: pointer;
}

#wheel ul {
  list-style: none;
  margin: 0;
}

._wheel_sections .res {
  background-position: center -580px;
  -moz-transform: rotate(-60deg);
  -webkit-transform: rotate(-60deg);
  -o-transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  left: -19px;
  top: 62px;
}

._wheel_sections .asse {
  background-position: center 0;
  margin: auto;
  right: 0;
  left: 0;
  top: 12px;
}

._wheel_sections .ven {
  background-position: center -102px;
  -moz-transform: rotate(60deg);
  -webkit-transform: rotate(60deg);
  -o-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  right: -19px;
  top: 60px;
}

._wheel_sections .convo {
  background-position: center -472px;
  -moz-transform: rotate(-120deg);
  -webkit-transform: rotate(-120deg);
  -o-transform: rotate(-120deg);
  -ms-transform: rotate(-120deg);
  left: -19px;
  top: 24px;
}

._wheel_sections .sel {
  background-position: center -359px;
  margin: auto;
  right: 0;
  left: 3px;
  top: 73px;
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
}

._wheel_sections .nego {
  background-position: center -235px;
  -moz-transform: rotate(120deg);
  -webkit-transform: rotate(120deg);
  -o-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  right: -18px;
  top: 23px;
}

.highlighted_bg {
  background-image: url("images/wheel-sprite-dark-blue.png");
  background-position: center -900px;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 161px;
  height: 75px;
  position: absolute;
  z-index: 100;
  top: -25px;
  left: 94px;
}

#wheel.res .highlighted_bg {
  background-position: center -649px;
}

#wheel.asse .highlighted_bg {
  background-position: center 0;
}

#wheel.ven .highlighted_bg {
  background-position: center -113px;
}

#wheel.convo .highlighted_bg {
  background-position: center -507px;
}

#wheel.sel .highlighted_bg {
  background-position: center -367px;
}

#wheel.nego .highlighted_bg {
  background-position: center -229px;
}

.slug-home-page ._content p {
  position: absolute;
  top: 0;
  left: -14px;
  margin-top: 30px;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-out;
  /* Saf3.2+, Chrome */
  -moz-transition: opacity 0.4s ease-out;
  /* FF4+ */
  -ms-transition: opacity 0.4s ease-out;
  /* IE10 */
  -o-transition: opacity 0.4s ease-out;
  /* Opera 10.5+ */
  transition: opacity 0.4s ease-out;
  filter: alpha(opacity=0);
}

.slug-home-page ._content p.active {
  opacity: 1;
  filter: alpha(opacity=100);
}

/* ----------------------------------------------------------------------
Webcasts Page 
----------------------------------- */
.post-type-archive-webcasts .site-main,
.page-template-archive-webcasts-php .site-main {
  padding-bottom: 30px;
}

.webcast-intro-wrap {
  background-color: #b6e1f2;
  background: #b6e1f2;
  /* Old browsers */
  background: -moz-linear-gradient(top,
      #b6e1f2 0%,
      #a3c9d9 80%,
      #99becc 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(0%, #b6e1f2),
      color-stop(80%, #a3c9d9),
      color-stop(100%, #99becc));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,
      #b6e1f2 0%,
      #a3c9d9 80%,
      #99becc 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,
      #b6e1f2 0%,
      #a3c9d9 80%,
      #99becc 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top,
      #b6e1f2 0%,
      #a3c9d9 80%,
      #99becc 100%);
  /* IE10+ */
  background: linear-gradient(to bottom,
      #b6e1f2 0%,
      #a3c9d9 80%,
      #99becc 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b6e1f2', endColorstr='#99becc', GradientType=0);
  /* IE6-9 */
}

.webcast-intro {
  padding: 6px 0;
  margin: 0 auto;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.125em;
  font-weight: 400;
  color: #003b70;
  width: 1000px;
}

.vignette-bar {
  background: url(images/gray-vignette.png) 0 0 repeat-x;
  overflow: hidden;
  height: 146px;
}

.title-wrap {
  background-color: #b6e1f2;
}

.accordion_wrap {
  width: 100%;
  margin: -150px auto 0;
}

.single-webcasts .accordion_wrap {
  margin-top: 0;
}

.accordion_wrap ul>article {
  display: none;
}

.accordion_wrap ul,
.accordion_wrap li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.accordion_wrap ._title-wrap {
  position: relative;
  overflow: hidden;
  width: 104%;
  margin-left: -20px;
  margin-top: 30px;
  padding: 20px;
  -webkit-transition: all 0.2s ease-out;
  /* Saf3.2+, Chrome */
  -moz-transition: all 0.2s ease-out;
  /* FF4+ */
  -ms-transition: all 0.2s ease-out;
  /* IE10 */
  -o-transition: all 0.2s ease-out;
  /* Opera 10.5+ */
  transition: all 0.2s ease-out;
}

.accordion_wrap .page-anchor {
  position: absolute;
  top: -20px;
}

.accordion_wrap ._title-wrap:hover {
  background-color: #b6e1f2;
}

.single-webcasts .accordion_wrap ._title-wrap:hover {
  background-color: transparent;
}

.accordion_wrap ._date {
  float: left;
  padding: 2px;
  width: 60px;
  height: 38px;
  background-color: #00827d;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.8125em;
  font-weight: 700;
  text-align: center;
  color: #fff;
  line-height: 1.4;
}

.accordion_wrap.past ._date {
  background-color: #768591;
}

.accordion_wrap ._date ._month {
  text-transform: uppercase;
}

.accordion_wrap ._date ._month,
.accordion_wrap ._date ._day {
  float: left;
  width: 100%;
  height: 17px;
  margin: 0;
  background-color: #fff;
  color: #00827d;
}

.accordion_wrap ._date ._day {
  background-color: #00827d;
  color: #fff;
}

.accordion_wrap.past ._date ._month {
  color: #b46a1f;
}

.accordion_wrap.past ._date ._day {
  background-color: #768591;
}

.accordion_wrap ._title-box {
  float: left;
  width: 70%;
  margin-left: 16px;
  cursor: pointer;
}

.single-webcasts .accordion_wrap ._title-box {
  cursor: default;
}

.accordion_wrap ._title {
  display: block;
  margin-top: -4px;
  margin-bottom: 0;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1.625em;
  font-weight: 400;
  line-height: 1.1em;
}

.accordion_wrap.past ._title {
  color: #808184;
}

.accordion_wrap ._details-link {
  margin-bottom: 0;
  font-family: "Arvo", serif;
  font-size: 0.75em;
  font-weight: 700;
  color: #0075c9;
  text-transform: uppercase;
}

.accordion_wrap ._details-link._replace {
  display: none;
}

.accordion_wrap li.open ._details-link._details,
.single-webcasts ._details-link._details {
  display: none;
}

.accordion_wrap li.open ._details-link._replace,
.single-webcasts ._details-link._replace {
  display: block;
}

.accordion_wrap ._button {
  float: right;
  background-color: #c79e42;
  color: #fff;
  padding: 9px 36px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-out;
  /* Saf3.2+, Chrome */
  -moz-transition: all 0.2s ease-out;
  /* FF4+ */
  -ms-transition: all 0.2s ease-out;
  /* IE10 */
  -o-transition: all 0.2s ease-out;
  /* Opera 10.5+ */
  transition: all 0.2s ease-out;
}

.accordion_wrap.past ._button {
  padding: 9px 25px;
}

.accordion_wrap ._button:hover {
  background-color: #1f3249;
}

.accordion_wrap ._expandable-container {
  display: none;
}

.single-webcasts .accordion_wrap ._expandable-container {
  display: block;
}

.accordion_wrap .description_wrap {
  margin-top: 30px;
}

.accordion_wrap .description_wrap ._image {
  float: left;
  width: 25%;
  height: auto;
  background: url(images/fpo-description.jpg) 0 0 no-repeat;
}

.accordion_wrap .description_wrap ._description-content {
  float: left;
  width: 72%;
  margin: 0 0 20px 3%;
}

.accordion_wrap ._expandable-container ._title {
  margin-bottom: 20px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.875em;
  font-weight: 400;
  color: #003b70;
  line-height: 1;
}

.accordion_wrap .description_wrap ._description {
  /*font-family: 'Mate', serif;*/
  /*font-family: Times, "Times New Roman", serif;*/
  font-size: 1.125em;
  line-height: 1.53;
}

/*.accordion_wrap ._expandable-container ._boxes { overflow: hidden; }*/
.accordion_wrap ._expandable-container .box {
  float: left;
  margin-left: 0;
  padding: 20px 20px 0;
  width: 49%;
  background: url(images/gray-texture.jpg) 0 0 transparent;
  /*font-family: 'Mate', serif;*/
  /*font-family: Times, "Times New Roman", serif;*/
}

.accordion_wrap ._expandable-container .box.speaker-wrap {
  float: right;
  margin-left: 0;
  margin-right: 0;
}

.accordion_wrap .box.speaker-wrap ._image {
  float: left;
  width: 25%;
  height: auto;
  background: url(images/fpo-speaker.jpg) 0 0 no-repeat;
}

._expandable-container .box.speaker-wrap ._speaker-details {
  float: left;
  width: 70%;
  margin-left: 3%;
}

._expandable-container .box.speaker-wrap ._speaker-details span,
._expandable-container .box.speaker-wrap ._speaker-details a {
  float: left;
  clear: left;
}

._expandable-container .box.speaker-wrap ._speaker-details a {
  text-decoration: none;
}

._expandable-container .box.speaker-wrap ._speaker-details ._phone:hover {
  color: #404041;
  cursor: text;
}

._expandable-container .box.speaker-wrap ._speaker-bio {
  margin-top: 30px;
}

._expandable-container .box ._about,
._expandable-container .box ._audience {
  margin-bottom: 1.5em;
}

._expandable-container .box ul {
  margin-left: 20px;
}

._expandable-container .box ul>li {
  padding-bottom: 10px;
  list-style-type: disc;
}

._expandable-container .box ol>li {
  padding-bottom: 10px;
  list-style-type: decimal;
}

._expandable-container ._close-button {
  float: left;
  margin: 14px 0 0 0;
  padding: 12px 24px 12px 48px;
  background: url(images/close-x.gif) 10px 10px no-repeat #0070cd;
  /*font-family: 'Mate', serif;*/
  /*font-family: Times, "Times New Roman", serif;*/
  font-size: 0.875em;
  color: #fff;
  text-align: right;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  /* Saf3.2+, Chrome */
  -moz-transition: all 0.2s ease-out;
  /* FF4+ */
  -ms-transition: all 0.2s ease-out;
  /* IE10 */
  -o-transition: all 0.2s ease-out;
  /* Opera 10.5+ */
  transition: all 0.2s ease-out;
  clear: left;
}

._expandable-container ._close-button:hover {
  background-color: #1f3249;
}

._expandable-container hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-top: 10px;
  margin-bottom: 1.5em;
  clear: left;
  margin-left: -20px;
  width: 104%;
}

/* ----------------------------------------------------------------------
Testimonials Page 
----------------------------------- */
.page-template-page-templatestestimonials-php .testimonial_wrap {
  position: relative;
  background-color: #EBEBEB;
  margin-bottom: 50px;
  padding: 37px 38px 58px 18px;
  margin-left: -18px;
}
.page-template-page-templatestestimonials-php .testimonial_wrap h4 {
  font-size: 18px;
  margin-bottom: 28px;
}
.page-template-page-templatestestimonials-php .testimonial_wrap p:first-of-type {
  /*font-family: 'Arvo';*/
  font-family: 'Arial';
  font-size: 18px;
}.page-template-page-templatestestimonials-php .testimonial_wrap p:last-child {
  font-size: 14px;
  color: #003B71;
  /*max-width: 340px;*/
}
.page-template-page-templatestestimonials-php .page-anchor {
  position: absolute;
  top: -20px;
}

.page-template-page-templatestestimonials-php hr {
  margin: -10px 0 3em;
}

/* ----------------------------------------------------------------------
Management Team Page 
----------------------------------- */
.page-template-page-templatesmanagement-team-php .team_wrap {
  position: relative;
}

.page-template-page-templatesmanagement-team-php .card-container,
.page-template-page-templatesmanagement-team-php .card-wrap {
  list-style: none;
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap {
  display: block;
  float: left;
  overflow: hidden;
  width: 22.6%;
  position: relative;
  margin-left: 3.2%;
  margin-bottom: 60px;
  /*perspective: 800px;*/
}

.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_1,
.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_5,
.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_9,
.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_13,
.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_17,
.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_21,
.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_25,
.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_29,
.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_33,
.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_37,
.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_41,
.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_45,
.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_49,
.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_53,
.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_57,
.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_61,
.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_65,
.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_69,
.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_73{
  margin-left: 0;
  clear: left;
}

.page-template-page-templatesmanagement-team-php .team_wrap .front img.member-photo {
  height: 182px;
  width: auto;
}

.page-template-page-templatesmanagement-team-php .team_wrap .front img {
  /* object-fit: cover; */
  /* object-position: center; */
}

.page-template-page-templatesmanagement-team-php .team_wrap .front img,
.page-template-page-templatesmanagement-team-php .team_wrap .front .nopic {
  display: block;
  margin: 0 auto 20px;
}

.page-template-page-templatesmanagement-team-php .team_wrap .front .nopic {
  width: 100%;
  max-width: 198px;
  height: 0;
  display: block;
  background-color: #eee;
  background-color: rgba(255, 255, 255, 0.5);
  padding-top: 101%;
}

.page-template-page-templatesmanagement-team-php .front,
.page-template-page-templatesmanagement-team-php .back {
  display: block;
  width: 100%;
  height: auto;
  /*position: absolute;*/
  padding: 20px;
  background: url(images/gray-texture.jpg) left top transparent;
  border: 1px solid #bbbdbf;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.page-template-page-templatesmanagement-team-php .back {
  position: absolute;
  height: 100%;
  top: -100%;
  padding: 18px;
  background: none;
  background-color: #003d63;
  border: 1px solid #bbbdbf;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.2s ease-out;
  /* Saf3.2+, Chrome */
  -moz-transition: all 0.2s ease-out;
  /* FF4+ */
  -ms-transition: all 0.2s ease-out;
  /* IE10 */
  -o-transition: all 0.2s ease-out;
  /* Opera 10.5+ */
  transition: all 0.2s ease-out;
}

.card {
  overflow: hidden;
}

.page-template-page-templatesmanagement-team-php .card:hover .back {
  top: 0;
}

.page-template-page-templatesmanagement-team-php .back .bio-link,
.page-template-page-templatesmanagement-team-php .back .contact-wrap {
  background-color: #004d71;
}

.page-template-page-templatesmanagement-team-php .back .contact-wrap {
  height: 100%;
}

.page-template-page-templatesmanagement-team-php .team_wrap .back a.bio-link,
.page-template-page-templatesmanagement-team-php .team_wrap .back a.contact-info {
  display: block;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 0.9375em;
  font-weight: 400;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.page-template-page-templatesmanagement-team-php .team_wrap .back a.bio-link {
  padding: 32px 0;
  font-size: 1.25em;
  font-weight: 800;
}

.page-template-page-templatesmanagement-team-php .team_wrap .back a.bio-link:hover {
  color: #0075c9;
}

.page-template-page-templatesmanagement-team-php .team_wrap .back a.email {
  padding-top: 52px;
  border-top: 12px solid #003d63;
}

.page-template-page-templatesmanagement-team-php .team_wrap .back a.tele:hover {
  color: #fff;
}

.page-template-page-templatesmanagement-team-php h4.team-name {
  font-size: 1.125em;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-template-page-templatesmanagement-team-php .bio-wrap .bio-portrait {
  float: left;
  margin: 0 2em 1em 0;
}

.page-template-page-templatesmanagement-team-php .bio-wrap h4.team-name {
  font-size: 1.375em;
  margin-bottom: 4px;
  padding-top: 12px;
}

.page-template-page-templatesmanagement-team-php .team_wrap .team-name,
.page-template-page-templatesmanagement-team-php .team_wrap .team-title,
.page-template-page-templatesmanagement-team-php .team_wrap .contact-info {
  line-height: 1em;
  clear: none;
}

.page-template-page-templatesmanagement-team-php .team_wrap .team-title {
  min-height: 2em;
}

.page-template-page-templatesmanagement-team-php .team_wrap a {
  color: #0075c9;
}

.page-template-page-templatesmanagement-team-php .bio-wrap {
  display: none;
  padding-top: 50px;
}

.page-template-page-templatesmanagement-team-php .bio-wrap.active {
  display: block;
}

.page-template-page-templatesmanagement-team-php #team {
  padding-top: 20px;
}

.page-template-page-templatesmanagement-team-php .team_wrap a.contact-info,
.page-template-page-templatesmanagement-team-php .bio-wrap .contact-info a {
  padding: 5px 0;
  display: inline-block;
  font-family: "Archivo Narrow", sans-serif;
  font-weight: 400;
  text-decoration: none;
  color: #404041;
}

.page-template-page-templatesmanagement-team-php .team_wrap a.contact-info:hover {
  color: #0075c9;
}

.page-template-page-templatesmanagement-team-php .team_wrap a.tele {
  cursor: text;
}

.page-template-page-templatesmanagement-team-php .team_wrap a.tele:hover {
  color: #404041;
}

.page-template-page-templatesmanagement-team-php .bio-wrap .bio {
  clear: both;
  font-size: 1.125em;
  line-height: 1.53;
}

.page-template-page-templatesmanagement-team-php hr {
  margin-bottom: 40px;
  background-color: #004d71;
}

.page-template-page-templatesmanagement-team-php .page-anchor {
  position: absolute;
  top: -20px;
}

/* ----------------------------------------------------------------------
Clients Page
----------------------------------- */

.logo-container {
  overflow: hidden;
  border-bottom: 1px solid #b9bbbd;
  margin-bottom: 50px;
}

.logo_wrap {
  float: left;
  border: 1px solid #b9bbbd;
  border-left: none;
  border-bottom: none;
  width: 33%;
  min-height: 160px;
  position: relative;
}

.logo_wrap.logo_3 {
  border-right: none;
}

.logo_wrap img {
  width: auto;
  height: auto;
  max-height: 100px;
  max-width: 80%;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* ----------------------------------------------------------------------
News Page
----------------------------------- */

.single-press-releases .entry-content {
  margin-top: 24px;
}

.single-press-releases .site-main h3 {
  margin-bottom: 0.5em;
}

.single-press-releases strong {
  font-weight: 800;
}

.single-press-releases footer.entry-meta {
  display: none;
}

.single-press-releases footer {
  margin-top: 50px;
}

.page-template-archive-press-releases-php .page-header {
  display: none;
}

.page-template-archive-press-releases-php article {
  margin: 0;
}

.page-template-archive-press-releases-php .content-area {
  padding-bottom: 50px;
}

.page-template-archive-press-releases-php .press-releases,
.single-press-releases .press-releases {
  margin: 0;
  list-style: none;
}

.news_wrap a {
  display: block;
  padding: 8px 0 12px;
}

.news_wrap a:hover {
  text-decoration: none;
}

a[href$=".pdf"] {
  background: url(images/pdf-icon.png) left 12px no-repeat;
  padding-left: 20px;
}

#secondary .latest-pr {
  border-top: 1px solid #628f7c;
  padding-top: 4px;
}

#secondary .latest-pr h3 {
  padding-left: 1px;
}

.news_wrap ._teaser {
  padding: 6px 10px 10px;
  line-height: 1.25;
  margin-top: -30px;
  border-bottom: 1px solid #b8d9cb;
  color: #6a7570;
}

.page-template-archive-press-releases-php .news_wrap a,
#secondary .news_wrap a {
  display: block;
  width: 100%;
  background-color: #b8d9cb;
  padding: 10px 20px 10px 10px;
  margin: 0 0 30px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: #1f3249;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  line-height: 1.25;
  text-decoration: none;
}

#secondary .news_wrap a {
  margin: 16px 0;
  padding: 10px;
  font-size: 0.9em;
}

.page-template-archive-press-releases-php .news_wrap a:hover,
#secondary .news_wrap a:hover,
#secondary .news_wrap a.current {
  color: #fff;
  background-color: #628f7c;
}

.single-press-releases .post-navigation {
  display: none;
}

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

#gform_fields_1 .gform_wrapper textarea {
  font-size: 1em !important;
  padding: 4px !important;
}

input[type="tel"] {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
}

/* Search widget */
.header-aside .widget_search {
  position: relative;
  float: right;
}

.header-aside .search-toggle {
  position: absolute;
  top: 0;
  right: 0;
  /*width: 38px;*/
  height: 34px;
  cursor: pointer;
  background: url(images/search.png) right center no-repeat transparent;
  display: none;
}

.header-aside .search-form,
.header-aside .search-submit,
.header-aside .search-field {
  -webkit-transition: all 0.2s ease-out;
  /* Saf3.2+, Chrome */
  -moz-transition: all 0.2s ease-out;
  /* FF4+ */
  -ms-transition: all 0.2s ease-out;
  /* IE10 */
  -o-transition: all 0.2s ease-out;
  /* Opera 10.5+ */
  transition: all 0.2s ease-out;
}

.header-aside .search-form {
  position: relative;
  overflow: hidden;
  height: 34px;
  width: 300px;
}

.search .page-content .search-form {
  float: left;
  margin: 2em 1em 4em;
}

.search-submit {
  display: block;
  float: left;
  padding: 3px 6px;
  border: none;
  background: #2d70c6;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-size: 10px;
  font-family: sans-serif;
  height: 34px;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 0;
  width: 76px;
}

.search-submit:hover {
  background-color: #24599c;
}

#page input.search-field {
  display: block;
  float: left;
  margin: 0;
  padding: 3px 12px;
  height: 34px;
  outline: none;
  border: none;
  border-radius: 0;
  background-color: #929497;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 224px;
  color: #fff;
}

.home .entry-title {
  display: none;
}

/* TABS */
.tabs {}

.tabs_headers {
  overflow: hidden;
}

.tab_header {
  position: relative;
  width: 30%;
  float: left;
  background: #6ca438;
  color: #fff;
  text-align: center;
  padding: 15px 5px;
  margin: 0 3% 5% 0;
  font-family: "Archivo Narrow", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  /* Saf3.2+, Chrome */
  -moz-transition: all 0.2s ease-out;
  /* FF4+ */
  -ms-transition: all 0.2s ease-out;
  /* IE10 */
  -o-transition: all 0.2s ease-out;
  /* Opera 10.5+ */
  transition: all 0.2s ease-out;
}

.tab_header.active {
  background: #5b8b2f;
}

.tab_header:hover,
.tab_header.active:hover {
  background: #537e2b;
}

.tab_header.active:after {
  content: "";
  position: absolute;
  bottom: -38px;
  left: 40%;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 22px solid #ebebeb;
}

.tab_areas {
  clear: both;
  margin: 0 4% 5% 0;
}

.tab_area {
  padding: 5%;
  background: #ebebeb;
  display: none;
}

.tab_area .tab_header {
  display: none;
}

.tab_area.active {
  display: block;
}

.tab_content blockquote {}

/*.tab_content blockquote,*/
.tab_content p {
  font-size: 1.2em;
  /*font-family: 'Arvo';*/
  font-family: "Arial", sans-serif;
}

.tab_content blockquote p:last-child {
  /*font-family: "Archivo Narrow", sans-serif;*/
  font-size: 1em;
}

.tab_content ul {
  font-family: "Archivo Narrow", sans-serif;
  color: #6ca438;
}

.tab_content li {
  line-height: 1.75em;
}

.gform_wrapper {
  overflow: hidden;
  background: #ebebeb;
  padding: 1em;
}

body .gform_wrapper .left_label .gfield_label {
  margin: 0 3% 0 0;
}

body .gform_wrapper .left_label input.medium {
  width: 63%;
  font-size: 16px;
  padding: 5px 10px;
  height: auto;
  line-height: 1.5em;
}

body .gform_wrapper .gform_footer.left_label {
  padding: 0;
  overflow: hidden;
}

body .gform_wrapper .left_label .gfield_label {
  font-weight: normal;
}

body .gform_wrapper .left_label .gfield_description {
  margin-left: 32%;
}

.gform_button {
  padding: 0.5em 1em;
  border: none;
  background: #2d70c6;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-size: 10px;
  font-family: sans-serif;
  float: right;
  margin: 0 5% 4% 0;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  /* Saf3.2+, Chrome */
  -moz-transition: all 0.2s ease-out;
  /* FF4+ */
  -ms-transition: all 0.2s ease-out;
  /* IE10 */
  -o-transition: all 0.2s ease-out;
  /* Opera 10.5+ */
  transition: all 0.2s ease-out;
  -webkit-appearance: none;
  border-radius: 0;
}

.gform_button:hover {
  background-color: #24599c;
}

img[alt="css.php"] {
  display: none;
}

/* Small menu */
a.menu-toggle {
  display: none;
  cursor: pointer;
  color: #fff;
  padding: 0;
  width: 50px;
  height: 38px;
  background: #45545f;
  text-indent: -999em;
  margin: 0;
  position: absolute;
  top: 56px;
  right: 0;
  margin: 0;
}

a.menu-toggle:after {
  content: "";
  display: block;
  position: absolute;
  top: 0em;
  left: 0;
  width: 1em;
  height: 0.125em;
  font-size: 36px;
  border-top: 0.375em double #fff;
  border-bottom: 0.125em solid #fff;
  margin: 0.25em 0.2em;
}

a.menu-toggle:hover {
  background: #37434b;
}

a.menu-toggle-close {
  top: 24px;
}

a.menu-toggle-close:after {
  width: 0;
  height: 0;
  border-left: 0.5em solid transparent;
  border-right: 0.5em solid transparent;
  border-top: none;
  border-bottom: 0.5em solid #fff;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {

  .menu-toggle,
  .main-navigation.toggled .nav-menu {
    display: block;
  }

  .main-navigation ul {
    display: none;
  }

  .footer-aside-first {
    padding-top: 80px;
    overflow: visible;
  }

  .process-bar ._content {
    width: 100%;
    float: none;
  }
}

@media screen and (min-width: 1201px) {

  /*huge desktop*/
  .wrapper {
    max-width: 1000px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1200px) and (min-width: 961px) {

  /*large desktop*/
  .content-area-wrap {
    max-width: 960px;
  }

  .wrapper,
  .process-bar .wrapper,
  .header-wrap,
  .mobile-wrap,
  .menu-logos-menu-wrap,
  .footer-wrap {
    width: 960px;
  }

  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap {
    width: 23.5%;
    margin-left: 2%;
  }

  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_1,
  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_5,
  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_9,
  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_13,
  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_17,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_21,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_25,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_29,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_33,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_37,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_41,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_45,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_49,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_53,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_57,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_61,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_65,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_69,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_73
	 {
    margin-left: 0;
    clear: left;
  }

  .home .feature-box-slider ul li {
    margin: 0 3px;
  }
}

@media screen and (max-width: 960px) and (min-width: 721px) {

  /*small desktop/large tablet*/
  .content-area-wrap {
    max-width: 720px;
  }

  .wrapper,
  .process-bar .wrapper,
  .header-wrap,
  .mobile-wrap,
  .menu-logos-menu-wrap,
  .footer-wrap {
    width: 720px;
  }

  .content-area,
  .site-main .widget-area {
    float: none;
    width: 100%;
    margin: 0 auto;
  }

  .main-navigation {
    float: none;
    clear: both;
    display: table;
    margin: 0 auto;
  }

  footer .menu-main-menu-container .menu>li {
    width: 25%;
  }

  footer .menu-main-menu-container .menu>li:last-child {
    clear: left;
    margin-top: 20px;
  }

  .footer-aside-second {
    float: right;
    width: 75%;
    margin-top: -200px;
  }

  .footer-aside-second a {
    width: 48%;
    margin-right: 2%;
    float: left;
  }

  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap {
    width: 32%;
    margin-left: 2%;
    clear: none;
  }

  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_1,
  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_4,
  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_7,
  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_10,
  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_13,
  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_16,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_19,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_22,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_25,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_28,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_31,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_34,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_37,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_40,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_43,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_46,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_49,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_52,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_55,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_58,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_61,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_64
	
	{
    margin-left: 0;
    clear: left;
  }

  .page-template-page-templatesmanagement-team-php #secondary {
    display: none;
  }

  .home .feature-box-slider {
    width: 110%;
    margin: 50px -5% 74px;
  }

  .home .featured-boxes {
    float: left;
    width: 88%;
  }

  .home .feature-box-slider ul li {
    margin: 0 3px;
  }

  .process-bar .wrapper {
    height: auto;
  }

  .process-bar ._content {
    width: 45%;
    padding: 0;
  }
}

@media screen and (max-width: 720px) {

  /*tiny desktop/small tablet/large phone/small phone */
  .page .content-area-wrap {
    padding-top: 0;
  }

  .home .featured-boxes,
  .page-template-page-templatesnew-home-php .featured-boxes {
    height: auto;
  }

  .home .feature-box-slider .featured-boxes>ul,
  .page-template-page-templatesnew-home-php .feature-box-slider .featured-boxes>ul {
    width: 100%;
  }

  .wrapper {
    width: 100%;
  }

  .home .feature-box-slider ul li,
  .page-template-page-templatesnew-home-php .feature-box-slider ul li {
    float: left;
    width: 100%;
    height: auto;
    margin: 0 8px;
    margin-bottom: 20px;
  }

  .wrapper {
    width: 100%;
  }

  .content-area-wrap {
    width: 96%;
  }

  .featured-boxes .box a {
    position: relative;
    margin-top: 15px;
  }

  .page-template-page-templatesnew-home-php .featured-boxes {
    width: 100%;
  }

  .home .feature-box-slider .left-arrow,
  .home .feature-box-slider .right-arrow,
  .page-template-page-templatesnew-home-php .feature-box-slider .left-arrow,
  .page-template-page-templatesnew-home-php .feature-box-slider .right-arrow {
    display: none;
  }

  .wrapper,
  .process-bar .wrapper,
  .header-wrap,
  .mobile-wrap,
  .menu-logos-menu-wrap,
  .footer-wrap,
  .footer-aside-first,
  .footer-aside-second,
  .footer-aside-third {
    width: 96%;
    position: relative;
  }

  .featured-boxes .active {
    margin-left: 0 !important;
  }

  .content-area {
    width: 90%;
    float: none;
    margin: 0 auto;
  }

  .site-content {
    margin: 0 0;
    padding-top: 34px;
  }

  .site-main .widget-area {
    float: none;
    width: 90%;
    margin: 0 auto;
  }

  .home #primary {
    border: 0;
  }

  .site-footer {
    background-repeat: repeat;
    background-size: auto;
  }

  .footer-aside-first,
  .footer-aside-second,
  .footer-aside-third {
    float: none;
  }

  .main-navigation ul,
  .header-aside .widget_nav_menu ul {
    display: none;
  }

  a.menu-toggle {
    display: block !important;
  }

  footer .menu-main-menu-container .menu>li {
    border: 0;
    width: 50%;
    float: left;
    height: auto;
    min-height: 1em;
  }

  footer .menu-main-menu-container .menu .sub-menu {
    margin: 0;
    padding: 0;
  }

  footer .menu-main-menu-container .menu a {
    padding: 1em;
    font-size: 1.2em;
  }

  footer .menu-main-menu-container .menu>li:last-child {
    clear: both;
    margin-top: 20px;
  }

  .footer-aside-second {
    float: right;
    width: 75%;
    margin-top: -50px;
  }

  .footer-aside-second a {
    width: 48%;
    margin-right: 2%;
    float: left;
  }

  footer .site-info {
    float: none;
    text-align: center;
    padding: 0 2em;
  }

  #secondary {
    display: none;
  }

  .page-template-page-templatesclients-php .logo_wrap {
    border: 0;
  }

  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap {
    width: 45%;
    margin-left: 5%;
    clear: none;
  }

  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_1,
  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_3,
  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_5,
  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_7,
  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_9,
  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_11,
  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_13,
  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_15,
  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_17,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_19,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_21,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_23,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_25,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_27,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_29.
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_31,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_33,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_35,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_37,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_39,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_41,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_43,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_45,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_47,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_49,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_51,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_53,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_55,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_57,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_59,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_61,
	.page-template-page-templatesmanagement-team-php .team_wrap.card_wrap_63
	
	{
    margin-left: 0;
    clear: left;
  }

  .accordion_wrap ._title-box {
    width: 80%;
  }

  .accordion_wrap ._button {
    clear: both;
  }

  .accordion_wrap .description_wrap ._image {
    width: 50%;
  }

  .accordion_wrap .description_wrap ._description-content {
    clear: left;
    width: 100%;
    margin: 20px 0;
  }

  .accordion_wrap ._expandable-container .box {
    width: 100%;
    margin: 10px auto;
  }

  .process-bar .wrapper {
    height: auto;
  }

  .mobile .process-bar ._content {
    display: none;
  }

  .mobile .process-bar ._content._mobile-wheel {
    display: block;
    width: 100%;
    padding: 0;
  }

  .slug-home-page ._content p {
    position: relative;
    display: block;
    opacity: 1;
    margin: 20px 0;
    left: 0;
  }

  #wheel {
    display: none;
  }

  .ici_dif {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    text-align: left;
    margin: 0;
    padding: 20px 0 0;
    font-size: 2em;
  }

  .ici_dif p {
    padding: 0;
    margin: 0;
  }

  .home .feature-box-slider .left-arrow,
  .home .feature-box-slider .right-arrow {
    display: none;
  }

  .home .feature-box-slider,
  .home .featured-boxes {
    width: 100%;
    margin: 10px auto;
    height: auto;
  }

  .home .feature-box-slider .featured-boxes>ul {
    width: 100%;
    height: auto;
  }

  .home .feature-box-slider ul li {
    margin: 0;
    padding: 8px;
    width: 50%;
    /*max-width: 280px;*/
    height: auto;
  }

  .featured-boxes .box {
    width: 100%;
  }

  .featured-boxes .pic-crop {
    width: 100%;
    height: auto;
    margin: 0 auto;
    max-width: 186px;
    position: relative;
    left: 0;
    bottom: 0;
  }

  .featured-boxes .team-spot img {
    width: 100%;
    height: auto;
  }

  /*.featured-boxes .box_team,
	.featured-boxes .box_testimonial {
		display:none;
	}*/
  /*
	.featured-boxes .box_webcast .box {
		height: auto;
	}*/
  .featured-boxes .box_webcast ._bottom-link {
    position: relative;
  }
}

@media screen and (max-width: 480px) {

  /*small phone*/
  .process-bar .wrapper,
  .header-wrap,
  .mobile-wrap,
  .menu-logos-menu-wrap,
  .footer-wrap,
  .footer-aside-first,
  .footer-aside-second,
  .footer-aside-third {
    width: 96%;
    position: relative;
    margin: 0 auto;
  }

  .search-wrapper,
  #secondary,
  .masthead-graphic {
    display: none;
  }

  footer .menu-main-menu-container .menu>li {
    border: 0;
    width: 100%;
    float: left;
    height: auto;
    min-height: 1em;
  }

  footer .menu-main-menu-container .menu>li>a {
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 6px;
  }

  footer .menu-main-menu-container .menu .sub-menu {
    margin: 0;
    padding: 0;
  }

  footer .menu-main-menu-container .menu a {
    padding: 1em;
    font-size: 1.2em;
  }

  footer .menu-main-menu-container .menu>li:last-child {
    clear: both;
    margin-top: 20px;
  }

  .footer-aside-second {
    float: none;
    width: 96%;
    margin-top: 0px;
  }

  .footer-aside-second a {
    width: 100%;
    margin: 0.5em auto;
    float: none;
  }

  .page-template-page-templatesmanagement-team-php .team_wrap.card_wrap {
    width: 49%;
    margin-left: 1%;
    clear: none;
  }

  .accordion_wrap ._title-box {
    width: 66%;
  }
}

/*******************------------------------------------------- Phase 3 4.16 Changes ------------------------------------------------************************/


.wrap {
  max-width: 950px;
  width: 100%;
  margin: 20px auto;
}

.row {
  max-width: 950px;
  width: 100%;
  margin: 10px auto;
  clear: both;
  float: left;
}

.row div {
  float: left;
  height: 75px;
  position: relative;
  margin: 0 0.5%;
}

.row div img {
  float: left;
  width: auto;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -25px;
}

.row div p {
  float: left;
  color: #ffffff;
  font-size: 18px;
  margin-left: 15px;
  font-family: "Arvo", serif;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -13px;
}

.row div.full #button_txt {
  margin-left: 10%;
}

.row #homeContactLink {
  color: #ffffff;
  margin: 0;
  font-size: 14px;
  text-decoration: none;
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-family: "Archivo Narrow", sans-serif;
}

.row a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  position: absolute;
  bottom: -14px;
  right: 5px;
  font-family: "Archivo Narrow", sans-serif;
}

.row a:after {
  content: url("/wp-content/uploads/2016/04/ICI_icons_arrow.png");
  width: 10px;
  margin-left: 5px;
}

.red {
  background-color: #d74022;
}

.green {
  background-color: #6ca439;
}

.blue {
  background-color: #4196b4;
}

.fourth.blue #homeContactLink {
  top: 80%;
}

.row .full {
  width: 100%;
}

.row .third {
  width: 32.333%;
}

.row .half {
  width: 48%;
}

.row .three-fourths {
  width: 74%;
}

.row .fourth {
  width: 24%;
}

.option-buttons {
  /*height: 100px;*/
  margin-bottom: 140px;
}

.site-main .option-buttons {
  height: 100px;
  margin-bottom: 70px;
}

/******************* Side Boxes *********************/
.side-wrap {
  max-width: 190px;
  width: 100%;
  margin: 20px auto;
}

.side-box {
  max-width: 190px;
  width: 100%;
  margin: 10px auto;
  clear: both;
}

.side-box div {
  height: 100%;
  padding: 15px;
  margin-bottom: 15px;
}

.side-box div.side-box-divide {
  height: 2px;
  background-color: #ffffff;
  padding: 0px;
  margin: 0;
}

.side-box div img {
  height: 55px;
}

.side-box #button_txt {
  font-family: "Arvo", serif;
  color: #ffffff;
  font-size: 20px;
  margin-top: 5px;
  margin-bottom: 15px;
}

.side-box #homeContactLink {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  font-family: "Archivo Narrow", sans-serif;
  margin-bottom: 0px;
}

.side-box a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  font-family: "Archivo Narrow", sans-serif;
}

.side-box a:after {
  content: url("/wp-content/uploads/2016/04/ICI_icons_arrow.png");
  width: 10px;
  margin-left: 5px;
}

/***************************** Overrides **********************************/
.half p {
  margin-left: 100px !important;
}

.three-fourths p {
  margin-left: 100px !important;
}

.fourth.blue p,
.fourth.red p {
  margin-top: -23px !important;
}

/***************************** Responsive **********************************/
@media only screen and (max-width: 750px) {
  .row .third {
    width: 100%;
    margin-bottom: 10px;
  }

  .row .half {
    width: 100%;
    margin-bottom: 10px;
  }

  .row .three-fourths {
    width: 100%;
    margin-bottom: 10px;
  }

  .row .fourth {
    width: 100%;
    margin-bottom: 10px;
  }

  .row img {
    display: none;
  }

  .half p {
    margin-left: 15px !important;
  }

  .three-fourths p {
    margin-left: 15px !important;
  }
}

.introtext {
  font-size: 18px;
}

h2.new-title {
  color: #d74022;
  font-size: 30px;
  text-transform: uppercase;
  display: block;
  margin: 30px 0;
  clear: both;
}

.process-thumb,
.intro-col {
  width: 100%;
  float: left;
  margin-bottom: 30px;
}

.process-thumb h3 {
  color: #0075ae;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
}

.home-hero,
.home-hero img {
  width: 100%;
}

.home-hero-toggles #prev,
.home-hero-toggles #next {
  text-indent: -9999px;
  position: absolute;
  top: 50%;
  transform: translatex(-50%);
  z-index: 999;
  -webkit-filter: brightness(200%);
  -moz-filter: brightness(200%);
  -ms-filter: brightness(200%);
  -o-filter: brightness(200%);
  filter: brightness(200%);
}

.home-hero-toggles #prev {
  left: 20px;
}

.home-hero-toggles #next {
  right: 20px;
}

.home-hero {
  position: relative;
}

.learn-more-btn {
  color: #fff !important;
  padding: 7px 15px;
  background-color: #2d70c6;
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
  position: absolute;
  bottom: 0px;
}

.learn-more-btn:hover {
  color: #fff;
}

.cta-home {
  background-color: #d74022;
  float: left;
  width: 100%;
}

.cta-home a {
  font-size: 18px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  width: 100%;
  float: left;
  text-transform: uppercase;
  padding: 15px 0;
}

.site-branding {
  margin: 0;
}

.site-title a {
  padding: 21px 84px;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -ms-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
}

@media only screen and (min-width: 992px) {
  .site-branding {
    margin: 34px 0 20px;
  }

  .site-title a {
    padding: 31px 144px;
  }

  .process-thumb,
  .intro-col {
    width: 48%;
    float: left;
    margin-right: 2%;
    position: relative;
    /*height: 280px;*/
    padding: 10px;
  }

  .process-thumb:hover {
    background-color: #cecece;
  }
}

/*******************------------------------------------------- Phase 3 4.16 Changes Ended ------------------------------------------------************************/

.slidetitle {
  font-size: 1.8em;
  text-shadow: 1px 2px #000000;
  padding-bottom: 10px;
  display: inline-block;
  line-height: 1em;
font-family: 'Archivo Narrow';
}

.slidecaption {
  display: inline-block;
  font-size: 1.2em;
  margin-top: 10px;
  line-height: 1em;
}

.caption-wrap {
  left: 0% !important;
  position: relative !important;
}

.caption {
  padding: 25px !important;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
}

@media only screen and (min-width: 950px) {
  .caption-wrap {
    position: absolute !important;
    left: 10% !important;
  }

  .caption {
    width: 80%;
  }
}

.slidebtn {
  background-color: #2d70c6;
  /* adds a background colour to the button */
  color: #fff;
  /* changes the text colour */
  cursor: pointer;
  /* changes the mouse on hover */
  padding: 10px 30px;
  /* adds 10px of space to top and bottom of text and 30px of space on either side */
  margin-top: 20px;
  text-decoration: none;
  display: inline-block;
  margin-right: 10px;
}

.slidebtn:visited {
  color: #fff;
}

.slidebtn:hover {
  background-color: #fff;
  /* adds a background hover colour to the button */
  color: #2d70c6;
  /* changes the text colour on hover */
}

.filter-button {
  float: right;
  background-color: #2f7096;
  color: #ffffff;
  outline: none;
  border: none;
  box-shadow: none;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1em;
  padding: 15px;
  letter-spacing: 1.8px;
  text-shadow: none;
}

.filter-button:hover {
  box-shadow: none;
}


/** Fixes for Slides Expanding their containers */

/* All but ensures no overflow */
body {
  overflow: hidden;
}

/* body .metaslider .flexslider .slides li {
  overflow: hidden;
  display: grid !important;
  grid: 1fr minmax(35%, max-content) 1fr / 10% 1fr 1fr 10%;
  height: 350px;

}

body .home-hero .metaslider .caption {
  width: 100%;
  height: 100%;
}

body .metaslider .flexslider .slides li img {
  grid-area: 1 / 1 / 4 / 5;
}

body .metaslider .flexslider .slides li .caption-wrap {
  grid-area: 2 / 2 / 3 / 4;
  position: relative !important;
  left: unset !important;
  top: unset;
} */
@media screen and (max-width: 1200px) and (min-width: 961px) {
  body .home-hero .metaslider .slides li .caption-wrap {
    left: 0 !important;
    right: 0;
    top: auto !important;
    bottom: 20px !important;
    width: 100%;
  }
  body .home-hero .metaslider .slides li .caption {
    width: 1000px;
    max-width: 960px;
    margin-left: calc((100vw - 960px) / 2);
    background-color: rgba(0, 0, 0, 0.3);
  }
}
@media screen and (min-width: 1200px) {
  body .home-hero .metaslider .slides li .caption-wrap {
    width: 100%;
    left: 0 !important;
    right: 0;
    top: auto !important;
    bottom: 20px !important;
  }

  body .home-hero .metaslider .slides li .caption {
    max-width: 650px;
    width: fit-content;
    margin-left: calc((100vw - 1000px) / 2);
    background-color: rgba(0, 0, 0, 0.3);
    font-family: 'Archivo Narrow';
  }
  .home-button__inner {
    display: flex;
    justify-content: space-between;
    margin-left: -20px;
    margin-right: -20px;
    width: 960px;
    max-width: none;
    clear: none;
    float: none;
  }
}
.home-button__inner {
  display: flex;
  justify-content: center;
  /*margin-left: -20px;*/
  /*margin-right: -20px;*/
  max-width: none;
  width: auto;
  clear: none;
  float: none;
}
.home-button__inner  a.home-button {
  position: relative;
  height: 70px;
  display: flex;
  justify-content: center;
  padding-right: 5px;
  margin-right: 5px;
  margin-left: 5px;
  align-items: center;
  min-width: 49.5%;
}
.home-button__inner  a.home-button .home-button__container {
  position: relative;
  padding-left: 85px;
}
.home-button__inner  a.home-button p {
  text-transform: uppercase;
  margin-bottom: 0;
}
.home-button__inner a.home-button:hover {
  opacity: 0.7;
}

.home-button__inner  a.home-button img {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  object-fit: contain;
}
@media screen and (max-width: 960px) {
  .home-button__inner a.home-button:after {
    display: none;
  }
  .home-button__inner {
    padding-left: 10px;
    padding-right: 10px;
  }
  .home-button__inner a.home-button{
    right: 0;
  }
}
@media screen and (max-width: 780px) {
  .site-main .option-buttons {
    height: auto;
  }
  .home-button__inner  a.home-button{
    margin-bottom: 10px;
  }
  .home-button__inner {
    margin-left: 0;
    margin-right: 0;
    flex-wrap: wrap;
  }
  .site-main .option-buttons .home-button__inner img{
    display: block;
  }
}
.sidebar__button-inner .sidebar-button img{
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.sidebar__button-inner p,
.sidebar__button-inner br {
  display: none;
}
.sidebar__button-inner .sidebar-button {
  display: block;
  min-height: 174px;
  padding: 14px 18px 14px 12px;
  text-decoration: none;
  margin-bottom: 16px;
}
.sidebar__button-inner .sidebar-button:hover {
  opacity: 0.7;
}
.sidebar__button-inner .sidebar-button span {
  display: block;
  margin-top: 15px;
  text-decoration: none;
  color: #ffffff;
  font-size: 17px;
  font-family: 'Arvo';
}
.sidebar__button-inner .sidebar-button span.sidebar__button-bottom-text {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  margin-top: 12px;
  font-family: 'Archivo Narrow';
}
.sidebar__button-inner .sidebar-button span br {
  display: block;
}
@media screen and (max-width: 960px) {
  .sidebar__button-inner .sidebar-button{
    min-height: auto;
    display: flex;
    align-items: center;
    width: calc(100% - 60px);
  }
  .sidebar__button-inner .sidebar-button span{
    display: inline-block;
    margin-left: 10px;
    margin-top: 0;
  }
  .sidebar__button-inner .sidebar-button span br {
    display: none;
  }
}

.three-columns-list {
  display: flex;
}
.three-columns-list ul {
  margin: 0 0 1.5em 1.5em;
  list-style: none;
  width: 33%;
  font-family: 'Archivo Narrow';
  /*font-family: 'Arvo';*/
}
.three-columns-list ul li {
  font-size: 18px;
  font-weight: 700;
  color: #6CA438;
  margin-bottom: 21px;
}
.three-columns-list ul li:first-child {
 color: #595A5A;
}
.three-columns-list__header {
  padding-top: 45px;
  border-top: #ffffff solid 1px;
  margin-left: 25px;
  margin-right: 25px;
  margin-bottom: 25px;
  /*font-family: 'Arvo';*/
  font-family: "Arial", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #595A5A;
}
@media (max-width: 600px) {
  .three-columns-list {
    flex-direction: column;
  }
  .three-columns-list ul {
    width: 100%;
  }
}
/*start solution #1*/
@media (min-width: 961px) {
  .sidebar__button-inner.fixed {
    position: fixed;
    top: 200px;
    width: 190px;
    z-index: 999;
  }
  .home-button__inner.fixed {
    position: fixed;
    top: 32px;
    width: 960px;
    z-index: 999;
    margin-left: 0;
    margin-right: 0;
  }
  .admin-bar .home-button__inner.fixed {
    top: 62px;
  }
  .home-button__inner.fixed:after {
    content: '';
    position: absolute;
    width: 100vw;
    right: 50%;
    transform: translateX(50%);
    height: 135%;
    background-color: #ffffff;
    z-index: -1;
  }
}
@media (min-width: 992px) {
  .home-button__inner.fixed {
    top: 48px;
  }
  .admin-bar .home-button__inner.fixed {
    top: 78px;
  }
}
@media screen and (min-width: 1200px) {
  .home-button__inner.fixed {
    margin-left: -20px;
    margin-right: -20px;
    width: 990px;
  }
}
@media (max-width: 960px) {
  .home-button__height-fill {
    display: none !important;
  }
}
/*end solution #1*/