@charset "UTF-8";
/* Vendor
-------------------------------------------------- */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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

/* Helpers
-------------------------------------------------- */
/* Colors
-------------------------------------------------- */
/* Typography
-------------------------------------------------- */
/* Breakpoints
-------------------------------------------------- */
/* Misc
-------------------------------------------------- */
/**
 * Media Query - Pass in breakpoint variable
 * 
 * Usage: @include mq($screen-md) { // Styles here }
 */
/**
 * Light Grey Gradient Background - Pass in angle
 * 
 * Usage: @include gradient(120deg);
 */
@font-face {
  font-family: "Fjalla One";
  src: url("./fonts/FjallaOne-Regular.eot");
  /* IE9 Compat Modes */
  src: url("./fonts/FjallaOne-Regular.eot?#iefix") format("embedded-opentype"), url("./fonts/FjallaOne-Regular.woff") format("woff"), url("./fonts/FjallaOne-Regular.ttf") format("truetype"), url("./fonts/FjallaOne-Regular.svg#1b676175c38a8444b53290a72e9d0f4a") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Lato";
  src: url("./fonts/Lato-Regular.eot");
  /* IE9 Compat Modes */
  src: url("./fonts/Lato-Regular.eot?#iefix") format("embedded-opentype"), url("./fonts/Lato-Regular.woff") format("woff"), url("./fonts/Lato-Regular.ttf") format("truetype"), url("./fonts/Lato-Regular.svg#48e70b8825d557df57af3e4f7d4c31be") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Lato";
  src: url("./fonts/Lato-Bold.eot");
  /* IE9 Compat Modes */
  src: url("./fonts/Lato-Bold.eot?#iefix") format("embedded-opentype"), url("./fonts/Lato-Bold.woff") format("woff"), url("./fonts/Lato-Bold.ttf") format("truetype"), url("./fonts/Lato-Bold.svg#eea591db52cf6ebc8992abb7621b9256") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Lato";
  src: url("./fonts/Lato-Black.eot");
  /* IE9 Compat Modes */
  src: url("./fonts/Lato-Black.eot?#iefix") format("embedded-opentype"), url("./fonts/Lato-Black.woff") format("woff"), url("./fonts/Lato-Black.ttf") format("truetype"), url("./fonts/Lato-Black.svg#deafb22e0fea74c18abc97a942bb621e") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 900;
}
@font-face {
  font-family: "Din";
  src: url("./fonts/din-webfont.woff2") format("woff2"), url("./fonts/din-webfont.woff") format("woff"), url("./fonts/din-webfont.ttf") format("truetype");
}
/* Base
-------------------------------------------------- */
/* normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/**
 * Base WordPress helper styles
 * 
 */
/* Accessibility
-------------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

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

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

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

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

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

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

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

/* Widgets
-------------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%;
}

/* Posts and pages
-------------------------------------------------- */
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

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

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

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

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

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

.bypostauthor {
  display: block;
}

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

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

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

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

