/*
Theme Name: Spohn Ranch Custom Theme
Theme URI: http://www.pixelspoke.com/
Description: A custom theme for Spohn Ranch developed by <a href="http://www.pixelspoke.com/">PixelSpoke</a>.
Author: PixelSpoke
Author URI: http://www.pixelspoke.com/
Version: 3

This style sheet draws on the standards outlined
http://smacss.com/book/
https://github.com/csswizardry/CSS-Guidelines/ 

We assume this style sheet will be called after normalize-legacy.css and synwordpress.css

Search this style sheet for @set-me to locate color and widths that may vary site by site

*/
/* Base Rules
-------------------------------------------------------------- */
/* YELLOW: #f0cc01 */
@import url("../MyFontsWebfontsKit.css");
@import url("flexslider.css");
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /*10px*/
  overflow-y: scroll;
  /*give us the vertical scroll bar*/
}

body {
  font-family: 'ITCAvantGardeStd-Bk', Arial, sans-serif;
  height: 100%;
  margin: 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  background: #f8f8f8;
  color: #000000;
  -webkit-text-size-adjust: none;
  /* Hopefully prevents footer text from resizing in Android browser */
}

@media screen and (max-width: 600px) {
  body.page-template-tpl-home-php, body.page-template-tpl-portfolio-php, body.blog {
    background-color: #e6e6e6;
  }
}

p, li {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: normal;
  padding: 0;
  color: #221f1f;
}

p {
  margin: 0 0 10px 0;
}

li {
  margin: 0 0 5px 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: normal;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  h1, h2, h3, h4, h5, h6 {
    margin: 0 0 4px 0;
  }
}

h1 {
  font-size: 24px;
  font-size: 2.4rem;
}

h2 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #221f1f;
  text-transform: uppercase;
}

h3 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3125;
}

h4, h5, h6 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: normal;
}

hr {
  margin: 20px 0 30px 0;
  border-width: 1px 0 0 0;
  border-style: solid;
  color: #BCBEC0;
  clear: both;
}

.clear hr {
  color: transparent;
}

/* Link styles */
a,
a:link,
a:visited {
  color: #f0cc01;
  text-decoration: none;
  font-weight: normal;
}

a:active,
a:hover,
a:focus {
  text-decoration: underline;
}

a[href$=".xls"],
a[href$=".xlsx"] {
  background: url(../img/icon-excel.png) no-repeat left center;
  padding: 0 0 0 20px;
}

a[href$=".rss"] {
  background: url(../img/icon-feed.png) no-repeat left center;
  padding: 0 0 0 20px;
}

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

a[href$=".vcf"] {
  background: url(../img/icon-vcard.png) no-repeat left center;
  padding: 0 0 0 20px;
}

a[href$=".doc"],
a[href$=".docx"] {
  background: url(../img/icon-word.png) no-repeat left center;
  padding: 0 0 0 20px;
}

/* Form styles */
input[type="text"],
input[type="password"],
select,
textarea {
  float: left;
  padding: 7px 10px;
  outline: none;
  border: 1px solid #DDDDDD;
  border-radius: 0px;
  font-family: 'ITCAvantGardeStd-Bk', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.142857143;
  /* 16px */
  color: #6e6e6e;
}

input[type="text"],
input[type="password"],
select {
  width: 185px;
}

@media (max-width: 960px) {
  input[type="text"],
  input[type="password"],
  select {
    width: 170px;
  }
}

@media (max-width: 660px) {
  input[type="text"],
  input[type="password"],
  select {
    width: 138px;
  }
}

label {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
}

textarea {
  display: block;
  overflow: auto;
  resize: vertical;
  /*@todo: check on this style*/
  border-radius: 0px;
}

input[type="text"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  background: #ffffff;
  color: #221f1f;
}

input[type="submit"] {
  padding: 7px 10px;
  float: left;
  background: #000;
  color: #f0cc01;
  border: none;
  border-radius: 0px;
  font-family: 'ITCAvantGardeStd-Bk', Arial, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.333333333;
  /* 16px -- Firefox defaults to this for submit buttons, and it can't be changed */
  text-transform: uppercase;
}

/*
Table styles
We are going to set some base styles for ALL tables
*/
table {
  width: 100%;
}

th {
  padding: 10px;
}

td {
  padding: 10px;
  text-align: center;
  border: 1px solid #aaaaaa;
}

td li {
  text-align: left;
}

td h3 {
  margin-bottom: 0;
}

td:first-of-type {
  /*Does not work with IE8 */
  text-align: left;
}

tr:nth-of-type(odd) {
  background-color: #f2f2f2;
}

tr:first-of-type {
  background-color: #c8c8c8;
}

/* Lists */
.list-horizontal li {
  display: inline-block;
  float: left;
}

.list-no-padding {
  padding: 0;
  -webkit-padding-start: 0;
  -moz-padding-start: 0;
  -o-padding-start: 0;
  -ms-padding-start: 0;
}

/* Container sections */
.flex-section {
  max-width: 1100px;
  display: block;
  margin: 0 auto;
  clear: both;
  position: relative;
  width: 90%;
}

.page-template-tpl-portfolio-php .flex-section,
.single-portfolio .flex-section,
.home .flex-section,
#footer .flex-section {
  /* Liquid div to keep things centered but also expand on home / portfolio / portfolio-single */
  max-width: 1660px;
  width: 90%;
  display: block;
  margin: 0 auto;
  clear: both;
  position: relative;
}

@media (max-width: 767px) {
  .page-template-tpl-portfolio-php .flex-section,
  .single-portfolio .flex-section,
  .home .flex-section,
  #footer .flex-section {
    width: 100%;
    padding: 0 5%;
  }
}

.home .flex-section {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 767px) {
  .home .flex-section {
    padding: 0;
  }
}

.page-template-tpl-portfolio-php .flex-section {
  max-width: 1440px;
}

.page-template-tpl-portfolio-php #main {
  background-color: #fff;
}

.flex-header {
  max-width: 1100px;
  margin: 0 auto;
  width: 90%;
}

@media (max-width: 768px) {
  .flex-header {
    width: 100%;
    padding: 0 5%;
  }
}

.home-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  grid-auto-rows: 200px;
}

@media (max-width: 800px) {
  .home-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .home-grid {
    display: block;
  }
}

.home-grid-item {
  border-radius: 5px;
  position: relative;
}

.home-grid-item:hover .post-excerpt {
  opacity: 0.65;
}

