@charset "UTF-8";
/*!
Theme Name: Vollmar Natural Lands Theme
Theme URI: http://underscores.me/
Author: Seth Quittner
Author URI: http://sethquittner.com
Description: Starter Theme for SQD
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: leantheme-sass
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.

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

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Flexbox
# Widgets
# Content
	## Posts and pages
  ## Pagination
  ## Grid
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
# Extras
  ## Slick  
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  margin: 0; }

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

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

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

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

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

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

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

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

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

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

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

figure {
  margin: 1em 40px; }

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

pre {
  overflow: auto; }

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

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

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

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

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

input {
  line-height: normal; }

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

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

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

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

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

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

td,
th {
  padding: 0; }

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

h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-weight: 400;
  margin-bottom: 0; }

h1.entry-title {
  display: none; }

h2 {
  font-weight: 600;
  margin-bottom: 0em;
  font-size: 2.2em; }

.heading__bold {
  font-weight: 700; }

p {
  margin-bottom: 1.5em;
  font-size: 1.2em; }
  @media (min-width: 1px) and (max-width: 414px) {
    p {
      font-size: 1.2em;
      text-align: left; } }
  @media (min-width: 415px) and (max-width: 767px) {
    p {
      font-size: 1.2em;
      text-align: left; } }
  @media (min-width: 768px) and (max-width: 991px) {
    p {
      font-size: 1.2em;
      text-align: left; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    p {
      font-size: 1.4em;
      text-align: left; } }
  @media (min-width: 1200px) {
    p {
      font-size: 1.4em;
      text-align: left; } }

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

blockquote {
  margin: 0 1.5em; }

address {
  margin: 0 0 1.5em; }

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

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

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

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

big {
  font-size: 125%; }

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

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit; }

body {
  background: #f9f7f2;
  /* Fallback for when there is no custom background color defined. */
  font-family: Lato, Sans-serif;
  font-weight: 300;
  font-size: .8em; }
  @media (min-width: 415px) and (max-width: 767px) {
    body {
      font-size: 1.0em; } }
  @media (min-width: 768px) and (max-width: 991px) {
    body {
      font-size: 1.1em; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    body {
      font-size: 1.2em; } }
  @media (min-width: 1200px) {
    body {
      font-size: 1.2em; } }

p {
  margin: 0 0 1em 0; }

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

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

#content ul, #content ol {
  font-size: 1.2em; }
  @media (min-width: 415px) and (max-width: 767px) {
    #content ul, #content ol {
      border: 0;
      font-size: 1.2em; } }
  @media (min-width: 768px) and (max-width: 991px) {
    #content ul, #content ol {
      font-size: 1.2em; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    #content ul, #content ol {
      font-size: 1.4em; } }
  @media (min-width: 1200px) {
    #content ul, #content ol {
      font-size: 1.4em; } }

ul {
  list-style: disc; }

ol {
  list-style: decimal; }

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

dt {
  font-weight: bold; }

dd {
  margin: 0 1.5em 1.5em; }

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

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */ }

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

.btn__cta, .btn__cta--solid, .btn__cta--transparent {
  color: #fff;
  text-shadow: 1px 2px 3px #666;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 0;
  padding: 1em 2.2em;
  height: auto;
  text-align: center;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  clear: both;
  text-decoration: none;
  font-size: 1rem; }
  .btn__cta:hover, .btn__cta--solid:hover, .btn__cta--transparent:hover {
    border: 2px solid #182f7b;
    text-shadow: none; }
  @media (min-width: 1200px) {
    .btn__cta, .btn__cta--solid, .btn__cta--transparent {
      font-size: 1.2rem; } }