/* Captions
-------------------------------------------------- */
.wp-caption {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

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

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

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

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

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

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

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

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

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

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

.gallery-caption {
  display: block;
}

html {
  box-sizing: border-box;
  font-size: 16px;
}

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

body:not(.wp-admin) {
  background-color: #FFFFFF;
  color: #212121;
  font-size: 1em;
  font-family: "Lato", sans-serif;
}

button,
input,
optgroup,
select,
textarea {
  font-family: "Lato", sans-serif;
}

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

body:not(.wp-admin) a,
body:not(.wp-admin) a:visited {
  color: #DF5933;
  text-decoration: none;
  transition: all 0.15s ease;
}

body:not(.wp-admin) a:hover {
  color: #212121;
}

hr {
  border: 0 transparent;
  height: 1px;
  background-color: #BDBDBD;
}

section {
  padding: 4.2360680659em 0;
}
@media only screen and (min-width: 64rem) {
  section {
    padding: 6.8541021569em 0;
  }
}

body:not(.wp-admin) p {
  margin: 0 auto 1.618034em;
  font-family: "Lato", sans-serif;
  line-height: 1.7;
}
@media only screen and (min-width: 64rem) {
  body:not(.wp-admin) p {
    font-size: 18px;
  }
}

ul {
  margin-bottom: 2.6180340252em;
}

body:not(.wp-admin) li {
  font-family: "Lato", sans-serif;
  line-height: 1.7;
}
@media only screen and (min-width: 64rem) {
  body:not(.wp-admin) li {
    font-size: 18px;
  }
}

nav li {
  font-family: "Lato", sans-serif;
}

body:not(.wp-admin) h1,
body:not(.wp-admin) h2 {
  margin: 1em auto;
  font-size: 1.618034em;
  line-height: 1.5;
  color: #606060;
  font-weight: 400;
}

h3 {
  margin: 0 auto 1.618034em;
  font-size: 1.618034em;
  font-weight: 400;
}

h4 {
  margin: 0 auto;
  line-height: 1.618034em;
}

.at-share-btn-elements .at-svc-linkedin {
  background: transparent !important;
}
.at-share-btn-elements .at-svc-linkedin svg {
  display: none;
}
.at-share-btn-elements .at-svc-linkedin:before {
  content: "";
  font-family: FontAwesome;
  font-size: 24px;
  color: #2a2a2a;
  position: absolute;
  top: 18px;
}
.at-share-btn-elements .at-svc-facebook {
  background: transparent !important;
}
.at-share-btn-elements .at-svc-facebook svg {
  display: none;
}
.at-share-btn-elements .at-svc-facebook:before {
  content: "";
  font-family: FontAwesome;
  font-size: 24px;
  color: #2a2a2a;
  position: absolute;
  top: 18px;
}
.at-share-btn-elements .at-svc-twitter {
  background: transparent !important;
}
.at-share-btn-elements .at-svc-twitter svg {
  display: none;
}
.at-share-btn-elements .at-svc-twitter:before {
  content: "";
  font-family: FontAwesome;
  font-size: 24px;
  color: #2a2a2a;
  position: absolute;
  top: 18px;
}
.at-share-btn-elements .at-svc-print {
  background: transparent !important;
}
.at-share-btn-elements .at-svc-print svg {
  display: none;
}
.at-share-btn-elements .at-svc-print:before {
  content: "";
  font-family: FontAwesome;
  font-size: 24px;
  color: #2a2a2a;
  position: absolute;
  top: 18px;
}
.at-share-btn-elements .at-svc-email {
  background: transparent !important;
}
.at-share-btn-elements .at-svc-email svg {
  display: none;
}
.at-share-btn-elements .at-svc-email:before {
  content: "";
  font-family: FontAwesome;
  font-size: 24px;
  color: #2a2a2a;
  position: absolute;
  top: 18px;
}
.at-share-btn-elements .at-svc-email:hover:before, .at-share-btn-elements .at-svc-email:focus:before, .at-share-btn-elements .at-svc-print:hover:before, .at-share-btn-elements .at-svc-print:focus:before, .at-share-btn-elements .at-svc-twitter:hover:before, .at-share-btn-elements .at-svc-twitter:focus:before, .at-share-btn-elements .at-svc-facebook:hover:before, .at-share-btn-elements .at-svc-facebook:focus:before, .at-share-btn-elements .at-svc-linkedin:hover:before, .at-share-btn-elements .at-svc-linkedin:focus:before {
  color: #DF5933 !important;
}

/**
 * Based on Flexbox Grid
 * https://github.com/kristoferjoseph/flexboxgrid
 * 
 */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.row.reverse {
  flex-direction: row-reverse;
}

.col.reverse {
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.col-xs {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  justify-content: center;
  text-align: center;
}

.end-xs {
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  align-items: flex-start;
}

.middle-xs {
  align-items: center;
}

.bottom-xs {
  align-items: flex-end;
}

.around-xs {
  justify-content: space-around;
}

.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 48rem) {
  .container {
    width: 48rem;
  }

  .col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-offset-0,
.col-sm-offset-1,
.col-sm-offset-2,
.col-sm-offset-3,
.col-sm-offset-4,
.col-sm-offset-5,
.col-sm-offset-6,
.col-sm-offset-7,
.col-sm-offset-8,
.col-sm-offset-9,
.col-sm-offset-10,
.col-sm-offset-11,
.col-sm-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-sm {
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    align-items: flex-start;
  }

  .middle-sm {
    align-items: center;
  }

  .bottom-sm {
    align-items: flex-end;
  }

  .around-sm {
    justify-content: space-around;
  }

  .between-sm {
    justify-content: space-between;
  }

  .first-sm {
    order: -1;
  }

  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 64rem) {
  .container {
    width: 63rem;
  }

  .col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-offset-0,
.col-md-offset-1,
.col-md-offset-2,
.col-md-offset-3,
.col-md-offset-4,
.col-md-offset-5,
.col-md-offset-6,
.col-md-offset-7,
.col-md-offset-8,
.col-md-offset-9,
.col-md-offset-10,
.col-md-offset-11,
.col-md-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-md {
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    justify-content: center;
    text-align: center;
  }

  .end-md {
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    align-items: flex-start;
  }

  .middle-md {
    align-items: center;
  }

  .bottom-md {
    align-items: flex-end;
  }

  .around-md {
    justify-content: space-around;
  }

  .between-md {
    justify-content: space-between;
  }

  .first-md {
    order: -1;
  }

  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 75rem) {
  .container {
    width: 75rem;
  }

  .col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-offset-0,
.col-lg-offset-1,
.col-lg-offset-2,
.col-lg-offset-3,
.col-lg-offset-4,
.col-lg-offset-5,
.col-lg-offset-6,
.col-lg-offset-7,
.col-lg-offset-8,
.col-lg-offset-9,
.col-lg-offset-10,
.col-lg-offset-11,
.col-lg-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-lg {
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    align-items: flex-start;
  }

  .middle-lg {
    align-items: center;
  }

  .bottom-lg {
    align-items: flex-end;
  }

  .around-lg {
    justify-content: space-around;
  }

  .between-lg {
    justify-content: space-between;
  }

  .first-lg {
    order: -1;
  }

  .last-lg {
    order: 1;
  }
}
@media (max-width: 64rem) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
/* Utility
-------------------------------------------------- */
.u-left {
  text-align: left !important;
}

.u-right {
  text-align: right !important;
}

.u-center {
  text-align: center !important;
}

.u-uppercase {
  text-transform: uppercase !important;
}

.u-lowercase {
  text-transform: lowercase !important;
}

.u-capitalize {
  text-transform: capitalize !important;
}

/* State
-------------------------------------------------- */
.is-hidden {
  display: none !important;
}

.no-scroll {
  overflow: hidden;
}
@media only screen and (min-width: 64rem) {
  .no-scroll {
    overflow: visible;
  }
}

/* Color
-------------------------------------------------- */
.c-primary {
  color: #DF5933 !important;
}

.c-white {
  color: #FFFFFF !important;
}

.c-grey-light {
  color: #F5F5F5 !important;
}

.c-grey {
  color: #BDBDBD !important;
}

.c-grey-dark {
  color: #606060 !important;
}

.c-black {
  color: #212121 !important;
}

/* Components
-------------------------------------------------- */
.content-area {
  margin: 1.618034em auto;
}
@media only screen and (min-width: 64rem) {
  .content-area {
    margin: 2.6180340252em auto;
  }
}
.content-area.content-area--full {
  margin: 0 auto;
}

.page-header {
  margin: 2.6180340252em auto;
}

.site-content {
  position: relative;
}

.inner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Archives
-------------------------------------------------- */
.blog .post,
.search .post {
  background: #F5F5F5;
  padding: 30px;
}

/* Dark Backgrounds
-------------------------------------------------- */
.dark-background {
  background-color: #212121;
  color: #F5F5F5;
}
.dark-background a:hover {
  color: #F5F5F5;
}

/* Page Layout - For Standard Pages w/ Sidebar
-------------------------------------------------- */
@media only screen and (min-width: 64rem) {
  .page-wrapper {
    display: flex;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 64rem) {
  .page-main {
    flex-basis: calc(65% - 2.6180340252em);
    width: calc(65% - 2.6180340252em);
    max-width: calc(65% - 2.6180340252em);
  }
}

.page-aside {
  display: none;
}
@media only screen and (min-width: 64rem) {
  .page-aside {
    display: block;
    flex-basis: calc(35% - 2.6180340252em);
    width: calc(35% - 2.6180340252em);
    max-width: calc(35% - 2.6180340252em);
  }
}

/* Hero Template
-------------------------------------------------- */
.hero-template-content {
  margin: 2.6180340252em auto 4.2360680659em;
}

.site-header {
  width: 100%;
  background-color: #F5F5F5;
}
@media only screen and (min-width: 64rem) {
  .site-header {
    position: relative;
    height: auto;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 64rem) {
  .header-inner {
    display: block;
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* Header Branding
-------------------------------------------------- */
@media only screen and (min-width: 64rem) {
  .header-branding {
    display: flex;
    justify-content: space-between;
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

.header-branding a {
  display: flex;
}

.header-branding .logo {
  width: 300px;
  height: auto;
}
@media only screen and (min-width: 64rem) {
  .header-branding .logo {
    width: 433px;
  }
}

.header-slogan {
  display: none;
}
.header-slogan img {
  height: 14px;
}
@media only screen and (min-width: 64rem) {
  .header-slogan {
    display: block;
  }
}

/* Header Hamburger
-------------------------------------------------- */
.header-hamburger {
  margin-left: 1em;
}
@media only screen and (min-width: 64rem) {
  .header-hamburger {
    display: none;
  }
}

/* Header Social
-------------------------------------------------- */
.widget.widget_text {
  padding-top: 0;
}

#top-nav {
  text-align: right;
}
@media only screen and (min-width: 64rem) {
  #top-nav {
    bottom: 45px;
    position: absolute;
    right: 10px;
  }
}

#social-nav {
  float: right;
}
#social-nav li {
  display: inline-block;
  width: 30px;
}
#social-nav li a {
  font-size: 0px;
}
#social-nav li:nth-child(1) a:after {
  content: "";
  font-size: 20px;
  color: white;
  font-family: FontAwesome;
}
#social-nav li:nth-child(2) a:after {
  content: "";
  font-size: 20px;
  color: white;
  font-family: FontAwesome;
}
#social-nav li:nth-child(3) a:after {
  content: "";
  font-size: 20px;
  color: white;
  font-family: FontAwesome;
}

#newsletter-nav {
  display: block;
  margin: 30px 0;
}
@media only screen and (min-width: 64rem) {
  #newsletter-nav {
    padding-top: 3px;
    display: inline-block;
  }
}
#newsletter-nav a {
  font-size: 12px;
  text-transform: uppercase;
  padding: 16.4px 30px;
  line-height: 18px;
  color: white;
  background-color: #DF5933;
  text-align: center;
  vertical-align: text-top;
  margin-left: 7px;
}
#newsletter-nav .form-wrap {
  width: 0;
  overflow: hidden;
  float: left;
  transition: 500ms width;
  -webkit-transition: 500ms width;
}
#newsletter-nav form {
  margin: 0;
  width: 225px;
}
#newsletter-nav form .header-subscribe-input {
  float: left;
  border-width: 1px;
  border-style: solid;
  padding: 10px;
  background-color: white;
  outline: 0;
  min-width: 150px;
  width: 150px;
  height: 22px;
  line-height: 22px;
  transition: all 0.15s ease;
  border-color: #BDBDBD;
  color: #BDBDBD;
  font-size: 12px;
}
#newsletter-nav form .header-subscribe-input:focus {
  border-color: #212121;
  color: #212121;
}
#newsletter-nav form button {
  float: left;
  background: none;
  border: none;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 22px;
  cursor: pointer;
  color: #DF5933;
  transition: color 700ms ease;
}
#newsletter-nav form button:hover {
  color: #c1421e;
}
#newsletter-nav form:after {
  content: "|";
}
#newsletter-nav.active .form-wrap {
  width: 225px;
  transition: 500ms width;
  -webkit-transition: 500ms width;
}

.menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.toggled-subnav .menu {
  transform: translate3d(-100vw, 0, 0);
  transition: all 0.15s ease;
}
@media only screen and (min-width: 64rem) {
  .toggled-subnav .menu {
    transform: translate3d(0, 0, 0);
  }
}

/* Header Navigation (Functional)
-------------------------------------------------- */
#header-navigation {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #303030;
  padding: 2rem 0;
  z-index: 1000;
}
#header-navigation .container {
  position: relative;
}
@media only screen and (min-width: 64rem) {
  #header-navigation {
    background-color: #303030;
    display: block !important;
    position: relative;
    top: 0;
    height: auto;
    padding-top: 10px;
    padding-bottom: 5px;
  }
}

@media only screen and (min-width: 64rem) {
  .header-navigation-inner {
    display: flex;
    justify-content: space-between;
  }
}