.home-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-grid-item.column-1 {
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

.home-grid-item.column-2 {
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

.home-grid-item.column-3 {
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
}

.home-grid-item.column-3 {
  -ms-grid-column-span: 4;
  grid-column-end: span 4;
}

.home-grid-item.row-1 {
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

.home-grid-item.row-2 {
  -ms-grid-row-span: 2;
  grid-row-end: span 2;
}

.home-grid-item .post-excerpt {
  background-color: #000;
  padding: 20px 16px;
  position: absolute;
  width: 100%;
  bottom: 0;
  opacity: 0;
  border: 1px solid #DDD;
  border-top: 0;
  transition: opacity 0.25s linear;
}

.home-grid-item .post-excerpt h3 a {
  color: #f0cc01;
}

.home-grid-item .post-excerpt p {
  margin-bottom: 0;
  color: #FFF;
}

.page-section {
  /* Center page content */
  clear: both;
  margin: 0 auto;
  overflow: hidden;
  max-width: 1100px;
  padding: 92px 0 0;
  position: relative;
  width: 90%;
}

@media (max-width: 960px) {
  .page-section {
    padding: 50px 0 0;
  }
}

@media (max-width: 600px) {
  .page-section {
    padding: 14px 0 0;
  }
}

.less-padding {
  /* Class for page-sections on pages with breadcrumbs */
  padding: 50px 0 0 0;
}

@media (max-width: 768px) {
  .less-padding {
    padding: 25px 0 0 0;
  }
}

@media (max-width: 767px) {
  .less-padding {
    padding: 10px 0 0 0;
  }
}

.page-template-tpl-site-guide-php .page-section {
  padding: 150px 0 0 0;
}

/* Clearfix */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

/*Contains middle section of website*/
#main {
  width: 100%;
  min-height: 500px;
  padding: 0 0 50px;
  clear: both;
}

@media (min-width: 768px) {
  #main {
    margin: 73px auto 0;
  }
}

.page-template-default #main {
  padding: 0 0 20px;
}

.left {
  float: left;
}

.right {
  float: right;
}

/* Images */
img {
  margin: 0;
  margin: 0;
}

.attachment img {
  max-width: 900px;
  /* @set-me */
}

/* Text meant only for screen readers */
.skip-link {
  position: absolute;
  left: -9000px;
}

.menu {
  list-style: none;
}

.menu li {
  float: left;
}

.menu li a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
}

/* Page sections
-------------------------------------------------------------- */
/* Header and Nav */
#header {
  width: 100%;
  background: #f0cc01;
  position: relative;
  padding: 10px 0 5px;
  height: 73px;
}

@media (min-width: 768px) {
  #header {
    position: fixed;
    top: 0;
    z-index: 99;
  }
}

#header .flex-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.inner-head {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (max-width: 767px) {
  .inner-head.active {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 73px;
    z-index: 3;
    background: #f0cc01;
    border-top: 2px solid #1B1B1F;
  }
}

