@import url("https://use.typekit.net/nei6ser.css");
/* Contents
==================================================
- Page Builder & Gravity Forms
- Galleries
- Colors & Fonts
- Homepage
- Theme Layout
- Dropdown Menu
- Archives
- Author Bio
- Sidebars
- Animations
- Parallax
- Responsive (include)
*/
/* Variables
================================================== */
html {
  font-size: 14px;
}
@media screen and (min-width: 1106px) {
  html {
    font-size: calc(14px + (18 - 14) * (100vw - 1106px)/(1422 - 1106));
  }
}
@media screen and (min-width: 1422px) {
  html {
    font-size: 18px;
  }
}
/*

Required params, specify type, start color, end color.
Notice that each parameter should be separated with a ;. We use a comma to list colors and vendor prefixes.
.gradient(linear; #2BC0E4, #EAECC6);

If you would like to customize the color stop you could write:
.gradient(linear; #2BC0E4, #EAECC6 30%);

Changing the gradient direction should be done with an angle value instead of its keyword counterpart:
.gradient(linear; #2BC0E4, #EAECC6 30%; 180deg);

The following is an example in which we create a radial gradient:
.gradient(circle; #2BC0E4, #EAECC6);

Generating a repeating gradient? No problemo:
.gradient(repeating-linear; #085078, #2BC0E4 25px, #EAECC6 50px);
In this case, make sure you adjust the background-size accordingly to see the desired result.

*/
@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@-moz-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@-o-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@-webkit-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
  }
}
@-moz-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -moz-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -moz-transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -moz-transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -moz-transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -moz-transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1);
  }
}
@-o-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -o-transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -o-transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -o-transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -o-transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -o-transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -o-transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
/*
 * animate.less v1.0.4 | animateforless.com
 *
 * -----------------------------------------------------------------------------
 *
 * The MIT License (MIT)
 *
 * Copyright (c) 2014-2016 Carlos M. Bonilla
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of
 * this software and associated documentation files (the "Software"), to deal in
 * the Software without restriction, including without limitation the rights to
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
 * the Software, and to permit persons to whom the Software is furnished to do so,
 * subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
/*
********************************************************************************
**                                                                            **
**                      LESS ANIMATION FRAMEWORK                              **
**                                                                            **
********************************************************************************
*/
/* Contents
==================================================
- Tables
- Buttons 
- Forms
- Content Layout
- WordPress Generated Elements & Classes
- Standard HTML tags
- Editor Overrides
*/
/* Tables
================================================== */
table:not(.ui-datepicker-calendar) {
  font-size: 0.9rem;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
table:not(.ui-datepicker-calendar) th,
table:not(.ui-datepicker-calendar) td {
  padding: 0.75rem 1rem;
  border: 1px solid;
  position: relative;
  line-height: 1.25;
}
table:not(.ui-datepicker-calendar) th[scope="row"] {
  text-align: right;
}
table:not(.ui-datepicker-calendar) tfoot *,
table:not(.ui-datepicker-calendar) tr.blank * {
  border: none;
  background: none !important;
  opacity: 0.75;
  font-style: italic;
  padding: 0.5rem 0 0;
  font-size: 0.9em;
}
table:not(.ui-datepicker-calendar) tr.blank {
  color: rgba(255, 255, 255, 0);
}
table:not(.ui-datepicker-calendar).alignleft,
table:not(.ui-datepicker-calendar).alignright {
  max-width: 50%;
}
table:not(.ui-datepicker-calendar).alignleft td,
table:not(.ui-datepicker-calendar).alignright td,
table:not(.ui-datepicker-calendar).alignleft th,
table:not(.ui-datepicker-calendar).alignright th {
  min-width: 125px;
}
/* Buttons 
================================================== */
.btn,
button,
input[type="submit"],
input[type="button"] {
  border-radius: 2rem;
  border: none !important;
  box-shadow: none;
  text-shadow: none;
  padding: 0.625rem 1.5rem;
  font-family: 'oswald', Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-style: normal;
  font-size: 0.9rem;
  filter: none !important;
  display: inline-block;
  font-size: 1rem;
  -webkit-appearance: none;
}
/* Forms
================================================== */
input:not([type="submit"]):not([type="button"]),
textarea,
select {
  border: 1px solid #ccc;
  padding: calc(0.625rem - 2px) calc(1.5rem - 2px);
  line-height: 1rem;
  border-radius: 3px;
}
input:not([type="submit"]):not([type="button"])::placeholder,
textarea::placeholder,
select::placeholder {
  color: #000;
  opacity: 0.5;
}
/* Content Layout
================================================== */
html {
  font-family: 'lato', Helvetica, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
body,
cite,
.mceContentBody blockquote,
address,
tr th,
.wp-caption,
.wp-caption .wp-caption-text,
.wp-caption-dd {
  font-family: 'lato', Helvetica, Arial, sans-serif;
}
body {
  padding: 0;
  margin: 0;
}
p {
  margin: 0 0 1.5rem;
  word-break: break-word;
}
p,
table {
  line-height: 1.5;
}
a {
  text-decoration: none;
}
h1,
h2 {
  font-family: 'modesto-condensed', Helvetica, Arial, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}
h3,
h4,
h5,
h6 {
  font-family: 'oswald', Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.5rem;
  padding-top: 1rem;
}
h1 span.sub,
h2 span.sub,
h3 span.sub,
h4 span.sub,
h5 span.sub,
h6 span.sub {
  display: block;
  font-size: 0.375em;
  font-family: 'oswald', Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 5rem;
}
h2 {
  font-size: 4.44rem;
}
h3 {
  font-size: 1.6rem;
}
h4,
h5,
h6 {
  font-size: 1rem;
  font-weight: normal;
}
h6 {
  font-style: italic;
}
img {
  max-width: 100%;
  height: auto;
}
#tinymce ul,
#primary ul,
#tinymce ol,
#primary ol {
  margin-bottom: 1.5rem;
  overflow: hidden;
}
#tinymce ul li,
#primary ul li,
#tinymce ol li,
#primary ol li {
  list-style-type: none;
  position: relative;
  margin-bottom: 0.25rem;
}
#tinymce ul li:last-child,
#primary ul li:last-child,
#tinymce ol li:last-child,
#primary ol li:last-child {
  margin-bottom: 0;
}
#tinymce ul li:before,
#primary ul li:before,
#tinymce ol li:before,
#primary ol li:before {
  content: '\2022';
  position: absolute;
  top: 0;
}
#tinymce ul ul,
#primary ul ul,
#tinymce ol ul,
#primary ol ul,
#tinymce ul ol,
#primary ul ol,
#tinymce ol ol,
#primary ol ol {
  margin: 0.25rem 0;
}
#tinymce ul li:before,
#primary ul li:before {
  font-size: 0.8rem;
  line-height: 1.5em;
  left: -1rem;
}
#tinymce ol,
#primary ol {
  counter-reset: item;
}
#tinymce ol > li:before,
#primary ol > li:before {
  content: counter(item) ". ";
  counter-increment: item;
  right: 100%;
  margin-right: 0.25rem;
}
#tinymce ol ol > li:before,
#primary ol ol > li:before {
  content: counter(item, lower-alpha) ". ";
}
#tinymce ol ol ol > li:before,
#primary ol ol ol > li:before {
  content: counter(item, lower-roman) ". ";
}
[class^="cols_"],
[class*=" cols_"] {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}
[class^="cols_"] > h2,
[class*=" cols_"] > h2 {
  width: 100% !important;
}
[class^="cols_"] > *,
[class*=" cols_"] > * {
  margin: 0 0.75rem 1.5rem;
}
[class^="cols_"].cols_1 > *,
[class*=" cols_"].cols_1 > * {
  width: 100%;
  margin: 0;
}
[class^="cols_"].cols_2 > *,
[class*=" cols_"].cols_2 > * {
  width: calc(100% / 2 - 1.5rem);
}
[class^="cols_"].cols_3 > *,
[class*=" cols_"].cols_3 > * {
  width: calc(100% / 3 - 1.5rem);
}
[class^="cols_"].cols_4 > *,
[class*=" cols_"].cols_4 > * {
  width: calc(100% / 4 - 1.5rem);
}
[class^="cols_"].cols_5 > *,
[class*=" cols_"].cols_5 > * {
  width: calc(100% / 5 - 1.5rem);
}
[class^="cols_"].cols_6 > *,
[class*=" cols_"].cols_6 > * {
  width: calc(100% / 6 - 1.5rem);
}
/* WordPress Generated Elements & Classes
================================================== */
.alignnone {
  margin: 0 0 1rem;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 0 auto 1.5rem;
}
.alignright {
  float: right;
  margin: 0.25rem 0 1rem 1rem;
}
.alignleft {
  float: left;
  margin: 0.25rem 1rem 1rem 0;
}
a img.alignright {
  float: right;
  margin: 0.25rem 0 1rem 1rem;
}
a img.alignnone {
  margin: 0.25rem 1rem 1rem 0;
}
a img.alignleft {
  float: left;
  margin: 0.25rem 1rem 1rem 0;
}
a img.aligncenter {
  display: block;
  margin: 0 auto 1rem;
}
.wp-caption {
  max-width: 100% !important;
  padding: 0;
  text-align: center;
  white-space: nowrap;
}
.wp-caption p {
  margin-bottom: 0;
}
.wp-caption.alignnone {
  margin: 0.25rem 1rem 1rem 0;
}
.wp-caption.alignleft {
  margin: 0.25rem 1rem 1rem 0;
}
.wp-caption.alignright {
  margin: 0.25rem 0 1rem 1rem;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0 auto 0.25rem;
  max-width: 100%;
  padding: 0;
  width: auto;
  display: block;
}
.wp-caption .wp-caption-text,
.wp-caption-dd {
  font-size: 0.8rem;
  margin: 0;
  padding: 0.25rem;
  white-space: normal;
  background: rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.125);
}
hr {
  border: none;
  height: 1px;
  margin-bottom: 1.5rem;
}
blockquote {
  border-left: none;
  margin: 0 0 1rem;
  text-align: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-left-width: 4px;
  position: relative;
  overflow: hidden;
}
blockquote:before {
  font-style: normal;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 17rem;
  opacity: 0.075;
  position: absolute;
  content: '\201C';
  top: -3.75rem;
  left: -0.75rem;
  line-height: 1.15;
}
blockquote p {
  margin-bottom: 1.0rem;
  position: relative;
  z-index: 9;
}
blockquote footer,
blockquote cite {
  font-size: 0.8rem;
}
blockquote footer:before,
blockquote cite:before {
  content: '';
  display: block;
  width: 15%;
  border-bottom: 1px solid #ddd;
  margin: 1rem auto 0.5rem;
}
blockquote > *:last-child {
  margin-bottom: 0;
}
blockquote.alignleft,
blockquote.alignright {
  width: 25%;
  text-align: left;
}
blockquote.alignleft footer:before,
blockquote.alignright footer:before,
blockquote.alignleft cite:before,
blockquote.alignright cite:before {
  margin: 1rem 0 0.5rem;
}
blockquote.alignleft {
  float: left;
  margin-right: 1rem;
}
blockquote.alignright {
  float: right;
  margin-left: 1rem;
}
/* Standard HTML tags
================================================== */
address {
  font-style: italic;
  margin-bottom: 1rem;
}
abbr,
acronym {
  text-decoration: none;
  border-bottom: 1px dotted #ccc;
  font-weight: bold;
}
big {
  font-size: 1.25em;
}
cite,
var,
blockquote footer {
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
code,
kbd,
tt {
  display: inline-block;
  vertical-align: baseline;
}
code,
kbd,
pre,
tt {
  color: #888;
  background: #f6f6f6;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0.125em 0.25em;
  font-size: 0.8em;
  font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
  text-align: left;
}
pre {
  padding: 1em 1.5em;
  margin-bottom: 1rem;
}
pre * {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}
del,
strike {
  text-decoration: line-through;
  opacity: 0.5;
}
em,
dt {
  font-style: italic;
}
q {
  font-style: italic;
}
q:before {
  content: open-quote;
}
q:after {
  content: close-quote;
}
strong,
b,
dt {
  font-weight: bold;
}
sub,
sup {
  font-size: 0.75em;
}
sub {
  vertical-align: sub;
}
sup {
  vertical-align: sup;
}
dd {
  margin-bottom: 1rem;
}
iframe {
  display: block;
}
.video {
  position: relative;
  padding-top: 75%;
}
.video.wide {
  padding-top: 56.25%;
}
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Editor Overrides
================================================== */
#tinymce {
  padding: 1rem 2rem!important;
}
#tinymce a {
  color: #999;
  text-decoration: underline;
}
#tinymce a:hover {
  color: #000;
}
#tinymce li:before {
  color: #ccc;
}
#tinymce .btn,
#tinymce button,
#tinymce input[type="submit"],
#tinymce input[type="button"] {
  text-decoration: none;
  color: #fff;
  background: #ccc;
  padding: 0.625rem 1.5rem!important;
  border-radius: 2rem;
}
#tinymce .btn:hover,
#tinymce button:hover,
#tinymce input[type="submit"]:hover,
#tinymce input[type="button"]:hover {
  background: #000;
  color: #fff;
}
#tinymce .btn[data-mce-selected],
#tinymce button[data-mce-selected],
#tinymce input[type="submit"][data-mce-selected],
#tinymce input[type="button"][data-mce-selected] {
  background: #008ec2;
  box-shadow: none;
}
#tinymce svg,
#tinymce img[src$=".svg"] {
  max-height: 100px;
  max-width: 100px;
}
.mce-item-table,
.mce-item-table td,
.mce-item-table th,
.mce-item-table caption {
  border: 1px solid #ddd;
}
.mce-item-table th:not([scope="row"]) {
  background: #ddd;
  border-color: #ccc;
}
.mce-item-table th[scope="row"] {
  text-align: right;
}
#tinymce table:not(.ui-datepicker-calendar) {
  border-color: #ddd !important;
}
#tinymce table:not(.ui-datepicker-calendar) * {
  border-color: #ddd !important;
}
#tinymce table:not(.ui-datepicker-calendar) th:not([scope="row"]) {
  background: #bbb;
  border-color: #aaa !important;
  color: #fff;
}
#tinymce table:not(.ui-datepicker-calendar) th:nth-child(even) {
  background: #b3b3b3;
}
#tinymce table:not(.ui-datepicker-calendar) td:nth-child(even) {
  background: rgba(0, 0, 0, 0.03);
}
#tinymce table:not(.ui-datepicker-calendar) tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.06);
}
.hide {
  display: none;
}
/* Page Builder & Gravity Forms
================================================== */
.editor_tinymce #primary {
  padding: 4rem 0 6rem;
}
.editor_pagebuilder.pad_heading #primary > .col {
  padding-top: 4rem;
}
.editor_pagebuilder:not(.pad_heading) .entry-content > .panel-layout:first-child > .panel-no-style:first-child,
.editor_pagebuilder:not(.pad_heading) .entry-content > .panel-layout:first-child > .panel-has-style:first-child > .panel-row-style:first-child {
  padding-top: 4rem;
}
.entry-content > .panel-layout:last-child > .panel-no-style:last-child,
.editor_pagebuilder .entry-content > .panel-layout:last-child > .panel-has-style:last-child > .panel-row-style:last-child {
  padding-bottom: 6rem;
}
.editor_pagebuilder .site-content > .grid_12_of_12 > article {
  margin-bottom: 0;
}
#wptime-plugin-preloader,
#preloader {
  z-index: 999999 !important;
}
#wptime-plugin-preloader,
#preloader {
  /*
	-moz-background-size:<?php echo $image_width; ?>px <?php echo $image_height; ?>px;
	-o-background-size:<?php echo $image_width; ?>px <?php echo $image_height; ?>px;
	-webkit-background-size:<?php echo $image_width; ?>px <?php echo $image_height; ?>px;
	background-size:<?php echo $image_width; ?>px <?php echo $image_height; ?>px;
	*/
  -moz-background-size: 75px 50px!important;
  -o-background-size: 75px 50px!important;
  -webkit-background-size: 75px 50px!important;
  background-size: 75px 50px!important;
}
#wptime-plugin-preloader:before,
#preloader:before {
  content: '';
  background-color: inherit;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body .gform_wrapper {
  margin: 0 0 1.5rem;
}
body .gform_wrapper br {
  display: none;
}
body .gform_wrapper p {
  margin: 0;
  display: inline;
  line-height: 1px;
}
body .gform_wrapper p label {
  line-height: normal;
}
body .gform_wrapper .gform_fields {
  font-size: 0;
  padding: 0;
}
body .gform_wrapper .gform_fields li {
  font-size: 1rem;
}
body .gform_wrapper ul.gform_fields li.gfield {
  padding-right: 0;
  margin-bottom: 0 !important;
}
body .gform_wrapper .top_label div.ginput_complex.ginput_container.gf_name_has_1,
body .gform_wrapper .top_label div.ginput_complex.ginput_container.gf_name_has_2,
body .gform_wrapper .top_label div.ginput_complex.ginput_container.gf_name_has_3 {
  width: calc(100% + 16px);
  max-width: 90vw;
}
body .gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],
body .gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container select {
  margin-bottom: 0;
  margin-left: 0 !important;
}
body .gform_wrapper .ginput_container_address span {
  min-height: 0 !important;
}
body .gform_wrapper .ginput_container_address input {
  margin-bottom: 1rem !important;
}
body .gform_wrapper .ginput_container_address span.address_zip input,
body .gform_wrapper .ginput_container_address span.address_country input {
  margin-bottom: 0 !important;
}
body .gform_wrapper li.hidden_label input {
  margin-top: 0;
}
body .gform_wrapper .gform_footer,
body .gform_wrapper .ginput_container {
  padding: 0;
}
body .gform_wrapper .gform_footer br,
body .gform_wrapper .ginput_container br {
  display: none;
}
body .gform_wrapper .gform_footer p,
body .gform_wrapper .ginput_container p {
  margin-bottom: 0;
  display: inline;
}
body .gform_wrapper .gf_left_half {
  padding-right: 8px !important;
}
body .gform_wrapper .gf_right_half {
  padding-right: 0 !important;
  padding-left: 8px;
}
body .gform_wrapper .gf_left_half .ginput_container,
body .gform_wrapper .gf_right_half .ginput_container {
  margin-top: 0 !important;
}
body .gform_wrapper .top_label input.large.datepicker,
body .gform_wrapper .top_label input.medium.datepicker,
body .gform_wrapper .top_label input.small.datepicker {
  width: 100%;
}
body .gform_wrapper .money .ginput_container {
  position: relative;
}
body .gform_wrapper .money .ginput_container:before {
  content: '$';
  border: 1px solid #ccc;
  color: #aaa;
  background: #eee;
  padding: calc(0.625rem - 2px) 0;
  width: 1.5rem;
  text-align: center;
  line-height: 1rem;
  border-radius: 3px 0 0 3px;
  position: absolute;
  top: 0;
  left: 0;
}
body .gform_wrapper .money .ginput_container input {
  padding-left: calc(1.5rem + 4px) !important;
}
ul.sow-slider-images,
ul.sow-slider-images li {
  margin-bottom: 0 !important;
}
.ginput_container.ginput_container_email {
  width: 360px !important;
}
.gform_wrapper.horizontal_wrapper {
  display: inline-block;
  width: auto;
}
.gform_wrapper.horizontal_wrapper form.horizontal {
  display: flex;
  align-items: center;
}
.gform_wrapper.horizontal_wrapper form.horizontal .gfield_required {
  display: none;
}
.gform_wrapper.horizontal_wrapper form.horizontal li.gfield {
  display: flex;
  align-items: center;
}
.gform_wrapper.horizontal_wrapper form.horizontal li.gfield .gfield_label,
.gform_wrapper.horizontal_wrapper form.horizontal li.gfield .ginput_container {
  float: none !important;
  display: block;
  width: auto;
}
.gform_wrapper.horizontal_wrapper form.horizontal li.gfield .gfield_label {
  white-space: nowrap;
  padding-right: 2rem;
}
.gform_wrapper.horizontal_wrapper form.horizontal li.gfield input[type=text] {
  width: 100%;
  min-width: 17rem;
}
.gform_wrapper.horizontal_wrapper form.horizontal .gform_footer {
  margin: 0;
  padding: 0 0 0 2rem;
}
.gform_wrapper.horizontal_wrapper form.horizontal li.gfield .gfield_label {
  font-size: 3.33rem;
  font-family: 'modesto-condensed', Helvetica, Arial, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}