.btn__cta--solid {
  background: #182f7b;
  border: 2px solid #182f7b;
  text-shadow: none; }
  .btn__cta--solid:hover {
    color: #182f7b;
    font-weight: 700;
    background: #cec1a1;
    border: 2px solid #cec1a1; }

.btn__cta--transparent {
  background: transparent; }
  .btn__cta--transparent:hover {
    background: #182f7b; }

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: .6em 1em .4em; }
  button:hover,
  input[type="button"]:hover,
  input[type="reset"]:hover,
  input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa; }
  button:active, button:focus,
  input[type="button"]:active,
  input[type="button"]:focus,
  input[type="reset"]:active,
  input[type="reset"]:focus,
  input[type="submit"]:active,
  input[type="submit"]:focus {
    border-color: #aaa #bbb #bbb; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #464646;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px; }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="url"]:focus,
  input[type="password"]:focus,
  input[type="search"]:focus,
  input[type="number"]:focus,
  input[type="tel"]:focus,
  input[type="range"]:focus,
  input[type="date"]:focus,
  input[type="month"]:focus,
  input[type="week"]:focus,
  input[type="time"]:focus,
  input[type="datetime"]:focus,
  input[type="datetime-local"]:focus,
  input[type="color"]:focus,
  textarea:focus {
    color: #111; }

select {
  border: 1px solid #ccc; }

textarea {
  width: 100%; }

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: royalblue; }
  a:visited {
    color: inherit; }
  a:hover, a:focus, a:active {
    color: #182f7b; }
  a:focus {
    outline: thin dotted; }
  a:hover, a:active {
    outline: 0; }

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
#projects-menu {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin-left: 27%; }
  #projects-menu li {
    float: left;
    margin: .5em; }
  #projects-menu li a {
    text-decoration: none; }
    #projects-menu li a:hover {
      border-bottom: 2px solid #fff;
      color: #fff; }
  #projects-menu .current_page_item {
    border-bottom: 2px solid #fff; }

.menu-projects-container {
  position: absolute;
  background: rgba(24, 47, 123, 0.5);
  color: #fff;
  width: 100%;
  height: 50px;
  text-align: center;
  display: none; }
  @media (min-width: 415px) and (max-width: 767px) {
    .menu-projects-container {
      display: none; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .menu-projects-container {
      display: none; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .menu-projects-container {
      display: block; } }
  @media (min-width: 1200px) {
    .menu-projects-container {
      display: block; } }

.main-navigation {
  display: inline-block;
  font-size: 1em;
  font-weight: 300; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .main-navigation {
      padding-left: 6em; } }
  @media (min-width: 1200px) {
    .main-navigation {
      padding-left: 5em; } }
  .main-navigation a {
    color: #fff;
    font-size: 1.2em;
    border-bottom: 2px solid #182f7b; }
    .main-navigation a:hover {
      border-bottom: 2px solid #fff; }
  .main-navigation li.current_page_item a, .main-navigation li.current-page-ancestor a {
    border-bottom: 2px solid #fff; }
  .main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0; }
    .main-navigation ul ul {
      float: left;
      position: absolute;
      top: 1.5em;
      left: -999em; }
      @media (min-width: 1px) and (max-width: 414px) {
        .main-navigation ul ul {
          float: none;
          position: relative;
          top: -1em;
          left: 0; } }
      @media (min-width: 415px) and (max-width: 767px) {
        .main-navigation ul ul {
          float: none;
          position: relative;
          top: -1em;
          left: 0; } }
      .main-navigation ul ul ul {
        left: -999em;
        top: 0; }
      .main-navigation ul ul li {
        text-align: left;
        padding: 0 0 0 1em;
        position: relative;
        top: 1.7em;
        box-shadow: none; }
        .main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
          left: 100%; }
      .main-navigation ul ul a {
        width: 240px;
        border-bottom: 0 !important;
        background: #182f7b;
        padding: 0.65em 0.5em;
        font-size: 1.1em; }
    .main-navigation ul li:hover > ul,
    .main-navigation ul li.focus > ul {
      left: auto; }
  .main-navigation li {
    float: left;
    position: relative;
    padding: 1em;
    padding-bottom: 0.3em; }
  .main-navigation a {
    display: block;
    text-decoration: none; }

.menu-main-container {
  margin: 0 auto;
  padding-top: 1em; }
  @media (min-width: 1200px) {
    .menu-main-container {
      max-width: 1100px; } }

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

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

  .main-navigation ul {
    display: block; } }
.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden; }
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%; }
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%; }

#site-navigation.toggled .menu-main-container ul li {
  float: none;
  position: relative;
  padding: 1em;
  display: block;
  text-align: left; }

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }
  .screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #464646;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */ }

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0; }

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

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

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

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

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

/*--------------------------------------------------------------
# Flexbox
--------------------------------------------------------------*/
.flex-vcenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 5%;
  margin-left: auto;
  margin-right: auto; }

.flex-row h1 {
  width: 100%; }

/*--------------------------------------------------------------
# Flexslider
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Shift Nav
--------------------------------------------------------------*/
#shiftnav-toggle-main img {
  max-width: 175px; }

i.fa.fa-bars {
  font-size: 2.4em; }

#shiftnav-toggle-main.shiftnav-toggle-main-align-center .shiftnav-main-toggle-content {
  height: 116px; }

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */ }
  .widget select {
    max-width: 100%; }

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.single-project h2 {
  margin-bottom: 0.8em;
  font-size: 1.6em;
  line-height: 1.2; }

p.icon {
  display: inline-block;
  margin: 0 auto; }

.sticky {
  display: block; }

.hentry {
  margin: 0 0 1.5em; }

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

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

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

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

#masthead {
  display: none; }
  @media (min-width: 768px) and (max-width: 991px) {
    #masthead {
      display: none;
      background: #182f7b;
      text-align: center;
      padding-top: 3em; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    #masthead {
      display: block;
      background: #182f7b;
      text-align: center;
      padding-top: 3em; } }
  @media (min-width: 1200px) {
    #masthead {
      display: block;
      background: #182f7b;
      text-align: center;
      padding-top: 3em; } }

.site-title, .site-description {
  display: none; }

.site-logo {
  max-width: 197px;
  margin-top: -1.6em; }

#content {
  margin-bottom: 4em; }

#colophon {
  padding: 0;
  text-align: center;
  background: #182f7b; }

.inner-wrapper {
  max-width: 1100px;
  margin: 0 auto; }
  @media (min-width: 1px) and (max-width: 414px) {
    .inner-wrapper {
      padding: 0 2em; } }
  @media (min-width: 415px) and (max-width: 767px) {
    .inner-wrapper {
      padding: 0 2em; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .inner-wrapper {
      padding: 0 2em; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .inner-wrapper {
      padding: 0 2em; } }
  @media (min-width: 1200px) {
    .inner-wrapper {
      max-width: 1100px; } }

#three-accross .col-4 {
  padding: 0 1%; }

.panel {
  height: 650px;
  text-align: center; }

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

.bypostauthor {
  display: block; }

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
#colophon div {
  margin: 2em 0; }