@media (max-width: 768px) {
  .inner-head {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .inner-head {
    display: none;
    padding: 20px 5%;
  }
}

.social {
  display: inline-block;
}

@media (max-width: 600px) {
  .social {
    display: block;
  }
}

.social form {
  float: left;
}

@media (max-width: 600px) {
  .social form {
    float: none;
    width: 100%;
  }
}

.mobile-toggle {
  display: none;
}

@media (max-width: 767px) {
  .mobile-toggle {
    display: block;
    width: 28px;
    margin-left: auto;
  }
}

.hamburger-container {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .hamburger-container {
    display: none;
  }
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.social input {
  margin: 0 10px 0 0;
  border: none;
}

.social ul {
  float: right;
  margin: 0 0 0 30px;
  display: inline-block;
}

@media (max-width: 960px) {
  .social ul {
    margin-left: 10px;
  }
}

@media (max-width: 640px) {
  .social ul {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .social ul {
    float: none;
    width: 100%;
    margin-top: 8px;
  }
}

.social li {
  margin: 0;
}

.social li a {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 10px 0 0;
  background-repeat: no-repeat;
  background-size: 32px 32px;
}

.social li:last-child a {
  margin: 0;
}

/* Menu */
.home_page_nav {
  display: none;
}

@media screen and (max-width: 600px) {
  .home_page_nav {
    display: block;
  }
}

.home_page_nav {
  padding: 0;
  width: 100%;
}

.home_page_nav ul,
.nav ul {
  display: inline-block;
  list-style: none;
  margin: 0 -20px 0 0;
  padding: 22px 0;
  text-align: left;
}

@media (max-width: 1020px) {
  .home_page_nav ul,
  .nav ul {
    padding: 10px 0;
  }
}

@media (max-width: 960px) {
  .home_page_nav ul,
  .nav ul {
    padding: 0;
    float: none;
    margin: 0 -10px 0 0;
  }
}

@media (max-width: 767px) {
  .home_page_nav ul,
  .nav ul {
    margin: 0;
    display: block;
    text-align: justify;
    font-size: 0.1px;
  }
  .home_page_nav ul:after,
  .nav ul:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .home_page_nav ul,
  .nav ul {
    text-align: center;
  }
}

@media (min-width: 768px) {
  nav.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media (min-width: 768px) and (max-width: 810px) {
  nav.nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (min-width: 767px) {
  nav.nav .menu-main-navigation-container {
    margin-right: 15px;
  }
}

@media (min-width: 768px) and (max-width: 810px) {
  nav.nav .menu-main-navigation-container {
    margin-right: 0;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

nav.nav #menu-main-navigation {
  display: block;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) and (max-width: 810px) {
  nav.nav #menu-main-navigation {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

nav.nav #menu-main-navigation a {
  font-family: 'ITCAvantGardeStd-Demi';
}

nav.nav .social-links {
  padding: 0;
  margin: 0;
}

nav.nav .social-links li {
  padding: 0;
  float: none;
  display: inline-block;
}

@media (max-width: 767px) {
  nav.nav .social-links li {
    background: none;
    border: 0;
    margin: 0 2.5px;
  }
}

nav.nav .social-links svg {
  height: 17px;
  width: 17px;
}

nav.nav .social-links a {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #000;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: background-color 0.25s ease-in-out;
}

nav.nav .social-links a svg path {
  fill: #FFF !important;
  transition: fill 0.25s ease-in-out;
}

nav.nav .social-links a:hover {
  background-color: #FFF;
}

nav.nav .social-links a:hover svg path {
  fill: #000 !important;
}

.home_page_nav li,
.nav li {
  float: left;
  padding: 10px;
  margin: 0;
  position: relative;
  box-sizing: content-box;
}

@media (max-width: 1040px) {
  .home_page_nav li,
  .nav li {
    padding: 8px;
  }
}

@media (max-width: 767px) {
  .home_page_nav li,
  .nav li {
    padding: 4px;
  }
}

@media (max-width: 767px) {
  .home_page_nav ul > li,
  .nav ul > li.menu-item {
    display: block;
    float: none;
    margin-right: 0;
    margin-bottom: 4px;
    text-align: center;
  }
  .home_page_nav ul > li.current-menu-item,
  .nav ul > li.menu-item.current-menu-item {
    border: 0;
  }
  .home_page_nav ul > li.current-menu-item a,
  .nav ul > li.menu-item.current-menu-item a {
    border-bottom: 1px solid #000;
  }
  .home_page_nav ul > li a,
  .nav ul > li.menu-item a {
    color: #000;
    display: inline;
  }
}

.home_page_nav ul li a,
.nav ul:not(.social-links) li a {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: normal;
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}

@media (max-width: 960px) {
  .home_page_nav ul li a,
  .nav ul:not(.social-links) li a {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .home_page_nav ul li a,
  .nav ul:not(.social-links) li a {
    font-size: 1.1rem;
    display: inline;
    font-size: 1.3rem;
    padding: 4px 0 2px;
  }
}

.home_page_nav ul li a:hover,
.home_page_nav ul li a:focus,
.home_page_nav ul li.current_page_parent > a,
.home_page_nav ul li.current-page-ancestor > a,
.home_page_nav ul li.current_page_item > a,
.home_page_nav ul li.current-menu-ancestor > a,
.home_page_nav ul li.current-menu-item > a,
.home_page_nav ul li.current-menu-parent > a,
.nav ul li a:hover,
.nav ul li a:focus,
.nav ul li.current_page_parent > a,
.nav ul li.current-page-ancestor > a,
.nav ul li.current_page_item > a,
.nav ul li.current-menu-ancestor > a,
.nav ul li.current-menu-item > a,
.nav ul li.current-menu-parent > a {
  text-decoration: none;
  border-bottom: 1px solid #000;
}

@media (max-width: 767px) {
  .home_page_nav ul li a:hover,
  .home_page_nav ul li a:focus,
  .home_page_nav ul li.current_page_parent > a,
  .home_page_nav ul li.current-page-ancestor > a,
  .home_page_nav ul li.current_page_item > a,
  .home_page_nav ul li.current-menu-ancestor > a,
  .home_page_nav ul li.current-menu-item > a,
  .home_page_nav ul li.current-menu-parent > a,
  .nav ul li a:hover,
  .nav ul li a:focus,
  .nav ul li.current_page_parent > a,
  .nav ul li.current-page-ancestor > a,
  .nav ul li.current_page_item > a,
  .nav ul li.current-menu-ancestor > a,
  .nav ul li.current-menu-item > a,
  .nav ul li.current-menu-parent > a {
    border-bottom-color: transparent;
    color: #000;
  }
}

@media (max-width: 767px) {
  .home_page_nav ul li.current_page_parent,
  .home_page_nav ul li.current-menu-item,
  .nav ul li.current_page_parent,
  .nav ul li.current-menu-item {
    background: transparent;
    border: 1px solid #000;
  }
}

.home_page_nav ul li ul,
.nav ul li ul {
  display: none;
  width: 100%;
  padding: 8px 0;
  left: 0;
  position: absolute;
  z-index: 99;
  float: right;
}

.home_page_nav ul li:hover > ul,
.nav ul li:hover > ul {
  display: block;
}

@media (max-width: 768px) {
  .home_page_nav ul li:hover > ul,
  .nav ul li:hover > ul {
    display: none;
  }
}

.home_page_nav ul li:hover,
.nav ul li:hover {
  background: #000;
}

@media (max-width: 767px) {
  .home_page_nav ul li:hover,
  .nav ul li:hover {
    background: none;
  }
}

.nav .social-links li a:hover {
  border-bottom: 0;
}

.nav .social-links li:hover {
  background: none;
}

.home_page_nav ul li:hover > a,
.nav ul li:hover > a {
  color: #f0cc01;
}

@media (max-width: 767px) {
  .home_page_nav ul li:hover > a,
  .nav ul li:hover > a {
    color: #000;
  }
}

.home_page_nav ul li ul li,
.nav ul li ul li {
  background: #000;
  width: 100%;
}

.home_page_nav ul li ul li a,
.nav ul li ul li a {
  color: #f0cc01;
}

.home_page_nav ul li ul li a:hover,
.nav ul li ul li a:hover {
  text-decoration: underline;
}

/* Searchform */
#searchform {
  height: 36px;
  overflow: hidden;
  width: 290px;
  float: right;
}

.entry-content #searchform {
  float: left;
}

#searchform label {
  display: none;
}

#searchform input[type="text"] {
  margin: 4px 2px 0;
  padding: 6px;
  width: 180px;
}

#searchform div.submit {
  float: right;
  margin: 4px 2px 0 2px;
  padding: 0 5px;
  clear: none;
}

#searchform input[type="submit"] {
  padding: 10px;
  float: left;
}

.page-template-tpl-contact .page-section {
  padding-top: 30px;
}

.page-template-tpl-contact .social-links-contact {
  list-style: none;
  padding-left: 0;
}

.page-template-tpl-contact .social-links-contact li {
  display: inline-block;
}

.page-template-tpl-contact .social-links-contact svg {
  height: 20px;
  width: 20px;
}

.page-template-tpl-contact .social-links-contact a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #000;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: background-color 0.25s ease-in-out;
}

.page-template-tpl-contact .social-links-contact a svg path {
  fill: #FFF !important;
  transition: fill 0.25s ease-in-out;
}

.page-template-tpl-contact .social-links-contact a:hover {
  background-color: #f0cc01;
}

.page-template-tpl-contact .social-links-contact a:hover svg path {
  fill: #000 !important;
}

/*Footer*/
#footer {
  clear: both;
  width: 100%;
  min-height: 238px;
  background: url("../img/footer-bg.png");
  font-size: 12px;
  line-height: 24px;
}

@media (max-width: 768px) {
  #footer {
    padding: 10px 12px;
  }
}

#footer #social-links {
  padding: 0;
  margin: 0;
}

#footer #social-links li {
  padding: 0;
  float: none;
  display: inline-block;
}

@media (max-width: 767px) {
  #footer #social-links li {
    background: none;
    border: 0;
    margin: 0 2.5px;
  }
}

#footer #social-links svg {
  height: 17px;
  width: 17px;
}

#footer #social-links a {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #f0cc01;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: background-color 0.25s ease-in-out;
}

#footer #social-links a svg path {
  fill: #000 !important;
  transition: fill 0.25s ease-in-out;
}

#footer #social-links a:hover {
  background-color: #FFF;
}

#footer #social-links a:hover svg path {
  fill: #000 !important;
}

#footer .left {
  width: 785px;
}

@media (max-width: 1200px) {
  #footer .left {
    float: none;
    width: 100%;
    width: auto;
  }
}

#footer .right {
  clear: none;
}

@media (max-width: 1200px) {
  #footer .right {
    float: none;
    width: auto;
  }
}

@media (max-width: 960px) {
  #footer .right {
    width: 100%;
    clear: both;
    padding-top: 18px;
  }
}

#footer .flex-section {
  padding: 30px 0;
}

@media (max-width: 768px) {
  #footer .flex-section {
    padding: 0;
  }
}