.gform_wrapper.horizontal_wrapper form.horizontal .gform_footer {
  padding-right: 2rem;
}
.gform_legacy_markup_wrapper form {
  text-align: center !important;
}
/* Galleries
================================================== */
.gallery_wrap:not(.masonry) {
  width: calc(100% + 4rem) !important;
  margin: 0 -2rem;
}
.gallery_wrap:not(.masonry) .gallery .gallery-item {
  padding: 0;
  float: none;
  margin: 0 2rem 4rem;
}
.gallery_wrap:not(.masonry) .gallery.gallery-columns-1 > .gallery-item {
  width: 100%;
  margin: 0;
}
.gallery_wrap:not(.masonry) .gallery.gallery-columns-2 > .gallery-item {
  width: calc(100% / 2 - 4rem);
}
.gallery_wrap:not(.masonry) .gallery.gallery-columns-3 > .gallery-item {
  width: calc(100% / 3 - 4rem);
}
.gallery_wrap:not(.masonry) .gallery.gallery-columns-4 > .gallery-item {
  width: calc(100% / 4 - 4rem);
}
.gallery_wrap:not(.masonry) .gallery.gallery-columns-5 > .gallery-item {
  width: calc(100% / 5 - 4rem);
}
.gallery_wrap:not(.masonry) .gallery.gallery-columns-6 > .gallery-item {
  width: calc(100% / 6 - 4rem);
}
.gallery_wrap:not(.masonry) .gallery.gallery-columns-7 > .gallery-item {
  width: calc(100% / 7 - 4rem);
}
.gallery_wrap:not(.masonry) .gallery.gallery-columns-8 > .gallery-item {
  width: calc(100% / 8 - 4rem);
}
.gallery_wrap:not(.masonry) .gallery.gallery-columns-9 > .gallery-item {
  width: calc(100% / 9 - 4rem);
}
.gallery_wrap.masonry {
  width: calc(100% + 4px) !important;
  margin: 0 -2px;
}
.gallery_wrap.masonry .gallery .gallery-item {
  padding: 0;
  float: none;
  margin: 0 2px 4px;
}
.gallery_wrap.masonry .gallery.gallery-columns-1 > .gallery-item {
  width: 100%;
  margin: 0;
}
.gallery_wrap.masonry .gallery.gallery-columns-2 > .gallery-item {
  width: calc(100% / 2 - 4px);
}
.gallery_wrap.masonry .gallery.gallery-columns-3 > .gallery-item {
  width: calc(100% / 3 - 4px);
}
.gallery_wrap.masonry .gallery.gallery-columns-4 > .gallery-item {
  width: calc(100% / 4 - 4px);
}
.gallery_wrap.masonry .gallery.gallery-columns-5 > .gallery-item {
  width: calc(100% / 5 - 4px);
}
.gallery_wrap.masonry .gallery.gallery-columns-6 > .gallery-item {
  width: calc(100% / 6 - 4px);
}
.gallery_wrap.masonry .gallery.gallery-columns-7 > .gallery-item {
  width: calc(100% / 7 - 4px);
}
.gallery_wrap.masonry .gallery.gallery-columns-8 > .gallery-item {
  width: calc(100% / 8 - 4px);
}
.gallery_wrap.masonry .gallery.gallery-columns-9 > .gallery-item {
  width: calc(100% / 9 - 4px);
}
.gallery {
  width: 100% !important;
}
.gallery .gallery-icon > a {
  border-bottom: none !important;
  display: block;
}
.gallery .gallery-icon img {
  display: block;
}
.gallery .gallery-caption {
  display: none;
}
.gallery a:hover {
  opacity: 0.6;
}
.gallery:not(.masonry) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.gallery:not(.masonry) .gallery-icon img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.gallery_wrap.masonry {
  position: relative;
}
.gallery_wrap.masonry > .spinner {
  display: none;
}
.gallery_wrap.masonry > .gallery_wrap > .spinner {
  display: block;
}
.gallery_wrap.masonry .spinner {
  position: absolute;
  background: #fff;
  top: 0;
  left: calc(50% - 2rem);
  width: 4rem;
  height: 4rem;
  z-index: 1;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.gallery_wrap.masonry .spinner svg {
  width: 100%;
  height: 100%;
}
.gallery_wrap.masonry .gallery {
  position: relative;
  z-index: 2;
  opacity: 0;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.gallery_wrap.masonry img {
  width: 100% !important;
  height: auto;
}
.gallery_wrap.masonry.loaded .gallery {
  opacity: 1;
}
.gallery_wrap.masonry.loaded .spinner {
  opacity: 0;
}
.gallery_wrap.slides {
  margin-bottom: 3rem;
}
.gallery_wrap.slides div,
.gallery_wrap.slides figure {
  width: 100%;
}
.gallery_wrap.slides figure {
  padding: 0;
  margin: 0;
  display: block;
  background: #ccc;
  padding-top: 65%;
  position: relative;
}
.gallery_wrap.slides figure > div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.gallery_wrap.slides figure > div > img {
  max-width: 1280px;
  width: 100%;
  height: auto;
}
.gallery_wrap.slides li {
  margin-bottom: 0 !important;
}
.gallery_wrap.slides li:before {
  display: none;
}
.gallery_wrap.slides .flickity-page-dots {
  bottom: -3rem;
}
/* Colors & Fonts
================================================== */
body {
  color: #291810;
}
#headerbar {
  background: #540d0c;
  color: #fff;
  font-size: 0.9rem;
}
#headercontainer.smaller {
  background: #fff;
}
#inner_header {
  font-size: 0.85rem;
  color: #fff;
}
#inner_header a {
  color: #fff;
}
#inner_header em {
  font-style: normal;
  color: #b0782b;
  display: inline-block;
  vertical-align: top;
  font-size: 0.9em;
  padding: 0 0.25rem;
}
#bannercontainer {
  background-color: #462f22;
  background-image: url('/wp-content/uploads/2019/06/wood_bg.jpg');
  background-repeat: repeat;
  background-size: auto;
  background-position: center top;
  background-size: 50%;
}
@media screen and (max-width: 1422px) {
  #bannercontainer {
    background-size: 100% !important;
  }
}
#bannercontainer h1 {
  color: #fff;
}
#maincontentcontainer {
  background-color: #f5f1ee;
  background-image: url('/wp-content/uploads/2019/06/cream_bg.jpg');
  background-repeat: repeat;
  background-size: auto;
  background-position: center top;
  background-size: 50%;
}
h1,
h2 {
  color: #540d0c;
}
h1 .sub,
h2 .sub {
  color: #b0782b;
}
h3,
h4,
h5,
h6 {
  color: #b0782b;
}
.lightTxt p,
.lightTxt h1,
.lightTxt h2,
.lightTxt h3,
.lightTxt h4,
.lightTxt h5,
.lightTxt h6,
.lightTxt li {
  color: #fff;
}
.lightTxt h1 .sub,
.lightTxt h2 .sub {
  color: #fff;
}
a {
  color: #540d0c;
}
a:hover {
  color: #291810;
}
.featured-post {
  background: #540d0c;
}
#footerbar {
  background-color: #462f22;
  background-image: url('/wp-content/uploads/2019/06/wood_bg.jpg');
  background-repeat: repeat;
  background-size: auto;
  background-position: center top;
  background-size: 50%;
  color: #fff;
}
@media screen and (max-width: 1422px) {
  #footerbar {
    background-size: 100% !important;
  }
}
#footercontainer,
html {
  background: #1c0c05;
  color: #fff;
}
#footercontainer a {
  color: #fff;
}
#footercontainer a:hover {
  color: #b0782b;
}
strong.large {
  font-size: 1.25em;
}
strong.large a {
  color: #b0782b;
}
strong.large a:hover {
  color: #fff;
}
hr {
  background: #ddd;
}
#primary ul li:before,
#primary ol li:before {
  color: #540d0c;
}
#primary a:hover {
  border-bottom-color: #b0782b;
}
table:not(.ui-datepicker-calendar) {
  border-color: rgba(221, 221, 221, 0.8) !important;
}
table:not(.ui-datepicker-calendar) * {
  border-color: rgba(221, 221, 221, 0.8) !important;
}
table:not(.ui-datepicker-calendar) td:nth-child(even) {
  background: rgba(221, 221, 221, 0.1);
}
table:not(.ui-datepicker-calendar) tr:nth-child(odd) {
  background: rgba(221, 221, 221, 0.1);
}
table:not(.ui-datepicker-calendar) th:not([scope="row"]) {
  background: #b0782b;
  border-color: #936424 !important;
  color: #fff;
}
table:not(.ui-datepicker-calendar) th:not([scope="row"]):nth-child(even) {
  background: #9c6a26;
}
.widget_nav_menu ul a {
  color: #fff;
}
.widget_nav_menu ul a:hover {
  color: #b0782b;
}
.btn,
button,
input[type="submit"],
input[type="button"] {
  color: #fff !important;
  background: #b0782b;
}
.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background: #540d0c;
}
.btn.alt,
button.alt,
input[type="submit"].alt,
input[type="button"].alt {
  background: #540d0c;
}
.btn.alt:hover,
button.alt:hover,
input[type="submit"].alt:hover,
input[type="button"].alt:hover {
  background: #b0782b;
}
#primary ul.page-numbers a:hover,
#primary ul.page-numbers span.current {
  background: #540d0c;
}
#primary ul.page-numbers a.next:hover,
#primary ul.page-numbers a.prev:hover {
  color: #540d0c;
}
.main-navigation ul.nav-menu {
  padding-left: 0;
}
.main-navigation ul.nav-menu > li > a,
.main-navigation ul.nav-menu > li > span.no_link {
  color: #fff;
  font-family: 'oswald', Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1rem;
}
.main-navigation ul.nav-menu > li.button a {
  border-radius: 1.5rem;
  border: none !important;
  box-shadow: none;
  text-shadow: none;
  padding: 0.5rem 1.5rem;
  font-family: 'lato', Helvetica, Arial, sans-serif;
  font-style: normal;
  filter: none !important;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: #540d0c;
  color: #fff !important;
}
.main-navigation ul.nav-menu > li.button a:hover {
  color: #fff;
  background: #b0782b;
}
.main-navigation ul.nav-menu li.menu-parent-item > a:before,
.main-navigation ul.nav-menu li.menu-parent-item > span.no_link:before,
.main-navigation ul.nav-menu li.menu-parent-item > a:after,
.main-navigation ul.nav-menu li.menu-parent-item > span.no_link:after {
  opacity: 0.5;
}
.main-navigation ul.nav-menu > .menu-item:hover > a,
.main-navigation ul.nav-menu > .current-menu-item > a,
.main-navigation ul.nav-menu > .current_page_item > a,
.main-navigation ul.nav-menu > .current-page-ancestor > a,
.main-navigation ul.nav-menu > .current_page_parent > a,
.main-navigation ul.nav-menu > .menu-item:hover > span.no_link,
.main-navigation ul.nav-menu > .current-menu-item > span.no_link,
.main-navigation ul.nav-menu > .current_page_item > span.no_link,
.main-navigation ul.nav-menu > .current-page-ancestor > span.no_link,
.main-navigation ul.nav-menu > .current_page_parent > span.no_link {
  color: #b0782b;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.75);
}
.main-navigation ul.nav-menu > .menu-item:hover.button a,
.main-navigation ul.nav-menu > .current-menu-item.button a,
.main-navigation ul.nav-menu > .current_page_item.button a,
.main-navigation ul.nav-menu > .current-page-ancestor.button a,
.main-navigation ul.nav-menu > .current_page_parent.button a {
  background: #c7c7c4;
}
.main-navigation ul.nav-menu ul a,
.main-navigation ul.nav-menu ul span.no_link {
  color: #291810 !important;
}
.main-navigation ul.nav-menu ul li:hover > a,
.main-navigation ul.nav-menu ul li.current-menu-item > a,
.main-navigation ul.nav-menu ul li.current_page_item > a,
.main-navigation ul.nav-menu ul li.current-page-ancestor > a,
.main-navigation ul.nav-menu ul li.current_page_parent > a,
.main-navigation ul.nav-menu ul li:hover > span.no_link,
.main-navigation ul.nav-menu ul li.current-menu-item > span.no_link,
.main-navigation ul.nav-menu ul li.current_page_item > span.no_link,
.main-navigation ul.nav-menu ul li.current-page-ancestor > span.no_link,
.main-navigation ul.nav-menu ul li.current_page_parent > span.no_link {
  color: #b0782b !important;
  background: #f2f2f2;
}
a.social [class^='icon-'],
a.social [class*=' icon-'] {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.9375rem;
  color: #fff;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.59375rem;
  background: #291810;
  border-radius: 50%;
  text-align: center;
  margin: 0 0.25rem;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
a.social [class^='icon-'].icon-facebook,
a.social [class*=' icon-'].icon-facebook {
  background: #425f96;
}
a.social [class^='icon-'].icon-twitter,
a.social [class*=' icon-'].icon-twitter {
  background: #000000;
  font-size: 0.7875rem;
  line-height: 1.44375rem;
}
a.social [class^='icon-'].icon-instagram,
a.social [class*=' icon-'].icon-instagram {
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}
a.social [class^='icon-'].icon-youtube,
a.social [class*=' icon-'].icon-youtube {
  background: #e62117;
}
a.social [class^='icon-'].icon-instagram:before,
a.social [class*=' icon-'].icon-instagram:before,
a.social [class^='icon-'].icon-youtube:before,
a.social [class*=' icon-'].icon-youtube:before {
  position: relative;
  top: -1px;
}
a.social:hover [class^='icon-'],
a.social:hover [class*=' icon-'] {
  background: #b0782b !important;
}
/* Homepage
================================================== */
#home_banner {
  padding-bottom: 3rem;
  max-height: 53rem;
  background-color: #462f22;
  background-image: url('/wp-content/uploads/2019/06/wood_bg.jpg');
  background-repeat: repeat;
  background-size: auto;
  background-position: center top;
  background-size: 50%;
  position: relative;
}
@media screen and (max-width: 1422px) {
  #home_banner {
    background-size: 100% !important;
  }
}
#home_banner:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
#home_banner .panel-grid-cell {
  position: relative;
}
#home_banner h1 {
  margin-top: 15%;
  text-shadow: 6px 4px 7px rgba(0, 0, 0, 0.35);
}
#home_banner h1 span.sub {
  font-size: 1.67rem;
}
#home_banner p > .btn {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
#sunday_races {
  position: relative;
  background-position: center center!important;
}
#sunday_races:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  background-image: -webkit-linear-gradient(-90deg, #79b4e6, rgba(121, 180, 230, 0));
  background-image: -moz-linear-gradient(-90deg, #79b4e6, rgba(121, 180, 230, 0));
  background-image: -ms-linear-gradient(-90deg, #79b4e6, rgba(121, 180, 230, 0));
  background-image: -o-linear-gradient(-90deg, #79b4e6, rgba(121, 180, 230, 0));
  background-image: linear-gradient(180deg, #79b4e6, rgba(121, 180, 230, 0));
  opacity: 0.5;
}
#sunday_races .panel-grid-cell {
  position: relative;
}
#sunday_races .textwidget {
  background: rgba(41, 24, 16, 0.85);
  padding: 3.3rem 5rem;
  max-width: 42rem;
  margin: 0 auto;
}
#sunday_races .btn:hover {
  background-color: #506626 !important;
}
#venue_big_img .sow-image-container {
  width: 85%;
  margin: 0 auto;
}
#venue img,
.shadowed_gallery img {
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.1);
}
#book_form {
  position: relative;
  top: -0.75rem;
}
.events {
  align-items: stretch;
}
.events .event {
  background: #fff;
  padding: 0 2rem 2rem;
  max-width: 33.3%;
  margin-bottom: 3rem;
  box-shadow: 0 0 0.25rem rgba(41, 24, 16, 0.125);
  position: relative;
}
.events .event p,
.events .event h4 {
  margin-bottom: 0;
  color: #540d0c;
  line-height: 1;
}
.events .event p {
  font-size: 0.9rem;
}
.events .event h4 {
  padding: 0 0 0.5rem;
}
.events .event h4 span.sub {
  font-family: 'lato', Helvetica, Arial, sans-serif;
  text-transform: none;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  letter-spacing: normal;
  color: #948c88;
}
.events .widget {
  max-width: 33.3%;
  margin-bottom: 3rem;
}
.events .widget a,
.events .widget img {
  display: block;
  width: 100%;
  height: 100% !important;
}
.events.cols_3 {
  align-items: stretch;
}
.events p.thumb {
  margin: 0 -2rem 2rem;
  padding-top: calc(51% + 2rem);
  position: relative;
}
.events p.thumb img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.events p.thumb span.placeholder {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-size: 3.5rem;
  opacity: 0.15;
  overflow: hidden;
  word-break: break-word;
  line-height: 1;
  font-weight: bold;
  padding: 0 0 0 0.5rem;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.events div.details {
  display: flex;
}
.events div.details .date {
  width: 15%;
  text-align: center;
  padding-right: 1rem;
  font-family: 'oswald', Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(84, 13, 12, 0.5);
  font-size: 0.9rem;
  line-height: 1.025;
}
.events div.details .date strong {
  display: block;
  color: #540d0c;
  font-size: 1.67rem;
}
.events.events_gallery div.details {
  align-items: center;
}
.events div.button {
  position: absolute;
  bottom: 0;
  left: 50%;
  text-align: center;
  transform: translate(-50%, 50%);
}
.events div.button .btn {
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
}
.events.carousel {
  margin: 0 -0.75rem;
}
.events.carousel:after {
  content: 'flickity';
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.events.carousel .event,
.events.carousel .widget {
  width: calc(33.3% - 1rem);
  margin: 0 0.75rem 1.5rem;
}
.events.carousel .flickity-prev-next-button {
  background: none;
  opacity: 0.25;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.events.carousel .flickity-prev-next-button:hover {
  opacity: 0.75;
}
.events.carousel .flickity-prev-next-button .flickity-button-icon {
  fill: #fff;
}
.events.carousel .flickity-prev-next-button.next {
  right: -3rem;
}
.events.carousel .flickity-prev-next-button.previous {
  left: -3rem;
}
.events.carousel .flickity-page-dots {
  bottom: -2.5rem;
}
.events.carousel .flickity-page-dots li:before {
  display: none;
}
.events.carousel .flickity-page-dots .dot {
  background: #fff;
  margin-bottom: 0 !important;
}
.events.carousel .carousel-cell {
  min-height: 100%;
  display: flex;
}
#small_map iframe {
  border: 0.5rem solid #fff!important;
  box-shadow: 0 0 0.25rem rgba(70, 47, 34, 0.15);
  height: 14rem;
}
.gallery_thumbs .panel-grid-cell:not(.panel-grid-cell-empty) {
  background: #fff;
  box-shadow: 0 0 0.25rem rgba(41, 24, 16, 0.125);
  position: relative;
}
.gallery_thumbs h2 {
  font-family: 'oswald', Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.5rem;
  padding: 1rem 2rem 2rem;
  margin: 0;
}
.gallery_thumbs a {
  display: block;
}
.gallery_thumbs a:after {
  content: 'View Gallery';
  border-radius: 2rem;
  border: none !important;
  box-shadow: none;
  text-shadow: none;
  padding: 0.625rem 1.5rem;
  font-family: 'oswald', Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-style: normal;
  font-size: 0.9rem;
  filter: none !important;
  display: inline-block;
  font-size: 1rem;
  color: #fff !important;
  background: #b0782b;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.gallery_thumbs a:hover:after {
  background: #540d0c;
}
#primary .pdf_cols .panel-grid-cell:not(.panel-grid-cell-empty) {
  background: #fff;
  box-shadow: 0 0 0.25rem rgba(41, 24, 16, 0.125);
  position: relative;
  margin-bottom: 2rem;
}
#primary .pdf_cols h3 {
  padding: 1rem;
  font-size: 1rem;
  margin: 0;
  background: #540d0c;
  color: #fff;
}
#primary .pdf_cols ul {
  padding: 0;
  margin: 0;
}
#primary .pdf_cols ul li {
  padding: 1rem;
  border-bottom: 1px solid rgba(199, 199, 196, 0.5);
}
#primary .pdf_cols ul li:last-child {
  border-bottom: none;
}
#primary .pdf_cols ul li:before {
  content: '\f1c1';
  font-family: "mpc_icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
  position: static;
  padding-right: 0.25rem;
  font-size: 1rem;
}
/* Blog Posts
================================================== */
.archive #primary article,
.blog #primary article {
  background: #fff;
  padding: 0 2rem 2rem;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
}
.archive #primary article .date,
.blog #primary article .date {
  color: #b0782b;
}
.archive #primary article h3,
.blog #primary article h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-transform: none;
  letter-spacing: normal;
}
.archive #primary article h3 a,
.blog #primary article h3 a {
  color: #291810;
}
.archive #primary article a.readmore,
.blog #primary article a.readmore {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: 150%;
  white-space: nowrap;
  text-align: left;
  overflow: hidden;
  opacity: 0;
  box-shadow: none;
  z-index: 9;
}
.archive #primary article a.readmore:hover,
.blog #primary article a.readmore:hover {
  opacity: 0.25;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.archive #primary article p.thumb,