/* Main Navigation (Nav Element)
-------------------------------------------------- */
@media only screen and (min-width: 64rem) {
  .main-navigation ul {
    display: flex;
  }
}

.main-navigation li {
  font-size: 18px;
  text-align: right;
  line-height: 2.6180340252em;
}
@media only screen and (min-width: 64rem) {
  .main-navigation li {
    font-size: 1em;
    text-align: left;
    line-height: inherit;
    position: relative;
  }
}
@media only screen and (min-width: 64rem) {
  .main-navigation li + li {
    margin-left: 1.5vw;
  }
}

.main-navigation a {
  color: white !important;
  text-transform: uppercase;
}
@media only screen and (min-width: 64rem) {
  .main-navigation a {
    text-transform: none;
    color: white !important;
  }
}
.main-navigation a:hover {
  color: #DF5933 !important;
}

@media only screen and (min-width: 64rem) {
  .main-navigation .current-menu-item > a {
    color: #DF5933;
  }
}

/* Sub Navigation
-------------------------------------------------- */
.menu .sub-menu {
  display: none;
}

.menu > li .sub-menu {
  display: none;
  transform: translate3d(100vw, 0, 0);
  position: absolute;
  top: 0;
  width: 100%;
  padding: 0;
}
@media only screen and (min-width: 64rem) {
  .menu > li .sub-menu {
    display: none !important;
    transform: translate3d(0, 0, 0);
    width: auto;
    top: 25px;
    left: -2rem;
    background-color: #303030;
    z-index: 10;
    padding: 1rem 2rem 2rem;
    list-style: none;
    white-space: nowrap;
  }
  .menu > li .sub-menu:hover {
    display: block !important;
  }
}

/* Links with Children - Desktop and Mobile
-------------------------------------------------- */
.link-has-children--desktop {
  display: none;
}
@media only screen and (min-width: 64rem) {
  .link-has-children--desktop {
    display: inline;
  }
}

@media only screen and (min-width: 64rem) {
  .link-has-children--mobile {
    display: none;
  }
}

/* Sub Navigation Items
-------------------------------------------------- */
.menu > li .sub-menu li {
  margin: 1em auto;
  line-height: 1.618034em;
}
@media only screen and (min-width: 64rem) {
  .menu > li .sub-menu li {
    margin: 0;
    line-height: 2rem;
  }
}

.menu > li .sub-menu li a {
  text-transform: none;
}

/* Toogle Subnav on Hover - Desktop
-------------------------------------------------- */
@media only screen and (min-width: 64rem) {
  .menu > .menu-item-has-children > a:hover + .sub-menu {
    display: block !important;
  }
}

/* Subnav - Mobile
-------------------------------------------------- */
.sub-menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #606060;
  padding-bottom: 1em;
  margin-bottom: 1.618034em;
}
@media only screen and (min-width: 64rem) {
  .sub-menu-title {
    display: none;
  }
}

[data-close-subnav] {
  display: inline-block;
  height: 18px;
  width: 12px;
  background-image: url("./icons/chevron-left.svg");
}