#footer a {
  color: #f0cc01;
  text-decoration: none;
}

#footer a[href^="mailto:"] {
  background: none;
  padding: 0;
  color: #fff;
}

#footer p {
  margin: 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: left;
  color: #fff;
}

@media (max-width: 768px) {
  #footer p {
    font-size: 1rem;
  }
}

#footer ul {
  width: 100%;
  clear: both;
  margin: 0;
  padding-left: 0;
  text-align: left;
  list-style: none;
}

#footer li {
  display: inline;
  padding: 0 20px 0 0;
}

#footer .menu li {
  float: left;
}

#footer .menu li a {
  margin: 0;
  font-size: 16px;
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  #footer .menu li a {
    font-size: 1rem;
  }
}

#footer .menu li ul {
  display: none;
}

#footer a:hover,
#footer a:focus,
#footer ul li a:hover,
#footer ul li a:focus,
#footer ul li.current_page_parent > a,
#footer ul li.current-page-ancestor > a,
#footer ul li.current_page_item > a,
#footer ul li.current-menu-ancestor > a,
#footer ul li.current-menu-item > a,
#footer ul li.current-menu-parent > a {
  text-decoration: underline;
  color: #fff;
}

.footer-info {
  width: 100%;
  padding: 20px 0 0;
  float: left;
}

.footer-info img {
  float: left;
  margin: 0 20px 0 0;
}

@media (max-width: 960px) {
  .footer-info img {
    width: 18%;
    max-width: 102px;
    margin: 0;
  }
}

.footer-info-contact {
  display: block;
  float: left;
  width: auto;
}

@media (max-width: 960px) {
  .footer-info-contact {
    width: 80%;
    float: right;
  }
}

.footer-info-contact .footer-copyright {
  padding: 20px 0 0;
}

#footer .social-links {
  padding: 24px 0;
}

@media (max-width: 960px) {
  #footer .social-links {
    padding: 12px 0 0;
  }
}

#footer .social li {
  padding: 0;
}

#footer label {
  color: #fff;
  text-transform: uppercase;
}

#footer .social form {
  float: none;
}

#footer .social input {
  padding: 8px 10px;
}

#footer .social input[type="submit"] {
  padding: 9px;
  margin: 0;
  background-color: #f0cc01;
  color: #000;
}

#footer .social p {
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

#footer .social a {
  width: 31px;
  margin: 0 10px 0 0;
  background-repeat: no-repeat;
  background-size: 31px 31px;
}

#footer .admin {
  padding: 20px 0;
  text-align: right;
  clear: both;
}

.noscript-warning {
  background-color: #F0CC01;
  border-bottom: 2px solid black;
  color: #000000;
  font-family: sans-serif;
  font-size: 120%;
  font-weight: bold;
  left: 0;
  padding: 5px 0;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 101;
}

/* =Modules
We currently think of this in terms of page templates, but we are striving to think
of these in terms of reusable page elements
-------------------------------------------------------------- */
.big-text {
  font-size: 30px;
  font-size: 3.0rem;
}

.small-text {
  font-size: 10px;
  font-size: 1rem;
}

/**** Sliders ***/
.full-width img {
  width: 100%;
}

.single-portfolio div.flex-viewport {
  max-height: none;
}

.flex-viewport {
  max-height: 650px;
  overflow: hidden;
}

.page-template-default .flex-viewport {
  max-height: none;
}

.page-template-default .page-section {
  padding-top: 50px;
}

.home-slider {
  position: relative;
}

@media (max-width: 600px) {
  .page-template-tpl-portfolio-php .home-slider {
    display: none;
  }
}

.page-template-default .slider .slide-meta {
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 2;
}

.page-template-default .slider .slide-meta-title, .page-template-default .slider .slide-meta-tagline {
  color: #FFF;
  font-weight: bold;
}

.page-template-default .slider .slide-meta-title {
  font-size: 5.5em;
}

@media (max-width: 800px) {
  .page-template-default .slider .slide-meta-title {
    font-size: 4em;
    margin-bottom: 25px;
  }
}

@media (max-width: 640px) {
  .page-template-default .slider .slide-meta-title {
    font-size: 3em;
  }
}

.page-template-default .slider .slide-meta-tagline {
  font-size: 3em;
  width: 100%;
  max-width: 700px;
}

@media (max-width: 800px) {
  .page-template-default .slider .slide-meta-tagline {
    font-size: 2.5em;
  }
}

@media (max-width: 640px) {
  .page-template-default .slider .slide-meta-tagline {
    font-size: 1.5em;
  }
}

.slide {
  position: relative;
}

@media (max-width: 767px) {
  .slide {
    max-height: 400px;
  }
}

.slide img {
  display: block;
}

.page-slider {
  position: relative;
}

.page-slider .slide {
  height: 100vh;
  min-height: 500px;
  padding-top: 50px;
}