.blog #primary article p.thumb {
  margin: 0 -2rem 1.5rem;
  padding-top: calc(100% + 2.24rem);
  position: relative;
}
.archive #primary article p.thumb img,
.blog #primary article p.thumb img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.archive #primary article p.thumb span.placeholder,
.blog #primary article p.thumb span.placeholder {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-size: 3.5rem;
  opacity: 0.15;
  overflow: hidden;
  word-break: break-word;
  line-height: 1;
  font-weight: bold;
  padding: 0 0 0 0.5rem;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.archive #primary article p.thumb:after,
.blog #primary article p.thumb:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c7c7c4;
  opacity: 0.25;
  z-index: 3;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.archive #primary article:hover p.thumb:after,
.blog #primary article:hover p.thumb:after {
  opacity: 0;
}
.archive #primary article:hover p.thumb span.placeholder,
.blog #primary article:hover p.thumb span.placeholder {
  background: #c7c7c4;
}
/* Theme Layout
================================================== */
a {
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
body.admin-bar #headercontainer.sticky,
body.admin-bar.overlay_header #headercontainer {
  top: 32px;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
body.overlay_header #headercontainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}
#headercontainer {
  width: 100%;
  text-align: right;
}
#headercontainer.sticky {
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
}
#headercontainer.sticky * {
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#headercontainer.sticky.smaller {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  position: fixed;
}
#headercontainer.sticky.smaller #logo {
  max-height: 80px;
}
#headercontainer.sticky.smaller header {
  padding: 0.5rem 0;
}
#headercontainer.sticky.smaller #headerbar {
  padding: 0.25rem;
}
#headercontainer.sticky.smaller #inner_header {
  margin-bottom: 0.5rem;
}
#headercontainer.sticky.smaller #headerbar,
#headercontainer.sticky.smaller #inner_header {
  display: none;
}
body.include_bar #headercontainer.sticky.smaller #headerbar,
body.include_inner #headercontainer.sticky.smaller #inner_header {
  display: block;
}
#headercontainer header {
  padding: 0 0 1rem;
  margin: 0 auto;
  width: 90%;
  max-width: 1280px;
  font-size: 0;
  white-space: nowrap;
}
#headercontainer header .site-title,
#headercontainer header .nav-wrap {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  white-space: normal;
}
#headercontainer header .site-title {
  width: 25%;
  text-align: left;
}
#headercontainer header .site-title h1 {
  line-height: 0;
  padding-top: 0;
}
#headercontainer header .nav-wrap {
  width: 75%;
  text-align: right;
}
#logo {
  max-width: 100%;
  width: auto;
  padding: 1rem 0;
  margin-left: -1rem;
}
#headerbar {
  text-align: right;
  padding: 0.5rem 0;
}
#headerbar p {
  margin-bottom: 0;
}
#headerbar .wrap {
  margin: 0 auto;
  width: 90%;
  max-width: 1280px;
}
#headerbar ul,
#headerbar ol {
  margin: 0;
  padding: 0;
}
#headerbar ul li,
#headerbar ol li {
  display: inline-block;
  list-style: none;
  margin-left: 0.5rem;
}
#inner_header {
  overflow: hidden;
  margin-bottom: 1rem;
}
#inner_header p {
  margin-bottom: 0;
}
#bannercontainer {
  position: relative;
}
#bannercontainer #headercontainer {
  position: relative;
  z-index: 9;
}
#bannercontainer:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
}
#bannercontainer .banner {
  padding: 0 0 3rem;
  text-align: center;
  margin: 0 auto;
  width: 90%;
  max-width: 1280px;
}
#bannercontainer .banner * {
  margin: 0;
}
#maincontentcontainer {
  overflow: hidden;
}
#primary {
  margin: 0 auto;
  width: 90%;
  max-width: 1280px;
}
#primary .paging-navigation ul li:before {
  display: none;
}
#primary form li:before {
  display: none;
}
.post-navigation.nav-single {
  margin-top: 4rem;
  font-size: 0;
  white-space: nowrap;
}
.post-navigation.nav-single > div {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  white-space: normal;
  width: 50%;
}
.post-navigation.nav-single > div:nth-child(2) {
  text-align: right;
}
#footerbar {
  position: relative;
  overflow: hidden;
}
#footerbar .wrap {
  position: relative;
  padding: 2rem 0;
  text-align: center;
}
#footerbar .wrap * {
  margin: 0;
}
#footerbar .wrap > * {
  margin: 0 auto;
  width: 90%;
  max-width: 1280px;
  padding: 0;
}
#footercontainer {
  overflow: hidden;
}
#footercontainer footer {
  margin: 0 auto;
  width: 90%;
  max-width: 1280px;
}
#footercontainer h3 {
  padding-top: 0;
}
#footercontainer .site-footer {
  padding: 4rem 0;
}
#footercontainer .site-footer p:last-child {
  margin-bottom: 0;
}
#footercontainer .site-footer h3,
#footercontainer .site-footer .widget_nav_menu ul.menu > li > a {
  font-family: 'oswald', Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1.0rem;
}
#footercontainer .site-footer .widget-area img,
#footercontainer .site-footer .widget-area svg {
  width: 80% !important;
  margin-bottom: 2.0rem;
}
#footercontainer .site-footer .widget_nav_menu ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footercontainer .site-footer .widget_nav_menu ul.menu ul {
  padding: 0;
  margin: 0 0 0 0.75rem;
}
#footercontainer .site-footer .widget_nav_menu ul.menu ul li {
  list-style-type: none;
  position: relative;
}
#footercontainer .site-footer .widget_nav_menu ul.menu ul li:last-child {
  margin-bottom: 0;
}
#footercontainer .site-footer .widget_nav_menu ul.menu ul li:before {
  content: '- ';
  position: absolute;
  top: -2px;
  line-height: 1.5em;
  left: -0.75rem;
  opacity: 0.25;
}
#footercontainer .site-footer .widget_nav_menu ul.menu ul li a {
  opacity: 0.5;
}
#footercontainer .site-footer .widget_nav_menu ul.menu ul li a:hover {
  opacity: 1;
}
.smallprint {
  text-align: center;
  overflow: hidden;
  padding: 1rem 0;
}
.smallprint p {
  margin-bottom: 0;
  font-size: 0.9rem;
}
.smallprint .wrap {
  margin: 0 auto;
  width: 90%;
  max-width: 1280px;
}
.smallprint .widget-area ul {
  margin-bottom: 1rem;
  padding: 0;
  list-style: none;
  text-transform: uppercase;
}
.smallprint .widget-area ul li {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  white-space: normal;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-right: 0.75rem;
  margin-right: 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.smallprint .widget-area ul li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}