.home .hero-slide {
  height: 650px;
}
.home .hero-slide .hero-slide--inner {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.hero-slide {
  display: none;
  background-color: #212121;
  color: #FFFFFF;
  background-size: cover;
  background-position: 50%;
  text-align: center;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.hero-slide .hero-slide--inner {
  width: 100%;
  height: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hero-slide .inner {
  max-width: 32rem;
  margin-left: 0;
  text-align: left;
}
.hero-slide .button {
  margin-top: 1.618034em;
}
.hero-slide h3 {
  font-family: "Fjalla One", sans-serif;
  margin: 2rem auto;
  text-transform: uppercase;
  font-size: 60px;
  line-height: 64px;
}
.hero-slide p {
  font-family: "Lato", sans-serif;
  font-size: 30px !important;
  line-height: 38px !important;
  margin: 30px 0 !important;
}

/* Footer Block
-------------------------------------------------- */
.footer-block {
  font-family: "Din", sans-serif !important;
}
.footer-block .address-two-col {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.footer-block .address-two-col .address-col {
  flex-grow: 1;
  width: 50%;
  height: 100px;
}
.footer-block .address-one-col {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.footer-block .address-one-col .address-col {
  flex-grow: 1;
  width: 100%;
  height: 100px;
}
.footer-block .fax-container,
.footer-block .email-container {
  margin-bottom: 25px;
}

@media only screen and (min-width: 64rem) {
  .footer-block-inner {
    display: flex;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 64rem) {
  .footer-block-subscribe {
    display: block;
    flex-basis: calc(50% - 2.6180340252em);
    width: calc(50% - 2.6180340252em);
    max-width: calc(50% - 2.6180340252em);
  }
  .footer-block-subscribe h3 {
    color: #DF5933;
    font-family: "Din", sans-serif !important;
  }
}
.footer-block-subscribe p {
  font-family: "Din", sans-serif !important;
  font-size: 1rem;
}

.footer-block-location {
  text-align: left;
  margin-top: 35px;
}
.footer-block-location h3 {
  font-size: 30px;
}
.footer-block-location h3, .footer-block-location h4 {
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-block-location .widget {
  padding: 0;
}
@media only screen and (min-width: 64rem) {
  .footer-block-location {
    margin-top: 0px;
    flex-basis: calc(50% - 2.6180340252em);
    width: calc(50% - 2.6180340252em);
    max-width: calc(50% - 2.6180340252em);
  }
}

.footer-block-location p {
  font-size: 1rem;
  line-height: 1.7;
  font-family: "Din", sans-serif !important;
  font-weight: 400;
}
.footer-block-location p a:hover {
  color: #c1421e;
}
.footer-block-location p:last-of-type {
  margin-bottom: 0;
}

.footer-subscribe-form {
  margin-top: 2.6180340252em;
}
.footer-subscribe-form .footer-subscribe-input {
  padding: 15px 10px;
  height: 50px;
  background-color: white;
  outline: 0;
  border: none;
  min-width: 240px;
  transition: all 0.15s ease;
  color: #888888;
  position: relative;
  vertical-align: top;
  font-family: FontAwesome, "Din", sans-serif;
}
@media only screen and (min-width: 64rem) {
  .footer-subscribe-form .footer-subscribe-input {
    min-width: 320px;
  }
}
.footer-subscribe-form .footer-subscribe-submit {
  background: #DF5933;
  height: 51px;
  border: 1px solid #DF5933;
  padding: 15px 20px;
  color: white;
  position: relative;
  vertical-align: top;
  transition: all 0.15s ease;
  font-family: "Din", sans-serif !important;
  cursor: pointer;
}
.footer-subscribe-form .footer-subscribe-submit:hover, .footer-subscribe-form .footer-subscribe-submit:focus {
  background: #d74a22;
}

/* Location
-------------------------------------------------- */
.location-block h4 {
  margin-bottom: 0.3819660059em;
}

@media only screen and (min-width: 48rem) {
  .location-groups {
    display: flex;
  }
}

.location-group {
  flex: 1;
  margin-bottom: 1.618034em;
}

.location-block--social {
  margin-top: 1.618034em;
}
.location-block--social a + a {
  margin-left: 0.3819660059em;
}

/* Bottom Footer
-------------------------------------------------- */
.site-footer {
  background-color: #F5F5F5;
}

.footer-inner {
  margin: 1em auto;
  color: #606060;
  text-align: center;
}
@media only screen and (min-width: 64rem) {
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-inner .copyright {
  font-family: "Lato", sans-serif;
}
@media only screen and (min-width: 64rem) {
  .footer-inner .copyright {
    font-family: "Lato", sans-serif;
  }
}

.footer-navigation {
  order: 1;
}
.footer-navigation .menu {
  margin-bottom: 1em;
}
@media only screen and (min-width: 64rem) {
  .footer-navigation .menu {
    display: flex;
    margin-bottom: 0;
  }
}
.footer-navigation li {
  margin-bottom: 1em;
  font-size: 1rem;
}
@media only screen and (min-width: 64rem) {
  .footer-navigation li {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 64rem) {
  .footer-navigation li + li {
    margin-left: 2.6180340252em;
  }
}
.footer-navigation a,
.footer-navigation a:visited {
  color: #212121 !important;
}
@media only screen and (min-width: 64rem) {
  .footer-navigation a,
.footer-navigation a:visited {
    color: #606060;
  }
}
.footer-navigation a:hover {
  color: #DF5933 !important;
}
@media only screen and (min-width: 64rem) {
  .footer-navigation a:hover {
    color: #212121;
  }
}

.sidebar-block {
  margin-bottom: 4.2360680659em;
}
.sidebar-block h2 {
  font-size: 1em !important;
  font-weight: 700;
  color: #2B2B2B !important;
  text-transform: uppercase;
  border-bottom: 3px dotted #D8D8D8;
  line-height: 2 !important;
  letter-spacing: 5px;
}
.sidebar-block .post-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-block .post-categories li a {
  color: black;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
.sidebar-block .post-categories li a:hover, .sidebar-block .post-categories li a:focus {
  color: #DF5933;
}
.sidebar-block .sidebar-tags a {
  background: #F7F6F6;
  text-transform: uppercase;
  color: #2B2B2B;
  padding: 8px 10px;
  font-size: 12px;
  margin: 0 15px 15px 0;
  display: inline-block;
}
.sidebar-block .sidebar-tags a:hover, .sidebar-block .sidebar-tags a:focus {
  color: #2B2B2B;
}

/* Sidebar Updates
-------------------------------------------------- */
.sidebar-block section {
  padding: 0;
}

.sidebar-updates .sidebar-updates-update {
  margin-bottom: 1.618034em;
  min-height: 85px;
}
.sidebar-updates .sidebar-updates-update a img {
  width: 80px;
  max-width: 80px;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
}
.sidebar-updates .sidebar-updates-update .crp_title, .sidebar-updates .sidebar-updates-update .update-title {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  display: block;
}
.sidebar-updates .sidebar-updates-update .crp_author, .sidebar-updates .sidebar-updates-update .author {
  display: block;
  line-height: 1.2;
  color: #2A2A2A;
  text-transform: uppercase;
  font-size: 12px;
}
.sidebar-updates .sidebar-updates-update .crp_date {
  display: none;
}

.sidebar-updates .button {
  margin-top: 0;
}

.search-field {
  background: transparent;
  outline: 0;
  border: 0;
  padding: 0;
  width: 5rem;
  transition: all 0.15s ease;
  cursor: pointer;
}
.search-field:focus {
  width: 14rem;
  cursor: text;
}
.search-field::placeholder {
  color: #BDBDBD;
}
.search-field::-ms-clear {
  display: none;
}

.search-submit {
  background-image: url("./icons/search.svg");
  background-repeat: no-repeat;
  background-color: transparent;
  font-size: 0;
  height: 18px;
  width: 18px;
  border: 0;
  cursor: pointer;
  margin-left: 0.6180339845em;
  padding: 0;
  outline: 0;
  transition: all 0.15s ease;
}
.search-submit:hover {
  opacity: 0.5;
}

/* Header Search
-------------------------------------------------- */
#header-navigation .search-form {
  margin: 0 0 25px 0;
  display: block;
  padding: 15px 20px 15px 10px;
  background-color: white;
}
@media only screen and (min-width: 64rem) {
  #header-navigation .search-form {
    margin-top: 10px;
    margin-right: 10px;
    display: inline-block;
    padding: 15px 20px;
    background-color: white;
  }
}
.toggled-subnav #header-navigation .search-form {
  transform: translate3d(-100vw, 0, 0);
  transition: all 0.15s ease;
}
@media only screen and (min-width: 64rem) {
  .toggled-subnav #header-navigation .search-form {
    transform: translate3d(0, 0, 0);
  }
}

#header-navigation .search-field {
  font-size: 18px;
  color: #F5F5F5;
  display: inline-block;
}
@media only screen and (min-width: 64rem) {
  #header-navigation .search-field {
    font-size: 1rem;
    color: #606060;
    display: inline-block;
  }
}
#header-navigation .search-field:focus {
  width: 12rem;
}
@media only screen and (min-width: 64rem) {
  #header-navigation .search-field:focus {
    width: 10rem;
  }
}

#header-navigation .search-submit {
  background-image: url("./icons/search.svg");
  height: 1rem;
  width: 1rem;
  margin-left: 0.6180339845em;
  vertical-align: super;
}

.blog .updates-search h3 {
  margin: 35px 0 15px 0;
  text-align: center;
}
.blog .updates-search form {
  max-width: 500px;
  margin: 20px auto;
}
.blog .updates-search form input[type=search] {
  width: 400px;
  height: 36px;
  border: 1px solid #a3a3a3;
  position: relative;
  vertical-align: middle;
  padding: 10px 15px;
  font-size: 12px;
}
.blog .updates-search form input[type=submit] {
  background-image: none;
  background-color: #DF5933;
  color: white;
  text-transform: uppercase;
  font-size: 12px;
  height: 36px;
  width: auto !important;
  padding: 10px 15px;
  border: 0;
  cursor: pointer;
}
.blog .updates-search form input[type=submit]:hover {
  opacity: 1;
  background-color: #c1421e;
}

@media (max-width: 1024px) {
  #top-nav {
    text-align: left;
  }
  #top-nav #newsletter-nav.active .form-wrap {
    width: 255px;
  }
  #top-nav #newsletter-nav a {
    line-height: 38px;
    padding: 9.5px;
  }
  #top-nav #newsletter-nav form {
    width: 255px;
  }
  #top-nav #newsletter-nav form button {
    font-size: 12px;
    line-height: 32px;
  }
  #top-nav #newsletter-nav form .header-subscribe-input {
    padding: 15px 20px;
  }
  #top-nav #newsletter-nav form:after {
    line-height: 32px;
    color: white;
  }

  #header-navigation .search-form {
    width: 100%;
  }
  #header-navigation .search-form .search-field {
    width: 96%;
    text-align: left;
    color: #333333;
  }
  #header-navigation .search-form .search-field:focus {
    width: 96%;
  }
}
@media (max-width: 510px) {
  #header-navigation .search-form .search-field {
    width: 91%;
  }
  #header-navigation .search-form .search-field:focus {
    width: 91%;
  }

  .blog .updates-search form {
    max-width: 380px;
    margin: 20px auto;
  }
  .blog .updates-search form input[type=search] {
    width: 290px;
  }
}
@media (max-width: 400px) {
  .blog .updates-search form input[type=search] {
    width: 260px;
    margin-left: 15px;
  }
}
.input, .contact-form-wrapper input,
.contact-form-wrapper textarea {
  border-width: 0;
  background-color: #F5F5F5;
  padding: 1em;
  margin: 0.6180339845em auto;
  outline: 0;
  max-width: 100%;
  color: #212121;
  transition: all 0.15s ease;
}
.input[type=submit], .contact-form-wrapper input[type=submit],
.contact-form-wrapper textarea[type=submit] {
  background-color: #DF5933;
  color: #FFFFFF;
  cursor: pointer;
}
.input[type=submit]:hover, .contact-form-wrapper input[type=submit]:hover,
.contact-form-wrapper textarea[type=submit]:hover {
  background-color: #212121;
}

.button {
  display: inline-block;
  margin: 1em auto;
  padding: 15px 50px;
  text-transform: uppercase;
  text-align: center;
  border-width: 2px;
  border-style: solid;
  transition: all 0.15s ease;
  cursor: pointer;
}

.button--primary {
  border-color: #DF5933 !important;
  color: #DF5933 !important;
}
.button--primary:hover {
  background-color: #DF5933 !important;
  color: #FFFFFF !important;
}

.button--white {
  border-color: #FFFFFF !important;
  color: #FFFFFF !important;
}
.button--white:hover {
  border-color: #DF5933 !important;
  color: #DF5933 !important;
}

.hamburger {
  font-size: 0;
  background-image: url("./icons/hamburger.svg");
  display: block;
  width: 18px;
  height: 18px;
}
.hamburger.nav-toggled {
  background-image: url("./icons/x.svg");
}

.slick-track {
  display: flex;
}

.slick-slide {
  display: flex;
  height: auto;
  outline: none;
}

/* Update Block
-------------------------------------------------- */
.update-title {
  display: inline-block;
  font-weight: 700;
  line-height: 1.7;
  color: #DF5933;
}

.update-date {
  display: block;
  line-height: 2.6180340252em;
  color: #606060;
}

.update-excerpt {
  margin: 1em auto;
  color: #212121;
}
.update-excerpt p {
  font-size: 1rem;
}

.update-more {
  color: #606060 !important;
}
.update-more:hover {
  color: #212121 !important;
}

/* Updates
-------------------------------------------------- */
.entry-title {
  font-size: 1.618034em;
}

.meta-info {
  display: flex;
  justify-content: space-between;
}

.entry-meta {
  color: #888888;
  text-transform: uppercase;
}

.entry-meta .author {
  color: #2A2A2A;
  font-weight: 500;
}

.entry-meta .byline {
  display: inline;
}