@media (max-width: 640px) {
  .page-slider .slide {
    max-height: 350px;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .page-slider .slide {
    padding-top: 30px;
  }
}

.page-slider .slide .flex-header {
  height: 100%;
  position: relative;
}

.slide-caption {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 104px;
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .slide-caption {
    height: auto;
  }
}

@media (max-width: 600px) {
  .slide-caption {
    height: 90px;
    background: black;
    padding: 8px 0;
  }
}

.caption-container {
  max-width: 1660px;
  width: 90%;
  display: block;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 600px) {
  .caption-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.caption-details {
  position: absolute;
  right: 0;
  top: 10px;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .caption-details {
    position: relative;
    top: auto;
  }
}

.slide-caption h1, .slide-caption h2 {
  color: #fff;
  line-height: .8;
}

@media (max-width: 768px) {
  .slide-caption h1, .slide-caption h2 {
    line-height: 1;
  }
}

.slide-caption h1 {
  font-size: 3.6rem;
}

@media (max-width: 768px) {
  .slide-caption h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 600px) {
  .slide-caption h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .slide-caption h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .slide-caption h2 {
    font-size: 1.3rem;
    margin-bottom: 0;
  }
}

.flex-direction-nav {
  position: absolute;
  width: 100%;
  top: 45%;
}

@media (max-width: 768px) {
  .flex-direction-nav {
    top: 26%;
  }
}

.sub-slider .flex-direction-nav {
  top: 50%;
  margin-top: -18px;
}

.flex-direction-nav a {
  opacity: 1;
  width: 20px;
  height: 34px;
  position: absolute;
  display: block;
  text-indent: -99999px;
}

@media (max-width: 768px) {
  .flex-direction-nav a {
    width: 20px;
    height: 34px;
  }
}

.flex-direction-nav .flex-prev {
  background-image: url("../img/nav-previous.png");
  background-size: 20px 34px;
  background-repeat: no-repeat;
  left: 0px;
  top: 0;
}

@media (max-width: 768px) {
  .flex-direction-nav .flex-prev {
    background-size: 20px 34px;
  }
}

@media (max-width: 600px) {
  .flex-direction-nav .flex-prev {
    left: 5%;
  }
}

.flex-direction-nav .flex-next {
  background-image: url("../img/nav-next.png");
  background-repeat: no-repeat;
  background-size: 20px 34px;
  right: 0px;
  top: 0;
}

@media (max-width: 768px) {
  .flex-direction-nav .flex-next {
    background-size: 20px 34px;
  }
}

@media (max-width: 600px) {
  .flex-direction-nav .flex-next {
    right: 5%;
  }
}

.portfolio-slider {
  position: relative;
}

.portfolio-slider .flex-direction-nav,
.page-slider .flex-direction-nav {
  top: 40px;
  position: absolute;
  width: 100%;
  margin: 0 auto;
}

.portfolio-slider .flex-direction-nav a,
.page-slider .flex-direction-nav a {
  width: 18px;
  height: 34px;
}

.portfolio-slider .flex-direction-nav .flex-prev,
.page-slider .flex-direction-nav .flex-prev {
  background: url("../img/arrow-previous.png");
  left: -28px;
}

.portfolio-slider .flex-direction-nav .flex-next,
.page-slider .flex-direction-nav .flex-next {
  background: url("../img/arrow-next.png");
  right: -28px;
}

.portfolio-slider .slide img {
  object-fit: cover;
  aspect-ratio: 200/119;
  height: auto;
  max-width: 100%;
}

.carousel, .carousel-page {
  height: 121px;
  margin: 20px auto 0;
  text-align: center;
  max-width: 1140px;
  width: 90%;
  position: relative;
}

@media (max-width: 1020px) {
  .carousel, .carousel-page {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .carousel, .carousel-page {
    display: block;
  }
}

@media (max-width: 766px) {
  .carousel, .carousel-page {
    display: none;
  }
}

@media (min-width: 768px) {
  .portfolio-template-default #main {
    margin-top: 49px;
  }
}

.page-template-default .page-section .entry-content {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .page-template-default .page-section .entry-content {
    width: 95%;
    padding-top: 30px;
  }
}

.page-template-default .page-section .entry-content p {
  font-size: 1.6rem;
}

.page-template-default .slider-bullets {
  position: absolute;
  top: -110px;
  right: 0;
}

.page-template-default .mobile-bullets {
  top: 275px;
  width: 100%;
  text-align: center;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .page-template-default .mobile-bullets {
    display: none;
  }
}

@media (max-width: 359px) {
  .page-template-default .mobile-bullets {
    width: 90%;
  }
}

.page-template-default .mobile-bullets ul {
  display: inline-block;
}

.portfolio-template-default .slider-bullet,
.page-template-default .slider-bullet {
  width: 20px;
  height: 20px;
  margin: 0 7px 0 0;
}

@media (max-width: 640px) {
  .portfolio-template-default .slider-bullet,
  .page-template-default .slider-bullet {
    height: 15px;
    width: 15px;
  }
}

.carousel .slides li,
.carousel-page .slides li {
  height: 121px;
  margin: 0 12px 0 0;
  cursor: pointer;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.carousel.slides-centered .slides,
.carousel-page.slides-centered .slides {
  text-align: center;
}

@media (min-width: 1061px) {
  .carousel.slides-centered .slides,
  .carousel-page.slides-centered .slides {
    width: 100% !important;
  }
}

.carousel.slides-centered li,
.carousel-page.slides-centered li {
  display: inline-block !important;
  white-space: nowrap;
}

@media (min-width: 1061px) {
  .carousel.slides-centered li,
  .carousel-page.slides-centered li {
    float: none !important;
  }
}

.carousel .slides li:last-child,
.carousel-page .slides li:last-child {
  margin: 0;
}

.carousel img,
.carousel-page img {
  width: 175px;
  height: 121px;
}

.carousel .flex-active-slide img,
.carousel-page .flex-active-slide img {
  border: 4px solid #f0cc01;
  box-sizing: border-box;
}

.sub-slider {
  position: relative;
  margin: 0 0 25px 0;
}

.sub-slider li img {
  width: 100%;
  display: block;
}

@media (min-width: 1450px) {
  /* Floating bullets to the right on wide monitors */
  .portfolio-details .slider-bullets {
    float: right;
    margin: 15px 0 0 0;
    clear: none;
  }
}

.portfolio-template-default .slider-bullets ul {
  padding: 7px 0 0 0;
  height: auto;
  margin: auto;
}

@media (max-width: 767px) {
  .portfolio-template-default .slider-bullets ul {
    margin: 5px 0;
    padding: 0;
  }
}

.slider-bullets li {
  display: inline-block;
}

.slider-bullet {
  display: block;
  width: 11px;
  height: 11px;
  margin: 0 10px 0 0;
  border-radius: 11px;
  background: #6e6e6e;
  cursor: pointer;
}

.slider-bullets li:last-child a {
  margin: 0;
}

.active-bullet {
  background: #f0cc01;
}

.header-logo svg {
  height: 50px;
}

/* Category List */
.home-blog__mobile_title {
  display: none;
  font-size: 22px;
  font-size: 2.2rem;
  margin-top: 20px;
}

@media screen and (max-width: 600px) {
  .home-blog__mobile_title {
    display: block;
  }
}

.category-list {
  width: 100%;
  clear: both;
  padding: 20px 0 25px 0;
}

@media (max-width: 768px) {
  .category-list {
    padding: 10px 0 10px 0;
  }
}

@media (max-width: 767px) {
  .category-list {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.category-list ul {
  margin: 0;
}

.category-list li {
  border-right: 1px solid #bbbbbb;
  color: #6e6e6e;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1.6rem;
}

.category-list li:last-of-type {
  border-right: none;
}

@media (max-width: 960px) {
  .category-list li {
    margin-bottom: 8px;
  }
}

@media (max-width: 768px) {
  .category-list li {
    margin-bottom: 6px;
  }
}

.category-list li a {
  padding: 10px;
  margin: 0 5px;
  color: #000;
  text-transform: uppercase;
  font-size: 1.6rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .category-list li a {
    font-size: 1.3rem;
    padding: 6px 5px;
  }
}

.cat-title {
  text-transform: uppercase;
  float: left;
  padding-left: 10px;
}

.category-list li a {
  color: #f0cc01;
  cursor: pointer;
}

.home .category-list li a {
  color: #000;
}

.category-list li a:hover,
.category-list li a:focus,
.category-list li.current-cat a {
  background: none;
  text-decoration: underline;
}

.home .category-list li a:hover,
.home .category-list li a:focus,
.home .category-list li.current-cat > a {
  background-color: #f0cc01;
  text-decoration: none;
}

.home .category-list li:first-child {
  margin: 0 0 0 -15px;
}

@media (max-width: 960px) {
  .home .category-list li:first-child {
    margin: 0;
  }
}

.single .cat-item {
  border: none;
}

.single .cat-item a {
  padding: 10px 5px;
}

/* Home Blog Grid */
#grid-container {
  min-height: 500px;
  z-index: 99999;
}

.galcolumn {
  width: 280px;
  display: inline-block;
  vertical-align: top;
}

.galcolumn:nth-last-child(2) {
  width: 260px;
}

.grid {
  text-align: justify;
  font-size: 0.1px;
}

.grid:after {
  content: '';
  display: inline-block;
  width: 100%;
}

@media (max-width: 768px) {
  .grid {
    max-width: 555px;
    margin: 0 auto;
  }
}

.grid .post {
  width: 260px;
  padding: 0 0 20px 0;
  margin-bottom: 2%;
  display: inline-block;
  vertical-align: top;
  text-align: left;
}

@media (max-width: 586px) {
  .grid .post {
    margin: 0 auto;
    padding-bottom: 30px;
    display: block;
  }
}

.placeholder {
  padding: 0;
  width: 260px;
  display: inline-block;
}

.grid .news-post {
  display: none;
}

.post-thumbnail img {
  border-bottom: 6px solid #f0cc01;
  display: block;
}

.post-excerpt {
  padding: 16px;
  background: #fff;
}

.post-excerpt h3 {
  font-size: 14px;
  font-size: 1.6rem;
}

.post-excerpt h3 a {
  color: #000;
  font-family: 'ITCAvantGardeStd-Demi';
}

/* Video pop ups */
.pop {
  cursor: pointer;
  position: relative;
}

.pop:before {
  content: " ";
  display: block;
  position: absolute;
  width: 91px;
  height: 91px;
  background: url("../img/video-overlay.png") no-repeat;
  top: 40px;
  left: 85px;
  z-index: 999;
}

.pop-up {
  display: none;
  position: fixed;
  z-index: 999;
  top: 20%;
  left: 20%;
  width: 60%;
}

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
}

/* Portfolio Gallery View */
.portfolio {
  padding: 30px 0;
}

.portfolio-categories {
  margin-bottom: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .portfolio-categories {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .portfolio-categories {
    display: block;
  }
}

.portfolio-categories h2 {
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: 'ITCAvantGardeStd-Demi';
}

@media (max-width: 1024px) {
  .portfolio-categories h2 {
    width: 100%;
    margin-bottom: 30px;
  }
}

.portfolio-categories h3 {
  padding: 0 10px;
  text-transform: uppercase;
  text-align: center;
  width: 250px;
  margin-bottom: 0;
  font-family: 'ITCAvantGardeStd-XLt';
}

@media (max-width: 1105px) {
  .portfolio-categories h3 {
    width: 220px;
  }
}

@media (max-width: 1024px) {
  .portfolio-categories h3 {
    width: auto;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .portfolio-categories h3 {
    text-align: left;
    margin-bottom: 20px;
  }
}

.portfolio-category {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  padding: 0 10px;
  display: -ms-flexbox;
  display: flex;
  max-width: 220px;
  -ms-flex-align: baseline;
  align-items: baseline;
}

@media (max-width: 1024px) {
  .portfolio-category {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .portfolio-category {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .portfolio-category:last-of-type {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

.portfolio-categories select {
  padding: 0 0 0 20px;
  width: 100%;
  border: none;
  font-size: 16px;
  background: url("../img/icon-down.png") no-repeat;
  background-position: 0 3px;
  color: #f0cc01;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  overflow: hidden;
  white-space: nowrap;
  /* hackie fix for Mozilla to remove dropdown arrow */
  text-indent: 0.01px;
  text-overflow: "";
}

/* another hackie fix for IE to remove dropdown arrow */
.portfolio-categories select::-ms-expand {
  display: none;
}

.portfolio-categories label {
  min-width: 77px;
  text-transform: uppercase;
  text-align: right;
  font-size: 16px;
  font-family: 'ITCAvantGardeStd-XLt';
}

@media (max-width: 767px) {
  .portfolio-categories label {
    min-width: 126px !important;
    margin-bottom: 10px;
  }
}

.portfolio-categories label.long {
  min-width: 136px;
}

.down {
  color: #000;
}

.portfolio-item h3 {
  margin-bottom: 5px;
  text-align: left;
}

.portfolio-item h3 a {
  color: #f0cc01;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 1.5rem;
}

#portfolio-container .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(290px, 1fr))[auto-fill];
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  grid-gap: 10px;
}

#portfolio-container .grid .grid-item img {
  width: 100%;
  height: 100%;
  border-bottom: 0;
  border-bottom: 5px solid #f0cc01;
}

@supports (object-fit: cover) {
  #portfolio-container .grid .grid-item img {
    object-fit: cover;
    height: 250px;
  }
}

@supports not (object-fit: cover) {
  #portfolio-container .grid .grid-item img {
    height: 100%;
  }
}

.portfolio-item .post-excerpt {
  padding: 15px 30px 0;
}

.portfolio-item .post-excerpt p {
  text-transform: uppercase;
  font-size: 1.6rem;
  font-family: 'ITCAvantGardeStd-XLt';
}

/* Single Portfolio Page */
.single-portfolio .page-section {
  padding: 0;
}

.portfolio-details {
  color: #fff;
  background: #000;
  /* Fallback */
  background: rgba(0, 0, 0, 0.65);
  padding: 20px 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

@media (max-width: 1020px) {
  .portfolio-details {
    padding: 40px 0 10px 0;
  }
}

@media (max-width: 767px) {
  .portfolio-details {
    min-height: none;
    padding: 8px 0;
  }
}

@media (max-width: 600px) {
  .portfolio-details {
    min-height: 120px;
    padding: 18px 0 8px;
  }
}

@media (min-width: 1021px) {
  .portfolio-details {
    top: 24px;
  }
}

.portfolio-details .page-section {
  max-width: 1660px;
  width: 90%;
}

.portfolio-details-container > div {
  float: left;
  margin: 0 45px 0 0;
}

@media (max-width: 767px) {
  .portfolio-details-container > div {
    margin: 0 18px 0 0;
    float: none;
  }
}

.portfolio-details-container > .slider-bullets {
  float: right;
}

@media (max-width: 1160px) {
  .portfolio-details-container > .slider-bullets {
    float: left;
    clear: both;
    margin-top: 20px;
  }
}

.portfolio-details h4 {
  margin: 0;
  font-size: 14px;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #9e9e9e;
}

@media (max-width: 600px) {
  .portfolio-details h4 {
    color: #f0cc01;
    display: inline-block;
    font-size: 1.2rem;
  }
}

.portfolio-details h5 {
  margin: 0;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .portfolio-details h5 {
    font-size: 1.3rem;
    display: inline-block;
  }
}

.portfolio .entry-title {
  font-size: 18px;
  font-size: 1.8rem;
  color: #000;
}

.nav-middle {
  top: 0px;
  width: 100%;
  position: fixed;
  z-index: 999;
}

.nav-middle .nav-previous, .nav-middle .nav-next {
  position: absolute;
  top: 291px;
  height: 50px;
  width: 300px;
  transition: all .3s;
}

.nav-middle .nav-preview-link a {
  display: block;
  width: 46px;
  height: 68px;
  color: transparent;
}

@media (max-width: 767px) {
  .nav-middle .nav-preview-link a {
    width: 23px;
    height: 34px;
  }
}

.nav-middle .nav-previous {
  left: -256px;
}

@media (max-width: 767px) {
  .nav-middle .nav-previous {
    left: -277px;
  }
}

.nav-middle .nav-previous .nav-preview-link {
  background: url("../img/nav-previous.png") no-repeat;
  float: right;
  background-size: 46px 68px;
}

@media (max-width: 767px) {
  .nav-middle .nav-previous .nav-preview-link {
    background-size: 23px 34px;
  }
}

.nav-middle .nav-next {
  right: -256px;
}

@media (max-width: 767px) {
  .nav-middle .nav-next {
    right: -277px;
  }
}

.nav-middle .nav-next .nav-preview-link {
  background: url("../img/nav-next.png") no-repeat;
  float: left;
  background-size: 46px 68px;
}

@media (max-width: 767px) {
  .nav-middle .nav-next .nav-preview-link {
    background-size: 23px 34px;
  }
}

.nav-preview-thumb {
  float: left;
  width: 155px;
  overflow: hidden;
}

.nav-preview-thumb img {
  width: auto;
  height: 120px;
}

.nav-next .nav-preview-thumb {
  float: right;
}

.nav-preview-title a {
  background: #000;
  display: block;
  color: #fff;
  width: 93px;
  height: 112px;
  padding: 4px;
  float: left;
  text-align: right;
  font-size: 14px;
  font-size: 1.4rem;
}

.nav-preview-title a:hover {
  text-decoration: none;
}

.nav-next .nav-preview-title a {
  text-align: left;
}

/* Breadcrumbs */
.breadcrumbs {
  margin: 0 auto;
  padding: 20px 0;
  text-align: right;
  text-transform: uppercase;
}

.breadcrumbs a, .breadcrumbs span {
  font-size: 14px;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.breadcrumbs span {
  color: #6e6e6e;
  display: inline-block;
  padding: 0 4px;
}

.breadcrumbs .breadcrumbs-current {
  display: inline-block;
  border-bottom: 2px solid #1b1b1d;
  padding: 0;
  color: #1b1b1d;
}

/* Team page */
div.team {
  font-size: 0.1px;
  text-align: justify;
}

div.team:after {
  content: '';
  display: inline-block;
  width: 100%;
}

@media (max-width: 588px) {
  div.team {
    text-align: center;
  }
}

.team .bio {
  display: inline-block;
  vertical-align: top;
  width: 260px;
  margin-bottom: 3%;
  text-align: left;
}

.team .bio-headshot {
  width: 256px;
  height: 330px;
  overflow: hidden;
  border-bottom: 5px solid #f0cc01;
}

.team .bio-info {
  padding: 8px 0;
}

@media (max-width: 450px) {
  .team .bio-info {
    text-align: center;
  }
}

.bio-info h2 a, .bio-info h2 {
  color: #000;
}

.single-bio #content {
  width: 100%;
}

.single-bio .bio-headshot {
  width: 29.0909091%;
  float: left;
}

@media (max-width: 450px) {
  .single-bio .bio-headshot {
    width: 100%;
  }
}

.single-bio .bio-headshot img {
  width: 100%;
  display: block;
  border-bottom: 5px solid #f0cc01;
}

@media (max-width: 450px) {
  .single-bio .bio-headshot img {
    width: 50%;
    margin: 0 auto;
  }
}

.bio .entry-title {
  font-size: 48px;
  font-size: 4.8rem;
}

@media (max-width: 450px) {
  .bio .entry-title {
    text-align: center;
    padding-top: 16px;
    font-size: 3rem;
  }
}

.bio h2 {
  font-size: 24px;
  font-size: 3rem;
}

@media (max-width: 450px) {
  .bio h2 {
    font-size: 2.6rem;
  }
}

.bio h3 {
  font-size: 24px;
  font-size: 2.4rem;
  height: 50px;
  text-transform: uppercase;
}

@media (max-width: 450px) {
  .bio h3 {
    text-align: center;
    font-size: 2rem;
  }
}

.bio .entry-content {
  width: 67.2727273%;
  float: right;
}

@media (max-width: 450px) {
  .bio .entry-content {
    width: 100%;
  }
}

.bio-slider {
  padding: 40px 0 0 0;
  position: relative;
}

.bio-slider img {
  width: 100%;
  display: block;
}

.bio-slider .flex-direction-nav {
  top: 50%;
}

.bio .social {
  float: left;
}

.bio .social ul {
  margin: 0;
}

.bio .social a {
  color: #fff;
}

/* Single Post */
body.single {
  background: #fff;
}

.single-post #content {
  width: 740px;
  margin: 20px auto;
}

@media (max-width: 1020px) {
  .single-post #content {
    width: 88%;
  }
}

.nav-below {
  width: 100%;
  clear: both;
  display: block;
}

.meta-nav {
  font-size: 18px;
  font-size: 1.8rem;
  text-transform: uppercase;
}

#entry-meta {
  padding: 15px 0 5px;
  border-bottom: 1px solid #e2ded9;
  font-size: 14px;
  font-size: 1.4rem;
}

#entry-meta > div {
  padding: 10px 0;
}

/* Share buttons */
.share {
  padding: 30px 0;
  width: 740px;
}

/* Standard Sub Page */
.page .entry-content {
  padding: 0;
  margin: 0;
  height: auto;
  width: 65%;
}

@media (max-width: 768px) {
  .page .entry-content {
    width: 90%;
  }
}

.page-template-tpl-fullWidth-php .page .entry-content {
  width: 100%;
}

.page-template-tpl-fullWidth-php .page .entry-content iframe {
  width: 100%;
}

.page .entry-content p {
  position: relative;
}

.content.no-pull {
  margin: 20px auto;
}

.pull-quote {
  float: right;
  width: 54.5454545%;
  margin-right: -35%;
  padding: 20px 0 20px 60px;
  color: #f0cc01;
  font-size: 24px;
  font-size: 2.4rem;
}

@media (max-width: 768px) {
  .pull-quote {
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .pull-quote {
    padding: 10px 0 10px 20px;
  }
}

.page-template-tpl-about .section {
  padding: 2% 0;
}

.page-template-tpl-about .section_title {
  font-size: 5.5em;
  border-bottom: 1px solid #000;
  display: inline-block;
  margin-bottom: 40px;
  color: #000;
  font-family: 'ITCAvantGardeStd-Demi';
}

@media (max-width: 767px) {
  .page-template-tpl-about .section_title {
    font-size: 3em;
    margin-bottom: 30px;
  }
}

.page-template-tpl-about .section_subhead {
  font-size: 3em;
}

@media (max-width: 767px) {
  .page-template-tpl-about .section_subhead {
    font-size: 2em;
  }
}

.page-template-tpl-about .section_content {
  font-size: 1.6em;
}

.page-template-tpl-about .section_content p {
  font-size: 16px;
}

@media (max-width: 767px) {
  .page-template-tpl-about .section.about {
    padding-top: 2rem;
  }
}

.services .section_content p {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.services .section_content a {
  font-size: 2.5em;
  font-weight: bold;
  margin-right: 15px;
  padding: 0 10px;
  color: #000;
  text-transform: uppercase;
  font-weight: 900;
  transition: background-color 0.2s ease-in-out;
}

.services .section_content a:before {
  content: "/ ";
}

@media (max-width: 800px) {
  .services .section_content a {
    font-size: 1.875em;
  }
}

@media (max-width: 640px) {
  .services .section_content a {
    display: block;
    margin-right: 0;
    padding: 10px 0;
  }
}

.services .section_content a:hover {
  background-color: #f0cc01;
  text-decoration: none;
}

.team-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fill];
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 30px;
}

.team-grid .grid-item img {
  width: 100%;
  border-bottom: 5px solid #f0cc01;
}

@supports (object-fit: cover) {
  .team-grid .grid-item img {
    object-fit: cover;
  }
}

@supports not (object-fit: cover) {
  .team-grid .grid-item img {
    height: 100%;
  }
}

/* News Page */
.blog,
.archive {
  background: #fff;
}

.blog .post,
.archive .post {
  width: 100%;
  padding: 0;
  margin: 20px 0 0 0;
  background: #f7f7f7;
}

@media screen and (max-width: 600px) {
  .blog .post,
  .archive .post {
    margin-top: 30px;
  }
}

.blog .entry-content,
.archive .entry-content {
  padding: 25px 40px;
  width: 63%;
  float: right;
}

@media (max-width: 600px) {
  .blog .entry-content,
  .archive .entry-content {
    width: 100%;
    padding: 14px 30px;
  }
}

.no-thumb .entry-content {
  width: 100%;
  float: none;
}

.entry-title {
  margin: 0;
}

.entry-title,
.blog .entry-title a {
  color: #f0cc01;
  font-size: 30px;
  font-size: 3.0rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .entry-title,
  .blog .entry-title a {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .entry-title,
  .blog .entry-title a {
    font-size: 2.2rem;
  }
}

.single-post .featured-img {
  width: 100%;
  float: none;
}

.single-post .featured-img img {
  max-width: 100%;
  margin: 0;
}

.featured-img {
  width: 36%;
  float: left;
}

.featured-img img {
  display: block;
  margin: 15px 0 15px 15px;
  width: 100%;
  max-width: 400px;
  height: auto;
}

@media (max-width: 600px) {
  .featured-img {
    width: 100%;
    padding: 15px;
  }
  .featured-img img {
    margin: 0 auto;
  }
}

.single .entry-content p {
  font-size: 1.6rem;
  font-weight: 400;
}

.bio-template-default.single .entry-content p {
  font-weight: 400;
}

.single .featured-img {
  margin: 0 auto;
}

.blog .entry-date,
.archive .entry-date {
  display: block;
  padding: 0 0 24px 0;
  font-size: 18px;
  font-size: 1.8rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .blog .entry-date,
  .archive .entry-date {
    padding: 0 0 8px 0;
    font-size: 1.4rem;
  }
}

/* Comments */
#comments-title {
  padding: 24px 0;
  margin: 0;
}

div[id*="comment-"] {
  margin: 0 0 20px 0;
}

.children div[id*="comment-"] {
  margin: 0;
}

.comment-body {
  margin: 0 0 0 50px;
}

.reply {
  padding: 0;
}

.commentlist .children {
  padding: 0 0 0 30px;
}

.commentlist .children li {
  padding: 20px;
  margin: 0 0 20px 0;
  background: #f9f8f8;
}

.commentlist .children .avatar {
  top: 20px;
  left: 20px;
}

.comment-author, cite {
  font-style: normal;
}

cite {
  text-transform: uppercase;
}

#respond input[type="text"], #respond textarea {
  background: #f9f8f8;
  border: none;
}

#respond input[type="text"] {
  width: 225px;
  padding: 7px 10px;
  line-height: 16px;
}

