@charset "UTF-8";
/**
Import all stylesheets
 */
.row {
  display: flex;
  flex-flow: row wrap;
}

.col {
  flex: 1 auto;
  padding: 1em;
}

.col-2 {
  flex: 1 50%;
}
.col-2:first-child {
  padding: 2em 1em 2em 0;
}
@media only screen and (max-width: 800px) {
  .col-2:first-child {
    padding: 1em 1em 0;
  }
}
.col-2:last-child {
  padding: 2em 0 2em;
}
@media only screen and (max-width: 800px) {
  .col-2:last-child {
    padding: 0em 1em 1em;
  }
}
@media only screen and (max-width: 800px) {
  .col-2 {
    flex: 1 100%;
  }
}

.col-3 {
  flex: 1 33%;
}
.col-3:first-child {
  padding: 2em 1em 2em 0;
}
@media only screen and (max-width: 1023px) {
  .col-3:first-child {
    padding: 1em 1em 0;
  }
}
.col-3:nth-child(2) {
  padding: 2em 1em;
}
.col-3:last-child {
  padding: 2em 0 2em;
}
@media only screen and (max-width: 1023px) {
  .col-3:last-child {
    padding: 0em 1em 1em;
  }
}
@media only screen and (max-width: 1023px) {
  .col-3 {
    flex: 1 100%;
  }
}