#colophon .soq a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem; }
  #colophon .soq a:hover {
    text-decoration: underline; }
  #colophon .soq a p {
    margin-bottom: .5em;
    text-align: center; }
#colophon a:hover {
  color: #cec1a1; }
#colophon .menu-primary-container {
  font-size: 1em;
  padding-top: 2em; }
  @media (min-width: 1px) and (max-width: 414px) {
    #colophon .menu-primary-container {
      display: none; } }
  @media (min-width: 415px) and (max-width: 767px) {
    #colophon .menu-primary-container {
      display: none; } }
  @media (min-width: 768px) and (max-width: 991px) {
    #colophon .menu-primary-container {
      display: none; } }
  #colophon .menu-primary-container ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  #colophon .menu-primary-container ul a {
    text-decoration: none;
    color: #eee; }
  #colophon .menu-primary-container ul li {
    text-align: left;
    display: inline-block;
    vertical-align: top;
    text-transform: uppercase;
    width: 10%; }
  #colophon .menu-primary-container .menu-main-container ul li:nth-child(2) {
    margin-right: .5em; }
  #colophon .menu-primary-container ul li ul li {
    font-size: .8em;
    text-align: left;
    text-indent: 0;
    display: block;
    white-space: nowrap;
    text-transform: lowercase;
    padding-left: .25em; }
  #colophon .menu-primary-container ul.sub-menu {
    display: none;
    margin: 0;
    padding: 0; }
  #colophon .menu-primary-container ul.children {
    display: none; }
  #colophon .menu-primary-container a[href^="#"] {
    cursor: default; }
  #colophon .menu-primary-container a[href^="#"]:hover {
    color: #fff; }
#colophon .menu-social-container {
  margin: 0;
  padding: 0;
  width: 100%;
  display: none; }
  #colophon .menu-social-container ul {
    list-style: none;
    padding: 0;
    margin: 0; }
  #colophon .menu-social-container ul li {
    font-size: 2em;
    display: inline-block;
    margin-right: 1em; }
    #colophon .menu-social-container ul li:last-child {
      margin: 0; }
  #colophon .menu-social-container ul li a .fa {
    color: #888; }
    #colophon .menu-social-container ul li a .fa:hover {
      color: black; }
#colophon .site-info {
  font-size: .8em;
  color: #eee; }

/*--------------------------------------------------------------
## Page Specific Over-rides
--------------------------------------------------------------*/
.page-id-4 #page {
  overflow: hidden; }

/*--------------------------------------------------------------
## Page Specific Over-rides
--------------------------------------------------------------*/
.project-title {
  text-decoration: none;
  font-size: 1.3em;
  font-weight: 700;
  color: #182f7b; }

.project-row {
  width: 100%;
  clear: both;
  margin-bottom: 4em;
  content: "";
  display: table;
  table-layout: fixed; }
  .project-row .col-4 {
    width: 100%;
    display: block; }
    @media (min-width: 415px) and (max-width: 767px) {
      .project-row .col-4 {
        width: 100%;
        display: block;
        clear: both; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .project-row .col-4 {
        display: block;
        width: 33.33333333%;
        float: left; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .project-row .col-4 {
        display: block;
        width: 33.33333333%;
        float: left; } }
    @media (min-width: 1200px) {
      .project-row .col-4 {
        display: block;
        width: 33.33333333%;
        float: left; } }
  .project-row .col-4 img {
    width: 100%;
    display: block; }
    @media (min-width: 415px) and (max-width: 767px) {
      .project-row .col-4 img {
        width: 50%; } }
  .project-row .col-8 {
    width: 100%;
    display: block; }
    @media (min-width: 415px) and (max-width: 767px) {
      .project-row .col-8 {
        padding-left: 0em;
        display: block;
        clear: both;
        width: 100%; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .project-row .col-8 {
        padding-left: 4em;
        display: block;
        width: 66.66666666%;
        float: left; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .project-row .col-8 {
        padding-left: 4em;
        display: block;
        width: 66.66666666%;
        float: left; } }
    @media (min-width: 1200px) {
      .project-row .col-8 {
        padding-left: 4em;
        display: block;
        width: 66.66666666%;
        float: left; } }
  .project-row a {
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 700;
    color: #182f7b; }
  .project-row a.see-project {
    font-weight: 400;
    font-size: 1.0em;
    text-transform: lowercase; }
  .project-row p.project-excerpt {
    min-height: 0px; }
    @media (min-width: 415px) and (max-width: 767px) {
      .project-row p.project-excerpt {
        min-height: 0px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .project-row p.project-excerpt {
        min-height: 200px; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      .project-row p.project-excerpt {
        min-height: 200px; } }
    @media (min-width: 1200px) {
      .project-row p.project-excerpt {
        min-height: 200px; } }

#project-details {
  background: #182f7b;
  margin-top: 2em;
  color: #fff;
  border-radius: 1em;
  font-size: 1.1em;
  padding: 2em 0 2em 1em; }
  @media (min-width: 415px) and (max-width: 767px) {
    #project-details {
      margin-top: 2em; } }
  @media (min-width: 768px) and (max-width: 991px) {
    #project-details {
      margin-top: 2em; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    #project-details {
      margin-top: 2em;
      padding: 2em 0 2em 6em;
      margin-top: 2em; } }
  @media (min-width: 1200px) {
    #project-details {
      padding: 2em 0 2em 6em;
      margin-top: -2em; } }
  #project-details p strong {
    display: block;
    clear: both;
    font-weight: 700;
    letter-spacing: .1em; }
  #project-details p {
    float: left;
    padding-left: 2em;
    margin: .5em 0; }
  #project-details img {
    float: left;
    position: relative;
    width: 7%; }
    @media (min-width: 768px) and (max-width: 991px) {
      #project-details img {
        width: 7%; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      #project-details img {
        width: 7%; } }
    @media (min-width: 1200px) {
      #project-details img {
        width: 7%; } }