#respond p {
  margin: 0 0 40px 0;
}

#respond textarea {
  width: 470px;
  height: 100px;
  padding: 10px;
}

#respond input[type="submit"] {
  margin: 10px 0;
  background: #000;
  color: #f0cc01;
}

/* Contact page */
.fbfld {
  display: none;
}

.contact-form .left {
  width: 390px;
}

.contact-form div {
  margin: 0 0 0px;
}

@media (max-width: 600px) {
  .contact-form div {
    margin: 0 0 25px;
  }
}

.contact-form div.entry-title {
  margin-bottom: 20px;
}

.contact-form label {
  /*Should this style be on all labels*/
  padding-top: 10px;
}

.contact-form input[type="text"] {
  width: 370px;
  text-transform: none;
}

.contact-form select {
  width: 380px;
}

.contact-form textarea {
  height: 80px;
  width: 370px;
  text-transform: none;
}

.contact-form input[type="submit"] {
  margin-top: 10px;
}

.contact-form .comments {
  min-height: 180px;
  /*Push submit button below text area*/
}

.contact-form .button-grey {
  clear: none;
}

.contact-form .left {
  padding-right: 150px;
}

.contact-form .col2 {
  width: 50%;
  padding-left: 100px;
}

@media (max-width: 768px) {
  .contact-form .col2 {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}

.contact-form .social {
  float: none;
}

.contact-form .social ul {
  float: none;
  margin: 20px 0 0 0;
}

@media screen and (max-width: 600px) {
  .contact-content p {
    display: none;
  }
}

.contact-content p {
  font-size: 2rem;
}

@media (max-width: 600px) {
  .contact-content p {
    font-size: 1.4rem;
  }
}

.contact-info {
  padding-top: 10px;
  font-size: 2rem;
}

/* Mailchimp signup */
.ContactFormItems {
  /*@todo: rename class to fit naming conventions*/
  margin-top: 20px;
}

/* =State rules
-------------------------------------------------------------- */
.hidden, .hide {
  display: none;
}

p.error {
  background: #FFEFEF;
  border: 1px solid #d60000;
  color: #d60000;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 1px;
  padding: 9px;
  width: 360px;
}

.error label {
  font-weight: normal;
  color: #d60000;
}

/*# sourceMappingURL=style.css.map */
