@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,400,400italic,700,700italic|Roboto+Condensed:400,700|Roboto+Slab:400,300&subset=latin,latin-ext);

/* RESET */

* {
  margin: 0;
  padding: 0;
  outline: none;
}

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

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

a { 
  background: transparent;
  color: #536ca6; 
}

a:hover { text-decoration: none; }

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

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

sup { top: -0.5em; }

sub { bottom: -0.25em; }

img { border: 0; }

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

td,
th { 
  padding: 0;
  vertical-align: top; 
}

audio,
canvas,
img,
svg,
video { vertical-align: middle; }

/* GENERAL STYLES */

html { margin-top: 0 !important; }

body, html { min-height: 100%; position: relative; }

body, div, table td, input, textarea, select {
  color: #333;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;  
  font-weight: 300;
}

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;          
}

a,
input[type="button"],
input[type="submit"],
button,
.intro-banner .banner-title:after,
.tourism-banner .banner-title:after {
  -moz-transition: all 0.2s ease-in-out 0s;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

.clear { clear: both; }

h1, h2, h3, h4, h5, h6,
strong, b { font-weight: 500; }

p {
  line-height: 150%;
  padding: 0 0 20px 0;
}

.wrap {
  /*height: 100%;*/
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  max-width: 1180px;
}

.button,
.buttonStyle {
  background: #779509;
  border: none;
  border-bottom: 2px solid #52650d;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  padding: 15px 30px;
  text-decoration: none;
  text-shadow: 1px 1px 1px rgba( 0, 0, 0, 0.4 );
}

.button:hover,
.buttonStyle:hover {
  background: #8eb30b;
}

.popup {
  display: none;
  background: rgba( 0, 0, 0, 0.8 );
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.popup .close-popup {
  display: block;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: -50px;
  right: -30px;
  text-decoration: none;
}

.popup .close-popup:hover { 
  color: #4480ce;
  text-decoration: none; 
}

.popup .popup-content {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 30px;
}

/* HEADER */

#header {
  height: 105px;
  position: relative;
  z-index: 3;
}

#header .wrap { height: 100%; }

#header .logo {
  position: absolute;
  bottom: 10px;
  left: 20px;
}

#header .logo img { 
  display: block;
  width: 220px; 
}

#header #main-nav {
  float: right;
  margin: 50px 35px 0 0;
}

#header #main-nav ul li {
  display: inline-block; 
  list-style-type: none;
}

#header #main-nav ul li a {
  color: #294179;
  display: block;
  font-size: 22px;
  font-weight: bold;
  margin-left: 35px;
  padding: 10px 0 5px 0;
  text-decoration: none;         
}

#header #main-nav ul li a:hover {
  color: #999;
  text-decoration: none;
}

#header #main-nav ul li.current_page_item a,
#header #main-nav ul li.current-menu-item a,
#header #main-nav ul li.current-category-ancestor a,
#header #main-nav ul li.current-post-ancestor a, 
#header #main-nav ul li.current-menu-parent a, 
#header #main-nav ul li.current-post-parent a,
#header #main-nav ul li.current-page-ancestor a { 
  border-bottom: 4px solid #294179;
}

#header .lang-switch {
  background: url('../img/line_dotted_vertical.png') repeat-y top left;
  float: right;
  margin: 50px 0 0 0;
  padding-left: 35px;
}

#header .lang-switch li {
  list-style-type: none;
  position: relative;
}

#header .lang-switch > li {
  background: url('../img/line_dotted_vertical.png') repeat-y top right;
  padding-right: 25px;
}

#header .lang-switch li a,
#header .lang-switch li span {
  color: #999;
  font-size: 22px;
  text-decoration: none;
}

#header .lang-switch li span {
  background: url('../img/arrow_lang_dd.png') no-repeat 100% 50%;
  cursor: pointer;
  display: block;
  padding: 10px 15px 10px 0;
}

#header .lang-switch li ul {
  max-height: 0;
  min-width: 100%;        
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
}

#header .lang-switch li:hover ul {
  max-height: 420px;
  opacity: 1;
  
  -webkit-box-shadow: 0 2px 6px rgba( 0, 0, 0, 0.5 );
     -moz-box-shadow: 0 2px 6px rgba( 0, 0, 0, 0.5 );
          box-shadow: 0 2px 6px rgba( 0, 0, 0, 0.5 );
  
  -webkit-transition: opacity 0.2s ease-in;
	   -moz-transition: opacity 0.2s ease-in;
	        transition: opacity 0.2s ease-in;
}

#header .lang-switch li:hover ul li {
  background: #fff;
  border-bottom: 1px solid #eee;
  text-align: center;
}

#header .lang-switch li:hover ul li a {
  display: block;
  padding: 10px 15px;
}

#header .lang-switch li:hover ul li a:hover { color: #333; }

#main-nav-mobile,
.show-nav-mobile { display: none; }

#header .open-search-popup {
  display: block;
  float: right;
  padding: 20px 0 20px 20px;
  margin-top: 40px; 
}

.search-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10000;
}