.smallprint .widget-area ul li ul {
  display: none;
}
.smallprint .widget-area ul > .menu-item:hover > a,
.smallprint .widget-area ul > .current-menu-item > a,
.smallprint .widget-area ul > .current_page_item > a,
.smallprint .widget-area ul > .current-page-ancestor > a,
.smallprint .widget-area ul > .current_page_parent > a,
.smallprint .widget-area ul > .menu-item:hover > span.no_link,
.smallprint .widget-area ul > .current-menu-item > span.no_link,
.smallprint .widget-area ul > .current_page_item > span.no_link,
.smallprint .widget-area ul > .current-page-ancestor > span.no_link,
.smallprint .widget-area ul > .current_page_parent > span.no_link {
  color: #b0782b;
}
.archive-description {
  font-style: italic;
  opacity: 0.75;
}
.post-password-form {
  text-align: center;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  max-width: 960px;
  margin: 0 auto 1.5rem;
  padding: 2rem;
}
.post-password-form > *:last-child {
  margin-bottom: 0;
}
*[data-tooltip] {
  position: relative;
  color: #540d0c;
  padding-bottom: 0.5rem;
  margin-bottom: -0.5rem;
}
*[data-tooltip]:before {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  width: 200px;
  left: 50%;
  margin-left: -100px;
  background: #fff;
  border: 1px solid #540d0c;
  border-radius: 3px;
  padding: 0.5rem;
  font-size: 1rem;
  box-sizing: border-box;
  z-index: 9;
  font-size: 0.7rem;
  color: #291810;
  white-space: pre-line;
  font-style: normal;
  display: none;
  text-align: left;
}
*[data-tooltip]:after {
  content: '';
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: calc(100% - 0.25rem);
  left: 50%;
  margin-left: -0.5rem;
  transform: rotate(45deg);
  background: #540d0c;
  font-size: 0.8rem;
  display: none;
}
*[data-tooltip]:hover {
  color: #b0782b;
}
*[data-tooltip]:hover:before,
*[data-tooltip]:hover:after {
  display: block;
}
/* Dropdown Menu
================================================== */
ul span.menu_description {
  display: none;
}
.main-navigation ul.nav-menu {
  font-size: 0;
  white-space: nowrap;
  /*
	& > li > ul > li:first-child {
		&:before {
			content: '';
			display: block;
			position: absolute;
			top: -0.25rem;
			right: 0.5rem;
			width: 1rem;
			height: 1rem;
			background: #f5f5f5;
			margin: 1px;
			z-index: -1;
			.rotate(45deg);
			opacity: 0;
			.fadeOnHover();
		}
		&:hover:before { opacity: 1; }
	}
	*/
}
.main-navigation ul.nav-menu a,
.main-navigation ul.nav-menu span.no_link {
  display: block;
}
.main-navigation ul.nav-menu > li {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  white-space: normal;
  list-style: none;
  padding: 0 0 0.75rem 1rem;
}
.main-navigation ul.nav-menu li {
  position: relative;
  list-style: none;
}
.main-navigation ul.nav-menu li:hover > ul {
  display: block;
}
.main-navigation ul.nav-menu li.menu-parent-item > a:after,
.main-navigation ul.nav-menu li.menu-parent-item > span.no_link:after {
  /* arrows on the top level drop down */
  font-weight: normal;
  font-style: normal;
  speak: none;
  vertical-align: middle;
  font-size: 0.9rem;
  padding-left: 2px;
  position: relative;
  top: -2px;
  content: " \0025BE";
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.main-navigation ul.nav-menu li li.menu-parent-item > a:after,
.main-navigation ul.nav-menu li li.menu-parent-item > span.no_link:after {
  display: none;
}
.main-navigation ul.nav-menu li li.menu-parent-item > a:before,
.main-navigation ul.nav-menu li li.menu-parent-item > span.no_link:before {
  /* arrows on the sub-menu */
  font-weight: normal;
  font-style: normal;
  speak: none;
  vertical-align: middle;
  padding-left: 4px;
  position: relative;
  top: 0;
  content: " \0025B8";
  display: inline-block;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 0.5;
}
.main-navigation ul.nav-menu ul {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 99999;
  padding: 0;
  font-size: 0.9rem;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  width: 15rem;
  background: #fff;
  text-align: left;
  padding: 0 0.75rem 0.75rem;
}
.main-navigation ul.nav-menu ul li {
  background: #fff;
  z-index: 10;
}
.main-navigation ul.nav-menu ul li:first-child {
  border-radius: 5px 5px 0 0;
  padding-top: 0.75rem;
}
.main-navigation ul.nav-menu ul li a,
.main-navigation ul.nav-menu ul li span.no_link {
  padding: calc(0.5rem - 5px ) calc(1rem - 5px );
  border-radius: 3px;
  line-height: normal;
  position: relative;
  z-index: 999;
}
.main-navigation ul.nav-menu ul ul {
  padding: 0.75rem 0 0.75rem 0.75rem;
  right: 100%;
  top: -1px;
}
.main-navigation ul.nav-menu ul ul li {
  padding: 0 0.75rem 0 0 !important;
}
.main-navigation ul.nav-menu ul ul ul {
  top: calc( -1px -  0.75rem );
}
.main-navigation ul.nav-menu > li:last-child ul ul {
  left: auto;
  right: 100%;
}
.main-navigation ul.nav-menu > li > ul:before,
.main-navigation ul.nav-menu > li > ul:after {
  content: '';
  display: block;
  position: absolute;
  top: -0.25rem;
  right: 1rem;
  width: 1rem;
  height: 1rem;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.main-navigation ul.nav-menu > li > ul:before {
  border: 1px solid #e0e0e0;
}
.main-navigation ul.nav-menu > li > ul:after {
  margin: 1px;
}
.main-navigation ul.nav-menu > li > ul ul:before,
.main-navigation ul.nav-menu > li > ul ul:after {
  content: '';
  display: block;
  position: absolute;
  right: -0.25rem;
  top: 1rem;
  width: 1rem;
  height: 1rem;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.main-navigation ul.nav-menu > li > ul ul:before {
  border: 1px solid #e0e0e0;
}
.main-navigation ul.nav-menu > li > ul ul:after {
  margin: 1px;
}
/* Archives
================================================== */
#primary h2.entry-title,
#primary h1.entry-title {
  margin-bottom: 0;
  word-break: break-word;
}
#primary h2.entry-title a,
#primary h1.entry-title a {
  border-bottom: none !important;
}
.header-meta,
.footer-meta {
  padding: 0.25rem 0;
  margin: 0.25rem 0 1.5rem;
  font-size: 0.9rem;
  color: #ccc;
}
.header-meta i.fa,
.footer-meta i.fa {
  margin-right: 0.25rem;
}
.header-meta a:not(.btn),
.footer-meta a:not(.btn) {
  border-bottom: none !important;
}
.header-meta .left,
.footer-meta .left {
  float: left;
}
.header-meta .right,
.footer-meta .right {
  float: right;
}
.header-meta a.btn,
.footer-meta a.btn {
  margin-top: 0;
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
}
.header-meta:after,
.footer-meta:after {
  content: '';
  display: block;
  clear: both;
}
.footer-meta {
  clear: both;
}
.footer-meta .left {
  max-width: calc(100% - 115px - 1rem);
}
.footer-meta .left div {
  display: inline;
}
.footer-meta .right {
  min-width: 115px;
  text-align: right;
}
body.archive #primary > div > article,
body.blog #primary > div > article,
body.search #primary > div > article {
  border-bottom: 1px solid #ddd;
  margin-bottom: 3rem;
}
body.archive #primary > div > article p.readmore,
body.blog #primary > div > article p.readmore,
body.search #primary > div > article p.readmore {
  display: none;
}
body.archive #primary > div > article.sticky,
body.blog #primary > div > article.sticky,
body.search #primary > div > article.sticky {
  border: 1px solid #e5e5e5;
  background: #fafafa;
  padding: 0 1.5rem;
}
body.archive #primary > div > article.sticky .featured-post,
body.blog #primary > div > article.sticky .featured-post,
body.search #primary > div > article.sticky .featured-post {
  text-align: center;
  color: #fff;
  font-family: 'oswald', Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.25rem;
  margin: -1px calc(-1.5rem - 1px) 0;
}
#primary ul.page-numbers {
  padding: 0;
  margin: 0;
  text-align: center;
}
#primary ul.page-numbers li {
  display: inline-block;
  vertical-align: top;
}
#primary ul.page-numbers li a,
#primary ul.page-numbers li span {
  display: inline-block;
  border-bottom: none !important;
  background: #cfcfcf;
  color: #fff;
  min-width: 1.5rem;
  height: 1.5rem;
  line-height: 1.125rem;
  padding: 0.25rem;
  border-radius: 2px;
}
#primary ul.page-numbers li a.next,
#primary ul.page-numbers li a.prev {
  background: none !important;
  color: rgba(41, 24, 16, 0.75);
}
/* Author Bio
================================================== */
#primary footer.entry-meta .author-info {
  font-size: 0;
  white-space: nowrap;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  margin: 0 auto 1.5rem;
  padding: 1.5rem;
  position: relative;
}
#primary footer.entry-meta .author-description,
#primary footer.entry-meta .author-avatar {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  white-space: normal;
  vertical-align: top;
}
#primary footer.entry-meta .author-description {
  width: calc(100% - 96px - 1.5rem);
  margin: 0;
}
#primary footer.entry-meta .author-description h3 {
  padding-top: 0;
  margin-bottom: 0.5rem;
}
#primary footer.entry-meta .author-description p {
  text-align: justify;
}
#primary footer.entry-meta .author-avatar {
  width: calc(96px + 1.5rem);
}
#primary footer.entry-meta .author-avatar img {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.75);
  border-radius: 500px;
}
#primary footer.entry-meta .author-link {
  text-align: right;
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
}
#primary footer.entry-meta .author-link a {
  border-bottom: none;
}
#primary footer.entry-meta .social-meta {
  text-align: right;
  margin-bottom: 0;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