.entry-image {
  margin-bottom: 1.618034em;
}

.entry-image img {
  height: auto;
}

.entry-content h3 {
  margin-bottom: 1em;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 700;
}
@media only screen and (min-width: 64rem) {
  .entry-content h3 {
    font-size: 1.618034em;
    line-height: 1.7;
  }
}
.entry-content figure {
  margin-bottom: 1.618034em;
}
.entry-content figcaption {
  font-size: 85%;
}

/* Single
-------------------------------------------------- */
.single .entry-content {
  margin: 2.6180340252em auto;
}

.single .entry-meta {
  padding-bottom: 2.6180340252em;
}

/* Post Navigation
-------------------------------------------------- */
.post-navigation {
  margin: 30px 0;
}

.post-navigation .nav-links {
  text-align: center;
}

.post-navigation .nav-previous {
  display: inline-block;
  padding-right: 20px;
  border-right: 1px solid black;
  text-transform: uppercase;
}

.post-navigation .nav-next {
  display: inline-block;
  margin-left: 20px;
  text-transform: uppercase;
}

.archive-entry-header {
  display: flex;
  flex-direction: column;
}
.archive-entry-header .entry-title {
  margin: 0 0 10px 0;
}
@media only screen and (min-width: 64rem) {
  .archive-entry-header {
    flex-direction: row;
  }
  .archive-entry-header .entry-header-inner {
    width: 65%;
  }
  .archive-entry-header .entry-header-inner .entry-title {
    margin: 0 0 10px 0;
  }
  .archive-entry-header .entry-header-inner .entry-meta {
    text-transform: uppercase;
  }
  .archive-entry-header .entry-header-inner .entry-meta .entry-date {
    color: #888888;
  }
  .archive-entry-header .entry-header-inner .entry-meta .byline {
    color: #2A2A2A;
  }
  .archive-entry-header .entry-header-inner .entry-content p {
    font-size: 14px;
  }
}

.archive-entry-header .entry-image {
  order: 0;
}
@media only screen and (min-width: 64rem) {
  .archive-entry-header .entry-image {
    order: -1;
    width: 35%;
    margin-right: 1.618034em;
  }
}

.num-pagination {
  text-align: center;
  margin: 50px 0;
}
.num-pagination .page-numbers {
  display: inline-block;
  text-align: center;
  padding: 10px;
  width: 40px;
  height: 40px;
  font-size: 16px;
  color: #9B9B9B;
  text-transform: uppercase;
  font-weight: 300;
}
.num-pagination .page-numbers.current, .num-pagination .page-numbers:hover, .num-pagination .page-numbers:focus {
  background: #DF5933;
  color: white;
}
.num-pagination .page-numbers.next, .num-pagination .page-numbers.prev {
  width: auto;
  padding: 10px 20px;
}
.num-pagination .page-numbers.next {
  color: white;
  background-color: #DF5933;
  transition: background-color 700ms ease;
}
.num-pagination .page-numbers.next:hover, .num-pagination .page-numbers.next:focus {
  background: #c1421e;
  color: white;
}
.num-pagination .page-numbers.prev {
  background-color: #F1EFEF;
  transition: background-color 700ms ease;
}
.num-pagination .page-numbers.prev:hover, .num-pagination .page-numbers.prev:focus {
  background: #d9d4d4;
  color: #9B9B9B;
}

body:not(.single) .posts-navigation {
  margin: 2.6180340252em auto 4.2360680659em;
}
body:not(.single) .nav-links {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
body:not(.single) .nav-next {
  margin-right: auto;
}
body:not(.single) .nav-previous {
  margin-left: auto;
}
body:not(.single) .nav-links a {
  color: #606060;
}
body:not(.single) .nav-links a:hover {
  color: #212121;
}

.events-archive #tribe-bar-form {
  background: transparent;
  width: 100%;
}
@media only screen and (min-width: 64rem) {
  .events-archive .page-main {
    flex-basis: calc(70% - 2.6180340252em);
    width: calc(70% - 2.6180340252em);
    max-width: calc(70% - 2.6180340252em);
  }
  .events-archive .page-aside {
    display: block;
    flex-basis: calc(30% - 2.6180340252em);
    width: calc(30% - 2.6180340252em);
    max-width: calc(30% - 2.6180340252em);
  }
}
.events-archive .tribe-events-sub-nav .chevron {
  font-size: 10px;
  vertical-align: middle;
  position: relative;
  font-family: FontAwesome;
}
.events-archive .tribe-events-sub-nav a {
  font-size: 16px;
  vertical-align: middle;
  position: relative;
}
.events-archive .tribe-events-list .tribe-events-loop .tribe-events-event-image {
  margin: 0;
  width: 100%;
  position: relative;
}
.events-archive .tribe-events-list .tribe-events-loop .tribe-events-event-image img {
  filter: brightness(80%);
}
.events-archive .tribe-events-list .tribe-events-loop .tribe-event-featured {
  padding: 0;
}
.events-archive .tribe-events-list .tribe-events-loop .tribe-event-schedule-details {
  width: 80px;
  height: 80px;
  position: absolute;
  color: white;
  z-index: 100;
  right: 20px;
  text-align: right;
  font-size: 30px;
  padding-top: 7px;
  text-transform: uppercase;
  line-height: 30px;
  border: 5px solid white;
  font-weight: 700;
  padding-right: 5px;
}
.events-archive .tribe-events-list .tribe-events-loop .tribe-event-schedule-details div {
  font-weight: 300;
}
.events-archive .tribe-events-list .tribe-events-loop .tribe-event-featured {
  background: none;
  margin-bottom: 0;
}
.events-archive .tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-event-schedule-details {
  top: 20px;
  margin-top: 0;
}
.events-archive .tribe-events-list .tribe-events-loop .tribe-events-list-event-title {
  font-size: 30px;
  position: absolute;
  bottom: 40px;
  left: 30px;
  z-index: 100;
  line-height: 40px;
  font-weight: 700;
}
.events-archive .tribe-events-list .tribe-events-loop .tribe-events-list-event-title a {
  color: white;
}
.events-archive .tribe-events-list .tribe-events-loop .tribe-events-list-event-description, .events-archive .tribe-events-list .tribe-events-loop .tribe-events-venue-details, .events-archive .tribe-events-list .tribe-events-loop .tribe-events-event-cost {
  display: none;
}
.events-archive .tribe-events-list .tribe-events-loop .tribe-events-event-meta {
  background: none;
  border: none;
}

#tribe-events-bar input[type=text] {
  background: #FBFBFB;
  border: 1px solid #A3A3A3;
  border-bottom: 1px solid #A3A3A3;
  border-radius: 0;
  box-shadow: none;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  height: auto;
  line-height: 1;
  padding: 10px 15px;
  width: 100%;
}
#tribe-events-bar input[type=text]::placeholder {
  font-style: normal;
}
#tribe-events-bar input[type=text]:hover, #tribe-events-bar input[type=text]:focus {
  outline: none;
}

.tribe-bar-date-filter {
  width: 33.3333%;
}

.tribe-bar-submit {
  width: 25%;
  margin-left: 0;
}

#tribe-bar-form .tribe-bar-submit input[type=submit] {
  background: #DF5933;
  line-height: 1.7;
}

#tribe-bar-form.tribe-bar-mini .tribe-bar-views-inner {
  padding: 6px 0;
}

#tribe-bar-form.tribe-bar-mini.tribe-events-bar--has-filters #tribe-bar-views {
  margin-top: 10px;
}

#tribe-bar-form.tribe-bar-mini * {
  font-size: 12px;
  position: relative;
  vertical-align: sub;
}

.events-single .tribe-events-back, .single-tribe_events .tribe-events-back {
  font-family: FontAwesome, "Lato", sans-serif;
}
.events-single .tribe-events-back .chevron, .single-tribe_events .tribe-events-back .chevron {
  font-size: 10px;
  vertical-align: middle;
  position: relative;
  font-family: FontAwesome;
}
.events-single .tribe-events-back a, .single-tribe_events .tribe-events-back a {
  font-size: 16px;
  vertical-align: middle;
  position: relative;
}
.events-single .tribe-events-schedule h2, .single-tribe_events .tribe-events-schedule h2 {
  font-size: 16px;
  line-height: 0.2;
}
.events-single #tribe-events-content .tribe-events-event-meta .tribe-events-single-section-title, .single-tribe_events #tribe-events-content .tribe-events-event-meta .tribe-events-single-section-title {
  font-size: 22px;
  color: black;
}
.events-single #tribe-events-content .tribe-events-event-meta dt, .single-tribe_events #tribe-events-content .tribe-events-event-meta dt {
  font-size: 18px;
}
.events-single #tribe-events-content .tribe-events-event-meta dd, .single-tribe_events #tribe-events-content .tribe-events-event-meta dd {
  font-size: 16px;
  line-height: 2;
}
.events-single .tribe-events-event-meta address.tribe-events-address,
.events-single .tribe-events-list .tribe-events-venue-details, .single-tribe_events .tribe-events-event-meta address.tribe-events-address,
.single-tribe_events .tribe-events-list .tribe-events-venue-details {
  font-weight: 400;
  font-style: normal;
}