.search-popup .search-popup-bg {
  background: rgba( 0, 0, 0, 0.8 );
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.search-popup .search-popup-content {
  background: #294179 url('../img/bg_pattern_intro_slide.png');
  padding: 40px;
  position: absolute;
  top: 105px; 
  right: 50%;
  margin-right: -610px;
  z-index: 2;
}

.search-popup .search-popup-content .textfield {
  background: #213461;
  border: none;
  border-radius: 3px;
  color: rgba( 255, 255, 255, 0.15 );
  font-style: italic;
  padding: 15px;
  width: 300px;
  -webkit-box-shadow: inset 1px 1px 1px rgba( 0, 0, 0, 0.4);
     -moz-box-shadow: inset 1px 1px 1px rgba( 0, 0, 0, 0.4);
          box-shadow: inset 1px 1px 1px rgba( 0, 0, 0, 0.4);
}

.search-popup .search-popup-content .textfield:focus { 
  color: #fff;
  font-style: normal; 
}

.search-popup .search-popup-content .search-btn {
  background: url('../img/icon_search_btn.png');
  border: none;
  cursor: pointer;
  height: 24px;
  width: 24px;
  position: absolute;
  top: 55px;
  right: 53px;
}

@media (max-width: 1240px) {
  .search-popup .search-popup-content {
    right: 0;
    margin-right: 0;
  }
}

@media (max-width: 990px) {
	#header #main-nav,
  #header .lang-switch { display: none; }
  
  .show-nav-mobile {
    display: block;
    position: absolute;
    bottom: 20px;
    right: 20px; 
    height: 25px;
    width: 30px;
  }
  
  .show-nav-mobile span,
  .show-nav-mobile span:before,
  .show-nav-mobile span:after {
    background: #294179;
    border-radius: 10px;
    display: block;
    height: 4px;
    width: 100%;
    -webkit-transition: all 0.2s ease-in-out;
	     -moz-transition: all 0.2s ease-in-out;
	          transition: all 0.2s ease-in-out;
  }
  
  .show-nav-mobile:hover span,
  .show-nav-mobile:hover span:before,
  .show-nav-mobile:hover span:after {
    background: #000;
    
  }
  
  .show-nav-mobile span { margin-top: 11px; }
  
  .show-nav-mobile span:before,
  .show-nav-mobile span:after {
    content: "";
    position: absolute;
    left: 0;
  } 
  
  .show-nav-mobile span:before { top: 0; }
  .show-nav-mobile span:after { bottom: 0; }
  
  .show-nav-mobile.close-nav { 
    overflow: hidden;
    z-index: 1001; 
  }
  
  .show-nav-mobile.close-nav span,
  .show-nav-mobile.close-nav span:before,
  .show-nav-mobile.close-nav span:after { 
    background: #fff; 
  }
  
  .show-nav-mobile.close-nav span { 
    height: 0; 
    overflow: hidden; 
  }
  
  .show-nav-mobile.close-nav span:before {
    transform: rotate(45deg);
    top: 10px;
  }
  
  .show-nav-mobile.close-nav span:after {
    transform: rotate(-45deg);
    top: 10px;
  }
  
  .show-nav-mobile.close-nav:hover span,
  .show-nav-mobile.close-nav:hover span:before,
  .show-nav-mobile.close-nav:hover span:after { background: #4480ce; }
  
  #main-nav-mobile {
    background: rgba( 0, 0, 0, 0.9 );
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
  }
  
  #main-nav-mobile .flex-wrap {
    display: -webkit-flex;
  	display: -ms-flexbox;
  	display: -ms-flex;
  	display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
        -ms-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-justify-content: center;
            justify-content: center;
    height: 100%;
    overflow-y: auto;
  }
  
  #main-nav-mobile ul li { list-style-type: none; }
  
  #main-nav-mobile ul li a {
    color: #fff;
    display: block;
    font-weight: 300;
    line-height: 60px;
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
  }
  
  #main-nav-mobile ul li ul { margin-top: 10px; }
  
  #main-nav-mobile ul li ul li:before {
    content: "›";
    color: #fff;
  }
  
  #main-nav-mobile ul li ul li a {
    display: inline-block;
    font-size: 18px;
    line-height: 40px;
    padding-left: 10px;
    text-transform: none;
    vertical-align: middle;
  }
  
  #main-nav-mobile ul li.current-menu-item a,
  #main-nav-mobile ul li.current-menu-item ul li.current-menu-item a { font-weight: bold; }
  
  #main-nav-mobile ul li.current-menu-item ul li a { font-weight: normal; }
  
  #header .open-search-popup { margin: 40px 60px 0 0; }
}

@media (max-width: 650px) { 
  .search-popup .search-popup-content { left: 0; }
  
  .search-popup .search-popup-content .textfield { width: 100%; }
}

@media (max-width: 450px) {
  #header .logo img { width: 200px; }
}

/* INTRO SLIDE */

.intro-slide {
  background: #294179 url('../img/bg_pattern_intro_slide.png');
  position: relative;
  z-index: 1;
}

.intro-slide .pattern {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.intro-slide .wrap { padding: 90px 20px 80px 20px; }

.page-template-page-home .intro-slide .wrap { padding: 120px 20px 130px 20px; }

.intro-slide h1 {
  color: #fff;
  font-size: 50px;
  padding: 0 0 30px 0;
}

.intro-slide h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 100;
}

.intro-slide .breadcrumbs {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
}

@media (max-width: 650px) {
  .page-template-page-home .intro-slide .wrap { padding: 60px 20px 60px 20px; }
  
  .intro-slide h1 {
    font-size: 40px;
    padding: 0 0 20px 0;
  }
  
  .intro-slide h2 { font-size: 30px; }
}


/* OUTRO SLIDE */

.outro-slide {
  background: #294179 url('../img/bg_pattern_intro_slide.png');
  position: relative;
  z-index: 1;
  text-align: center;
}

.outro-slide .pattern {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.outro-slide .wrap { padding: 90px 20px 80px 20px; }

.page-template-page-home .outro-slide .wrap { padding: 120px 20px 130px 20px; }

.outro-slide h2 {
  color: #fff;
  font-size: 40px;
  padding: 0 0 30px 0;
}

.outro-slide h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 100;
}

.outro-slide .breadcrumbs {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
}

.outro-slide a { 
  background: transparent;
  color: #536ca6; 
  text-decoration: none;
}

.outro-slide a:hover { text-decoration: underline; }

.outro-slide a:active,
.outro-slide a:hover { outline: 0; }



@media (max-width: 650px) {
  .page-template-page-home .outro-slide .wrap { padding: 60px 20px 60px 20px; }
  
  .outro-slide h2 {
    font-size: 30px;
    padding: 0 0 20px 0;
  }
  
  .outro-slide h3 { font-size: 15px; }
}

/* BREADCRUMBS */

.breadcrumbs li {
  background: url('../img/arrow_breadcrumbs.png') no-repeat 0 10px;
  float: left;
  list-style-type: none;
  margin-left: 8px;
  padding-left: 10px;
}

.breadcrumbs li:first-of-type { 
  background: none;
  padding: 0;
  margin: 0; 
}