#primary footer.entry-meta .social-meta a {
  border-bottom: none;
}
#primary footer.entry-meta .social-meta a [class^='icon-'],
#primary footer.entry-meta .social-meta a [class*=' icon-'] {
  font-size: 1.5rem;
}
#primary footer.entry-meta .social-meta a [class^='icon-'].icon-twitter,
#primary footer.entry-meta .social-meta a [class*=' icon-'].icon-twitter {
  color: #000000;
}
#primary footer.entry-meta .social-meta a [class^='icon-'].icon-facebook,
#primary footer.entry-meta .social-meta a [class*=' icon-'].icon-facebook {
  color: #425f96;
}
#primary footer.entry-meta .social-meta a:hover [class^='icon-'],
#primary footer.entry-meta .social-meta a:hover [class*=' icon-'] {
  color: #291810 !important;
}
/* Sidebars
================================================== */
#primary[class*='_sidebar_'] {
  font-size: 0;
  white-space: nowrap;
}
#primary[class*='_sidebar_'] > div.col {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  white-space: normal;
  vertical-align: top;
}
#primary[class*='_sidebar_'] > div.col:first-child {
  padding-right: 0.75rem;
}
#primary[class*='_sidebar_'] > div.col:last-child {
  padding-left: 0.75rem;
}
#primary[class^='right_sidebar_quarter'] > div.col:first-child,
#primary[class*=' right_sidebar_quarter'] > div.col:first-child {
  width: 75%;
}
#primary[class^='right_sidebar_quarter'] > div.col:last-child,
#primary[class*=' right_sidebar_quarter'] > div.col:last-child {
  width: 25%;
}
#primary[class^='left_sidebar_quarter'] > div.col:first-child,
#primary[class*=' left_sidebar_quarter'] > div.col:first-child {
  width: 25%;
}
#primary[class^='left_sidebar_quarter'] > div.col:last-child,
#primary[class*=' left_sidebar_quarter'] > div.col:last-child {
  width: 75%;
}
#primary[class^='right_sidebar_third'] > div.col:first-child,
#primary[class*=' right_sidebar_third'] > div.col:first-child {
  width: calc(200% / 3);
}
#primary[class^='right_sidebar_third'] > div.col:last-child,
#primary[class*=' right_sidebar_third'] > div.col:last-child {
  width: calc(100% / 3);
}
#primary[class^='left_sidebar_third'] > div.col:first-child,
#primary[class*=' left_sidebar_third'] > div.col:first-child {
  width: calc(100% / 3);
}
#primary[class^='left_sidebar_third'] > div.col:last-child,
#primary[class*=' left_sidebar_third'] > div.col:last-child {
  width: calc(200% / 3);
}
/* Animations
================================================== */
.animate {
  opacity: 0;
  -moz-transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.animate.play {
  opacity: 1;
}
.animate.play.flash {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-delay: 0.25s;
  -moz-animation-delay: 0.25s;
  -ms-animation-delay: 0.25s;
  -o-animation-delay: 0.25s;
  animation-delay: 0.25s;
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: flash;
  -moz-animation-name: flash;
  -ms-animation-name: flash;
  -o-animation-name: flash;
  animation-name: flash;
}
.animate.play.bounceIn {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-delay: 0.25s;
  -moz-animation-delay: 0.25s;
  -ms-animation-delay: 0.25s;
  -o-animation-delay: 0.25s;
  animation-delay: 0.25s;
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -ms-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: 0.75s;
  -moz-animation-duration: 0.75s;
  -ms-animation-duration: 0.75s;
  -o-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
/* Parallax 
================================================== */
.parallax_foreground {
  position: relative;
}
.parallax_foreground img {
  max-width: none !important;
}
.parallax_foreground > * {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: center center;
}
.parallax_foreground.right_align > * {
  left: auto;
  right: 0;
  transform-origin: right center;
}
.parallax_foreground.left_align > * {
  transform-origin: left center;
}
.parallax_background {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center center!important;
}
.mobile_browser .parallax_background {
  background-attachment: scroll;
  background-position: center center!important;
}
@media screen and (max-width: 767px) {
  .parallax_foreground > * {
    position: static;
  }
  .parallax_foreground img {
    max-width: 100% !important;
    max-height: 100px;
    width: auto;
    display: block;
    margin: 0 auto;
  }
}
/* Video Background 
================================================== */
.tubular-shield {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
}
.tubular-container {
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.tubular-player {
  position: absolute;
}
.tubular-inner-wrapper {
  position: relative;
  z-index: 3;
}
/* ==========================================================================
   Import mobile styles at the end
   ========================================================================== */
/*
// Retina tiled bg fix
// (size set unrealistically high to apply to all retina devices)
.retina(20000,{
	#footerbar { background-size: 50%; }
});
*/
@media screen and (max-width: 1070px) {
  .events .event {
    padding: 0 1.5rem 1.75rem;
  }
  .events p.thumb {
    margin: 0 -1.5rem 1.5rem;
  }
}
@media screen and (max-width: 900px) {
  .events .event {
    padding: 0 1rem 1.5rem;
  }
  .events p.thumb {
    margin: 0 -1rem 1rem;
  }
  .events div.button .btn {
    padding: 0.25rem 1.5rem;
  }
}
/* ==========================================================================
   Phones
   ========================================================================== */
.mobile_only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  #wpadminbar {
    display: none;
  }
  html[lang] {
    margin-top: 0 !important;
  }
  #headerbar,
  .mobile_hide {
    display: none !important;
  }
  .mobile_only {
    display: block !important;
  }
  #headercontainer header {
    width: 100%;
  }
  #headercontainer header .site-title,
  #headercontainer header .nav-wrap {
    display: block;
    text-align: center;
  }
  #headercontainer header .site-title {
    width: 80%;
    margin: 0 auto;
    top: 0;
  }
  #headercontainer header .site-title:after {
    display: none;
  }
  #headercontainer header .site-title h1 {
    margin-bottom: 0;
  }
  #headercontainer header .nav-wrap {
    text-align: left;
    width: 100%;
  }
  #headercontainer header #masthead {
    position: relative;
  }
  #headercontainer header .mobile_top {
    position: absolute;
    top: 0;
    right: 1rem;
    padding-top: 0.75rem;
    z-index: 999999;
  }
  #logo {
    max-height: 9rem;
    margin: 0;
    padding: 1rem 0 0.5rem;
  }
  #inner_header {
    font-size: 1rem;
    text-align: center;
  }
  #inner_header em {
    display: none;
  }
  #inner_header strong {
    display: block;
  }
  a.social [class^='icon-'],
  a.social [class*=' icon-'] {
    margin: 0 0.125rem;
  }
  .gallery_wrap:not(.masonry) {
    width: calc(100% + 2rem) !important;
    margin: 0 -1rem;
  }
  .gallery_wrap:not(.masonry) .gallery .gallery-item {
    padding: 0;
    float: none;
    margin: 0 1rem 2rem;
  }
  .gallery_wrap:not(.masonry) .gallery.gallery-columns-4 > .gallery-item,
  .gallery_wrap:not(.masonry) .gallery.gallery-columns-5 > .gallery-item,
  .gallery_wrap:not(.masonry) .gallery.gallery-columns-6 > .gallery-item,
  .gallery_wrap:not(.masonry) .gallery.gallery-columns-7 > .gallery-item,
  .gallery_wrap:not(.masonry) .gallery.gallery-columns-8 > .gallery-item,
  .gallery_wrap:not(.masonry) .gallery.gallery-columns-9 > .gallery-item {
    width: calc(100% / 2 - 2rem);
  }
  div[class^="cols"] {
    display: block;
  }
  div[class^="cols"] > * {
    margin: 1rem auto!important;
    width: calc(100% - 2rem) !important;
  }
  body .gform_wrapper .gf_left_half {
    padding-right: 0 !important;
  }
  body .gform_wrapper .gf_right_half {
    padding-left: 0 !important;
  }
  body .gform_wrapper .money .ginput_container:before {
    padding: 5px 4px;
    line-height: 2rem;
    min-height: 2rem;
  }
  body .gform_wrapper .has_country select,
  body .gform_wrapper .ginput_container_name span:not(:first-child) {
    margin-top: 16px;
  }
  body .gform_wrapper .ginput_container_address span {
    margin-bottom: 0 !important;
  }
  .main-navigation ul.nav-menu > li.button a {
    letter-spacing: normal;
    background: none !important;
  }
  .animate {
    opacity: 1 !important;
    /*CSS transitions*/
    -o-transition-property: none !important;
    -moz-transition-property: none !important;
    -ms-transition-property: none !important;
    -webkit-transition-property: none !important;
    transition-property: none !important;
    /*CSS transforms*/
    -o-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
    /*CSS animations*/
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
  }
  #home_banner {
    max-height: none;
  }
  #venue_big_img .sow-image-container {
    width: 100%;
  }
  .events.carousel:after {
    content: '';
  }
  .events.carousel .event,
  .events.carousel .widget,
  .events.cols_3 .event,
  .events.cols_3 .widget {
    width: calc(100% - 1.5rem);
    max-width: 100%;
    margin-bottom: 2.5rem;
  }
  #home_banner {
    padding-top: 12rem !important;
  }
  #home_banner h1 {
    line-height: 1;
    font-size: 4rem;
    margin-bottom: 0;
  }
  #home_banner h1 span.sub {
    padding-bottom: 0.5rem;
  }
  #home_banner:before {
    background-size: auto 30rem;
  }
  #home_images_small {
    margin-bottom: 1rem;
  }
  #home_images_small .panel-grid-cell:first-child {
    width: 55% !important;
    width: calc(55% - ( 0.4 * 1rem ) ) !important;
  }
  #home_images_small .panel-grid-cell:last-child {
    width: 45% !important;
    width: calc(45% - ( 0.4 * 1rem ) ) !important;
  }
  #venue,
  #footercontainer {
    text-align: center;
  }
  h2 {
    font-size: 3.5rem;
  }
  h2 span.sub {
    font-size: 0.5em;
  }
  .events.carousel .event:not(:first-child):not(:nth-child(2)):not(:nth-child(3)),
  .events.carousel .widget:not(:first-child):not(:nth-child(2)):not(:nth-child(3)) {
    display: none;
  }
  .events div.button .btn {
    padding: 0.5rem 1.5rem;
  }
  .events .event {
    padding: 0 2rem 2rem;
  }
  .events p.thumb {
    margin: 0 -2rem 2rem;
  }
  .btn.mobile_only {
    display: inline-block !important;
  }
  #sb_instagram.sbi_col_4.sbi_disable_mobile #sbi_images .sbi_item {
    width: 50%;
  }
  .map iframe {
    height: 300px;
  }
  .gform_wrapper.horizontal_wrapper form.horizontal {
    display: block;
  }
  .gform_wrapper.horizontal_wrapper form.horizontal li.gfield {
    display: block;
    margin-bottom: 0.75rem !important;
  }
  .gform_wrapper.horizontal_wrapper form.horizontal li.gfield .gfield_label {
    white-space: normal;
    padding-right: 0;
  }
  .gform_wrapper.horizontal_wrapper form.horizontal .gform_footer {
    padding: 0;
    text-align: center;
  }
  .gform_wrapper.horizontal_wrapper form.horizontal .gform_footer input[type=submit] {
    display: inline-block;
    width: auto;
  }
  .gform_wrapper.horizontal_wrapper form.horizontal li.gfield .gfield_label {
    font-size: 3.33rem;
    margin-bottom: 0.75rem !important;
    text-align: center;
  }
  .gform_wrapper.horizontal_wrapper form.horizontal li.gfield .gfield_label span.sub {
    display: block;
    font-size: 0.375em;
    font-family: 'oswald', Helvetica, Arial, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #b0782b;
  }
  .mpc-top-sep {
    top: -3px !important;
  }
  #sunday_races {
    padding-bottom: 95vw !important;
    background-position: center bottom!important;
  }
  #sunday_races .textwidget {
    padding: 1rem 2rem;
  }
  #sunday_races .btn {
    margin-bottom: 0.5rem;
  }
  #footercontainer .site-footer .widget-area img,
  #footercontainer .site-footer .widget-area svg {
    display: block;
    margin: 0 auto 2rem;
  }
  #footercontainer .site-footer h3 {
    display: none;
  }
}
/* ==========================================================================
   Mobile Menu
   ========================================================================== */