.tribe_mini_calendar_widget .widget-title {
  font-size: 22px;
}
.tribe_mini_calendar_widget .tribe-mini-calendar {
  box-shadow: 0px 0px 27px 3px rgba(169, 169, 169, 0.7);
}
.tribe_mini_calendar_widget .tribe-mini-calendar-nav span {
  color: #2A2A2A;
  margin: 8px auto 15px auto;
}
.tribe_mini_calendar_widget .tribe-mini-calendar th, .tribe_mini_calendar_widget .tribe-mini-calendar td {
  background: white;
  border-color: white;
  color: #2A2A2A;
  font-weight: 300;
  height: 40px;
}
.tribe_mini_calendar_widget .tribe-mini-calendar .tribe-events-has-events.tribe-events-present:hover,
.tribe_mini_calendar_widget .tribe-mini-calendar .tribe-events-has-events.tribe-mini-calendar-today:hover,
.tribe_mini_calendar_widget .tribe-mini-calendar .tribe-events-has-events:hover {
  background: white;
}
.tribe_mini_calendar_widget .tribe-mini-calendar-no-event, .tribe_mini_calendar_widget .tribe-mini-calendar .tribe-events-has-events div[id*=daynum-] a {
  color: #2A2A2A;
}
.tribe_mini_calendar_widget .tribe-mini-calendar .tribe-events-has-events.tribe-events-past a:hover,
.tribe_mini_calendar_widget .tribe-mini-calendar .tribe-events-has-events.tribe-events-future a:hover {
  color: white;
}
.tribe_mini_calendar_widget .tribe-mini-calendar .tribe-events-has-events.tribe-mini-calendar-today:hover {
  color: white;
}
.tribe_mini_calendar_widget .tribe-mini-calendar .tribe-events-has-events div[id*=daynum-] a:before {
  margin: 5px auto 0 -1px;
  background: #606060;
  border-radius: 4px;
  height: 4px;
  padding: 0;
  width: 4px;
}
.tribe_mini_calendar_widget .tribe-mini-calendar .tribe-events-has-events.tribe-events-present a:before {
  margin: 5px auto 0 -1px;
  background: #DF5933 !important;
  border-radius: 4px;
  height: 4px;
  padding: 0;
  width: 4px;
}
.tribe_mini_calendar_widget .tribe-mini-calendar .tribe-events-has-events.tribe-events-present a:hover {
  background: #DF5933 !important;
  color: white !important;
}
.tribe_mini_calendar_widget .tribe-mini-calendar .tribe-events-has-events.tribe-events-present a:hover:before {
  background: white !important;
}
.tribe_mini_calendar_widget .tribe-mini-calendar .tribe-events-has-events div[id*=daynum-] a:hover:before,
.tribe_mini_calendar_widget .tribe-mini-calendar .tribe-events-has-events.tribe-events-present div[id*=daynum-] a:hover:before,
.tribe_mini_calendar_widget .tribe-mini-calendar .tribe-events-has-events.tribe-mini-calendar-today div[id*=daynum-] a:hover:before {
  background: white;
}
.tribe_mini_calendar_widget .tribe-mini-calendar-list-wrapper .tribe-event-featured {
  margin-top: 0;
}
.tribe_mini_calendar_widget .tribe-mini-calendar-list-wrapper .tribe-event-featured .tribe-mini-calendar-event {
  background: white;
}
.tribe_mini_calendar_widget .tribe-mini-calendar-list-wrapper .tribe-event-featured .tribe-mini-calendar-event .tribe-event-image {
  display: none;
}
.tribe_mini_calendar_widget .tribe-mini-calendar-list-wrapper .tribe-event-featured .tribe-mini-calendar-event .list-info {
  padding: 0;
  margin: 0;
}
.tribe_mini_calendar_widget .tribe-mini-calendar-list-wrapper .tribe-event-featured .tribe-mini-calendar-event .list-info h2 {
  color: #606060;
  margin-top: 10px;
}
.tribe_mini_calendar_widget .tribe-mini-calendar-list-wrapper .tribe-event-featured .tribe-mini-calendar-event .list-info h2 a {
  color: #606060;
}
.tribe_mini_calendar_widget .tribe-mini-calendar-list-wrapper .tribe-event-featured .tribe-mini-calendar-event .tribe-events-duration {
  color: #606060;
}

#tribe-events .tribe-events-button, #tribe-events .tribe-events-button:hover,
#tribe_events_filters_wrapper input[type=submit],
.tribe-events-button,
.tribe-events-button.tribe-active:hover,
.tribe-events-button.tribe-inactive,
.tribe-events-button:hover,
.tribe-events-calendar td.tribe-events-present div[id*=tribe-events-daynum-],
.tribe-events-calendar td.tribe-events-present div[id*=tribe-events-daynum-] > a {
  background-color: #DF5933;
}

.datepicker.dropdown-menu {
  z-index: 1000 !important;
}

.datepicker table tr td.active.active, .datepicker table tr td span.active.active {
  background: #DF5933;
  color: white;
}

.tribe-events-calendar td.tribe-events-past .tribe-events-month-event-title a,
.tribe-events-calendar td.tribe-events-past .tribe-events-viewmore a {
  opacity: 1;
}

#tribe-events-content table.tribe-events-calendar .type-tribe_events.tribe-event-featured {
  background: #DF5933;
  padding: 3px;
}

.events-list #tribe-events-footer,
.single-tribe_events #tribe-events-footer,
.tribe-events-day #tribe-events-footer,
.tribe-events-map #tribe-events-footer,
.tribe-events-photo #tribe-events-footer {
  border-top: none;
}

#tribe-events-content .tribe-events-abbr {
  text-decoration: none;
}

.tribe-events-notices {
  background: #f7d7cd;
  border-radius: 0px;
  border: none;
  color: #DF5933;
  margin: 10px 0 18px;
  padding: 8px 35px 8px 14px;
  text-shadow: none;
}

@media (max-width: 800px) {
  .events-archive .tribe-events-list .tribe-events-loop .type-tribe_events .tribe-events-list-event-title {
    bottom: 30px;
    font-size: 18px;
    line-height: 20px;
  }
  .events-archive .tribe-events-list .tribe-events-loop .type-tribe_events.tribe-event-featured .tribe-events-list-event-title {
    bottom: 60px;
    font-size: 18px;
    line-height: 20px;
  }
  .events-archive .tribe-events-list .tribe-events-loop .tribe-event-schedule-details {
    width: 60px;
    height: 60px;
    position: absolute;
    color: white;
    z-index: 100;
    right: 10px;
    top: 20px;
    text-align: right;
    font-size: 20px;
    padding-top: 10px;
    text-transform: uppercase;
    line-height: 15px;
    border: 5px solid white;
    font-weight: 700;
    padding-right: 5px;
    padding-left: 0;
  }
  .events-archive .tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-event-schedule-details {
    top: 10px;
  }
  .events-archive .tribe-events-sub-nav .chevron {
    display: none;
  }

  .tribe-events-sub-nav li a {
    background: transparent;
  }
}
@media (max-width: 420px) {
  .events-archive .tribe-events-list .tribe-events-loop .type-tribe_events .tribe-events-list-event-title {
    bottom: 20px;
    left: 10px;
  }

  .events-archive .tribe-events-list .tribe-events-loop .type-tribe_events.tribe-event-featured .tribe-events-list-event-title {
    bottom: 50px;
    left: 10px;
  }
}
/* Pages
-------------------------------------------------- */
/* Home Page Hero
-------------------------------------------------- */
body.home .hero-slide .hero-slide--inner {
  height: 650px;
}
body.home .hero-slide h3 {
  color: #DF5933;
}

/* Home Block
-------------------------------------------------- */
.home-block {
  background: #BFBFBF;
  padding: 30px 0;
}

.home-block-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.home-block-inner img {
  padding: 0 10px;
  max-height: 35px;
}