.breadcrumbs li a,
.breadcrumbs li b,
.breadcrumbs li select {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.breadcrumbs li a:hover { text-decoration: underline; }

.breadcrumbs li select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: rgba( 0, 0, 0, 0.3 ) url('../img/arrow_select_dd_small.png') no-repeat center right;
  border: none;
  color: #ccc;
  cursor: pointer;
  padding: 8px 40px 8px 5px;
  min-width: 100px;
  margin-top: -5px;
}

.breadcrumbs li select option {
  background: #fff;
  color: #666;
  padding: 0 5px;
}

.breadcrumbs li.alignright { 
  background: none;
  float: right; 
}

/* HOME */

.page-template-page-home .intro-slide h1,
.page-template-page-home .intro-slide h2 { text-align: center; }

.page-template-page-home label {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin-right: 15px;
}

.page-template-page-home .select-position,
.intro-slide .select-position {
  background: #294179 url('../img/bg_pattern_intro_slide.png');
  padding: 50px 0;
  text-align: center;
}

.intro-slide .select-position { padding: 30px 0 0 0; }

.page-template-page-home .select-position select,
.intro-slide .select-position select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: #1d2d54 url('../img/arrow_select_dd_intro.png') no-repeat center right;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  padding: 12px 50px 12px 10px;
  width: 430px; 
}

.page-template-page-home .select-position select option,
.intro-slide .select-position select option {
  background: #fff;
  border: none;
  color: #666;
  font-weight: normal;
  padding: 0 10px;
}

.bx-wrapper {
  height: 400px;
  margin-top: 1px;
  position: relative;
}

.carousel { height: 400px; }

.carousel .page {
  background-position: center center;
  background-size: cover;
  height: 400px;
  width: 100%;
}

.carousel .page .page-content {
  background: url('../img/bg_carousel_cover.png') no-repeat 58% center ;
  display: block;
  height: 100%;
  text-decoration: none;
}

.carousel .page .page-content .valign {
  display: table;
  width: 100%;
}

.carousel .page .page-content h1 {
  color: #294179;
  display: table-cell;
  font-size: 50px;
  height: 400px;
  padding-left: 50%;
  vertical-align: middle;
}

.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url('../img/bx_loader.gif') center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

.bx-pager {
  position: absolute;
  left: 0;
  bottom: 10px;
  text-align: center;
  width: 100%;
}

.bx-pager .bx-pager-item {
  display: inline-block;
  margin: 0 5px;
}

.bx-pager .bx-pager-item a {
  background: #fff;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  display: block;
  height: 17px;
  width: 17px;
  text-indent: -1000em;
}