/* Fadein Effect
---------------------------------------------------------------------------------------------------- */
.site-container {
  -webkit-animation: fadein 1s;
  -moz-animation: fadein 1s;
  -ms-animation: fadein 1s;
  -o-animation: fadein 1s;
  animation: fadein 1s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Fadeup Effect
---------------------------------------------------------------------------------------------------- */
.js .fadeup-effect {
  opacity: 0;
  overflow: hidden;
  animation-duration: 0.75s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

/* FadeOutup Effect
---------------------------------------------------------------------------------------------------- */
.js .fadeoutup-effect {
  opacity: 1;
  overflow: hidden;
  animation-duration: 0.75s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    transform: translateY(-8px);
    opacity: 0;
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

/* Fadedown Effect
---------------------------------------------------------------------------------------------------- */
.js .fadedown-effect {
  opacity: 0;
  overflow: hidden;
  animation-duration: 0.75s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  transform: translateY(-8px);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

/* Box Sizing
--------------------------------------------- */
html,
input[type=search] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.clearfix:before, .card-wrap:before, .infusion-form .infusion-field:before, .infusion-form .options:before,
.clearfix:after,
.card-wrap:after,
.infusion-form .infusion-field:after,
.infusion-form .options:after {
  content: "";
  display: table;
}

.clearfix:after, .card-wrap:after, .infusion-form .infusion-field:after, .infusion-form .options:after {
  clear: both;
}

.clearfix, .card-wrap, .infusion-form .infusion-field, .infusion-form .options {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */
}

/* Float Clearing
--------------------------------------------- */
.author-box:before,
.clearfix:before,
.card-wrap:before,
.infusion-form .infusion-field:before,
.infusion-form .options:before,
.entry:before,
.entry-content:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.pagination:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.widget:before,
.wrap:before {
  content: " ";
  display: table;
}

.author-box:after,
.clearfix:after,
.card-wrap:after,
.infusion-form .infusion-field:after,
.infusion-form .options:after,
.entry:after,
.entry-content:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.pagination:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.widget:after,
.wrap:after {
  clear: both;
  content: " ";
  display: table;
}

/**
	- Typographical Elements
	- Headings
 */
/* Typographical Elements
--------------------------------------------- */
html {
  font-size: 62.5%;
  /* 10px browser default */
}

/* Chrome fix */
body > div {
  font-size: 1.6rem;
}

body {
  background-color: #fff;
  color: #898989 !important;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

a,
button,
input:focus,
input[type=button],
input[type=reset],
input[type=submit],
textarea:focus,
.button,
.front-page .overlay,
.gallery img,
.site-header {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a {
  color: #0077C8;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #000;
  text-decoration: none;
}

p {
  margin: 0 0 30px;
  padding: 0;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

li:not(.menu-item) {
  list-style-type: disc;
  transform: translateX(30px);
  padding-right: 30px;
}

hr {
  border: 0;
  border-collapse: collapse;
  border-top: 1px solid #eee;
  clear: both;
  margin-bottom: 40px;
}

mark {
  background-color: #f5f5f5;
  color: #000;
}

b,
strong {
  font-weight: 700;
}

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

blockquote {
  margin: 40px;
}

blockquote::before {
  content: "“";
  display: block;
  font-size: 30px;
  font-size: 3rem;
  height: 0;
  left: -20px;
  position: relative;
  top: -10px;
}

/* Headings
--------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0077C8;
  font-family: Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 20px;
}

h1 {
  font-size: 48px;
  font-size: 4.8rem;
}

h2 {
  font-size: 42px;
  font-size: 4.2rem;
}

h3 {
  font-size: 35px;
  font-size: 3.5rem;
}

.comment-respond h3,
.entry-comments h3,
.entry-pings h3 {
  margin-bottom: 10px;
}

h4 {
  font-size: 27px;
  font-size: 2.7rem;
}

.entry-content h4 {
  margin-top: 40px;
}

.landing-page .entry-content h4,
.lead-capture-page .entry-content h4 {
  margin-bottom: 40px;
  margin-top: 60px;
  text-align: center;
}

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

h6 {
  font-size: 20px;
  font-size: 2rem;
}

/*
- Defaults
	- Objects
	- Gallery
	- Screen Reader Text

*/
/* Defaults
---------------------------------------------------------------------------------------------------- */
/* Objects
--------------------------------------------- */
embed,
iframe,
img,
object,
video,
.wp-caption {
  max-width: 100%;
}

img {
  height: auto;
  width: 100%;
}

img.vertical {
  vertical-align: top;
}

figure {
  margin: 0;
}

/* Gallery
--------------------------------------------- */
.gallery {
  overflow: hidden;
}

.gallery-item {
  float: left;
  margin: 0 0 30px;
  text-align: center;
}

.gallery-columns-1 .gallery-item {
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-3 .gallery-item {
  width: 33%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery-columns-5 .gallery-item {
  width: 20%;
}

.gallery-columns-6 .gallery-item {
  width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
  width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
  width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
  clear: left;
}

.gallery img {
  border: 1px solid #eee;
  height: auto;
  padding: 4px;
}

.gallery img:hover,
.gallery img:focus {
  border: 1px solid #999;
}

/* Screen Reader Text
--------------------------------------------- */
.screen-reader-text,
.screen-reader-text span,
.screen-reader-shortcut {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
  word-wrap: normal !important;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.genesis-nav-menu .search input[type=submit]:focus,
.widget_search input[type=submit]:focus {
  clip: auto !important;
  height: auto;
  width: auto;
  display: block;
  font-size: 1em;
  font-weight: bold;
  padding: 15px 23px 14px;
  color: #000;
  background: #fff;
  z-index: 100000;
  /* Above WP toolbar. */
  text-decoration: none;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
}

.more-link {
  position: relative;
}

/**
	- Forms
 */
/* Forms
--------------------------------------------- */
input,
select,
textarea {
  border: 1px solid #95989A;
  border-radius: 0;
  color: #898989;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 20px;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  line-height: 1.5;
  padding: 15px;
  width: 100%;
}

input:focus,
textarea:focus {
  color: #898989;
  outline: none;
}

input[type=email],
input[type=search],
input[type=submit],
input[type=text],
input[type=url],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox],
input[type=image],
input[type=radio] {
  width: auto;
}

::-moz-placeholder {
  color: #000;
  opacity: 1;
}

::-webkit-input-placeholder {
  color: #000;
}

button,
input[type=button],
input[type=reset],
input[type=select],
input[type=submit],
.button {
  background-color: #F07723;
  border: 0;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 700;
  line-height: 1;
  padding: 12px 20px;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  width: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
button a,
input[type=button] a,
input[type=reset] a,
input[type=select] a,
input[type=submit] a,
.button a {
  color: white;
}

.button.large {
  font-size: 12px;
  font-size: 1.2rem;
  padding: 20px 30px;
}

.landing-page .button.large,
.lead-capture-page .button.large {
  margin-top: 40px;
}

button:hover,
input:hover[type=button],
input:hover[type=reset],
input:hover[type=submit],
.button:hover,
button:focus,
input:focus[type=button],
input:focus[type=reset],
input:focus[type=submit],
.button:focus {
  background-color: #000;
  color: #fff;
}

.entry-content .button:hover,
.entry-content .button:focus {
  color: #fff;
}

.button {
  display: inline-block;
}

a.button.small,
button.small,
input[type=button].small,
input[type=reset].small,
input[type=submit].small {
  padding: 8px 16px;
}

.site-container button:disabled,
.site-container button:disabled:hover,
.site-container input:disabled,
.site-container input:disabled:hover,
.site-container input[type=button]:disabled,
.site-container input[type=button]:disabled:hover,
.site-container input[type=reset]:disabled,
.site-container input[type=reset]:disabled:hover,
.site-container input[type=submit]:disabled,
.site-container input[type=submit]:disabled:hover {
  background-color: #f5f5f5;
  border-width: 0;
  color: #666;
  cursor: not-allowed;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button {
  display: none;
}

/** Ninja Forms
 */
.list-select-wrap .nf-element, .listcountry-wrap .nf-element, input[type=select] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: white url("arrow-down.ebf6b4e9.svg") no-repeat 94% 50%;
  background-size: 20px 10px;
  color: #898989 !important;
}
.list-checkbox-wrap .nf-field-element ul li {
  display: inline-block;
}
.list-checkbox-wrap .nf-field-element ul li label {
  float: left;
  padding-right: 10px;
}

/**
Contact Form
 */
.nf-form-wrap {
  padding: 2.5em;
  border: 1px solid #E6E6E6;
}
.nf-form-wrap .field-wrap input[type=button] {
  width: 100%;
  padding: 22px;
}
.nf-form-wrap h4 {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 25px;
  font-size: 2.5rem;
  margin-bottom: 0;
  margin-top: 0.5em;
}
.nf-form-wrap .html-container {
  margin-bottom: 0;
}
.nf-form-wrap .nf-field-label label {
  font-weight: normal;
}

.nf-form-cont .nf-multi-cell .nf-cell {
  padding-right: 30px;
}

/**
Dropdowns
 */
select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  color: #898989 !important;
}

/*********************************************
 * INFUSIONSOFT
 **************************************************/
.infusion-form {
  padding: 2.5em;
  margin-bottom: 2.5em;
  border: 1px solid #E6E6E6;
}
.infusion-form .infusion-submit {
  text-align: right;
}
.infusion-form .infusion-submit.full {
  width: 100%;
}

.infusion-form .clearfix:before, .infusion-form .card-wrap:before, .infusion-form .infusion-field:before, .infusion-form .options:before,
.infusion-form .clearfix:after,
.infusion-form .card-wrap:after,
.infusion-form .infusion-field:after,
.infusion-form .options:after {
  content: "";
  display: table;
}
.infusion-form .clearfix:after, .infusion-form .card-wrap:after, .infusion-form .infusion-field:after, .infusion-form .options:after {
  clear: both;
}
.infusion-form .clearfix, .infusion-form .card-wrap, .infusion-form .infusion-field, .infusion-form .options {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */
}
.infusion-form .col-sm-6, .infusion-form .infusion-submit, .infusion-form .infusion-field {
  width: 50%;
}
.infusion-form .col-sm-12, .infusion-form .infusion-field.full {
  width: 100%;
}
.infusion-form .col-sm-4, .infusion-form .infusion-field.thirds {
  width: 33.3333333333%;
}
.infusion-form .col-sm-4, .infusion-form .infusion-field.thirds, .infusion-form .col-sm-6, .infusion-form .infusion-submit, .infusion-form .infusion-field, .infusion-form .col-sm-12, .infusion-form .infusion-field.full {
  padding: 0 15px;
}
@media only screen and (max-width: 860px) {
  .infusion-form .col-sm-4, .infusion-form .infusion-field.thirds, .infusion-form .col-sm-6, .infusion-form .infusion-submit, .infusion-form .infusion-field, .infusion-form .col-sm-12, .infusion-form .infusion-field.full {
    width: 100%;
  }
}
.infusion-form h2 {
  padding: 15px 15px 0 15px;
}
@media only screen and (max-width: 860px) {
  .infusion-form h2 {
    font-size: 3.5rem;
  }
}
.infusion-form .options {
  min-height: 81px;
  margin-top: 14px;
}
.infusion-form .infusion-field.thirds input, .infusion-form .infusion-field.thirds label {
  min-width: inherit;
}
.infusion-form .infusion-field > label {
  margin-top: 1em;
}
.infusion-form .infusion-field > * {
  width: 100%;
}
.infusion-form .infusion-field.date {
  position: relative;
}
.infusion-form .infusion-field.date .cal-popup {
  position: relative;
  display: none;
}
.infusion-form .infusion-field.date .pikaday-container {
  position: absolute;
  top: 101%;
  left: 3%;
  z-index: 10000;
}
.infusion-form .infusion-field .cal-left, .infusion-form .infusion-field .cal-right {
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 800px) {
  .infusion-form .infusion-field {
    margin-bottom: 1em;
    float: left;
  }
}
.infusion-form .infusion-field select {
  background: transparent url("arrow-down.ebf6b4e9.svg") no-repeat 97% 53%;
  background-size: 4%;
}
.infusion-form .infusion-submit {
  margin-top: 1em;
}

@media only screen and (min-width: 1023px) {
  #nf-form-1-cont .nf-multi-cell .nf-cell:first-child {
    padding-left: 0 !important;
    padding-right: 10% !important;
  }
}
@media only screen and (max-width: 1023px) {
  #nf-form-1-cont {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/**
	- Tables
 */
/* Tables
--------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 2;
  margin-bottom: 40px;
  width: 100%;
  word-break: break-word;
}

tbody {
  border-bottom: 1px solid #eee;
}

td,
th {
  text-align: left;
}

td {
  border-top: 1px solid #eee;
  padding: 6px;
}

th {
  font-weight: 400;
  padding: 0 6px;
}

td:first-child,
th:first-child {
  padding-left: 0;
}

/*
- Structure and Layout
	- Site Containers
	- Column Widths and Positions
	- Column Classes
*/
/* Structure and Layout
---------------------------------------------------------------------------------------------------- */
/* Site Containers
--------------------------------------------- */
.site-inner {
  clear: both;
  margin: 73px auto 0;
  max-width: 1280px;
  word-wrap: break-word;
}

.page .site-inner {
  margin-top: 0 !important;
}

.landing-page .site-inner,
.lead-capture-page .site-inner {
  margin-top: 0;
  max-width: 840px;
}

/* Column Widths and Positions
--------------------------------------------- */
/* Content */
.content {
  float: right;
  padding: 0px 60px;
  width: 65%;
}

.content-sidebar .content {
  border-right: 1px solid #eee;
  float: left;
}

.sidebar-content .content {
  border-left: 1px solid #eee;
}

.full-width-content .content {
  border-right: none;
  float: none;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.full.full-width-content .content {
  max-width: 100%;
}

/* Primary Sidebar */
.sidebar-primary {
  float: right;
  width: 35%;
}

.sidebar-content .sidebar-primary {
  float: left;
}

/* Column Classes
--------------------------------------------- */
/* Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css */
.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
  float: left;
  margin-left: 2.5641025641%;
}

.one-half,
.three-sixths,
.two-fourths {
  width: 48.7179487179%;
}

.one-third,
.two-sixths {
  width: 31.6239316239%;
}

.four-sixths,
.two-thirds {
  width: 65.811965812%;
}

.one-fourth {
  width: 23.0769230769%;
}

.three-fourths {
  width: 74.358974359%;
}

.one-sixth {
  width: 14.5299145299%;
}

.five-sixths {
  width: 82.905982906%;
}

.first {
  clear: both;
  margin-left: 0;
}

@media only screen and (max-width: 1023px) {
  .content h1, .content h2, .content h3, .content h4, .content h5, .content h6, .content p {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/*
- Common Classes
	- Avatar
	- Genesis
	- Titles
	- WordPress
*/
/* Common Classes
---------------------------------------------------------------------------------------------------- */
/* Avatar
--------------------------------------------- */
.avatar {
  border-radius: 50%;
  float: left;
}

.author-box .avatar,
.alignleft .avatar {
  margin-right: 24px;
}

.alignright .avatar {
  margin-left: 24px;
}

.comment .avatar {
  margin: 0 16px 24px 0;
}

/* Genesis
--------------------------------------------- */
.after-entry,
.archive-description,
.breadcrumb {
  text-align: left;
}

.after-entry {
  padding-bottom: 60px;
}

.author-box {
  line-height: 1.5;
  padding-bottom: 20px;
}

.breadcrumb {
  font-size: 18px;
  font-size: 1.8rem;
  padding-bottom: 10px;
}

.after-entry,
.archive-description,
.author-box,
.breadcrumb {
  margin-bottom: 30px;
}

.archive-description {
  margin-top: 2em;
}

/* Titles
--------------------------------------------- */
.archive-description .entry-title,
.archive-title,
.author-box-title {
  font-size: 40px;
  font-size: 4rem;
  margin-bottom: 20px;
}

.entry-title {
  font-size: 35px;
  font-size: 3.5rem;
  margin-bottom: 0;
}

.entry-title a,
.sidebar .widget-title a {
  color: "Roboto", Arial, sans-serif;
  text-decoration: none;
}

.entry-title a:hover,
.entry-title a:focus {
  color: #F07723;
}

.widget-title {
  font-family: Georgia, serif;
  font-size: 12px;
  font-size: 35px;
  margin-bottom: 20px;
}

.archive h2 {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 25px;
  margin-bottom: 0.2em;
}

/* WordPress
--------------------------------------------- */
a.aligncenter img {
  display: block;
  margin: 0 auto;
}

a.alignnone {
  display: inline-block;
}

.alignleft {
  float: left;
  text-align: left;
}

.alignright {
  float: right;
  text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
  max-width: 100%;
}

img.centered,
.aligncenter {
  display: block;
  margin: 0 auto 30px;
}

img.alignnone,
.alignnone {
  margin-bottom: 12px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
  margin: 0 20px 20px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
  margin: 0 0 20px 20px;
}

.wp-caption-text {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.entry-content p.wp-caption-text {
  margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
  margin: 0 0 30px;
}

/*
	- Search Form
 */
/* Search Form
--------------------------------------------- */
.search-form {
  overflow: hidden;
  position: relative;
}

.search-form:before {
  color: #999;
  content: "";
  font-family: "ionicons";
  font-size: 20px;
  left: 15px;
  position: absolute;
  top: 6px;
}

.entry-content .search-form {
  margin-bottom: 40px;
  width: 50%;
}

.search-form input[type=search] {
  font-size: 16px;
  font-size: 1.6rem;
  padding-bottom: 10px;
  padding-left: 40px;
  padding-top: 12px;
}

.post-password-form input[type=submit],
.search-form input[type=submit] {
  margin-top: 10px;
}

.widget_search input[type=submit] {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
- Widgets
	- Featured Content
*/
/* Widgets
---------------------------------------------------------------------------------------------------- */
.widget {
  word-wrap: break-word;
}

.widget ul > li:last-of-type,
.widget-area .widget:last-of-type {
  margin-bottom: 0;
}

.widget ul > li:last-of-type {
  padding-bottom: 0;
}

.widget ol > li {
  list-style-position: inside;
  list-style-type: decimal;
  padding-left: 20px;
  text-indent: -20px;
}

.widget li li {
  border: 0;
  margin: 0 0 0 30px;
  padding: 0;
}

.widget_calendar table {
  width: 100%;
}

.widget_calendar td,
.widget_calendar th {
  text-align: center;
}

.widget-area {
  margin-bottom: 2.5em;
}

/* Featured Content
--------------------------------------------- */
.featured-content .widget-title {
  margin-bottom: 5px;
}

.footer-widgets .featured-content .entry,
.sidebar .featured-content .entry {
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.footer-widgets .featured-content .entry-header,
.sidebar .featured-content .entry-header {
  text-align: left;
}

.footer-widgets .featured-content .entry-header::after,
.sidebar .featured-content .entry-header::after {
  display: none;
}

.footer-widgets .featured-content .entry-title,
.sidebar .featured-content .entry-title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.25;
  margin-bottom: 10px;
  margin-top: 10px;
}

.footer-widgets .featured-content .entry-meta,
.sidebar .featured-content .entry-meta {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-widgets .featured-content .entry-meta a,
.sidebar .featured-content .entry-meta a {
  color: #000;
  text-decoration: none;
}

.footer-widgets .featured-content .entry-meta a:hover,
.footer-widgets .featured-content .entry-meta a:focus,
.sidebar .featured-content .entry-meta a:hover,
.sidebar .featured-content .entry-meta a:focus {
  color: #F07723;
}

.footer-widgets .featured-content .entry-image,
.sidebar .featured-content .entry-image {
  vertical-align: top;
}

.featured-content a.alignleft,
.featured-content a.alignright,
.featured-content .entry:last-of-type {
  margin-bottom: 0;
}

.featured-content a.aligncenter,
.featured-content a.alignleft,
.featured-content a.alignnone,
.featured-content a.alignright {
  border-bottom-width: 0;
}

.featured-content .entry:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.featured-content .more-posts-title {
  display: block;
  padding-top: 30px;
}

/* Flexible Widgets
--------------------------------------------- */
.flexible-widgets .wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.flexible-widgets .wrap .widget {
  flex: 1 33%;
}
.flexible-widgets .wrap .widget:first-child {
  flex: 1 100%;
  margin-bottom: 1.5em;
}

@media only screen and (max-width: 800px) {
  .flexible-widgets .wrap .widget {
    flex: 1 100%;
  }

  .textwidget {
    padding-left: 1.25em;
    padding-right: 1.25em;
  }
}
/*
- Plugins
	- Jetpack
*/
/* Plugins
---------------------------------------------------------------------------------------------------- */
/* Genesis eNews Extended
--------------------------------------------- */
/* Jetpack
--------------------------------------------- */
#wpstats {
  display: none;
}

/*
- Skip Links
*/
/* Skip Links
---------------------------------------------------------------------------------------------------- */
.genesis-skip-link {
  margin: 0;
}

.genesis-skip-link li {
  height: 0;
  width: 0;
  list-style: none;
}

/* Display outline on focus */
:focus {
  color: white;
  outline: 0;
}

/*
- Site Header
	- Title Area
*/
/* Site Header
---------------------------------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}

.blue .site-header, .single .site-header, .search .site-header, .archive .site-header {
  background-color: #0077C8;
}

.admin-bar .site-header {
  top: 32px;
}

/* Title Area
--------------------------------------------- */
.title-area {
  float: left;
  padding-top: 11.5px;
  text-align: center;
  width: 18.75%;
}
.title-area .custom-logo-link {
  display: block;
}
.title-area img.custom-logo {
  max-width: 155px;
  max-height: 61px;
}

.header-image .title-area {
  margin-bottom: 4px;
  margin-top: 3px;
  min-height: 65px;
  padding-right: 0;
  padding-bottom: 0;
  width: 18.75%;
}

.site-title {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.site-title a,
.site-title a:hover,
.site-title a:focus {
  color: white;
  text-decoration: none;
}

.header-image .site-title > a {
  background-size: contain !important;
  float: left;
  min-height: 65px;
  width: 200px;
}

.site-description,
.site-title {
  margin-bottom: 0;
}

.header-image .site-title,
.site-description {
  display: block;
  height: 0;
  text-indent: -9999px;
}

/* Hero Image
--------------------------------------------- */
.hero {
  background-size: cover;
  color: white;
  position: relative;
  text-align: right;
  z-index: 1;
}
.hero .card-wrap {
  border: none;
  height: 100%;
  margin-bottom: 3em;
  width: 100%;
  padding: 10.5em 3em;
  position: relative;
}
.hero .card-wrap h1 {
  color: white;
}
.hero .card-wrap .overlay {
  background: rgba(0, 0, 0, 0.45);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

@media only screen and (max-width: 1023px) {
  .hero h1 {
    font-size: 3.25rem;
    text-align: center;
  }
}
/*
- Site Navigation
	- Accessible Menu
	- Site Header Navigation
	- Primary Navigation
	- Footer Navigation
*/
/* Site Navigation
---------------------------------------------------------------------------------------------------- */
nav ul li {
  list-style: none;
  transform: none;
}

.genesis-nav-menu {
  clear: both;
  line-height: 1;
  width: 100%;
  margin-bottom: 0;
}
.genesis-nav-menu .menu-item.social-icons .simple-social-icons ul li,
.genesis-nav-menu .menu-item.social-icons #simple-social-icons-4 ul li {
  padding-top: 32px !important;
  margin-bottom: 0 !important;
  margin-right: 0 !important;
}
.genesis-nav-menu .menu-item.social-icons .simple-social-icons ul li a,
.genesis-nav-menu .menu-item.social-icons #simple-social-icons-4 ul li a {
  background-color: transparent !important;
}
.genesis-nav-menu .menu-item.book-now, .genesis-nav-menu .menu-item.book-now a:hover {
  background-color: #F07723;
}
.genesis-nav-menu .menu-item.book-now ul li {
  padding-right: 0;
}

.genesis-nav-menu .menu-item {
  display: inline-block;
  padding-bottom: 0;
  text-align: center;
}

@media only screen and (min-width: 1023px) {
  .genesis-nav-menu {
    display: flex;
    align-items: stretch;
    align-content: stretch;
    flex-flow: row nowrap;
  }
  .genesis-nav-menu .menu-item {
    flex: 1;
  }
}
.genesis-nav-menu a {
  color: white;
  display: block;
  font-size: 10px;
  font-size: 1.8rem;
  padding: 40px 0px;
  text-decoration: none;
}

.genesis-nav-menu a:hover {
  background-color: #18A1FD;
}

.genesis-nav-menu a:hover,
.genesis-nav-menu a:focus,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover,
.genesis-nav-menu .sub-menu .current-menu-item > a:focus {
  color: white;
  text-decoration: none;
}

.genesis-nav-menu .sub-menu {
  left: -9999px;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  width: auto;
  z-index: 99;
}

.genesis-nav-menu .sub-menu a {
  background-color: #0077C8;
  border-top: 0;
  padding: 20px;
  position: relative;
  width: auto;
  word-wrap: break-word;
}
.genesis-nav-menu .sub-menu a:hover {
  background-color: #52B9FF;
}

.genesis-nav-menu .sub-menu .sub-menu {
  margin: -52px 0 0 199px;
}

.genesis-nav-menu .menu-item:hover {
  position: static;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
  left: auto;
  opacity: 1;
}

/* Accessible Menu
--------------------------------------------- */
.menu .menu-item:focus {
  position: static;
}

.menu .menu-item > a:focus + ul.sub-menu,
.menu .menu-item.sfHover > ul.sub-menu {
  left: auto;
  opacity: 1;
}

.sub-menu-toggle,
.menu-toggle {
  display: none;
  visibility: hidden;
}

/* Site Header Navigation
--------------------------------------------- */
.site-header .genesis-nav-menu li li {
  margin-left: 0;
}

/* Primary Navigation
--------------------------------------------- */
.nav-primary {
  float: left;
  text-align: center;
  width: 81.25%;
}

/* Footer Navigation
--------------------------------------------- */
.site-footer .genesis-nav-menu {
  padding-bottom: 20px;
}

.site-footer .genesis-nav-menu a {
  padding: 0 20px 10px;
}

/*  Right Header Menu
--------------------------------------------- */
.right-menu {
  position: fixed;
  right: 0;
  z-index: 1000;
}

/*  Mobile Button Icon
--------------------------------------------- */
#nav-icon3 {
  width: 26px;
  height: 16px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  text-align: center;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 10px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

/* Icon 3 */
#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 7px;
}

#nav-icon3 span:nth-child(4) {
  top: 14px;
}

#nav-icon3.open span:nth-child(1),
#nav-icon3.open span:nth-child(4) {
  top: 7px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  transform: rotate(-45deg);
}

@media only screen and (max-width: 1590px) {
  .genesis-nav-menu .menu-item.social-icons .simple-social-icons ul > li a {
    padding: 9px 4px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1470px) {
  .genesis-nav-menu a {
    font-size: 1.5rem;
    padding: 40px 10px;
  }
}
/*
- Content Area
	- Entries
	- Entry Meta
	- Pagination
	- Comments
*/
/* Content Area
---------------------------------------------------------------------------------------------------- */
/* Entries
--------------------------------------------- */
.entry,
.page.page-template-page_blog .content .entry {
  margin-bottom: 2em;
  padding-bottom: 30px;
}

.archive .entry {
  border: 1px solid #E6E6E6;
}
.archive .entry .entry-content {
  padding: 0 2.5em;
}

.page .content .entry {
  border-bottom: none;
}

.lead-capture-page .entry {
  margin-bottom: 0;
}

.page .content .entry,
.single .content .entry {
  padding-bottom: 0;
}

.single figure {
  margin-bottom: 2em;
}

.entry-image-link {
  display: block;
  margin-bottom: 1.5em;
}

.entry-content ol,
.entry-content ul {
  margin-bottom: 30px;
  margin-left: 40px;
}

.entry-content ol > li {
  list-style-type: decimal;
}

.entry-content ul > li {
  list-style-type: disc;
}

.entry-content ol ol,
.entry-content ul ul {
  margin-bottom: 0;
}

.entry-content code {
  background-color: #000;
  color: #eee;
}

.center {
  text-align: center;
}

.intro {
  font-size: 24px;
  font-size: 2.4rem;
  font-style: italic;
  margin-bottom: 40px;
  text-align: center;
}

.featured-image {
  margin-top: 2.5em;
}

/* Entry Meta
--------------------------------------------- */
p.entry-meta {
  font-size: 20px;
  font-size: 1rem;
}

.entry-categories,
.entry-tags {
  display: block;
}

.entry-comments-link::before {
  content: "—";
  margin: 0 6px 0 2px;
}

.entry-time {
  padding-right: 1em;
}

/* Pagination
--------------------------------------------- */
.pagination {
  clear: both;
  margin: 40px 0;
}

.adjacent-entry-pagination {
  margin-bottom: 0;
}

.archive-pagination a {
  color: #000;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}

.archive-pagination a:hover,
.archive-pagination a:focus {
  color: #F07723;
}

.archive-pagination li {
  display: inline;
}

.archive-pagination li a {
  color: #898989;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 8px 12px;
  text-decoration: none;
  text-transform: uppercase;
}

.archive-pagination li a:hover,
.archive-pagination li a:focus,
.archive-pagination li.active a {
  color: #F07723;
}

/* Comments
--------------------------------------------- */
.comment-respond,
.entry-comments,
.entry-pings {
  background-color: #fff;
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 40px;
}

.comment-list li {
  padding: 40px 0 0 30px;
}

.comment-list .depth-1 {
  padding-left: 0;
}

.comment-header {
  line-height: 1.5;
  margin-bottom: 30px;
}

.comment-content {
  clear: both;
}

.comment-content ul > li {
  list-style-type: disc;
}

.comment-respond input[type=email],
.comment-respond input[type=text],
.comment-respond input[type=url] {
  width: 50%;
}

.comment-respond label {
  display: block;
  margin-right: 12px;
}

.comment-header p {
  margin-bottom: 0;
}

.entry-pings .reply {
  display: none;
}

/* Blog Posts
--------------------------------------------- */
.blog-posts {
  display: block;
}
.blog-posts article {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.blog-posts article > * {
  flex: 1 657px;
  padding-right: 46px;
  padding-bottom: 46px;
}
.blog-posts article figure {
  flex: 1 503px;
}
.blog-posts article .section-right .entry-header {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 25px;
  margin-bottom: 5px;
  text-align: left;
}
.blog-posts article .section-right .entry-header:after {
  display: none;
}
.blog-posts article .section-right .more-link {
  text-align: center;
  min-width: 288px;
}

/* Gallery
--------------------------------------------- */
.pswp__caption__center {
  display: none !important;
}

/*
- Sidebar
*/
/* Sidebar
---------------------------------------------------------------------------------------------------- */
.sidebar {
  font-size: 20px;
  font-size: 2rem;
}

.sidebar .widget {
  border-bottom: 1px solid #eee;
  padding: 50px 60px 60px;
}

/*
- Cards
*/
.card-list {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  align-content: stretch;
}

.card-wrap {
  border: 1px solid #E6E6E6;
  height: 100%;
}

.card {
  display: inline-block;
  float: left;
  flex: 1 33%;
  justify-content: space-between;
  min-width: 373px;
  padding-right: 20px;
  padding-bottom: 20px;
}
.card a {
  display: block;
  margin: 0;
}
.card p {
  margin-bottom: 10px;
}
.card .card-title, .card h3.widget-title {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 25px;
}
.card .card-content {
  padding-bottom: 20px;
}
.card .card-content .button {
  margin-top: 15px;
}
.card .card-img {
  width: 100%;
}
.card .card-item img, .card .card-item a {
  width: 100%;
  height: auto;
}
.card .card-item .card-block {
  padding: 1em 2em;
}
.card .card-item .card-block .button {
  text-align: center;
  width: 100%;
}
.card.right .card-item, .card.left .card-item {
  display: inline-block;
}
.card.right .card-item .card-block .button, .card.left .card-item .card-block .button {
  width: auto;
}
.card.right .card-item:first-child {
  width: 37%;
}
.card.right .card-item {
  width: 63%;
  float: right;
}
.card.left .card-item:first-child {
  width: 37%;
}
.card.left .card-item {
  width: 63%;
  float: left;
}
.card .carousel h2 {
  font-size: 25px;
  color: white;
  padding: 0.5em;
}
.card ul {
  padding-left: 0.75em;
}
.card ul li {
  list-style: none;
  transform: translateX(0);
}
.card ul li:before {
  color: #F07723;
  content: "•";
  position: absolute;
  left: -0.75em;
}

.card-list .card.card-full {
  flex: 100% 1;
  margin-bottom: 2em;
}

.full-width .flickity-viewport, .full-width .flickity-slider, .full-width .carousel-wrap, .full-width .carousel-cell {
  max-height: 438px;
}

.card-half .flickity-viewport, .card-half .flickity-slider, .card-half .carousel-wrap, .card-half .carousel-cell, .card-thirds .flickity-viewport, .card-thirds .flickity-slider, .card-thirds .carousel-wrap, .card-thirds .carousel-cell {
  max-height: 248px;
}

@media only screen and (max-width: 1023px) {
  .card {
    flex: 1 100%;
    width: 100%;
    min-width: auto;
    padding-left: 20px;
  }
  .card.right .card-item:first-child, .card.right .card-item, .card.left .card-item:first-child, .card.left .card-item {
    width: 100%;
  }
  .card.right .card-item:first-child .card-block .button, .card.right .card-item .card-block .button, .card.left .card-item:first-child .card-block .button, .card.left .card-item .card-block .button {
    width: 100%;
  }
  .card.right .card-item:first-child .card-block .button a.read-more, .card.right .card-item .card-block .button a.read-more, .card.left .card-item:first-child .card-block .button a.read-more, .card.left .card-item .card-block .button a.read-more {
    width: 100%;
  }
  .card .card-item .card-block {
    padding: 2em;
  }
  .card .card-item .card-block p, .card .card-item .card-block h3, .card .card-item .card-block h2 {
    padding: 0;
  }
  .card .card-item .card-block .button {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }
  .card .card-item .card-block .button a.read-more {
    width: 100%;
  }
}
/*
- Offscreen Content
*/
/* Offscreen Content
---------------------------------------------------------------------------------------------------- */
.no-scroll {
  overflow: hidden;
}

.offscreen-content {
  background-color: white;
  display: none;
  height: 100%;
  left: 0;
  overflow-y: scroll;
  padding: 20px;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.offscreen-content .wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.offscreen-container {
  display: table;
  overflow: hidden;
  table-layout: fixed;
  text-align: center;
  width: 100%;
}

.offscreen-container .widget-area {
  display: table-cell;
  padding-bottom: 20px;
  vertical-align: middle;
  width: 100%;
}

/* Offscreen Content Icon
--------------------------------------------- */
.ion-ios-close-empty,
.ion-ios-more {
  font-size: 36px;
  font-size: 3.6rem;
}

.ion-ios-close-empty {
  margin-right: 10px;
}

.offscreen-content-icon,
.offscreen-content-toggle {
  position: fixed;
  right: 20px;
  top: 18px;
  z-index: 10000;
}

.admin-bar .offscreen-content-icon,
.admin-bar .offscreen-content-toggle {
  top: 52px;
}

.offscreen-content button,
.offscreen-content-icon button {
  background-color: #fff;
  color: #000;
  font-size: 20px;
  font-size: 2rem;
  padding: 2px 10px 2px 12px;
}

.offscreen-content button:hover,
.offscreen-content-icon button:hover {
  color: #d43c67;
}

/*
- Footer Widgets
*/
/* Footer Widgets
---------------------------------------------------------------------------------------------------- */
.footer-widgets {
  background: #83796F url("grayp.32180864.svg") 0 0 repeat;
  background-size: 11.43px 30.93px;
  color: white;
  font-size: 12px;
  font-size: 1.3rem;
  clear: both;
}
.footer-widgets a {
  color: white;
}
.footer-widgets a:hover {
  color: #F07723;
}
.footer-widgets .menu .menu-item {
  margin-bottom: 0;
  padding-bottom: 0;
}
.footer-widgets img {
  width: inherit;
  max-width: 220px;
  max-height: 88px;
}
.footer-widgets .simple-social-icons ul li a,
.footer-widgets #simple-social-icons-3 ul li a {
  background-color: white !important;
  color: #83796F !important;
}
.footer-widgets ul li {
  list-style-type: none;
}

.footer-widgets .wrap {
  display: flex;
  flex-flow: row wrap;
  margin: 0 auto;
  max-width: 1280px;
  padding-left: 60px;
  padding-right: 60px;
}

.footer-widgets .widget-area {
  flex: 1;
  float: left;
  padding-bottom: 60px;
  padding-top: 60px;
}

@media only screen and (max-width: 800px) {
  .footer-widgets .wrap {
    flex-flow: column wrap;
  }
}
.footer-widgets .widget {
  margin-bottom: 20px;
}

.footer-widgets-1,
.footer-widgets-3 {
  width: 30%;
}

.footer-widgets-2 {
  padding-left: 4%;
  padding-right: 4%;
  width: 40%;
}

.footer-widgets p {
  margin-bottom: 20px;
}

.footer-widgets .button {
  background-color: #000;
  margin-top: 10px;
}

.footer-widgets .button:hover {
  background-color: #F07723;
}

@media only screen and (max-width: 1023px) {
  .footer-widgets {
    padding-top: 20px;
  }
  .footer-widgets .widget-area {
    margin-bottom: 0;
    padding: 2em 20px;
  }
}
/*
- Site Footer
*/
/* Site Footer
---------------------------------------------------------------------------------------------------- */
.site-footer {
  background-color: #887E75;
  color: white;
  line-height: 1;
  padding: 60px 0;
  text-align: center;
}
.site-footer ul li {
  list-style: none;
}

.site-footer .wrap {
  margin: 0 auto;
  max-width: 1280px;
  padding-left: 60px;
  padding-right: 60px;
}

.site-footer p {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 0;
}

.site-footer a {
  color: white;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #F07723;
}

.double-slash, .site-footer .footer-bottom .affiliates .affiliate-text, .site-footer .footer-bottom .awards .awards-text {
  position: relative;
}
.double-slash:after, .site-footer .footer-bottom .affiliates .affiliate-text:after, .site-footer .footer-bottom .awards .awards-text:after {
  content: "//";
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(-7px, -3px);
}

.footer-logos, .site-footer .footer-bottom .affiliates .affiliate-logos, .site-footer .footer-bottom .awards .awards-logos {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-flow: row nowrap;
  padding-top: 2.5em;
}
@media only screen and (max-width: 1023px) {
  .footer-logos, .site-footer .footer-bottom .affiliates .affiliate-logos, .site-footer .footer-bottom .awards .awards-logos {
    padding-bottom: 3em;
    padding-top: 1em;
  }
}
.footer-logos li, .site-footer .footer-bottom .affiliates .affiliate-logos li, .site-footer .footer-bottom .awards .awards-logos li {
  transform: translateX(0);
  flex: 1 auto;
}
.footer-logos li a, .site-footer .footer-bottom .affiliates .affiliate-logos li a, .site-footer .footer-bottom .awards .awards-logos li a {
  display: block;
}
.footer-logos li a img, .site-footer .footer-bottom .affiliates .affiliate-logos li a img, .site-footer .footer-bottom .awards .awards-logos li a img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.footer-heading, .site-footer .footer-bottom .affiliates .affiliate-text, .site-footer .footer-bottom .awards .awards-text {
  font-weight: bold;
  text-align: right;
  padding-right: 2em;
}

.site-footer .footer-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-flow: row nowrap;
}
.site-footer .footer-bottom .awards {
  flex: 1 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
}
.site-footer .footer-bottom .awards .awards-logos img[src*=advisor_white] {
  max-width: 88px;
}
.site-footer .footer-bottom .affiliates {
  flex: 1 40%;
  text-align-last: left;
}
@media only screen and (max-width: 1023px) {
  .site-footer .footer-bottom {
    display: block;
  }
  .site-footer .affiliates {
    display: inline-block;
    width: 100%;
  }
  .site-footer .affiliates > * {
    float: left;
    padding-left: 20px;
  }
  .site-footer .affiliates .affiliate-text {
    text-align: left;
    margin-bottom: 1.5em;
  }
  .site-footer .affiliates .affiliate-logos {
    width: 100%;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
  }
  .site-footer .affiliates .affiliate-logos li {
    flex: 1 50%;
  }
  .site-footer .affiliates .affiliate-logos li a {
    display: block;
  }
}
/*
Social Share
 */
/* Social Share
--------------------------------------------- */
.single header.entry-header .entry-meta > * {
  display: inline-block;
}
.single .entry-date .entry-time {
  font-size: 12px;
  padding-right: 1em;
}

.sharrre, .sharrre .share {
  font-family: "Roboto", sans-serif;
}
.sharrre .count, .sharrre .share .count {
  display: none;
}

.share-entry-meta {
  transform: translateY(5%);
}

.share-small .no-count .share {
  border-radius: 0;
  width: 20px;
}

.content a.count,
.content a.count:hover,
.content a.share,
.content a.share:hover {
  border: none;
}

.content .share-filled .share {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.content .share-filled .count {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.content .share-filled .facebook .count,
.content .share-filled .facebook .count:hover,
.content .share-filled .googlePlus .count,
.content .share-filled .googlePlus .count:hover,
.content .share-filled .linkedin .count,
.content .share-filled .linkedin .count:hover,
.content .share-filled .pinterest .count,
.content .share-filled .pinterest .count:hover,
.content .share-filled .stumbleupon .count,
.content .share-filled .stumbleupon .count:hover,
.content .share-filled .twitter .count,
.content .share-filled .twitter .count:hover {
  color: #F07723;
  border: 1px solid #F07723;
}

.content .share-filled .facebook .share,
.content .share-filled .facebook:hover .count,
.content .share-filled .googlePlus .share,
.content .share-filled .googlePlus:hover .count,
.content .share-filled .linkedin .share,
.content .share-filled .linkedin:hover .count,
.content .share-filled .pinterest .share,
.content .share-filled .pinterest:hover .count,
.content .share-filled .stumbleupon .share,
.content .share-filled .stumbleupon:hover .count,
.content .share-filled .twitter .share,
.content .share-filled .twitter:hover .count {
  background: #F07723 !important;
}

.content .share-filled .facebook:hover .count,
.content .share-filled .googlePlus:hover .count,
.content .share-filled .linkedin:hover .count,
.content .share-filled .pinterest:hover .count,
.content .share-filled .stumbleupon:hover .count,
.content .share-filled .twitter:hover .count {
  color: #fff;
}

/*
Book Now
 */
#book-now-bar {
  display: none;
  background-color: white;
  padding: 0;
  position: fixed;
  right: 2.34375%;
  top: 7.7%;
  z-index: 200;
}
#book-now-bar form {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 1.25em 1.25em 0;
}
#book-now-bar form > * {
  margin-right: 3px;
  flex: 1;
}
#book-now-bar form input, #book-now-bar form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #0077C8;
  border: none;
  border-radius: 0;
  color: white;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: 10px;
  padding-top: 10px;
}
#book-now-bar form input[type=submit] {
  background-color: #F07723;
}
#book-now-bar .datepicker {
  background: #0077C8 url("calendar-iconw.2d0562b8.svg") 90% 50% no-repeat;
  background-size: 16%;
}

/**
Datepicker
 */
#datepicker {
  padding-top: 2.5em;
  width: 100%;
}
#datepicker .ui-datepicker {
  color: #4E2603;
  background-color: white;
  display: flex !important;
  flex-flow: row wrap;
  justify-content: space-between;
  position: relative;
  width: 100% !important;
}
#datepicker .ui-datepicker table {
  margin-right: 2px;
  text-align: center;
}
#datepicker .ui-datepicker th {
  text-align: center;
}
#datepicker .ui-datepicker tbody td {
  padding: 0;
  border: 1px solid #95989A;
  text-align: center;
}
#datepicker .ui-datepicker .ui-state-default {
  color: #4E2603;
  display: block;
  padding: 6px 12px;
}
#datepicker .ui-datepicker .ui-datepicker-group {
  border-top: 1px solid #E6E6E6;
  flex: 1;
  padding: 7px;
}
#datepicker .ui-datepicker .ui-state-highlight {
  background-color: #72bcef;
  color: white;
}
#datepicker .ui-datepicker .ui-state-active, #datepicker .ui-datepicker .ui-datepicker-select a {
  background-color: #0077C8;
  color: white;
}
#datepicker .ui-datepicker .ui-datepicker-today .ui-state-active {
  background-color: #72bcef;
  color: white;
}
#datepicker .ui-datepicker .ui-corner-all {
  position: absolute;
  top: -10px;
}
#datepicker .ui-datepicker .ui-corner-all .ui-icon {
  color: #F07723;
  font-size: 2.75rem;
  font-weight: bold;
}
#datepicker .ui-datepicker .ui-corner-right .ui-corner-all {
  right: 10px;
}
#datepicker .ui-datepicker .ui-corner-left .ui-corner-all {
  left: 10px;
}
#datepicker .ui-datepicker .ui-datepicker-group-last {
  background-color: #F2F2F2;
}
#datepicker .ui-datepicker .ui-datepicker-group-last td {
  background-color: white;
}
#datepicker .ui-datepicker .ui-datepicker-group-last td.ui-datepicker-other-month {
  background-color: #F2F2F2;
}
#datepicker .ui-datepicker .ui-datepicker-title {
  text-align: center;
  border-bottom: 1px solid #E6E6E6;
  padding: 5px 0 13px;
}
#datepicker .ui-datepicker td.ui-datepicker-unselectable {
  background-color: #E6E6E6;
}
#datepicker .ui-datepicker .ui-datepicker-header {
  position: relative;
}
#datepicker .ui-datepicker .ui-datepicker-prev span, #datepicker .ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  top: 0;
}
#datepicker .ui-datepicker .ui-datepicker-next span {
  right: 0;
}
#datepicker .ui-datepicker .ui-datepicker-prev span {
  left: 0;
}