.project-details-row p {
  margin: 0;
  padding: 0;
  width: 90%; }

#slider {
  width: 70% !important;
  margin: 0 auto; }

.flexslider {
  margin: 0 0 60px;
  background: transparent !important;
  border: 0 !important;
  position: relative !important;
  -webkit-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  -o-border-radius: 4px !important;
  border-radius: 4px !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -o-box-shadow: none !important;
  box-shadow: none !important;
  zoom: 1; }

.flex-direction-nav a:before {
  font-size: 35px !important;
  color: #fff; }

#see-project-map {
  margin-top: 4em; }
  #see-project-map img {
    width: 125px; }

a.international-research {
  text-decoration: none;
  font-weight: 300;
  color: #fff;
  background: #182f7b;
  border: 2px solid #182f7b;
  padding: 1.2em; }
  a.international-research:hover {
    color: #182f7b;
    background: transparent; }

/*--------------------------------------------------------------
## Page Home page
--------------------------------------------------------------*/
.page-id-4 #content {
  margin-bottom: .3em; }

#home-hero {
  color: #fff;
  text-shadow: 1px 2px 3px #666;
  margin-bottom: 0em;
  margin-top: -2em;
  text-align: center;
  height: 400px; }
  @media (min-width: 415px) and (max-width: 767px) {
    #home-hero {
      height: 580px;
      margin-top: 0; } }
  @media (min-width: 768px) and (max-width: 991px) {
    #home-hero {
      height: 510px;
      margin-top: 0; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    #home-hero {
      margin-top: 0;
      height: 600px; } }
  @media (min-width: 1200px) {
    #home-hero {
      margin-top: 0;
      height: 650px; } }
  #home-hero button {
    text-shadow: 1px 1px 1px #333; }
    @media (min-width: 415px) and (max-width: 767px) {
      #home-hero button {
        margin: 0 auto;
        margin-top: 2em;
        display: inline-block; } }
    @media (min-width: 768px) and (max-width: 991px) {
      #home-hero button {
        margin: 0 auto;
        margin-top: 2em;
        display: inline-block; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      #home-hero button {
        margin: 0 auto;
        margin-top: 8em;
        display: inline-block; } }
    @media (min-width: 1200px) {
      #home-hero button {
        margin: 0 auto;
        margin-top: 8em;
        display: inline-block; } }
  @media (min-width: 1200px) {
    #home-hero ul {
      text-align: left;
      font-size: 1.4em; } }
  @media (min-width: 1200px) {
    #home-hero p {
      font-size: 1.4em;
      margin: 0; } }
  #home-hero h2 {
    font-weight: 400;
    text-align: center;
    line-height: 1.3;
    font-size: 1.2em;
    margin-bottom: 3em;
    padding-top: 2em; }
    @media (min-width: 415px) and (max-width: 767px) {
      #home-hero h2 {
        font-size: 1.2em; } }
    @media (min-width: 768px) and (max-width: 991px) {
      #home-hero h2 {
        width: 100%;
        text-align: center;
        margin: 0;
        padding-top: 3em;
        font-size: 1.2em;
        text-transform: none;
        text-align: justify;
        font-weight: 400;
        margin-bottom: 2em; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      #home-hero h2 {
        width: 100%;
        text-align: center;
        margin: 0;
        padding-top: 1em;
        font-size: 1.7em;
        line-height: 1.3;
        text-transform: none;
        text-align: justify;
        font-weight: 400;
        margin-bottom: 0em; } }
    @media (min-width: 1200px) {
      #home-hero h2 {
        width: 100%;
        text-align: center;
        margin: 0;
        padding-top: 1.5em;
        font-size: 1.6em;
        line-height: 1.3;
        text-transform: none;
        text-align: justify;
        font-weight: 400;
        margin-bottom: 0em; } }

#projects-map.panel {
  height: 730px; }
  @media (min-width: 415px) and (max-width: 767px) {
    #projects-map.panel {
      height: 730px; } }
  @media (min-width: 1200px) {
    #projects-map.panel {
      height: 650px; } }