.bx-pager .bx-pager-item a.active { background: #294179; }

.pillars-slide {
  background: #f0f0f0 url('../img/bg_pattern_gray_slide.png');
  margin-top: 1px;
}

.pillar {
  color: #294179;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  padding: 70px 0 100px 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
  width: 25%;
}

a.pillar:first-of-type:hover { color: #649c43; }
a.pillar:nth-of-type(2):hover { color: #b38f59; }
a.pillar:nth-of-type(3):hover { color: #536ca6; }
a.pillar:nth-of-type(4):hover { color: #7e285b; }

.pillar .pillar-inside { 
  display: block; 
  margin: 0 auto;
  max-width: 280px;
  position: relative; 
}

.pillar img {
  display: block;
  margin: 0 auto 30px auto;
}

.pillar .description {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #333;
  display: block;
  font-size: 18px;
  font-weight: normal;
  padding: 15px 30px 0 30px;
  position: absolute; 
  width: 100%;
  
  height: 0;
  opacity: 0;
  overflow: hidden;
  
  -webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

.pillar:hover .description {
  height: auto;
  opacity: 1;
  overflow: auto;
}

.quotes { padding: 70px 0; }

.page-template-page-about .quotes {
  padding: 70px 0 0 0;
}

.quotes h1 {
  color: #294179;
  font-size: 50px;
  padding: 0 0 50px 0;
  text-align: center;
}

.quotes .quote {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  padding: 0 30px;
  vertical-align: top;
  width: 25%;
}

.page-template-page-about .quotes .quote {
  margin-bottom: 50px;
}

.quotes .quote h2 {
  color: #294179;
  font-size: 24px;
  font-weight: normal;
  padding: 0 0 20px 0;
}

.quotes .quote p {
  color: #666;
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 300;
}

.quotes .quote p:first-of-type {
  background: url('../img/bg_quote.png') no-repeat top left;
  text-indent: 35px;
}

.quotes .quote.not-a-quote p:first-of-type {
  background: none;
  text-indent: 0;
}

.quotes .quote p.author { 
  color: #000;
  font-size: 17px;
  font-weight: normal;
  font-family: "Roboto",sans-serif; 
}

.quotes .quote.not-a-quote p.author { display: none; }

.logos {
  display: -webkit-flex;
	display: -ms-flexbox;
	display: -ms-flex;
	display: flex;
  -webkit-justify-content: space-around;
      -ms-justify-content: space-around;
          justify-content: space-around;
}

.logos a {
  display: block;
  height: 70px;
}

.logos a img {
  display: block;
  height: 100%;
}

@media (max-width: 1240px) {
  .quotes { padding: 70px 0 30px 0; }
  
  .quotes .quote { 
    padding-bottom: 40px;
    width: 50%; 
  }
}

@media (max-width: 900px) {
  .pillar {
    padding: 30px 0;
    width: 50%;
  }
  
  .pillar:hover .description {
    height: 0;
    opacity: 0;
    overflow: hidden;
  }
  
  .quotes .quote { padding: 0 0 40px 0; width: 100%; }
  
  .logos {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  
  .logos a { margin-bottom: 30px; }
  
  .logos a img { margin: 0 auto; }
  
  .page-template-page-home label {
    display: block;
    margin-bottom: 20px;
  } 
  
  .intro-slide .select-position {
    text-align: center;
  }
}

@media (max-width: 650px) {
  .carousel .page .page-content { background: url('../img/bg_carousel_cover.png') no-repeat 100% center; }
  
  .carousel .page .page-content h1 {
    font-size: 40px;
    padding-left: 0;
    text-align: center;
    vertical-align: middle;
  }
  
  .pillar { width: 100%; }
  
  .quotes { padding-top: 40px; }
  
  .quotes h1 { font-size: 40px; }
  
  .page-template-page-home .select-position select,
  .intro-slide .select-position select {
    min-width: auto !important;
    width: 100%; 
  }
}

/* SOLUTIONS */

.solutions-container .wrap {
  background: url('../img/table_lines.png') repeat-y top center;
}

.solutions-intro h1 {
  font-size: 70px;
  text-align: center;
}

table.solutions-table { display: table; } 

.solutions-table {
  border-right: 2px dotted #e1e1e1;
  margin-top: 110px;
  position: relative;
  table-layout: fixed;
  margin-bottom: 60px;
  width: 100%;
  z-index: 2;
}
                     
.solutions-table td {
  background: url('../img/line_dotted_vertical.png') repeat-y top left;
}

.solutions-table thead td { 
  background: #fff url('../img/line_dotted_vertical.png') repeat-y top left;
  text-align: center; 
}

.solutions-table td .pillar {
  margin: -180px 0 0 0;
  padding: 0; 
  width: auto;
}          

.solutions-container.segmented .solutions-table td .pillar {
  margin-top: -172px;
}

.solutions-table td .pillar-intro {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 362px;
  overflow: hidden;
  padding: 20px 10px 0 10px;
  vertical-align: top;  
}

.solutions-table td .pillar-intro p {
  color: #666;
  font-size: 16px;
  padding: 0 10px 15px 10px;
  text-align: left;
}

.solutions-table td .pillar-intro p a { 
  font-weight: bold;
  text-decoration: none; 
}

.solutions-table td .pillar-intro p a:hover { text-decoration: underline; }

.solutions-table ul { margin: 12px 2px 0 4px; }

.solutions-table ul li {
  list-style-type: none;
}

.solutions-table ul li a {
  background: #294179;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  display: block;
  height: 36px;
  font-size: 18px;
  font-weight: bold;  
  margin-top: 4px;
  padding: 7px 10px;
  pointer-events: none;
  text-decoration: none;
}

.solutions-table ul li ul { margin: 0; }

.solutions-table ul li ul li a {
  background: none;
  color: #000;
  font-size: 16px;
  font-style: italic;
} 

.solutions-table ul li ul li ul li a {
  color: #536ca6;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  padding: 9px 10px;
  pointer-events: auto;
}

.solutions-table ul li ul li ul li a:hover { text-decoration: underline; }

div.solutions-table.converted { display: none; }

@media (max-width: 1240px) {
  .solutions-container .wrap { background: none; }
  
  table.solutions-table { display: none; }
  div.solutions-table.converted { 
    display: -webkit-flex;
  	display: -ms-flexbox;
  	display: -ms-flex;
  	display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    justify-content: space-between;
  }
                       
  .converted {
    border: none;
    margin-top: 0;
  }
  
  .converted .trow { width: 45%; }
  
  .converted .trow .thead { padding: 0 20px; }
  
  .converted .trow .thead .pillar {
    display: block;
    margin: 0 auto;
    padding: 40px 0;
    height: 250px;
    width: 250px;
  }
  
  .converted .trow .thead .pillar-intro p { 
    line-height: 35px;
    padding: 0 0 35px 0; 
  }
  
  .converted ul { margin: 0; }
  
  .converted ul li a,
  .converted ul li ul li a,
  .converted ul li ul li ul li a {
    border-bottom: 2px dotted #e1e1e1;
    height: 35px;  
    line-height: 35px;
    margin: 0;
    padding: 0 10px;
  }
  
  .converted ul li a { 
    border: none;
    height: 35px;
    line-height: 35px;
    margin: 0; 
    padding: 0 10px;
  }
}

@media (max-width: 800px) {
  .intro-slide .wrap { padding: 70px 20px 40px; }
  
  .solutions-intro h1 { font-size: 50px; }
  
  .converted .trow { width: 100%; }
}

@media (max-width: 650px) {
  .intro-slide .wrap { padding: 70px 20px 20px; }
  
  .solutions-intro h1 { font-size: 40px; }
  
  .popup .popup-content {
    left: 0;
    width: 100%;
    
  }
  
  .solutions-table .popup .popup-content,
  .posts .popup .popup-content,
  .industry-container .popup-content {
    margin-left: 0;
    max-width: 600px;
  }
  
  
}

/* SEGMENT LANDING */

.intro-slide .cta {
  background: rgba( 0, 0, 0, 0.2 );
  float: right;
  margin-left: 30px;
  padding: 30px;
  text-align: center;
  width: 240px;
}

.intro-slide .cta h3 {
  color: #fff;
  font-size: 24px;
  padding: 0 0 20px 0;
}

.intro-slide .cta p {
  color: #fff;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  padding: 0 0 20px 0;
}

.solutions-container.segmented .solutions-table thead td {
  padding-bottom: 34px;
}

.wrap.segments-content {
  margin: 60px auto;
}

.segments-content table {
  display: table;
  table-layout: fixed;
  height: auto !important;
  width: 100% !important;
}

.segments-content table tr {
  height: auto !important;
  width: auto !important;
}

.segments-content table td {
  border: 2px dotted #e1e1e1;
  font-size: 16px;
  font-style: italic;
  font-weight: bold;
  line-height: 28px;
  padding: 7px 10px;
  height: auto !important;
  width: auto !important;
}

.segments-content table td b,
.segments-content table td strong {
  background: #294179;
  color: #fff;
  display: block;
  font-size: 18px;
  font-style: normal;
  font-weight: bold;
  margin: -5px -8px;
  padding: 5px 8px;
}

.segments-content table td a {
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
}

.segments-content table tr:first-of-type td {
  border-top: none;
  color: #294179;
  font-size: 24px;
  font-style: normal;
  font-weight: bold;
  padding: 50px 0 30px 0;
  text-align: center;
}

div.table { display: none; }

@media (max-width: 1000px) {
  .segments-content .entry table { display: none; }
  
  .segments-content .entry div.table { 
    display: -webkit-flex;
  	display: -ms-flexbox;
  	display: -ms-flex;
  	display: flex; 
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap; 
            flex-wrap: wrap;  
    justify-content: space-between;
  }
  
  .segments-content .table .col {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    border-left: 2px dotted #e1e1e1;
    border-right: 2px dotted #e1e1e1;
    margin-bottom: 40px;
    width: 48%;
  }
  
  .segments-content .table .col div {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: 2px dotted #e1e1e1;
    font-size: 16px;
    font-style: italic;
    font-weight: bold;
    line-height: 28px;
    padding: 0 10px;
  }
  
  .segments-content .table .col div:empty { display: none; }
  
  .segments-content .table .col div b,
  .segments-content .table .col div strong {
    background: #294179;
    color: #fff;
    display: block;
    font-size: 18px;
    font-style: normal;
    font-weight: bold;
    margin: 0 -10px;
    padding: 0 10px;
  }
  
  .segments-content .table .col div a {
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
  }
  
  .segments-content .table .col div:first-of-type {
    border-top: none;
    color: #294179;
    font-size: 24px;
    font-style: normal;
    font-weight: bold;
    padding: 50px 0 30px 0;
    text-align: center;
  }
}

@media (max-width: 800px) {
  .intro-slide .wrap {
    box-sizing: border-box;
    display: -webkit-flex;
  	display: -ms-flexbox;
  	display: -ms-flex;
  	display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  
  .intro-slide .cta {
    float: none;
    margin: 30px 0 0 0;
    order: 3;
    padding: 30px;
    text-align: center;
    width: 240px;
  }  
}

@media (max-width: 700px) {
  .segments-content .table .col {
    width: 100%;
  }  
}

/* PRODUCT */

.intro-slide.product-intro { text-align: center; }

.intro-slide.product-intro .wrap { padding: 110px 20px 50px 20px; }

.product-content { margin: 40px 0; }

.product-content .wrap { 
  display: -webkit-flex;
	display: -ms-flexbox;
	display: -ms-flex;
	display: flex;
}

.product-content .col-1 {
  -webkit-flex-shrink: 0;
      -ms-flex-shrink: 0;
          flex-shrink: 0;
  text-align: center;    
  width: 300px;
}

.book {
  display: inline-block;
  -moz-box-shadow: 5px 5px 20px #333;
  -webkit-box-shadow: 5px 5px 20px #333;
  box-shadow: 5px 5px 20px #333;
  margin-left: -15px;
}   

.book a {
  display: table-cell;
  position: relative;
  height: 356px;
  width: 250px;
  text-decoration: none;
  vertical-align: middle;
}

.book .cover-content {
  position: relative;
  text-align: center;
  top: -30px;
  z-index: 2;
}

.book .cover-content h1,
.book .cover-content h2 {
  color: #fff;
}

.book .cover-content h1 {
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 20px;
}

.book .cover-content h2 {
  background: url('../img/line_dotted_product_cover.png') repeat-x top left;
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 300;
  margin: 0 20px;
}

.book .cover-content h2 span {
  background: url('../img/line_dotted_product_cover.png') repeat-x bottom left;
  display: block;
  padding: 10px 0;
}

.book img { vertical-align: middle; width: 250px; }

.csstransforms3d  .books {
  -moz-perspective: 100px;
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

.csstransforms3d  .book {
  position: relative;
  -moz-perspective: 100px;
  -moz-transform: rotateY(-3deg);
  -webkit-transform: perspective(100) rotateY(-3deg);
  outline: 1px solid transparent;
  box-shadow: none;
}

.csstransforms3d  .book img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
}

.csstransforms3d  .book:before,
.csstransforms3d  .book:after {
  position: absolute;
  top: 2%;
  height: 96%;
  content: ' ';
  z-index: -1;
}

.csstransforms3d  .book:before {
  width: 100%;
  left: 5%;
  background-color: #515e7b;
  -moz-box-shadow: 5px 5px 20px rgba( 0, 0, 0, 0.4 );
  -webkit-box-shadow: 5px 5px 20px rgba( 0, 0, 0, 0.4 );
  box-shadow: 5px 5px 20px rgba( 0, 0, 0, 0.4 );
}

.csstransforms3d .analytics .book:before {
  background-color: #54422b;
}

.csstransforms3d .datamarketfacts .book:before {
  background-color: #324b23;
}

.csstransforms3d .strategy .book:before {
  background-color: #471933;
} 

.csstransforms3d  .book:after {
  width: 5%;
  left: 100%;
  margin-left: -3px;
  background-color: #EFEFEF;
  box-shadow: inset 0px 0px 5px #aaa;
  -moz-transform: rotateY(20deg);
  -webkit-transform: perspective(100) rotateY(20deg);
}

.product-content .col-1 .button {
  background: #fff;
  border: 1px solid #294179;
  border-bottom: 2px solid #294179;
  color: #294179;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  margin: 60px 0 10px 0;
  padding: 13px 50px;
  position: relative;
  text-shadow: none;
}

.product-content .col-1 .button:hover { color: #999; }

.product-content .col-1 .button img {
  position: absolute;
  top: -25px;
  right: -20px;
}

.product-content .col-1 small {
  color: #666;
  display: block;
  font-size: 12px;
  font-style: italic;
}

.product-content .col-1 .popup .popup-content { 
  background: #fff;
  border-top: 4px solid #294179;
  margin-left: -350px;
  width: 700px;
  padding-right: 10px;
  top: 60px;
  bottom: 70px;
}

.product-content .col-1 .popup .popup-footer {
  background: #294179 url('../img/bg_pattern_intro_slide.png');
  margin: 0 -10px 5px -30px;
  padding: 30px 0;
  text-align: left;
}

.product-content .col-1 .popup .popup-footer img {
  display: block;
  margin: 0 0 0 30px;
  width: 120px;
}

.product-content .col-1 .popup .popup-content .popup-text {
  background: #fff;
  height: 100%;
  overflow-y: scroll;
  padding-right: 20px;
  text-align: left;
}

.product-content .col-1 .popup .popup-content .popup-text h2 {
  font-size: 24px;
  padding: 0 0 20px 0;
}

.product-content .col-1 .popup .popup-content .popup-text p {
  line-height: 150%;
  padding: 0 0 20px 0;
}

.product-content .col-1 .popup .popup-content .popup-text ol,
.product-content .col-1 .popup .popup-content .popup-text ul {
  margin: 0 0 15px 18px;
}

.product-content .col-1 .popup .popup-content .popup-text ol li,
.product-content .col-1 .popup .popup-content .popup-text ul li { 
  line-height: 150%;
  padding: 5px 0; 
}

.product-content .col-2 {
  margin: 0 40px;
  width: 470px;
}

.product-content .col-2 .entry p:first-of-type {
  font-size: 22px;
  font-weight: bold;
}

.product-content .col-3 {
  -webkit-flex-shrink: 0;
      -ms-flex-shrink: 0;
          flex-shrink: 0;
  width: 330px;
}

.form-container {
  border: 1px solid #ccc;
  padding: 30px;
}

.form-container h2 {
  color: #294179;
  font-size: 24px;
  padding: 0 0 20px 0;
}

.form-container table { width: 100%; }

.form-container table td { padding: 0 0 10px 0 !important; }

.form-container table td div { width: auto !important; }

.form-container .form-element { margin: 0 0 10px 0; }

.form-container .fieldLabel {
  color: #999;
  font-size: 11px;
  text-transform: uppercase;
  width: auto !important;
}

.form-container .fieldLabel .required {
  color: #d83206;
}

.form-container .form-error {
  color: #b94a48;
  font-size: 12px;
  font-style: italic;
  display: block;
  position: absolute;
  top: 4px;
  right: 0;
}

.form-container .form-element.has-checkbox label {
  color: #999;
  font-size: 14px;
  text-transform: none;
}

.form-container .form-element.has-checkbox input {
  vertical-align: -2px;
  margin-right: 5px;
}

.form-element.has-checkbox input {
  opacity: 0;
  position: absolute;   
}   

.form-element.has-checkbox input, 
.form-element.has-checkbox label {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.form-element.has-checkbox label {
  position: relative;
}

.form-element.has-checkbox input + label:before {
  background: url('../img/bg_checkbox.png') no-repeat bottom left;
  content: '';
  display: inline-block;
  vertical-align: -3px;
  width: 19px;
  height: 18px;
  margin-right: 5px;
  text-align: center;
}

.form-element.has-checkbox input:checked + label:before {
  background-position: top left;
}

.form-container .textInput,
.form-container select {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-bottom: 3px solid #e5e5e5;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  height: auto !important;
  margin: 0 !important;
  padding: 8px 10px !important;
  width: 100% !important;
}

.form-container .form-element select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: #fafafa url('../img/arrow_select_dd_form.png') no-repeat center right;
  cursor: pointer;
}

.form-container .textInput:focus,
.form-container select:focus {
  border-bottom: 3px solid #294179;
}

.form-container .buttonStyle {
  margin-top: 20px; 
  padding: 15px 0;
  width: 100%;
}

.solution-footprint { margin-top: 30px; }

.solution-footprint h2 {
  color: #294179;
  font-size: 24px;
  padding: 0 10px 20px 10px;
}

.solution-footprint table {
  background: url('../img/line_dotted_horizontal.png') repeat-x top left;
  margin-bottom: 60px;
  width: 100%;
}

.solution-footprint table td {
  background: url('../img/line_dotted_horizontal.png') repeat-x bottom left;
  color: #666;
  padding: 15px 10px;
}

.solution-footprint table td b { color: #333; }

.solution-footprint table td.alignright { 
  float: none; 
  text-align: right;
  width: 200px; 
}

.solution-footprint table td.alignright a { 
  font-weight: bold;
  text-decoration: none; 
}

.solution-footprint table td.alignright a:hover { text-decoration: underline; }

.related-content { padding: 0; }

.related-content .title-wrap h2 {
  color: #294179;
  font-size: 24px;
  padding: 20px 0 0 10px;
}

.related-content .post-in-list-wrap {
  margin-bottom: 100px;
}

.related-content .post-in-list { cursor: pointer; position: relative; }

.related-content .post-in-list h2 {
  padding: 0;
  position: absolute;
  top: 300px;
  left: 0;
}

.related-content .post-in-list .image-container { position: relative; }

.related-content .post-in-list .image-container.product-cover img { margin-top: -70px; }

.related-content .post-in-list .cover-logo {
  position: absolute;
  top: 230px;
  left: 50%;
  margin-left: -50px;
  width: 100px;
  z-index: 2;
}

.related-content .post-in-list .image-container h2 {
  color: #fff;
  font-weight: normal;
  padding: 10px 20px;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  text-align: center;
}

@media (max-width: 1100px) {
   .product-content .wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-around;
        -ms-justify-content: space-around;
            justify-content: space-around;
  }
  
  .product-content .col-1 { margin-bottom: 40px; }
  
  .product-content .col-2 {
    margin: 40px 0 0 0;
    order: 3;
    width: 100%;
  }
}

@media (max-width: 990px) {
  .intro-slide.product-intro .wrap { padding: 20px 20px 50px 20px; }
  
  .product-intro .breadcrumbs { 
    margin-bottom: 20px;
    position: static;
    text-align: center; 
  }
  
  .product-intro .breadcrumbs li { 
    display: inline-block;
    float: none;
  }
  
  .product-intro .breadcrumbs li.alignright { 
    display: block;
    float: none;
    margin-top: 20px;
    text-align: center; 
  }
}

@media (max-width: 700px) {
  .product-content .col-1 .popup .popup-content { 
    margin-left: 0;
    width: 100%;
    padding-right: 10px;
    left: 0;
    top: 60px;
    bottom: 70px;
  }
  
  .popup .close-popup { right: 20px; }
}

@media (max-width: 650px) {
  .solution-footprint table td.alignright { display: none; }
}

/* ABOUT (pillars) */

.intro-slide.about-intro { text-align: center; }

.intro-slide.about-intro .wrap { padding: 50px 20px; }

#submenu { background: rgba( 0, 0, 0, 0.2 ); }

#submenu .wrap { padding-top: 0; padding-bottom: 0; }

#submenu ul { padding: 10px 0; }

#submenu ul li { 
  display: inline-block;
  list-style-type: none;
  margin: 0 30px; 
}

#submenu ul li a {
  color: #fff;
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 20px;
  padding: 10px 0 5px 0;  
  text-decoration: none;
}

#submenu ul li a:hover { color: #999; }

#submenu ul li.current_page_item {
  border-bottom: 4px solid rgba( 255, 255, 255, 0.6 );
}

.pillars-container .one-pillar {
  margin: 0 0 60px 0;
}

.one-pillar .pillar-header { padding: 30px 0; }

.one-pillar .pillar-header .icon {
  float: left;
  text-align: center;
  width: 295px;
}

.one-pillar .pillar-header h2 {
  color: #fff;
  font-size: 50px;
  padding-top: 80px;
}

.one-pillar .pillar-content {
  margin: 40px 0 0 295px;
  max-width: 590px; 
}

@media (max-width: 990px) {
  #submenu { display: none; }
  
  .one-pillar .pillar-header .icon {
    margin-right: 20px;
    width: 120px;
  }
  
  .one-pillar .pillar-header .icon img { width: 100%; }
  
  .one-pillar .pillar-header h2 {
    font-size: 40px;
    padding-top: 30px;
  }
  
  .one-pillar .pillar-content {
    margin: 40px 0 0 140px;
    max-width: 745px; 
  }
}

@media (max-width: 650px) {
  .pillars-container .one-pillar { margin-bottom: 30px; }
  
  .one-pillar .pillar-header .icon { display: none; }
  
  .one-pillar .pillar-header h2 { 
    font-size: 30px;
    padding-top: 0; 
  }
  
  .one-pillar .pillar-content {
    margin: 40px 0 0 0;
    max-width: 100%; 
  }      
}

/* ABOUT (industries) */

.intro-slide.industries-intro { 
  margin-bottom: 40px;
  text-align: center;  
}

.page-template-page-industries > .wrap {
  display: -webkit-flex;
	display: -ms-flexbox;
	display: -ms-flex;
	display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
      -ms-justify-content: space-between;
          justify-content: space-between;
}

.intro-slide.industries-intro .wrap { padding: 50px 20px; }

.industry-container {
  display: inline-block;
  margin: 0 0 40px 0;
  vertical-align: top;
  width: 280px;  
}

.industry-container .industry-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 280px;
  width: 280px;
}

.industry-container .industry-image h2 {
  background: rgba( 0, 0, 0, 0.6 );
  color: #fff;
  font-size: 24px;
  font-weight: normal;
  padding: 10px 20px;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

.industry-container .related-products { 
  border-bottom: 1px solid #ddd;
  padding: 15px 0; 
}

.industry-container .related-products ul li {
  list-style-type: none;
  padding: 5px 0 5px 20px;
}

.industry-container .related-products ul li a {
  text-decoration: none;
}

.industry-container .related-products ul li a:hover { color: #000; }

@media (max-width: 900px) {
  .page-template-page-industries > .wrap {
    -webkit-justify-content: space-around;
        -ms-justify-content: space-around;
            justify-content: space-around;
  }
}

/* ABOUT (contacts) */

.intro-slide.contacts-intro { 
  margin-bottom: 40px;
  text-align: center;  
  z-index: 2;
}

.intro-slide.contacts-intro .wrap { padding: 50px 20px; }

.intro-slide.contacts-intro h1 { padding: 0; }

.contacts {
  max-width: 600px;
  left: -290px;
  z-index: 2;
}

.contacts .entry {
  background: rgba(255, 255, 255, 0.9);
  margin: 30px 0;
  padding: 30px 30px 0 30px;
  
  -moz-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);  
}

.contacts .entry table { width: 100%; }

.contacts .entry table td { padding: 0 0 40px 0; }

.contacts .entry table td em,
.contacts .entry table td i {
  color: #666;
  font-size: 12px;
}

.contacts .map {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  padding-left: 40px;
  width: 45%;
}

.iframe-wrap {
  position: absolute;
  top: 280px;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

@media (max-width: 990px) {
  .contacts {
    max-width: 100%;
    left: 0;
    z-index: 2;
  }
  
  .contacts .entry {
    margin: 0;
    padding: 0;
    
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;  
  }
  
  .iframe-wrap { display: none; }
}

@media (max-width: 650px) {
  .contacts .entry table td { 
    display: block;
    padding: 0 0 40px 0;
    width: 100%; 
  }
}
              
/* DEFAULT PAGE */

.intro-slide.default-page-intro { text-align: center; }

.intro-slide.default-page-intro .wrap { padding: 50px 20px; }

.intro-slide.default-page-intro h1 { padding: 0; }

.intro-slide.default-page-intro h1.title-override { padding-bottom: 30px; }

.wrap.default-page-content { max-width: 800px; }

.default-page-content .entry {
  padding: 40px 0;
}

.default-page-content .entry p:last-of-type { padding: 0 0 20px 0; }

.default-page-content .entry table {
  border: none !important;
  width: auto !important;
}

.default-page-content .entry table th,
.default-page-content .entry table td {
  line-height: 150%;
  padding: 15px 30px 15px 0;
  text-align: left;
  height: auto !important;
  width: auto !important; 
}

.default-page-content .entry table th,
.default-page-content .entry table thead td {
  border-bottom: 1px solid #ccc;
} 

.default-page-content .entry table td {
  border-bottom: 1px solid #eee;
}

@media (max-width: 1240px) {
  .entry img {
    height: auto !important;
    max-width: 100%;
  }  
}

/* POSTS LIST */

.archive .intro-slide { text-align: center; }

.archive .intro-slide .breadcrumbs li {
  display: inline-block;
  float: none;
}

.archive .intro-slide .wrap { padding: 70px 20px 60px 20px; }

.posts { 
  margin-top: 20px;
}

.posts .wrap { 
  display: -webkit-flex;
	display: -ms-flexbox;
	display: -ms-flex;
	display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
      -ms-justify-content: center;
          justify-content: center;
  width: 1180px; 
}

.related-content .posts .wrap { 
  -webkit-justify-content: flex-start;
      -ms-justify-content: flex-start;
          justify-content: flex-start; 
}

.post-in-list-wrap {
  margin: 0 5px 60px 10px;
  vertical-align: top;
  width: 280px;
}    

.post-in-list-wrap .image-container {
  height: 280px;
  width: 280px;
  overflow: hidden;
  z-index: 1;
}

.post-in-list {
  position: relative;
}

.post-in-list h2 {
  font-size: 24px;
  padding-top: 20px;
}

.post-in-list h2 a {
  color: #333;
  font-weight: normal;
  text-decoration: none;
}

.post-in-list h2 a:hover,
.post-in-list:hover h2 a { text-decoration: underline; }

@media (max-width: 1220px) {
  .posts .wrap { 
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%; 
  }
}

/* POSTS */

.entry ul,
.entry ol {
  margin: 0 0 20px 18px;
}

.entry ul li,
.entry ol li {
  line-height: 150%;
  padding: 3px 0;
}

.entry blockquote {
  background: #f0f0f0;
  margin: 0 0 20px 0;
  padding: 10px;
}

.entry blockquote p {
  border-left: 3px solid #294179;
  font-style: italic;
  padding: 10px 20px;
}

.entry h2 {
  font-size: 28px;
  padding: 15px 0;
}

.entry h3 {
  font-size: 22px;
  padding: 10px 0;
}

/* SINGLE POST */

.intro-slide.blog-single {
  text-align: center;
}

.intro-slide.blog-single .wrap {
  padding: 90px 20px 60px 20px;
}

.intro-slide.blog-single.whitepapers .wrap { padding: 90px 20px 30px 20px; }

.intro-slide.blog-single.whitepapers + .product-content .col-2 .intro-text {
  font-size: 22px;
}

.intro-slide.blog-single .breadcrumbs { text-align: center; }

.intro-slide.blog-single .breadcrumbs li {
  display: inline-block;
  float: none;
}

.intro-slide.blog-single .meta {
  color: #fff;
}

.intro-slide.blog-single.whitepapers .meta { display: none; }

.single-post-content {
  margin: 50px auto;
  max-width: 800px;
}

/* SEARCH RESULTS */

.search-intro .wrap {
  padding: 50px 20px 20px 20px;
  text-align: center;
}

.search-results-container {
  padding: 10px 0 50px 0;
}

.search-results-container .no-results {
  padding: 100px 0;
}

.search-results-container ul {
  margin: 0 auto;
  max-width: 800px;
}

.search-results-container ul li {
  border-bottom: 1px solid #ccc;
  list-style-type: none;
  padding: 40px 0;
}

.search-results-container ul li:last-of-type {
  border: none;
  padding-bottom: 0;
}

.search-results-container ul li h3 {
  font-size: 24px;
  padding: 0 0 10px 0;
}

/* PILLARS (footer) */

.pillars-footer {
  background: #f0f0f0 url('../img/bg_pattern_gray_slide.png');
  padding: 40px 0 0 0;
  text-align: center;
}

.pillars-footer h1 {
  color: #294179;
  font-size: 50px;
}

@media (max-width: 650px) {
  .pillars-footer h1 { font-size: 40px; }
}

/* FOOTER */

#footer-nav {
  background: #4a4e56 url('../img/bg_pattern_footer.png');
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

#footer-nav ul li {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  list-style-type: none;
  padding: 0 30px;
  width: 25%;
}

#footer-nav ul li a {
  background: url('../img/line_dotted_footer.png') repeat-x bottom left;
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 0 0 5px 0;
  text-decoration: none;
  pointer-events: none;
}

#footer-nav ul li ul li {
  float: none;
  padding: 0;
  width: auto;
}

#footer-nav ul li ul li a {
  background: none;
  color: #d9d9d9;
  font-size: 16px;
  font-weight: normal;
  margin: 0;
  padding: 5px 0;
  pointer-events: auto;
}

#footer-nav ul li ul li a:hover { text-decoration: underline; }

#footer {
  background: #2c2f34 url('../img/bg_pattern_footer.png');
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

#footer .footer-left,
#footer #legal-nav {
  float: left;
  width: 50%;
}

#footer p { 
  color: #b2b2b2;
  font-size: 15px; 
  letter-spacing: 1.5px;
  padding: 10px 0 0 0; 
}

#legal-nav { text-align: right; }

#legal-nav ul li {
  display: inline-block;
}