.home-block-text {
  text-align: center;
}
@media only screen and (min-width: 64rem) {
  .home-block-text {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
    text-align: left;
    padding: 6.8541021569em 0;
    padding-right: 6.8541021569em;
  }
  .home-block-text.home-block-text--full-width {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
    text-align: center;
    padding-right: 0;
  }
}
.home-block-text .home-block-content {
  text-align: left;
}
.home-block-text .home-block-content p {
  font-size: 1rem;
}

.home-block-image {
  display: none;
}
@media only screen and (min-width: 64rem) {
  .home-block-image {
    display: block;
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
    background-size: cover;
    background-position: 50%;
  }
}

/* Home Updates
-------------------------------------------------- */
.home-updates .homepage-row {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
  -webkit-column-gap: 0;
  -moz-column-gap: 0;
  column-gap: 0;
}
.home-updates .flex-column {
  display: block;
  width: 100%;
}
.home-updates .home-updates-slider-1, .home-updates .home-updates-slider-2 {
  max-width: 540px;
  max-height: 450px;
}
.home-updates .home-updates-slider-1 .update-title, .home-updates .home-updates-slider-2 .update-title {
  position: relative;
}
.home-updates .home-updates-slider-1 img, .home-updates .home-updates-slider-2 img {
  filter: brightness(70%);
}
.home-updates .home-updates-slider-1 h3, .home-updates .home-updates-slider-2 h3 {
  font-size: 22px;
  line-height: 28px;
  position: absolute;
  bottom: 60px;
  margin-left: 20px;
  margin-right: 40px;
  color: white;
  font-weight: bold;
  width: 360px;
}
.home-updates .home-updates-slider-1 .slick-dots, .home-updates .home-updates-slider-2 .slick-dots {
  list-style: none;
  display: block;
  padding: 0 10px;
  background: white;
  border: 1px solid #d8d8d8;
  width: 40px;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
}
.home-updates .home-updates-slider-1 .slick-dots li, .home-updates .home-updates-slider-2 .slick-dots li {
  text-align: center;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #d8d8d8;
  margin: 10px auto;
  cursor: pointer;
}
.home-updates .home-updates-slider-1 .slick-dots li.slick-active, .home-updates .home-updates-slider-2 .slick-dots li.slick-active {
  background: #FE7865;
  width: 12px;
  height: 12px;
}
.home-updates .home-updates-slider-1 .slick-dots li button, .home-updates .home-updates-slider-2 .slick-dots li button {
  display: none;
}
.home-updates .calendar-homepage {
  position: relative;
  z-index: 100;
}
.home-updates .calendar-homepage .category {
  position: absolute;
  bottom: 70px;
  left: 20px;
  right: auto;
  display: block;
  padding: 10px;
  background: white;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 10px;
}
.home-updates .calendar-homepage .upcoming {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: auto;
  max-width: 300px;
}
.home-updates .calendar-homepage .upcoming a {
  float: right;
  display: block;
  padding: 10px 15px;
  font-size: 12px;
  color: white;
  background: #DF5933;
  text-transform: uppercase;
}
@media only screen and (min-width: 64rem) {
  .home-updates .homepage-row {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    max-height: 1300px;
  }
  .home-updates .flex-column {
    display: inline-block;
    width: 100%;
    vertical-align: top;
  }
  .home-updates .home-updates-slider-1, .home-updates .home-updates-slider-2 {
    max-width: 540px;
    max-height: 450px;
  }
  .home-updates .home-updates-slider-1 img, .home-updates .home-updates-slider-2 img {
    position: relative;
    filter: brightness(70%);
  }
  .home-updates .home-updates-slider-1 h3, .home-updates .home-updates-slider-2 h3 {
    font-size: 24px;
    line-height: 28px;
    position: absolute;
    bottom: 30px;
    margin-left: 20px;
    margin-right: 40px;
    color: white;
    font-weight: bold;
    width: 500px;
  }
  .home-updates .home-updates-slider-1 .slick-dots, .home-updates .home-updates-slider-2 .slick-dots {
    list-style: none;
    display: block;
    padding: 0 10px;
    background: white;
    border: 1px solid #d8d8d8;
    width: 40px;
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  .home-updates .home-updates-slider-1 .slick-dots li, .home-updates .home-updates-slider-2 .slick-dots li {
    text-align: center;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background: #d8d8d8;
    margin: 10px auto;
    cursor: pointer;
  }
  .home-updates .home-updates-slider-1 .slick-dots li.slick-active, .home-updates .home-updates-slider-2 .slick-dots li.slick-active {
    background: #FE7865;
    width: 12px;
    height: 12px;
  }
  .home-updates .home-updates-slider-1 .slick-dots li button, .home-updates .home-updates-slider-2 .slick-dots li button {
    display: none;
  }
  .home-updates .calendar-1 {
    max-width: 540px;
    margin-top: 20px;
  }
  .home-updates .calendar-1 img {
    filter: brightness(70%);
  }
  .home-updates .calendar-2 {
    max-width: 540px;
    margin-bottom: 20px;
  }
  .home-updates .calendar-2 img {
    filter: brightness(70%);
  }
  .home-updates .calendar-homepage {
    position: relative;
    z-index: 100;
  }
  .home-updates .calendar-homepage .category {
    position: absolute;
    bottom: 70px;
    right: 20px;
    left: auto;
    display: block;
    padding: 10px;
    background: white;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 10px;
  }
  .home-updates .calendar-homepage .upcoming {
    position: absolute;
    bottom: 30px;
    right: 20px;
    left: auto;
    max-width: 300px;
  }
  .home-updates .calendar-homepage .upcoming a {
    float: right;
    display: block;
    padding: 10px 15px;
    font-size: 12px;
    color: white;
    background: #DF5933;
    text-transform: uppercase;
  }
}

@media (max-width: 1024px) {
  .flex-column {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 64rem) {
  .home-updates-inner {
    display: flex;
    justify-content: space-between;
  }
}

.home-updates-update {
  margin: 1em auto 2.6180340252em;
}
@media only screen and (min-width: 64rem) {
  .home-updates-update {
    width: calc(50% - 1.618034em);
    max-width: calc(50% - 1.618034em);
    flex-basis: calc(50% - 1.618034em);
  }
}

.contact-page--main .page-wrapper {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 64rem) {
  .contact-page--main .page-wrapper {
    flex-direction: row;
  }
}

.contact-aside {
  display: block;
  order: -1;
}
@media only screen and (min-width: 64rem) {
  .contact-aside {
    order: 1;
  }
}

.contact-heading {
  color: #606060;
  text-transform: uppercase;
}

/* Contact Section
-------------------------------------------------- */
.contact-section {
  margin-bottom: 2.6180340252em;
}

.contact-attorney {
  display: flex;
  margin: 1.618034em auto;
}

.contact-attorney-photo {
  margin: 0 1.618034em 0 0;
  display: none;
}
@media only screen and (min-width: 48rem) {
  .contact-attorney-photo {
    display: block;
  }
}
.contact-attorney-photo img {
  width: 150px;
  height: auto;
}

.contact-attorney-name {
  display: block;
  margin-bottom: 0.6180339845em;
}
.contact-attorney-name a {
  color: #212121;
}
.contact-attorney-name a:hover {
  text-decoration: underline;
}

/* Contact Form
-------------------------------------------------- */
.contact-form-wrapper {
  margin: 1.618034em auto;
}
.contact-form-wrapper label {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
}
.contact-form-wrapper p {
  margin-bottom: 1em;
}
.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
}

span.wpcf7-not-valid-tip {
  font-size: 0.8em;
  margin-bottom: -1rem;
  font-family: "Lato", sans-serif;
}

div.wpcf7-validation-errors {
  display: none !important;
}

div.wpcf7-mail-sent-ok {
  border: 0;
  padding: 0;
  margin: 0;
}

/* Single Attorney Page
-------------------------------------------------- */
.attorney-content {
  margin-top: 2.6180340252em;
  margin-bottom: 4.2360680659em;
}
.attorney-content h2 {
  font-size: 20px !important;
  font-weight: 300 !important;
  color: #2B2B2B;
  text-transform: uppercase;
  border-bottom: 3px dotted #D8D8D8;
  line-height: 2 !important;
  letter-spacing: 5px;
}
.attorney-content li, .attorney-content p {
  font-size: 16px !important;
  font-family: Georgia, "Times New Roman", Times, serif !important;
}

.attorney-aside {
  display: block;
  border-bottom: 1px solid #BDBDBD;
  padding-bottom: 1.618034em;
  margin-bottom: 2.6180340252em;
  margin-top: 1.618034em;
}
@media only screen and (min-width: 64rem) {
  .attorney-aside {
    border-bottom: 0;
  }
}
.attorney-aside h1 {
  margin-top: 1em !important;
  margin-bottom: 0 !important;
  font-size: 30px !important;
}
.attorney-aside h2 {
  font-size: 20px !important;
  font-weight: 300 !important;
  color: #2B2B2B;
  text-transform: uppercase;
  border-bottom: 3px dotted #D8D8D8;
  line-height: 2 !important;
  letter-spacing: 5px;
}
.attorney-aside li, .attorney-aside p {
  font-size: 16px !important;
  font-family: Georgia, "Times New Roman", Times, serif !important;
}

.attorney-title {
  display: block;
  margin: 15px 0;
  font-weight: 700;
}

.attorney-link {
  display: flex;
  align-items: center;
  margin-bottom: 0.6180339845em;
}
.attorney-link img {
  width: 1rem;
  height: 1rem;
  margin-right: 0.6180339845em;
}

/* Attorneys Archive
-------------------------------------------------- */
.attorneys-grid {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.attorneys-grid-item {
  margin: 1rem 0.5rem;
  flex-basis: calc(50% - 1rem);
  width: calc(50% - 1rem);
  max-width: calc(50% - 1rem);
}
@media only screen and (min-width: 48rem) {
  .attorneys-grid-item {
    flex-basis: calc(33.3333% - 1rem);
    width: calc(33.3333% - 1rem);
    max-width: calc(33.3333% - 1rem);
  }
}
@media only screen and (min-width: 75rem) {
  .attorneys-grid-item {
    flex-basis: calc(25% - 1rem);
    width: calc(25% - 1rem);
    max-width: calc(25% - 1rem);
  }
}

.attorneys-grid-item figure {
  margin: 1rem auto;
  overflow: hidden;
  position: relative;
}
.attorneys-grid-item figure .quote {
  position: relative;
}
.attorneys-grid-item figure .quote h3 {
  color: white;
  opacity: 0;
  position: absolute;
  margin: 0;
  z-index: 3;
  text-align: left;
  width: 240px;
  left: 50%;
  top: 60px;
  transition-delay: 0.25s;
  transition: opacity 0.5s ease;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.attorneys-grid-item figure .main-image {
  opacity: 1;
  position: static;
  z-index: 2;
  width: 268x;
  height: 268px;
  transition: opacity 0.5s ease;
  background-size: cover;
  margin: 0 auto;
}
.attorneys-grid-item figure .second-photo {
  opacity: 0;
  z-index: 1;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  width: 268px;
  height: 268px;
  transition: opacity 0.5s ease;
  background-size: cover;
  left: 50%;
  transform: translateX(-50%);
}
.attorneys-grid-item figure:hover .second-photo {
  opacity: 1;
  transition: all 0.5s ease;
}
.attorneys-grid-item figure:hover .quote h3 {
  display: block;
  opacity: 1;
  top: -70px;
  transition-delay: 0.25s;
  transition: all 0.5s ease;
}
.attorneys-grid-item figure:hover .main-image {
  opacity: 1;
  z-index: -1;
  transition: all 0.5s ease;
}

.attorneys-grid-item--title {
  margin-top: 0.3819660059em;
  display: block;
  color: #212121;
}

.sf-covered-container {
  position: relative;
}

.sf-covered-filter--options .marker {
  width: 10px;
  height: 10px;
  margin-left: 5px;
  border-radius: 50%;
}
.sf-covered-filter--options .case-study-marker {
  background: #266A8D;
}
.sf-covered-filter--options .Office-marker {
  background: #58B19F;
}
.sf-covered-filter--options .Hotel-marker {
  background: #4BCEFA;
}
.sf-covered-filter--options .Residential-marker {
  background: #EAB543;
}
.sf-covered-filter--options .FRU {
  background: #2B3A47;
}
.sf-covered-filter--options .BOA-marker {
  background: #808E9B;
}
.sf-covered-filter--options .Condominiums-marker {
  background: #DF5932;
}

.sf-covered-map {
  width: 100%;
  height: 600px;
}

.sf-covered-filter {
  position: absolute;
  top: 1.618034em;
  left: 1.618034em;
  right: 1.618034em;
  padding: 1em;
  background-color: #FFFFFF;
  border: 1px solid #BDBDBD;
}
@media only screen and (min-width: 48rem) {
  .sf-covered-filter {
    right: auto;
  }
}

.sf-covered-filter-title--desktop {
  display: none;
}
@media only screen and (min-width: 48rem) {
  .sf-covered-filter-title--desktop {
    display: block;
  }
}

.sf-covered-filter-title--mobile {
  font-size: 14px;
}
@media only screen and (min-width: 48rem) {
  .sf-covered-filter-title--mobile {
    display: none;
  }
}
.sf-covered-filter-title--mobile a {
  display: flex;
  justify-content: space-between;
}
.sf-covered-filter-title--mobile a img {
  height: 22px;
  width: 22px;
  opacity: 0.5;
  transition: all 0.15s ease;
}
.sf-covered-filter-title--mobile a:hover img {
  opacity: 1;
}
.sf-covered-filter-title--mobile a.link-filter-options--visible img {
  transform: rotate(180deg);
}

.sf-covered-filter--options {
  margin-top: 0.5rem;
  display: none;
  flex-wrap: wrap;
}
.sf-covered-filter--options.filter-options--visible {
  display: flex;
}
@media only screen and (min-width: 48rem) {
  .sf-covered-filter--options {
    margin-top: 1rem;
    display: block !important;
  }
}
.sf-covered-filter--options > div {
  display: flex;
  align-items: center;
  line-height: 1.5;
  font-size: 14px;
  color: #606060;
  width: 50%;
  max-width: 50%;
}
@media only screen and (min-width: 48rem) {
  .sf-covered-filter--options > div {
    width: 100%;
    max-width: 100%;
  }
}
.sf-covered-filter--options input {
  margin-right: 0.6180339845em;
}

/* Modal
-------------------------------------------------- */
.sf-covered-modal {
  display: none;
  background-color: #212121;
  color: #FFFFFF;
}

.sf-covered-modal--close {
  position: absolute;
  top: 2.6180340252em;
  right: 2.6180340252em;
  height: 1.618034em;
  display: flex;
  align-items: flex-end;
}
@media only screen and (min-width: 48rem) {
  .sf-covered-modal--close {
    display: block;
    position: relative;
    padding-top: 2.6180340252em;
    text-align: right;
    top: 0;
    right: 0;
  }
}

.sf-covered-modal--header {
  padding-top: 2.6180340252em;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 48rem) {
  .sf-covered-modal--header {
    flex-direction: row;
  }
}
.sf-covered-modal--header > * {
  flex: 1;
}

.sf-covered-modal--meta h3 {
  margin-bottom: 0.6180339845em;
}

.sf-covered-modal--address {
  margin-bottom: 1.618034em;
  color: #BDBDBD;
  font-size: 14px;
  line-height: 1.5;
}

.sf-covered-modal--services strong {
  font-weight: 400;
  color: #DF5933;
  line-height: 2;
}
.sf-covered-modal--services p {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 2;
  margin-bottom: 2.6180340252em;
}
@media only screen and (min-width: 48rem) {
  .sf-covered-modal--services p {
    margin-bottom: 1.618034em;
  }
}

.sf-covered-modal--image {
  position: relative;
  height: 50vw;
}
@media only screen and (min-width: 48rem) {
  .sf-covered-modal--image {
    height: auto;
    display: flex;
  }
}

.sf-covered-modal--image-container {
  height: 100%;
  background-position: center;
  background-size: cover;
}
@media only screen and (min-width: 48rem) {
  .sf-covered-modal--image-container {
    height: auto;
    width: 100%;
  }
}

.sf-covered-modal--description {
  padding-top: 2.6180340252em;
  padding-bottom: 2.6180340252em;
}
@media only screen and (min-width: 48rem) {
  .sf-covered-modal--description {
    padding-bottom: 4.2360680659em;
  }
}

.sf-covered-modal--description,
.sf-covered-modal--description li {
  font-family: "Lato", sans-serif;
  line-height: 2;
  font-size: 14px;
}
@media only screen and (min-width: 48rem) {
  .sf-covered-modal--description,
.sf-covered-modal--description li {
    font-size: 1rem;
  }
}

.gm-style .popup-image img {
  max-width: 265px;
}

@media (max-width: 500px) {
  .gm-style .popup-image img {
    max-width: 200px;
  }
}

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