.toggle {
  display: none;
  height: 0;
}
@media screen and (max-width: 767px) {
  body.admin-bar.overlay_header #headercontainer {
    top: 0;
  }
  #site-navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
  }
  #site-navigation ul {
    width: 100%;
    display: none;
    padding: 0;
  }
  #site-navigation ul li {
    width: 100%;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    padding: 0;
    background: none;
  }
  #site-navigation ul li a,
  #site-navigation ul li span.no_link {
    color: #ffffff !important;
    font-family: 'lato', Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 16px;
    text-transform: none;
    padding: 8px 16px;
  }
  #site-navigation ul li a:after,
  #site-navigation ul li span.no_link:after {
    display: none;
  }
  #site-navigation ul li.current-menu-item,
  #site-navigation ul li.current-menu-ancestor,
  #site-navigation ul li.current_page_item,
  #site-navigation ul li.current_page_ancestor,
  #site-navigation ul li.current_page_parent {
    background: rgba(255, 255, 255, 0.05);
  }
  #site-navigation ul li.current-menu-item > a,
  #site-navigation ul li.current-menu-ancestor > a,
  #site-navigation ul li.current_page_item > a,
  #site-navigation ul li.current_page_ancestor > a,
  #site-navigation ul li.current_page_parent > a,
  #site-navigation ul li.current-menu-item > span.no_link,
  #site-navigation ul li.current-menu-ancestor > span.no_link,
  #site-navigation ul li.current_page_item > span.no_link,
  #site-navigation ul li.current_page_ancestor > span.no_link,
  #site-navigation ul li.current_page_parent > span.no_link {
    color: #ffffff !important;
  }
  #site-navigation ul ul li,
  #site-navigation ul li:hover > ul > li {
    height: auto;
  }
  #site-navigation ul ul li a,
  #site-navigation ul ul li span.no_link {
    padding-left: 32px;
  }
  #site-navigation ul ul ul li a,
  #site-navigation ul ul ul li span.no_link {
    padding-left: 64px;
  }
  #site-navigation ul ul li a,
  #site-navigation ul ul li span.no_link {
    background: none;
  }
  #site-navigation ul ul,
  #site-navigation ul ul ul {
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left;
  }
  #site-navigation ul ul > li.has-sub > a:before,
  #site-navigation ul ul > li.has-sub > span.no_link:before,
  #site-navigation ul ul > li.has-sub > a:after,
  #site-navigation ul ul > li.has-sub > span.no_link:after {
    display: none;
  }
  #site-navigation ul ul ul li.active a,
  #site-navigation ul ul ul li.active span.no_link {
    border-left: none;
  }
  #site-navigation ul ul {
    background: none;
    border-radius: 0;
    border: none;
  }
  #site-navigation ul ul:before,
  #site-navigation ul ul:after {
    display: none;
  }
  #site-navigation > ul > li {
    float: none;
  }
  #site-navigation > ul > li.has-sub > a:after,
  #site-navigation > ul > li.has-sub > a:before {
    display: none;
  }
  #site-navigation > ul > li.has-sub > ul > li.active > a,
  #site-navigation > ul ul > li.has-sub > ul > li.active > a,
  #site-navigation > ul > li.has-sub > ul > li.active > span.no_link,
  #site-navigation > ul ul > li.has-sub > ul > li.active > span.no_link {
    border-top: none;
  }
  #site-navigation .submenu-toggle {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    height: 35px;
    width: 46px;
    cursor: pointer;
  }
  #site-navigation .submenu-toggle.submenu-opened:before {
    display: none;
  }
  #site-navigation .submenu-toggle.submenu-opened:after {
    background: #ffffff;
  }
  #site-navigation .submenu-toggle:before {
    position: absolute;
    top: 14px;
    right: 22px;
    display: block;
    width: 2px;
    height: 8px;
    background: rgba(255, 255, 255, 0.75);
    content: '';
  }
  #site-navigation .submenu-toggle:after {
    position: absolute;
    top: 17px;
    right: 19px;
    width: 8px;
    height: 2px;
    display: block;
    background: rgba(255, 255, 255, 0.75);
    content: '';
  }
  #site-navigation ul ul .submenu-toggle {
    height: 34px;
    width: 34px;
  }
  #site-navigation ul ul .submenu-toggle:after {
    top: 15px;
    right: 13px;
  }
  #site-navigation ul ul .submenu-toggle:before {
    top: 12px;
    right: 16px;
  }
  .toggle {
    cursor: pointer;
    z-index: 12399994;
    color: #fff;
    padding: 1rem;
    text-transform: uppercase;
    height: auto;
    display: block;
  }
  .toggle:after {
    position: absolute;
    top: calc(1rem + 9px);
    left: 1rem;
    display: block;
    height: 4px;
    width: 20px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: '';
  }
  .toggle:before {
    transition: all .3s ease;
    position: absolute;
    top: calc(1rem + 3px);
    left: 1rem;
    display: block;
    height: 2px;
    width: 20px;
    background: #fff;
    content: '';
  }
  .toggle.menu-opened {
    background: #462f22;
  }
  .toggle.menu-opened:after {
    transition: all .3s ease;
    top: calc(1rem + 10px);
    border: 0;
    height: 2px;
    width: 19px;
    background: #fff;
    transform: rotate(45deg);
  }
  .toggle.menu-opened:before {
    top: calc(1rem + 10px);
    width: 19px;
    transform: rotate(-45deg);
  }
  .menu-main-menu-container {
    background: #462f22;
  }
}