#legal-nav ul li:before {
  content: "•";
  color: #b2b2b2;
  padding: 0 15px 0 12px;
}

#legal-nav ul li:first-of-type:before { content: none; }

#legal-nav ul li a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}

#legal-nav ul li a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  #footer-nav { padding: 40px 0 10px 0; }
  
  #footer-nav ul li {
    margin-bottom: 30px;
    width: 50%;
  } 
  
  #footer-nav ul li ul li { margin: 0; }
  
  #footer .wrap {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-flex;
  	display: -ms-flexbox;
  	display: -ms-flex;
  	display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: flex-start;
        -ms-justify-content: flex-start;
            justify-content: flex-start;
    width: 100%;
  }
  
  #footer .footer-left,
  #footer #legal-nav { 
    float: none;
    width: 100%; 
  } 
  
  #footer .footer-left { order: 2; }
  
  #footer #legal-nav { 
    margin-bottom: 30px;
    order: 1; 
    text-align: left;
  }
}

@media (max-width: 650px) {
  #footer-nav ul li { 
    padding: 0; 
    width: 100%; 
  }
  
  #footer .footer-left img { 
    display: block;
    max-width: 100%;
  }
}

/** WordPress compatibility styles
 -------------------------------------------------- */
.alignleft,
.alignright {
  margin-top: 4px; }

.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 15px; }

.alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 15px; }

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

/**
 * Captioned images
 * Caption shortcode filtered.
 */
.wp-caption {
  border: 1px solid #ccc;
  margin-bottom: 20px;
  overflow: hidden;
}

.wp-caption img {
  display: block;
  padding: 5px;
}

.wp-caption-text,
.wp-caption-text:last-of-type {
  border-top: 1px solid #ccc;
  font-size: 14px;  
  margin: 10px;
  padding-top: 10px;
  text-align: center;
}