#projects-map {
  margin-bottom: 6em; }
  #projects-map button {
    margin-top: 2em; }
  @media (min-width: 415px) and (max-width: 767px) {
    #projects-map {
      margin-bottom: 7em; } }
  @media (min-width: 1200px) {
    #projects-map {
      margin-bottom: 0; } }
  #projects-map p {
    font-size: 1.4em;
    font-weight: 400; }
  #projects-map .projects-map-title {
    display: block;
    width: 100%; }
  #projects-map img {
    padding-top: .5em; }
  #projects-map .col-8 {
    width: 100%;
    float: left; }
    #projects-map .col-8 p {
      padding-top: 2.5em; }
    @media (min-width: 992px) and (max-width: 1199px) {
      #projects-map .col-8 {
        width: 66.66666666%;
        float: left; } }
    @media (min-width: 1200px) {
      #projects-map .col-8 {
        width: 66.66666666%;
        padding-left: 4.0em;
        float: left;
        text-align: left; } }
  #projects-map .col-4 {
    width: 100%;
    position: relative; }
    @media (min-width: 992px) and (max-width: 1199px) {
      #projects-map .col-4 {
        width: 33.33333333%;
        float: left; } }
    @media (min-width: 1200px) {
      #projects-map .col-4 {
        width: 33.33333333%;
        float: left; } }
    #projects-map .col-4 p.projects-completed {
      border-radius: 45px;
      width: 90px;
      height: 90px;
      padding: 1.75em 1em;
      text-align: center;
      font-size: .8rem;
      font-weight: 700;
      background: #182f7b;
      color: #fff;
      position: absolute;
      bottom: 7em;
      left: 13em; }
      @media (min-width: 375px) {
        #projects-map .col-4 p.projects-completed {
          bottom: 9em;
          left: 16em; } }
      @media (min-width: 415px) and (max-width: 767px) {
        #projects-map .col-4 p.projects-completed {
          bottom: 10em;
          left: 23em; } }
      @media (min-width: 768px) and (max-width: 991px) {
        #projects-map .col-4 p.projects-completed {
          bottom: 10em;
          left: 10em; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        #projects-map .col-4 p.projects-completed {
          bottom: 12em;
          right: 3em; } }
      @media (min-width: 1200px) {
        #projects-map .col-4 p.projects-completed {
          bottom: 11em;
          left: 20em; } }
    #projects-map .col-4 p.project-acreage {
      color: #182f7b;
      font-weight: 700;
      line-height: 1.2;
      font-size: 1.3em; }

#see-our-soq {
  color: #fff;
  margin-bottom: 3em;
  height: auto;
  padding: 4em 0; }
  #see-our-soq li {
    line-height: 1.3; }
  @media (min-width: 415px) and (max-width: 767px) {
    #see-our-soq {
      height: auto;
      padding: 4em 0; } }
  @media (min-width: 768px) and (max-width: 991px) {
    #see-our-soq {
      height: auto;
      padding: 4em 0; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    #see-our-soq {
      height: auto;
      padding: 1em 0; } }
  @media (min-width: 1200px) {
    #see-our-soq {
      height: auto;
      padding: 4em 0; } }
  #see-our-soq p {
    font-size: 1.4em; }
  #see-our-soq ul {
    text-shadow: 1px 2px 3px #666;
    letter-spacing: 0.06em;
    text-align: left;
    margin: 0 0 1em 1em;
    padding: 0 0 0 1em;
    margin-bottom: 2em; }
    @media (min-width: 415px) and (max-width: 767px) {
      #see-our-soq ul {
        margin: 0 0 1em 1em;
        padding: 0 0 0 1em;
        margin-bottom: 2em; } }
    @media (min-width: 768px) and (max-width: 991px) {
      #see-our-soq ul {
        margin-bottom: 2em; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      #see-our-soq ul {
        margin: 0 0 1em 1em; } }
    @media (min-width: 1200px) {
      #see-our-soq ul {
        font-size: 1.4em;
        font-weight: 100;
        margin: 0 0 1em 1em; } }
  #see-our-soq h2 {
    font-weight: 400;
    margin-bottom: 0.7em;
    font-size: 1.9em;
    text-align: left; }

#post-carousel .project-title {
  min-height: 3em;
  margin-bottom: 1em;
  line-height: 1.1;
  font-size: 1em; }
#post-carousel a {
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 700;
  color: #182f7b;
  height: 3em; }
#post-carousel a.see-project {
  font-weight: 400;
  font-size: 0.7em;
  text-transform: lowercase; }
@media (min-width: 1200px) {
  #post-carousel p.project-excerpt {
    min-height: 200px;
    font-size: 1.1em;
    font-weight: 400;
    margin-bottom: 0; } }

#international-research {
  height: 650px;
  color: #fff;
  margin-top: 6em; }
  #international-research p {
    font-size: 1.4em;
    font-weight: 100;
    text-shadow: 1px 2px 3px #666; }
  #international-research h2 {
    font-weight: 400;
    margin-bottom: 0.7em;
    font-size: 2.2em; }

/*--------------------------------------------------------------
## Page Services page
--------------------------------------------------------------*/
.page-template-template-services-page h2 {
  font-size: 2.1em; }