#book-now-mobile {
  background-color: #83796F;
  border-top: 1px solid white;
  color: white;
  font-size: 2.25rem;
  font-weight: bold;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 0.75em 1em;
  text-align: center;
  width: 100%;
  z-index: 1000;
}

.landing #book-now-mobile {
  display: none;
}

@media only screen and (min-width: 1023px) {
  #book-now-mobile {
    display: none !important;
  }
}
/*
- Media Queries
	- Max-width: 1340px
	- Max-width: 1200px
	- Max-width: 1023px
	- Max-width: 860px
*/
/* Media Queries
---------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 1023px) {
  .genesis-nav-menu a {
    padding-left: 10px;
    padding-right: 10px;
  }
  .genesis-nav-menu a:hover {
    background-color: #F07723 !important;
    color: white !important;
  }

  .content,
.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3,
.header-image,
.js .genesis-nav-menu .sub-menu,
.js .genesis-nav-menu .sub-menu a,
.sidebar-primary {
    width: 100%;
  }

  .genesis-nav-menu .sub-menu a, .genesis-nav-menu .sub-menu a:hover {
    background-color: white !important;
    color: #F07723 !important;
  }

  .site-header {
    background-color: #F07723 !important;
    position: static;
  }

  .title-area {
    padding: 1.25em;
    min-width: 187px;
  }
  .title-area a {
    display: block;
  }
  .title-area a img.custom-logo {
    max-height: 40px;
    width: auto;
  }

  .menu-toggle.nav-primary {
    float: right;
    max-width: 40px;
  }

  nav.nav-primary {
    width: 100%;
  }

  .header-image .site-title > a {
    background-position: center !important;
    display: block;
    float: none;
    margin: 0 auto;
  }

  .genesis-nav-menu li,
.header-image .title-area {
    float: left;
  }

  .genesis-nav-menu,
.site-description,
.site-header .title-area,
.site-title {
    background-color: white;
    text-align: center;
  }
  .genesis-nav-menu a,
.site-description a,
.site-header .title-area a,
.site-title a {
    color: #F07723 !important;
  }

  .site-header .title-area {
    background-color: #F07723;
    text-align: left;
  }

  .js nav.nav-primary,
.js .site-header nav {
    display: none;
    position: relative;
  }

  .js .site-header nav .wrap {
    padding: 0;
  }

  .js nav.pagination {
    display: block;
  }

  .menu-toggle,
.sub-menu-toggle {
    border-width: 1px;
    display: block;
    margin: 0 auto;
    overflow: hidden;
    text-align: right;
    visibility: visible;
  }

  .menu-toggle:hover,
.menu-toggle:focus,
.sub-menu-toggle:hover,
.sub-menu-toggle:focus {
    border-width: 1px;
  }

  .menu-toggle {
    line-height: 20px;
    position: relative;
    right: 0;
    z-index: 1000;
  }

  .menu-toggle:before,
.menu-toggle.activated:before {
    margin-right: 10px;
    text-rendering: auto;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .sub-menu-toggle {
    background-color: transparent;
    color: #F07723;
    border-top: 1px solid #95989A;
    float: right;
    padding: 1.19em;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
  }
  .sub-menu-toggle:before {
    display: inline-block;
    text-rendering: auto;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .sub-menu-toggle.activated:before {
    content: "";
  }

  .js .nav-primary .genesis-nav-menu .menu-item,
.js .site-header .genesis-nav-menu .menu-item {
    display: block;
    float: none;
    position: relative;
    text-align: left;
  }

  .js .genesis-nav-menu .menu-item:hover {
    position: relative;
  }

  .js .nav-primary .genesis-nav-menu .menu-item a,
.js .site-header .genesis-nav-menu .menu-item a {
    border-top: 1px solid #95989A;
    padding: 1.2em 1em;
    width: 100%;
  }

  .js .genesis-nav-menu .current-menu-item a {
    color: #F07723;
  }

  .js .nav-primary .genesis-nav-menu .menu-item:first-child a {
    border-top: none !important;
    border-bottom: none;
  }

  .js .genesis-nav-menu .sub-menu {
    border: none;
  }

  .js .genesis-nav-menu .menu-item > a:focus ul.sub-menu,
.js .genesis-nav-menu .menu-item > a:focus ul.sub-menu .sub-menu {
    left: 0;
    margin-left: 0;
  }

  .js .genesis-nav-menu > .menu-item-has-children > a:after {
    content: none;
  }

  .js .genesis-nav-menu .sub-menu {
    clear: both;
    display: none;
    margin: 0;
    opacity: 1;
    padding-left: 15px;
    position: static;
    width: 100%;
  }
  .js .genesis-nav-menu .sub-menu .menu-item a {
    border: none !important;
    padding: 10px 0 15px 15px;
  }

  .js .genesis-nav-menu .sub-menu .sub-menu {
    margin: 0;
  }

  .js nav button:hover,
.js .menu-toggle:hover {
    background-color: #F07723;
    color: white;
  }

  .js .menu-toggle {
    padding: 2em 2.5em 2em 2.5em;
    width: auto;
  }
  .js .menu-toggle:before {
    font-size: 3rem;
  }

  .js nav button:focus,
.js .menu-toggle:focus {
    background-color: #F07723;
    color: white;
  }

  .js .sub-menu-toggle:focus {
    background-color: white;
    color: #F07723;
  }

  .site-inner {
    margin-top: 0;
  }

  .content,
.content-sidebar .content,
.sidebar-content .content {
    float: none;
    padding: 0;
  }

  .content-sidebar .content {
    border-right: none;
  }

  .sidebar-content .content {
    border-left: none;
  }

  .sidebar .widget {
    padding: 5%;
  }

  .sidebar .widget:last-child {
    border-bottom: none;
  }

  .footer-widgets-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .site-footer {
    padding-bottom: 40px;
    padding-top: 40px;
    margin-bottom: 70.75px;
  }

  .site-footer .genesis-nav-menu a {
    padding-left: 10px;
    padding-right: 10px;
  }

  .featured-area {
    padding-left: 20px;
  }

  .front-page-3 {
    padding-left: 20px;
  }

  .front-page-2 .flexible-widgets .wrap .widget-title {
    padding-left: 0.5em;
  }
  .front-page-2 .flexible-widgets .wrap .textwidget {
    padding-left: 1.8em;
  }

  /**
  Nav
   */
  .book, .social-icons {
    display: none !important;
  }
}
@media only screen and (max-width: 600px) {
  .after-entry .enews-widget,
.landing-page .enews-widget,
.lead-capture-page .enews-widget {
    padding: 20px;
    width: 100%;
  }

  .five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
    margin: 0;
    width: 100%;
  }

  .footer-widgets .wrap,
.site-footer .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .offscreen-content .enews-widget {
    padding: 20px;
  }

  .offscreen-content p {
    line-height: 1.5;
  }
}
@media only screen and (max-width: 1023px) {
  .featured-area {
    padding-left: 0;
    padding-top: 20px;
  }
  .featured-area .wrap {
    margin: 20px;
  }

  .front-page-1 {
    padding-top: 35px;
    padding-bottom: 20px;
  }
  .front-page-1 .flexible-widgets {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .front-page-3 {
    padding-left: 0px;
  }

  .widget_mka_color_map_widget div[id^=map] {
    margin: 30px;
  }
}

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