.services-title {
  color: #182f7b;
  font-weight: 700;
  margin: 0;
  font-size: 1.4em;
  line-height: 1.1em;
  text-align: left;
  margin-bottom: 2em;
  margin-top: 1em; }
  @media (min-width: 768px) and (max-width: 991px) {
    .services-title {
      text-align: left; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .services-title {
      text-align: left; } }
  @media (min-width: 1200px) {
    .services-title {
      font-size: 1.5em;
      margin: 0; } }

#services-list img {
  width: 65px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    #services-list img {
      width: auto; } }
  @media (min-width: 1200px) {
    #services-list img {
      width: auto; } }
#services-list .row {
  display: block; }
  @media (min-width: 415px) and (max-width: 767px) {
    #services-list .row {
      display: block; } }
  @media (min-width: 768px) and (max-width: 991px) {
    #services-list .row {
      display: block; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    #services-list .row {
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -webkit-box-align: center;
      align-items: center;
      margin-bottom: 1.5em; } }
  @media (min-width: 1200px) {
    #services-list .row {
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -webkit-box-align: center;
      align-items: center;
      margin-bottom: 1.5em; } }
#services-list .col-1 {
  text-align: center; }
  @media (min-width: 768px) and (max-width: 991px) {
    #services-list .col-1 {
      text-align: left; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    #services-list .col-1 {
      text-align: left; } }
  @media (min-width: 1200px) {
    #services-list .col-1 {
      text-align: left; } }
#services-list .col-11 {
  padding-left: 0; }
  @media (min-width: 768px) and (max-width: 991px) {
    #services-list .col-11 {
      padding-left: 2em; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    #services-list .col-11 {
      padding-left: 2em; } }
  @media (min-width: 1200px) {
    #services-list .col-11 {
      padding-left: 2em; } }

/*--------------------------------------------------------------
## Page About Us page
--------------------------------------------------------------*/
.bio-thumb {
  float: left;
  width: 150px;
  margin: 0 3em 1em 0; }
  @media (min-width: 415px) and (max-width: 767px) {
    .bio-thumb {
      float: none; } }

@media (min-width: 768px) and (max-width: 991px) {
  .bio-row .col-10 {
    padding-left: 2em; } }
@media (min-width: 992px) and (max-width: 1199px) {
  .bio-row .col-10 {
    padding-left: 2em; } }
@media (min-width: 1200px) {
  .bio-row .col-10 {
    padding-left: 2em; } }
.bio-row .col-2 {
  float: none;
  width: 100%; }
  @media (min-width: 415px) and (max-width: 767px) {
    .bio-row .col-2 {
      float: left;
      width: 100%;
      text-align: center; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .bio-row .col-2 {
      float: left;
      width: 16.666666667%; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .bio-row .col-2 {
      float: left;
      width: 16.666666667%; } }
  @media (min-width: 1200px) {
    .bio-row .col-2 {
      float: left;
      width: 16.666666667%; } }
  @media (min-width: 415px) and (max-width: 767px) {
    .bio-row .col-2 img {
      display: inline;
      width: 50%; } }
.bio-row h2 {
  display: block;
  float: left;
  margin: 0; }

.bio-name {
  color: #182f7b;
  font-weight: 800;
  font-size: 1.6em; }

.bio-title {
  font-size: 1.4em; }

.bio-text {
  clear: both;
  margin-bottom: 4em; }

/*———————————————————————————————————
** START BIO CONTRACT/EXPAND TOGGLE
*/
.bio {
  height: auto;
  transition: all .35s ease-in-out; }

.contract {
  position: relative;
  padding-bottom: 2em; }

.bio .clip {
  cursor: pointer;
  opacity: .6;
  -webkit-transition: opacity .25s ease-out;
  -moz-transition: opacity .25s ease-out;
  -ms-transition: opacity .25s ease-out;
  -o-transition: opacity .25s ease-out;
  transition: opacity .25s ease-out; }

.bio:hover .clip {
  opacity: 1; }

.contract .clip {
  opacity: 1;
  position: absolute;
  bottom: .5em; }

.expand .clipped {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -ms-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out; }

.contract .clipped {
  display: initial;
  max-height: 99999999999999px;
  overflow: initial;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -ms-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out; }

a.anchor {
  display: block;
  position: relative;
  top: -150px;
  visibility: hidden; }

a.bio-link {
  font-size: .6em !important;
  background: #182f7b;
  border: 1px solid #182f7b;
  border-radius: .33em;
  padding: .1em .5em;
  margin: 0;
  color: #fff;
  text-decoration: none;
  line-height: 1; }

a.bio-link:visited {
  color: #fff; }

a.bio-link:hover {
  background: transparent;
  color: #182f7b; }

.bio-links {
  margin-bottom: 2em; }

.back-to-top {
  float: right;
  font-size: .75em; }

.list-columns {
  -moz-column-count: 2;
  -moz-column-gap: 60px;
  -webkit-column-count: 2;
  -webkit-column-gap: 60px;
  column-count: 2;
  column-gap: 60px;
  list-style-type: none;
  padding-top: 0 !important;
  -webkit-padding-start: 0px; }
  .list-columns li {
    line-height: 1.2; }

/*
** END: BIO CONTRACT/EXPAND TOGGLE
** ——————————————————————————————————————————————————————————————————— */
/*--------------------------------------------------------------
## Page About Us page
--------------------------------------------------------------*/
@media (min-width: 1px) and (max-width: 414px) {
  .hero-image, .home-hero {
    height: 180px;
    padding-top: 3em; } }
@media (min-width: 415px) and (max-width: 767px) {
  .hero-image, .home-hero {
    height: 240px; } }
@media (min-width: 768px) and (max-width: 991px) {
  .hero-image, .home-hero {
    height: 360px; } }
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-image, .home-hero {
    height: 480px; } }
@media (min-width: 1200px) {
  .hero-image, .home-hero {
    height: 657px;
    text-align: center;
    -moz-background-size: cover !important;
    -webkit-background-size: cover !important;
    background-size: cover !important; } }
.hero-image h1.entry-title, .home-hero h1.entry-title {
  display: block;
  text-shadow: 1px 2px 3px #666; }
.hero-image h1.project-title, .home-hero h1.project-title {
  text-transform: capitalize; }
.hero-image h1, .home-hero h1 {
  color: #fff;
  margin: 0 auto;
  font-size: 3.5em;
  font-weight: 700;
  text-transform: uppercase; }
  @media (min-width: 1px) and (max-width: 414px) {
    .hero-image h1, .home-hero h1 {
      font-size: 1.5em; } }
  @media (min-width: 415px) and (max-width: 767px) {
    .hero-image h1, .home-hero h1 {
      font-size: 2em; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .hero-image h1, .home-hero h1 {
      font-size: 3em; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .hero-image h1, .home-hero h1 {
      font-size: 3em; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .home-hero {
    height: 450px; } }
@media (min-width: 1200px) {
  .home-hero {
    height: 650px; } }

h1.hero-page-title {
  display: block; }

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.content-area {
  float: left;
  margin: 0 0% 0 0;
  width: 100%; }

.site-main {
  width: 100%;
  margin: 0 auto; }

.site-content .widget-area {
  float: right;
  overflow: hidden; }

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

.has-sidebar {
  width: 75%;
  float: left; }

#two-col-wrapper {
  margin: 0 auto; }
  @media (min-width: 1200px) {
    #two-col-wrapper {
      max-width: 1100px; } }

#secondary {
  width: 25%; }

#two-col-wrapper > #secondary {
  float: left; }

#primary.has-sidebar-left {
  width: 75%;
  float: right; }

/*--------------------------------------------------------------
## Pagination
--------------------------------------------------------------*/
.pagination {
  clear: both;
  padding: 20px 0;
  margin: 2em 0 2em 1.5em;
  position: relative;
  font-size: 11px;
  line-height: 13px; }

.pagination span, .pagination a {
  display: block;
  float: left;
  margin: 2px 2px 2px 0;
  padding: 6px 9px 5px 9px;
  text-decoration: none;
  width: auto;
  color: #fff;
  background: #949494; }

.pagination a:hover {
  color: #fff;
  background: #182f7b; }

.pagination .current {
  padding: 6px 9px 5px 9px;
  background: #182f7b;
  color: #fff; }

/*--------------------------------------------------------------
## Grid
--------------------------------------------------------------*/
.outer-limit {
  max-width: 1400px; }

.row {
  width: 100%;
  margin: 0 auto; }

.col-1 {
  float: left;
  width: 100%; }
  @media (min-width: 415px) and (max-width: 767px) {
    .col-1 {
      width: 100%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .col-1 {
      float: left;
      width: 8.33333333%; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .col-1 {
      float: left;
      width: 8.33333333%; } }
  @media (min-width: 1200px) {
    .col-1 {
      float: left;
      width: 8.33333333%; } }

.col-2 {
  float: left;
  width: 100%; }
  .col-2 img {
    width: 100%; }
  @media (min-width: 415px) and (max-width: 767px) {
    .col-2 {
      float: left;
      width: 100%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .col-2 {
      float: left;
      width: 16.666666667%; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .col-2 {
      float: left;
      width: 16.666666667%; } }
  @media (min-width: 1200px) {
    .col-2 {
      float: left;
      width: 16.666666667%; } }

.col-3 {
  float: left;
  width: 100%; }
  @media (min-width: 415px) and (max-width: 767px) {
    .col-3 {
      float: left;
      width: 100%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .col-3 {
      float: left;
      width: 25%; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .col-3 {
      float: left;
      width: 25%; } }
  @media (min-width: 1200px) {
    .col-3 {
      float: left;
      width: 25%; } }

.col-4 {
  float: left;
  width: 100%; }
  @media (min-width: 415px) and (max-width: 767px) {
    .col-4 {
      width: 100%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .col-4 {
      float: left;
      width: 33.33333333%; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .col-4 {
      float: left;
      width: 33.33333333%; } }
  @media (min-width: 1200px) {
    .col-4 {
      float: left;
      width: 33.33333333%; } }

.col-5 {
  float: left;
  width: 100%; }
  @media (min-width: 415px) and (max-width: 767px) {
    .col-5 {
      float: left;
      width: 100%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .col-5 {
      float: left;
      width: 41.6666667%; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .col-5 {
      float: left;
      width: 41.6666667%; } }
  @media (min-width: 1200px) {
    .col-5 {
      float: left;
      width: 41.6666667%; } }

.col-6 {
  float: left;
  width: 100%; }
  @media (min-width: 415px) and (max-width: 767px) {
    .col-6 {
      float: left;
      width: 100%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .col-6 {
      float: left;
      width: 50%; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .col-6 {
      float: left;
      width: 50%; } }
  @media (min-width: 1200px) {
    .col-6 {
      float: left;
      width: 50%; } }

.col-5 {
  float: left;
  width: 100%; }
  @media (min-width: 415px) and (max-width: 767px) {
    .col-5 {
      float: left;
      width: 100%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .col-5 {
      float: left;
      width: 41.6666667%; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .col-5 {
      float: left;
      width: 41.6666667%; } }
  @media (min-width: 1200px) {
    .col-5 {
      float: left;
      width: 41.6666667%; } }

.col-7 {
  float: left;
  width: 100%; }
  @media (min-width: 415px) and (max-width: 767px) {
    .col-7 {
      float: left;
      width: 100%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .col-7 {
      float: left;
      width: 58.33333333%; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .col-7 {
      float: left;
      width: 58.33333333%; } }
  @media (min-width: 1200px) {
    .col-7 {
      float: left;
      width: 58.33333333%; } }

.col-8 {
  float: left;
  width: 100%; }
  @media (min-width: 415px) and (max-width: 767px) {
    .col-8 {
      float: left;
      width: 100%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .col-8 {
      float: left;
      width: 66.66666666%; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .col-8 {
      float: left;
      width: 66.66666666%; } }
  @media (min-width: 1200px) {
    .col-8 {
      float: left;
      width: 66.66666666%; } }

.col-9 {
  float: left;
  width: 100%; }
  @media (min-width: 415px) and (max-width: 767px) {
    .col-9 {
      float: left;
      width: 100%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .col-9 {
      float: left;
      width: 75%; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .col-9 {
      float: left;
      width: 75%; } }
  @media (min-width: 1200px) {
    .col-9 {
      float: left;
      width: 75%; } }

.col-10 {
  float: left;
  width: 100%; }
  @media (min-width: 415px) and (max-width: 767px) {
    .col-10 {
      float: left;
      width: 100%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .col-10 {
      float: left;
      width: 83.33333333%; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .col-10 {
      float: left;
      width: 83.33333333%; } }
  @media (min-width: 1200px) {
    .col-10 {
      float: left;
      width: 83.33333333%; } }

.col-11 {
  float: left;
  width: 100%; }
  @media (min-width: 415px) and (max-width: 767px) {
    .col-11 {
      width: 100%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .col-11 {
      float: left;
      width: 91.666666%; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .col-11 {
      float: left;
      width: 91.666666%; } }
  @media (min-width: 1200px) {
    .col-11 {
      float: left;
      width: 91.666666%; } }

@media (min-width: 1200px) {
  .col-12 {
    width: 100%;
    clear: both; } }

.clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden; }

.hcentered {
  text-align: center; }

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

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

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

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

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%; }
  .wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .wp-caption .wp-caption-text {
    margin: 0.8075em 0; }

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

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

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%; }
  .gallery-columns-2 .gallery-item {
    max-width: 50%; }
  .gallery-columns-3 .gallery-item {
    max-width: 33.33%; }
  .gallery-columns-4 .gallery-item {
    max-width: 25%; }
  .gallery-columns-5 .gallery-item {
    max-width: 20%; }
  .gallery-columns-6 .gallery-item {
    max-width: 16.66%; }
  .gallery-columns-7 .gallery-item {
    max-width: 14.28%; }
  .gallery-columns-8 .gallery-item {
    max-width: 12.5%; }
  .gallery-columns-9 .gallery-item {
    max-width: 11.11%; }

.gallery-caption {
  display: block; }

/*--------------------------------------------------------------
# Extras
--------------------------------------------------------------*/
/*--------------------------------------------------------------
  ## Slick 
  --------------------------------------------------------------*/
/* Slider */
button.slick-next.slick-arrow {
  margin: -2em; }

button.slick-prev.slick-arrow {
  margin: -2em; }

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.slider {
  width: 100%;
  margin: 2em auto; }

.slick-slide {
  margin: 0px 20px; }

.slick-slide img {
  width: 100%;
  margin-bottom: 1em; }

.slick-prev:before,
.slick-next:before {
  color: black; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("/wp-content/themes/leantheme-sass/images/ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("/wp-content/themes/leantheme-sass/fonts/slick.eot");
  src: url("/wp-content/themes/leantheme-sass/fonts/slick.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/leantheme-sass/fonts/slick.woff") format("woff"), url("/wp-content/themes/leantheme-sass/fonts/slick.ttf") format("truetype"), url("/wp-content/themes/leantheme-sass/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: #ccc;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px;
  font-size: 2em; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "";
    font-family: FontAwesome;
    font-size: 1.25em;
    margin-left: -.25em; }
    [dir="rtl"] .slick-prev:before {
      content: ""; }

.slick-next {
  right: -25px;
  font-size: 2em; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "";
    font-family: FontAwesome;
    font-size: 1.25em;
    margin-right: -.25em; }
    [dir="rtl"] .slick-next:before {
      content: ""; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }
