@charset "UTF-8";
/******************************************************************

Stylesheet: Main Stylesheet

Here's where the magic happens. Here is where you import
all of your Sass files so they can compile into one
CSS file.

******************************************************************/
/* Slider */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap");
.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;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

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

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

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

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"),
    url("./fonts/slick.woff") format("woff"),
    url("./fonts/slick.ttf") format("truetype"),
    url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir="rtl"] .slick-next:before {
  content: "←";
}

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

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

/**
 * Foundation for Sites by ZURB
 * Version 6.5.3
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 40em) {
  .reveal,
  .reveal.tiny,
  .reveal.small,
  .reveal.large {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

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

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

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.foundation-mq {
  font-family: "small=0em&xmedium=28.125em&medium=40em&large=64em&xlarge=75em&xxlarge=90em";
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

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

body {
  margin: 0;
  padding: 0;
  background: #fefefe;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #282829;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto;
}
[data-whatinput="mouse"] button {
  outline: 0;
}

pre {
  overflow: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

.is-visible {
  display: block !important;
}

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

.row {
  max-width: 75rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-flow: row wrap;
}
.row .row {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.row .row.collapse {
  margin-right: 0;
  margin-left: 0;
}
.row.expanded {
  max-width: none;
}
.row.expanded .row {
  margin-right: auto;
  margin-left: auto;
}
.row:not(.expanded) .row {
  max-width: none;
}
.row.collapse > .column,
.row.collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.row.is-collapse-child,
.row.collapse > .column > .row,
.row.collapse > .columns > .row {
  margin-right: 0;
  margin-left: 0;
}

.column,
.columns {
  flex: 1 1 0px;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  min-width: 0;
}
@media print, screen and (min-width: 40em) {
  .column,
  .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.column.row.row,
.row.row.columns {
  float: none;
  display: block;
}

.row .column.row.row,
.row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.small-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.small-offset-0 {
  margin-left: 0%;
}

.small-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.small-offset-1 {
  margin-left: 8.33333%;
}

.small-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.small-offset-2 {
  margin-left: 16.66667%;
}

.small-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

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

.small-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.small-offset-4 {
  margin-left: 33.33333%;
}

.small-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.small-offset-5 {
  margin-left: 41.66667%;
}

.small-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

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

.small-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.small-offset-7 {
  margin-left: 58.33333%;
}

.small-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.small-offset-8 {
  margin-left: 66.66667%;
}

.small-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

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

.small-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.small-offset-10 {
  margin-left: 83.33333%;
}

.small-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.small-offset-11 {
  margin-left: 91.66667%;
}

.small-up-1 {
  flex-wrap: wrap;
}
.small-up-1 > .column,
.small-up-1 > .columns {
  flex: 0 0 100%;
  max-width: 100%;
}

.small-up-2 {
  flex-wrap: wrap;
}
.small-up-2 > .column,
.small-up-2 > .columns {
  flex: 0 0 50%;
  max-width: 50%;
}

.small-up-3 {
  flex-wrap: wrap;
}
.small-up-3 > .column,
.small-up-3 > .columns {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.small-up-4 {
  flex-wrap: wrap;
}
.small-up-4 > .column,
.small-up-4 > .columns {
  flex: 0 0 25%;
  max-width: 25%;
}

.small-up-5 {
  flex-wrap: wrap;
}
.small-up-5 > .column,
.small-up-5 > .columns {
  flex: 0 0 20%;
  max-width: 20%;
}

.small-up-6 {
  flex-wrap: wrap;
}
.small-up-6 > .column,
.small-up-6 > .columns {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.small-up-7 {
  flex-wrap: wrap;
}
.small-up-7 > .column,
.small-up-7 > .columns {
  flex: 0 0 14.28571%;
  max-width: 14.28571%;
}

.small-up-8 {
  flex-wrap: wrap;
}
.small-up-8 > .column,
.small-up-8 > .columns {
  flex: 0 0 12.5%;
  max-width: 12.5%;
}

.small-collapse > .column,
.small-collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}

.small-uncollapse > .column,
.small-uncollapse > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}

@media print, screen and (min-width: 40em) {
  .medium-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .medium-offset-0 {
    margin-left: 0%;
  }
  .medium-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .medium-offset-1 {
    margin-left: 8.33333%;
  }
  .medium-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .medium-offset-2 {
    margin-left: 16.66667%;
  }
  .medium-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .medium-offset-4 {
    margin-left: 33.33333%;
  }
  .medium-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .medium-offset-5 {
    margin-left: 41.66667%;
  }
  .medium-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .medium-offset-7 {
    margin-left: 58.33333%;
  }
  .medium-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .medium-offset-8 {
    margin-left: 66.66667%;
  }
  .medium-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .medium-offset-10 {
    margin-left: 83.33333%;
  }
  .medium-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .medium-offset-11 {
    margin-left: 91.66667%;
  }
  .medium-up-1 {
    flex-wrap: wrap;
  }
  .medium-up-1 > .column,
  .medium-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .medium-up-2 {
    flex-wrap: wrap;
  }
  .medium-up-2 > .column,
  .medium-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .medium-up-3 {
    flex-wrap: wrap;
  }
  .medium-up-3 > .column,
  .medium-up-3 > .columns {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .medium-up-4 {
    flex-wrap: wrap;
  }
  .medium-up-4 > .column,
  .medium-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .medium-up-5 {
    flex-wrap: wrap;
  }
  .medium-up-5 > .column,
  .medium-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .medium-up-6 {
    flex-wrap: wrap;
  }
  .medium-up-6 > .column,
  .medium-up-6 > .columns {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .medium-up-7 {
    flex-wrap: wrap;
  }
  .medium-up-7 > .column,
  .medium-up-7 > .columns {
    flex: 0 0 14.28571%;
    max-width: 14.28571%;
  }
  .medium-up-8 {
    flex-wrap: wrap;
  }
  .medium-up-8 > .column,
  .medium-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}

@media print, screen and (min-width: 40em) and (min-width: 40em) {
  .medium-expand {
    flex: 1 1 0px;
  }
}

.row.medium-unstack > .column,
.row.medium-unstack > .columns {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 40em) {
  .row.medium-unstack > .column,
  .row.medium-unstack > .columns {
    flex: 1 1 0px;
  }
}

@media print, screen and (min-width: 40em) {
  .medium-collapse > .column,
  .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .medium-uncollapse > .column,
  .medium-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

@media print, screen and (min-width: 64em) {
  .large-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .large-offset-0 {
    margin-left: 0%;
  }
  .large-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .large-offset-1 {
    margin-left: 8.33333%;
  }
  .large-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .large-offset-2 {
    margin-left: 16.66667%;
  }
  .large-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .large-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .large-offset-4 {
    margin-left: 33.33333%;
  }
  .large-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .large-offset-5 {
    margin-left: 41.66667%;
  }
  .large-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .large-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .large-offset-7 {
    margin-left: 58.33333%;
  }
  .large-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .large-offset-8 {
    margin-left: 66.66667%;
  }
  .large-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .large-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .large-offset-10 {
    margin-left: 83.33333%;
  }
  .large-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .large-offset-11 {
    margin-left: 91.66667%;
  }
  .large-up-1 {
    flex-wrap: wrap;
  }
  .large-up-1 > .column,
  .large-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .large-up-2 {
    flex-wrap: wrap;
  }
  .large-up-2 > .column,
  .large-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .large-up-3 {
    flex-wrap: wrap;
  }
  .large-up-3 > .column,
  .large-up-3 > .columns {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .large-up-4 {
    flex-wrap: wrap;
  }
  .large-up-4 > .column,
  .large-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .large-up-5 {
    flex-wrap: wrap;
  }
  .large-up-5 > .column,
  .large-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .large-up-6 {
    flex-wrap: wrap;
  }
  .large-up-6 > .column,
  .large-up-6 > .columns {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .large-up-7 {
    flex-wrap: wrap;
  }
  .large-up-7 > .column,
  .large-up-7 > .columns {
    flex: 0 0 14.28571%;
    max-width: 14.28571%;
  }
  .large-up-8 {
    flex-wrap: wrap;
  }
  .large-up-8 > .column,
  .large-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}

@media print, screen and (min-width: 64em) and (min-width: 64em) {
  .large-expand {
    flex: 1 1 0px;
  }
}

.row.large-unstack > .column,
.row.large-unstack > .columns {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 64em) {
  .row.large-unstack > .column,
  .row.large-unstack > .columns {
    flex: 1 1 0px;
  }
}

@media print, screen and (min-width: 64em) {
  .large-collapse > .column,
  .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .large-uncollapse > .column,
  .large-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.shrink {
  flex: 0 0 auto;
  max-width: 100%;
}

.column-block {
  margin-bottom: 1.25rem;
}
.column-block > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .column-block {
    margin-bottom: 1.875rem;
  }
  .column-block > :last-child {
    margin-bottom: 0;
  }
}

.align-left {
  justify-content: flex-start;
}

.align-right {
  justify-content: flex-end;
}

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

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

.align-spaced {
  justify-content: space-around;
}

.align-left.vertical.menu > li > a {
  justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
  justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  justify-content: center;
}

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

.align-self-top {
  align-self: flex-start;
}

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

.align-self-bottom {
  align-self: flex-end;
}

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

.align-self-middle {
  align-self: center;
}

.align-stretch {
  align-items: stretch;
}

.align-self-stretch {
  align-self: stretch;
}

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    order: 1;
  }
  .medium-order-2 {
    order: 2;
  }
  .medium-order-3 {
    order: 3;
  }
  .medium-order-4 {
    order: 4;
  }
  .medium-order-5 {
    order: 5;
  }
  .medium-order-6 {
    order: 6;
  }
}

@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }
  .large-order-2 {
    order: 2;
  }
  .large-order-3 {
    order: 3;
  }
  .large-order-4 {
    order: 4;
  }
  .large-order-5 {
    order: 5;
  }
  .large-order-6 {
    order: 6;
  }
}

.flex-container {
  display: flex;
}

.flex-child-auto {
  flex: 1 1 auto;
}

.flex-child-grow {
  flex: 1 0 auto;
}

.flex-child-shrink {
  flex: 0 1 auto;
}

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

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

.flex-dir-column {
  flex-direction: column;
}

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

@media print, screen and (min-width: 40em) {
  .medium-flex-container {
    display: flex;
  }
  .medium-flex-child-auto {
    flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}

@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: flex;
  }
  .large-flex-child-auto {
    flex: 1 1 auto;
  }
  .large-flex-child-grow {
    flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    flex: 0 1 auto;
  }
  .large-flex-dir-row {
    flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}

.close-button {
  position: absolute;
  color: #8a8a8a;
  cursor: pointer;
}
[data-whatinput="mouse"] .close-button {
  outline: 0;
}
.close-button:hover,
.close-button:focus {
  color: #282829;
}
.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}
.close-button,
.close-button.medium {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%;
}

html.is-reveal-open {
  position: fixed;
  width: 100%;
  overflow-y: hidden;
}
html.is-reveal-open.zf-has-scroll {
  overflow-y: scroll;
}
html.is-reveal-open body {
  overflow-y: hidden;
}

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(40, 40, 41, 0.45);
  overflow-y: auto;
}

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
}
[data-whatinput="mouse"] .reveal {
  outline: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column,
.reveal .columns {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 75rem;
  }
}
.reveal.collapse {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 75rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 75rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.large {
    width: 90%;
    max-width: 75rem;
  }
}
.reveal.full {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}
@media screen and (max-width: 28.12375em) {
  .reveal {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}
.reveal.without-overlay {
  position: fixed;
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

@media screen and (max-width: 28.12375em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 28.125em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 39.99875em) {
  .show-for-medium {
    display: none !important;
  }
}

@media screen and (min-width: 40em) and (max-width: 63.99875em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 39.99875em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em) {
  .show-for-large {
    display: none !important;
  }
}

@media screen and (min-width: 64em) and (max-width: 74.99875em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.show-on-focus:active,
.show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

/*********************
* Global Stylesheets *
**********************/
* {
  image-rendering: -webkit-optimize-contrast;
}

@font-face {
  font-family: "BebasNeue Bold";
  src: url("./fonts/BebasNeue Bold.otf") format("opentype");
}
@font-face {
  font-family: "Futura";
  src: url("./fonts/Futura.ttc") format("truetype");
}
@font-face {
  font-family: "Futura-PT-Bold";
  src: url("./fonts/Futura-PT-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "MinionPro-Regular";
  src: url("./fonts/MinionPro-Regular_0.otf") format("opentype");
}
@font-face {
  font-family: "Montserrat-Light";
  src: url("./fonts/Montserrat-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("./fonts/Montserrat-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url("./fonts/Montserrat-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Social-Media-Circled";
  src: url("./fonts/Social Media Circled.ttf") format("truetype");
}
@font-face {
  font-family: "Proxima-Nova-Regular";
  src: url("./fonts/Proxima-Nova-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Proxima-Nova-Medium";
  src: url("./fonts/Proxima-Nova-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Proxima-Nova-Light";
  src: url("./fonts/Proxima-Nova-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Proxima-Nova-Bold";
  src: url("./fonts/Proxima-Nova-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Proxima-Nova-Black";
  src: url("./fonts/Proxima-Nova-Black.ttf") format("truetype");
}

.social-media-circled {
  font-family: "Social-Media-Circled";
}
.montserrat-light {
  font-family: "Montserrat-Light";
}
.montserrat-semibold {
  font-family: "Montserrat-SemiBold";
}
.montserrat-bold {
  font-family: "Montserrat-Bold";
}
.minionpro-regular {
  font-family: "MinionPro-Regular";
}
.futura {
  font-family: "Futura";
}
.futura-pt-bold {
  font-family: "Futura-PT-Bold";
}
.proxima-nova-medium {
  font-family: "Proxima-Nova-Medium";
}
.proxima-nova-light {
  font-family: "Proxima-Nova-Light";
}
.proxima-nova-regular {
  font-family: "Proxima-Nova-Regular";
}
.proxima-nova-bold {
  font-family: "Proxima-Nova-Bold";
}
.proxima-nova-black {
  font-family: "Proxima-Nova-Black";
}

.light-green {
  color: #99cc99;
}

html {
  overflow-x: hidden;
}

body {
  /* font-family: "Montserrat", Helvetica, sans-serif; */
  /* color: rgba(40, 40, 41, 0.9); */
  font-family: "Proxima-Nova-Regular";
  color: #282829 !important;
  overflow-x: hidden;
}

h2 {
  font-family: "Futura-PT-Bold";
  line-height: 1;
}
h2 span {
  color: #339933;
}

#page_body {
  padding-top: 40px;
  /* padding-top: 80px; */
}

body.home #page_body {
  padding-top: 0;
}

img.aligncenter {
  display: block;
  margin: auto;
}

.mobile-menu {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #fefefe;
  padding: 15px 10px;
}
.mobile-menu .header-social {
  text-align: center;
  flex: 1;
}
.mobile-menu .header-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu .header-social ul li {
  display: inline-block;
  padding: 0 5px;
}
.mobile-menu .header-social ul li a img {
  width: 22px;
}
.mobile-menu a {
  text-decoration: none;
}
.mobile-menu .topbar_container {
  width: 100%;
  border-bottom: solid 1px #fff;
  padding: 0 10px 15px 10px;
}
.mobile-menu .topbar_container > ul {
  display: block;
  list-style: none;
  padding-left: 0;
  text-align: center;
  margin: 0;
}
.mobile-menu .topbar_container > ul li {
  display: inline-block;
  color: #fefefe;
  font-family: "Gotham-Book", sans-serif;
  font-size: 11px;
  padding: 0 20px;
}
.mobile-menu .topbar_container > ul li a {
  text-decoration: none;
  color: #fefefe;
}
.mobile-menu .topbar_container > ul li.flags-contianer a {
  display: inline-block;
  padding: 0 5px;
}
.mobile-menu .topbar_container > ul li.flags-contianer img {
  width: 25px;
}
.mobile-menu .logo-container {
  padding: 0.5em 3px 0.5em 3px;
  flex: 1;
}
@media screen and (min-width: 27.25em) {
  .mobile-menu .logo-container {
    padding: 0.5em 3px 0.5em 3px;
  }
}
.mobile-menu .logo-container img {
  width: 100%;
  max-width: 125px;
}
.mobile-menu .wp-menu {
  display: block;
  text-align: left;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 320px;
  background-color: #339933;
  transition: transform 0.5s ease-in-out, z-index 0s 0s;
  -webkit-transform: translate3d(100%, 0, 1px);
  transform: translate3d(100%, 0, 1px);
  z-index: 200;
  flex: 1;
}
@media print, screen and (min-width: 40em) {
  .mobile-menu .wp-menu {
    max-width: 400px;
  }
}
.mobile-menu .wp-menu a {
  text-decoration: none;
  color: #fefefe;
}
.mobile-menu .wp-menu .dp-plain-menu {
  padding-top: 0.45em;
  height: 100%;
  min-height: 100vh;
  height: 100%;
  overflow: auto;
  background-color: #282829;
  z-index: 1;
}
.mobile-menu .wp-menu .menu-item > a {
  display: block;
  padding: 0.75em 1.5em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: normal;
}
.mobile-menu .wp-menu .menu-item > a:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.mobile-menu .wp-menu .menu-item:first-child > a {
  padding-top: 1.5em;
}
.mobile-menu .wp-menu .menu-item.active > a {
  font-weight: 600;
}
.mobile-menu .wp-menu .menu-item-has-children > a {
  position: relative;
}
.mobile-menu .wp-menu .menu-item-has-children > a:after {
  content: "";
  background: url("../images/arrow-right-thin-white.svg") no-repeat;
  width: 7px;
  height: 10px;
  position: absolute;
  right: 80px;
  bottom: 1.25em;
}
.mobile-menu .second-level-menu {
  position: absolute;
  top: 0;
  right: 10px;
  width: 100%;
  height: 100%;
  background-color: #282829;
  height: 100vh;
  transition: transform 0.5s ease-in-out, z-index 0s 0s;
  -webkit-transform: translate3d(100%, 0, 1px);
  transform: translate3d(100%, 0, 1px);
  z-index: 1;
  height: calc(100vh - 41px);
  overflow: auto;
}
.mobile-menu .second-level-menu .second-level-parent.menu-item {
  font-weight: bold;
  text-transform: uppercase;
}
.mobile-menu .second-level-menu .second-level-parent.menu-item a {
  padding: 1.25em 1em 1.25em 0;
}
.mobile-menu .second-level-menu > .menu-item > a {
  padding: 0.75em 1.5em 0.75em 10px;
  font-size: 90%;
}
.mobile-menu .mobile-menu-opener {
  position: absolute;
  right: 100%;
  top: 1.1em;
  display: flex;
  align-items: center;
  background: #fefefe;
}
@media screen and (min-width: 27.25em) {
  .mobile-menu .mobile-menu-opener {
    top: 1.2em;
  }
}
.mobile-menu .back-to-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #282829;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out 0s, z-index 0s 0s;
}
.mobile-menu .back-to-main:after {
  content: "";
  background: url("../images/arrow-left-thin-white.svg") no-repeat;
  width: 10px;
  height: 20px;
  position: absolute;
  left: 25px;
  top: 18px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.mobile-menu.first-level-open .wp-menu {
  border-left: none;
  -webkit-transform: translate3d(60px, 0, 1px);
  transform: translate3d(60px, 0, 1px);
}
.mobile-menu.second-level-open .back-to-main {
  z-index: 2;
  opacity: 1;
  transition: opacity 0.5s ease-in-out, z-index 0s 0s;
}
.mobile-menu.second-level-open .wp-menu {
  -webkit-transform: translate3d(0, 0, 1px);
  transform: translate3d(0, 0, 1px);
}
.mobile-menu.second-level-open .menu-item.open .second-level-menu {
  z-index: 5;
  -webkit-transform: translate3d(60px, 0, 1px);
  transform: translate3d(60px, 0, 1px);
}

.desktop-menu {
  background-color: transparent;
  position: absolute !important;
  top: 0;
  width: 100%;
  z-index: 9;
}
.desktop-menu .header-social {
  position: absolute;
  right: 30px;
  top: 50px;
}
.desktop-menu .header-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.desktop-menu .header-social ul li {
  display: inline-block;
  padding: 0 5px;
}
.desktop-menu .header-social ul li a img {
  width: 22px;
}
.desktop-menu .header_container {
  display: flex;
  max-width: 93.75rem;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: auto;
  padding: 20px 0;
}
.desktop-menu .header_container .logo {
  width: 15%;
  text-align: center;
}
.desktop-menu .header_container .dp-plain-menu {
  width: 42.5%;
}
.desktop-menu .header_container .dp-plain-menu .second-level-menu {
  min-width: 225px;
}
.desktop-menu .header_container .dp-plain-menu .second-level-menu > li a {
  text-transform: capitalize;
}
.desktop-menu .header_container .desktop-menu__container {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.desktop-menu .header_container .desktop-menu__container .topbar_container {
  width: 100%;
  border-bottom: solid 1px #fff;
  padding: 10px 0;
}
.desktop-menu
  .header_container
  .desktop-menu__container
  .topbar_container
  > ul {
  display: block;
  list-style: none;
  padding-left: 0;
  text-align: right;
  margin: 0;
}
.desktop-menu
  .header_container
  .desktop-menu__container
  .topbar_container
  > ul
  li {
  display: inline-block;
  color: #fefefe;
  font-style: italic;
  font-family: "Gotham-Book", sans-serif;
  font-size: 11px;
  padding: 0 20px;
}
.desktop-menu
  .header_container
  .desktop-menu__container
  .topbar_container
  > ul
  li
  a {
  text-decoration: none;
}
.desktop-menu
  .header_container
  .desktop-menu__container
  .topbar_container
  > ul
  li.flags-contianer
  a {
  display: inline-block;
  padding: 0 5px;
}
.desktop-menu
  .header_container
  .desktop-menu__container
  .topbar_container
  > ul
  li.flags-contianer
  img {
  width: 25px;
}

.desktop-menu {
  font-family: "Montserrat", sans-serif;
  position: relative;
  display: none;
  /** First Level Menu **/
  /** Second Level Menu **/
}
@media screen and (min-width: 77.5em) {
  .desktop-menu {
    display: block;
  }
}
.desktop-menu .topbar {
  background-color: #339933;
}
.desktop-menu .topbar .topbar_container {
  max-width: 88.75rem;
  margin: auto;
  display: flex;
}
.desktop-menu .topbar .topbar_container .topbar_social {
  width: 50%;
}
.desktop-menu .topbar .topbar_container .topbar_social a.fb_icon {
  display: inline-block;
  padding: 5px 0;
}
.desktop-menu .topbar .topbar_container .topbar_social a.fb_icon img {
  max-width: 24px;
}
.desktop-menu .topbar .topbar_container .topbar_contact {
  width: 50%;
}
.desktop-menu
  .topbar
  .topbar_container
  .topbar_contact
  .topbar_contact_container {
  display: flex;
  font-size: 12px;
  justify-content: flex-end;
  align-items: center;
}
.desktop-menu
  .topbar
  .topbar_container
  .topbar_contact
  .topbar_contact_container
  .topbar_contact_map {
  padding: 7px 10px;
}
.desktop-menu
  .topbar
  .topbar_container
  .topbar_contact
  .topbar_contact_container
  .topbar_contact_map
  img {
  max-height: 20px;
}
.desktop-menu
  .topbar
  .topbar_container
  .topbar_contact
  .topbar_contact_container
  .topbar_contact_map
  span {
  vertical-align: middle;
  margin-left: 5px;
  font-family: "Proxima-Nova-Regular";
  text-transform: capitalize;
  letter-spacing: 0;
}
.desktop-menu
  .topbar
  .topbar_container
  .topbar_contact
  .topbar_contact_container
  .topbar_contact_phone {
  padding: 7px 10px;
}
.desktop-menu
  .topbar
  .topbar_container
  .topbar_contact
  .topbar_contact_container
  .topbar_contact_phone
  img {
  max-height: 17px;
}
.desktop-menu
  .topbar
  .topbar_container
  .topbar_contact
  .topbar_contact_container
  .topbar_contact_phone
  span {
  vertical-align: middle;
  margin-left: 5px;
  font-family: "Proxima-Nova-Regular";
  text-transform: capitalize;
  letter-spacing: 0;
}
.desktop-menu
  .topbar
  .topbar_container
  .topbar_contact
  .topbar_contact_container
  .topbar_contact_btn {
  padding: 0 10px;
}
.desktop-menu
  .topbar
  .topbar_container
  .topbar_contact
  .topbar_contact_container
  .topbar_contact_btn
  a {
  background-color: #282829;
  display: inline-block;
  height: 100%;
  color: #fefefe;
  padding: 9px 18px;
  text-decoration: none;
  font-family: "Proxima-Nova-Regular";
}
.desktop-menu__container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
}
.desktop-menu a {
  color: #fefefe;
  text-transform: uppercase;
}
.desktop-menu a:not(.logo-link) {
  letter-spacing: 1px;
}
.desktop-menu .logo {
  padding: 0.7rem;
  margin: 0 auto;
}
.desktop-menu .logo > a {
  max-width: 400px;
  display: block;
}
.desktop-menu .logo > a img {
  max-width: 200px;
}
.desktop-menu .dp-plain-menu {
  text-align: center;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 24px;
}
.desktop-menu .dp-plain-menu > li {
  display: inline-block;
  flex-grow: 1;
  position: relative;
  padding: 4px 0;
}
.desktop-menu .dp-plain-menu > li a {
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  font-family: "Proxima-Nova-Medium";
}
.desktop-menu .dp-plain-menu > li a:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0.15rem;
  bottom: 0;
  left: 0;
  transition: all 0.4s ease-in-out 0s;
  background-color: #fefefe;
}
.desktop-menu .dp-plain-menu > li a:not(.logo-link):hover:after {
  width: 100%;
}
.desktop-menu .dp-plain-menu > li > a > span {
  display: block;
  border-right: 1px solid #339933;
  padding: 0 1rem;
}
.desktop-menu .dp-plain-menu > li.active a:after {
  width: 100%;
}
.desktop-menu .dp-plain-menu > li:last-child a span {
  border: none;
}
.desktop-menu .dp-plain-menu .second-level-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  text-align: left;
  padding-top: 10px;
  width: 100%;
  min-width: 180px;
  text-transform: none;
  z-index: 9;
}
.desktop-menu .dp-plain-menu .second-level-menu > li {
  background: #fefefe;
}
.desktop-menu .dp-plain-menu .second-level-menu > li:nth-child(2),
.desktop-menu .dp-plain-menu .second-level-menu > li:nth-child(2) > a {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.desktop-menu .dp-plain-menu .second-level-menu > li:last-child,
.desktop-menu .dp-plain-menu .second-level-menu > li:last-child > a {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.desktop-menu .dp-plain-menu .second-level-menu > li a {
  color: #282829;
  font-size: 0.9rem;
  line-height: 1.2;
  text-transform: uppercase;
  padding: 0.8rem 1rem;
  border-left: 5px solid transparent;
  display: block;
}
.desktop-menu .dp-plain-menu .second-level-menu > li a:after {
  display: none;
}
.desktop-menu .dp-plain-menu .second-level-menu > li.active a {
  border-left: 5px solid #339933;
}
.desktop-menu .dp-plain-menu .menu-item-has-children {
  position: relative;
}
.desktop-menu .dp-plain-menu .menu-item-has-children:hover .second-level-menu {
  display: block;
}
.desktop-menu .dp-plain-menu > .menu-item:last-child .second-level-menu {
  right: 0;
  left: auto;
}

/***************
  General Style
 ***************/
.hamburger-icon {
  width: 35px;
  height: 20px;
  position: relative;
  display: block;
  margin: 20px 12px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.hamburger-icon .line {
  display: block;
  background: #282829;
  width: 35px;
  height: 2px;
  position: absolute;
  left: 0;
  border-radius: 0;
  /* border-radius: ($height-line/2);*/
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.hamburger-icon .line.line-1 {
  top: 0;
}
.hamburger-icon .line.line-2 {
  top: 50%;
}
.hamburger-icon .line.line-3 {
  top: 100%;
}
.hamburger-icon:hover .line-1,
.hamburger-icon:focus .line-1 {
  transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -webkit-transform: translateY(-1px);
}
.hamburger-icon:hover .line-3,
.hamburger-icon:focus .line-3 {
  transform: translateY(1px);
  -moz-transform: translateY(1px);
  -webkit-transform: translateY(1px);
}
.hamburger-icon.active {
  margin: 20px 15px;
}
.hamburger-icon.active .line-1 {
  transform: translateY(10px) translateX(0) rotate(45deg);
  -moz-transform: translateY(10px) translateX(0) rotate(45deg);
  -webkit-transform: translateY(10px) translateX(0) rotate(45deg);
}
.hamburger-icon.active .line-2 {
  opacity: 0;
}
.hamburger-icon.active .line-3 {
  transform: translateY(-10px) translateX(0) rotate(-45deg);
  -moz-transform: translateY(-10px) translateX(0) rotate(-45deg);
  -webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
}

.dp-plain-menu,
.second-level-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
}

.google-translate-container {
  visibility: hidden;
  height: 0;
  width: 0;
}

.hero-banner {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  min-height: 600px;
  text-align: center;
  border-bottom: solid 10px #5f2c4d;
}
.hero-banner:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
@media print, screen and (min-width: 40em) {
  .hero-banner {
    text-align: left;
  }
}
.hero-banner .hero-banner__container {
  position: absolute;
  width: 100%;
  margin: auto;
  padding: 0 16px;
  text-align: center;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-banner .hero-banner__container h1 {
  display: block;
  color: #282829;
  margin: 0;
  font-family: "Futura-PT-Bold";
  font-size: 3em;
  font-weight: 800;
  color: #fefefe;
  position: relative;
  display: inline-block;
  margin: 0;
}
@media print, screen and (min-width: 40em) {
  .hero-banner .hero-banner__container h1 {
    font-size: 4em;
  }
}
.hero-banner .hero-banner__container h1:before {
  content: "";
  position: absolute;
  bottom: -12px;
  background-color: #fefefe;
  width: 70%;
  height: 5px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-banner .hero-banner__container p {
  text-align: center;
  font-size: 31px;
  color: #fefefe;
  margin: 0;
  letter-spacing: 4px;
}

.hero-social-icons-inner {
  display: none;
  position: fixed;
  top: 55%;
  left: 5px;
}
@media screen and (min-width: 77.75em) {
  .hero-social-icons-inner {
    display: inline-block;
  }
}
@media screen and (min-width: 81.25em) {
  .hero-social-icons-inner {
    left: 40px;
  }
}
.hero-social-icons-inner ul {
  list-style: none;
  padding-left: 0;
  display: inline-block;
}
.hero-social-icons-inner ul li {
  max-width: 30px;
  margin-bottom: 12px;
}

.video_header {
  position: relative;
}
.video_header .diagonal_lines_img {
  position: absolute;
  bottom: -35px;
  left: 0;
  z-index: 9;
}
.video_header img.arrow_down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  max-width: 45px;
  display: block;
  cursor: pointer;
  z-index: 2;
}
.video_header .responsive-embed,
.video_header .flex-video {
  margin-bottom: 0;
}

.header_links_section .header_links {
  position: relative;
}
.header_links_section .header_links .left_letter {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #fefefe;
  border-right: solid 3px #fefefe;
  z-index: 2;
  padding-right: 12px;
}
@media screen and (min-width: 68.75em) {
  .header_links_section .header_links .left_letter {
    left: -48px;
    font-size: 100px;
  }
}
.header_links_section .header_links .right_letter {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -16px;
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #fefefe;
  border-left: solid 3px #fefefe;
  z-index: 2;
  padding-left: 12px;
}
@media screen and (min-width: 68.75em) {
  .header_links_section .header_links .right_letter {
    right: -23px;
    font-size: 100px;
  }
}
.header_links_section .header_links .header_links_wrap {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (min-width: 64em) {
  .header_links_section .header_links .header_links_wrap {
    flex-wrap: wrap;
    flex-wrap: nowrap;
  }
}
.header_links_section .header_links .header_links_wrap a {
  text-decoration: none;
  display: block;
  flex-grow: 1;
  width: 100%;
}
.header_links_section .header_links .header_links_wrap a .header_link_item {
  position: relative;
  min-height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
@media screen and (min-width: 64em) {
  .header_links_section .header_links .header_links_wrap a .header_link_item {
    min-height: 620px;
  }
}
.header_links_section
  .header_links
  .header_links_wrap
  a
  .header_link_item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.header_links_section .header_links .header_links_wrap a .header_link_item h2 {
  background-color: #339933;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 400;
  color: #282829;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  margin: 0;
  letter-spacing: 2px;
  width: auto;
  text-align: center;
  padding: 0 25px;
}
.header_links_section
  .header_links
  .header_links_wrap
  a:hover
  .header_link_item:before {
  display: none;
}
.header_links_section .header_links .header_links_wrap img.arrow_down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  max-width: 45px;
  display: block;
  cursor: pointer;
}

.inner-header {
  position: relative;
  min-height: 450px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: relative;
  margin-bottom: 0;
}
@media screen and (min-width: 48em) {
  .inner-header {
    /* min-height: 400px; */
    min-height: 600px;
  }
  .inner-header.big {
    min-height: 800px;
  }
}
.inner-header .left_letter {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #fefefe;
  border-right: solid 3px #fefefe;
  z-index: 2;
  padding-right: 12px;
}
@media screen and (min-width: 68.75em) {
  .inner-header .left_letter {
    left: -48px;
    font-size: 100px;
  }
}
.inner-header .right_letter {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -16px;
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #fefefe;
  border-left: solid 3px #fefefe;
  z-index: 2;
  padding-left: 12px;
}
@media screen and (min-width: 68.75em) {
  .inner-header .right_letter {
    right: -23px;
    font-size: 100px;
  }
}
.inner-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
}
.inner-header .herobg-content-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.inner-header .herobg-content-container h1 {
  width: 100%;
  color: #fefefe;
  font-size: 35px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 3px;
  margin: 0;
  text-align: center;
  font-weight: 400;
  line-height: 35px;
}
@media screen and (min-width: 68.75em) {
  .inner-header .herobg-content-container h1 {
    font-size: 70px;
    line-height: 1.2;
    margin-top: 70px;
    font-weight: 700;
    letter-spacing: -2px;
  }
}
.inner-header img.arrow_down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  max-width: 45px;
  display: block;
  cursor: pointer;
  z-index: 2;
}
.inner-header .diagonal_lines_img {
  position: absolute;
  bottom: -35px;
  left: 0;
  z-index: 9;
}

body.page-id-379 .inner-header .herobg-content-container h1 {
  letter-spacing: 0;
  font-size: 28px;
}
@media screen and (min-width: 31.25em) {
  body.page-id-379 .inner-header .herobg-content-container h1 {
    letter-spacing: 3px;
    font-size: 35px;
  }
}
@media screen and (min-width: 68.75em) {
  body.page-id-379 .inner-header .herobg-content-container h1 {
    font-size: 100px;
  }
}

#events_list_wrap {
  position: relative;
  margin-top: 7px;
}
#events_list_wrap .event-item-details {
  text-align: center;
}
#events_list_wrap .event-item-details h2 {
  font-size: 21px;
  color: #eab51d;
  margin-top: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 700;
}
#events_list_wrap .event-item-details p {
  font-size: 16px;
}
#events_list_wrap .event-image-item {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  height: 250px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#events_list_wrap .swiper-custom-navigation {
  width: 100%;
  text-align: center;
  z-index: 3;
  position: absolute;
  top: 0;
  height: auto;
}
#events_list_wrap .swiper-custom-navigation .swiper-btn-next {
  outline: none;
  cursor: pointer;
  position: absolute;
  right: 0;
  height: 100%;
  width: 200px;
  background: linear-gradient(270deg, #060606 0%, rgba(255, 255, 255, 0) 100%);
}
#events_list_wrap .swiper-custom-navigation .swiper-btn-next:before {
  content: "";
  position: absolute;
  top: 104px;
  right: 30px;
  width: 26px;
  height: 45px;
  background-image: url("/wp-content/themes/DailyPress/assets/images/arrow_right.png");
  background-size: cover;
}
#events_list_wrap .swiper-custom-navigation .swiper-btn-next i {
  display: none;
}
#events_list_wrap .swiper-custom-navigation .swiper-btn-prev {
  outline: none;
  cursor: pointer;
  position: absolute;
  left: 0;
  height: 100%;
  width: 200px;
  background: linear-gradient(90deg, #060606 0%, rgba(255, 255, 255, 0) 100%);
}
#events_list_wrap .swiper-custom-navigation .swiper-btn-prev:before {
  content: "";
  position: absolute;
  top: 104px;
  left: 30px;
  width: 26px;
  height: 45px;
  background-image: url("/wp-content/themes/DailyPress/assets/images/arrow_left.png");
  background-size: cover;
}
#events_list_wrap .swiper-custom-navigation .swiper-btn-prev i {
  display: none;
}

#tribe-events-photo-events {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  height: auto !important;
  justify-content: center;
}
#tribe-events-photo-events:before,
#tribe-events-photo-events .tribe-events-visuallyhidden,
#tribe-events-photo-events .tribe-events-photo-grid-sizer {
  display: none;
}
#tribe-events-photo-events .type-tribe_events {
  position: static !important;
  top: 0 !important;
  left: 0 !important;
  width: 30%;
  margin-bottom: 0;
}
@media screen and (min-width: 48em) {
  #tribe-events-photo-events .type-tribe_events {
    box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.3);
  }
}
#tribe-events-photo-events .type-tribe_events .tribe-events-photo-event-wrap {
  background-color: #fff;
  box-shadow: none;
}
@media screen and (min-width: 28em) {
  #tribe-events-photo-events .type-tribe_events .tribe-events-photo-event-wrap {
    box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.3);
  }
}
#tribe-events-photo-events
  .type-tribe_events
  .tribe-events-photo-event-wrap
  .event_bg {
  min-height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#tribe-events-photo-events
  .type-tribe_events
  .tribe-events-photo-event-wrap
  .tribe-events-event-details
  .tribe-events-event-meta
  .tribe-event-schedule-details {
  text-align: center;
  font-weight: 300;
  font-size: 16px;
  margin-top: 35px;
}
#tribe-events-photo-events
  .type-tribe_events
  .tribe-events-photo-event-wrap
  .tribe-events-event-details
  h3 {
  text-align: center;
  display: block;
  font-weight: 300;
  margin-top: 10px;
  min-height: 56px;
  padding: 0 20px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
#tribe-events-photo-events
  .type-tribe_events
  .tribe-events-photo-event-wrap
  .tribe-events-event-details
  h3
  a {
  color: rgba(40, 40, 41, 0.9);
}
#tribe-events-photo-events
  .type-tribe_events
  .tribe-events-photo-event-wrap
  .tribe-events-event-details
  .event-more-btn-container {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 35px;
}
#tribe-events-photo-events
  .type-tribe_events
  .tribe-events-photo-event-wrap
  .tribe-events-event-details
  .event-more-btn-container
  .event-more-btn {
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  background-color: #8ce78d;
  padding: 8px 40px;
  color: #282829;
}
#tribe-events-photo-events
  .type-tribe_events
  .tribe-events-photo-event-wrap
  .tribe-events-event-details
  .event-more-btn-container
  .event-more-btn
  img {
  max-width: 8px;
  vertical-align: -1px;
  margin-left: 5px;
}

#tribe-events {
  padding-top: 0 !important;
}
#tribe-events .tribe-events-title-bar {
  display: none;
}
#tribe-events #tribe-events-footer,
#tribe-events .tribe-events-ical.tribe-events-button {
  display: none !important;
}

body.single-tribe_events #tribe-events-pg-template {
  margin: 0;
  max-width: 100%;
  padding: 0;
}
body.single-tribe_events #tribe-events-pg-template #tribe-events {
  padding: 0;
}

body.single-tribe_events .tribe_events {
  max-width: 900px;
  margin: auto;
  padding-top: 75px;
}
body.single-tribe_events .tribe_events .tribe-events-event-image {
  margin: 0;
}
body.single-tribe_events .tribe_events .book_tickets_wrap {
  background-color: #339933;
  color: #282829;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
  padding: 8px 20px;
}
body.single-tribe_events .tribe_events .event_info {
  padding: 50px;
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.3);
}
body.single-tribe_events
  .tribe_events
  .event_info
  .tribe-events-single-event-title {
  font-weight: 400;
  padding: 15px 0 18px !important;
}
body.single-tribe_events .tribe_events .event_info .tribe-events-cal-links {
  display: none;
}
body.single-tribe_events .tribe_events .event_info .event_book_btn {
  background-color: #339933;
  padding: 10px 20px;
  color: #282829;
  display: inline-block;
  margin-top: 20px;
}

.tribe-events-photo-gutter-sizer,
.tribe-clearfix:after {
  display: none !important;
}

.text-section {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 0 2rem 0;
}
.text-section
  .text-section__wrapper
  .text-section__column
  .premiere-lounge-img {
  margin-top: 25px;
}
@media screen and (min-width: 35.625em) {
  .text-section
    .text-section__wrapper
    .text-section__column
    .premiere-lounge-img {
    margin-top: 0;
  }
}
.text-section.gray_color_bg {
  background-color: #f6f6f6;
}
.text-section a {
  color: #339933;
  text-decoration: none;
}
.text-section a.reg-button {
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  background-color: #339933;
  padding: 12px 25px;
  color: #282829;
  margin-top: 20px;
}
@media screen and (min-width: 35.625em) {
  .text-section {
    padding: 2rem 0 2rem 0;
  }
}
.text-section img.aligncenter {
  display: block;
  margin: auto;
}
@media screen and (max-width: 28.12375em) {
  .text-section.column_2 .custom-percentage .text-section__column {
    width: 100% !important;
  }
}
@media print, screen and (min-width: 40em) {
  .text-section {
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 0;
  }
}
@media print, screen and (min-width: 40em) {
  .text-section.column_1 .text-section__column {
    width: 100%;
  }
  .text-section.column_2 .text-section__column {
    width: 50%;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.99875em) {
  .text-section.column_3 .text-section__column {
    width: 50%;
  }
  .text-section.column_3 .text-section__column:last-child {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .text-section.column_3 .text-section__column {
    width: 33.3%;
  }
}
.text-section h2,
.text-section h4 {
  color: #339933;
  font-weight: 600;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 35.625em) {
  .text-section h2,
  .text-section h4 {
    margin-top: 39px;
  }
}
.text-section h2 {
  display: block;
  color: #282829;
  margin: 0;
  font-family: "Futura-PT-Bold";
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 40em) {
  .text-section h2 {
    /* font-size: 4em; */
    font-size: 3em;
    font-size: 50px;
  }
}
.text-section h3 {
  font-family: "Montserrat-Bold";
  text-transform: uppercase;
  font-weight: 400;
  font-size: 22px;
  margin-top: 0;
}
@media screen and (min-width: 35.625em) {
  .text-section h3 {
    font-size: 35px;
  }
}
.text-section h3 + h2 {
  margin-top: 0;
}
.text-section h4 {
  /* font-family: "ProximaNova-Bold"; */
  font-family: "Montserrat-Bold";
  color: #339933;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0px;
  margin-top: 0;
}
.text-section h5 {
  font-size: 18px;
  font-weight: 400;
}
.text-section h6 {
  font-size: 16px;
  border-top: solid 3px #539d37;
  padding-top: 35px;
  font-family: "ProximaNova-Regular", sans-serif;
  color: #002d4f;
  font-weight: 500;
}
.text-section p {
  margin-top: 0;
  display: block;
}
.text-section hr[style="text-align: center;"] {
  display: block;
  max-width: 300px;
  margin: 2rem auto;
  background-color: #539d37;
  border-color: #539d37;
  border-style: solid;
}
.text-section__wrapper {
  display: flex;
  max-width: 75rem;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.text-section__column {
  width: 100%;
  padding: 0 2rem;
}
@media print, screen and (min-width: 64em) {
  .text-section__column {
    padding: 0 1rem;
  }
}
.text-section__column ul {
  list-style: none;
  padding-left: 0;
}
.text-section__column ul li:before {
  content: "- ";
  text-indent: -5px;
}
.text-section.gray_background {
  background-color: #e6e6e6;
  margin: 0;
  padding-top: 3rem;
  padding-bottom: 2rem;
}
@media print, screen and (min-width: 40em) {
  .text-section.gray_background {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}
.text-section.light_blue_background {
  background-color: blue;
  margin: 0;
  padding-top: 3rem;
  padding-bottom: 2rem;
  color: #8a8a8a;
}
@media print, screen and (min-width: 40em) {
  .text-section.light_blue_background {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}
.text-section.light_blue_background h1,
.text-section.light_blue_background h2,
.text-section.light_blue_background h3,
.text-section.light_blue_background h4,
.text-section.light_blue_background h5,
.text-section.light_blue_background h6 {
  color: #339933 !important;
}
.text-section.full_width .text-section__wrapper {
  max-width: 100%;
}
.text-section.full_width .text-section__wrapper .text-section__column {
  padding: 0;
}
.text-section.smaller_width .text-section__wrapper .text-section__column {
  max-width: 53.125rem;
  margin-left: auto;
  margin-right: auto;
  /* text-align: center; */
}
.text-section.smaller_width .text-section__wrapper .text-section__column h2 {
  display: inline-block;
}
.text-section.remove_bottom_spacing {
  padding-bottom: 15px;
  margin-bottom: 0;
}
.text-section.remove_top_spacing {
  padding-top: 0;
  margin-top: 0;
}
.text-section table {
  border: solid 1px #dfdfde;
  max-width: 500px;
  width: 100%;
  margin: auto;
}
.text-section table thead {
  background-color: #eeedec;
}
.text-section table thead th {
  border-bottom: solid 1px #dfdfde;
  border-right: solid 1px #dfdfde;
  color: #282829;
  font-size: 15px;
  padding: 8px 25px;
  text-align: left;
}
.text-section table tbody tr td {
  border-bottom: solid 1px #dfdfde;
  border-right: solid 1px #dfdfde;
  color: #282829;
  font-size: 15px;
  padding: 8px 25px;
}
.text-section table tbody tr td:last-child {
  border-right: 0;
}
.text-section table tbody tr:nth-child(even) {
  background-color: #eeedec;
}
.text-section table tbody tr:last-child td {
  border-bottom: 0;
}

.home .text-section h3 {
  color: #339933;
  font-size: 1rem;
}
@media screen and (min-width: 65.625em) {
  .home .text-section h3 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 81.25em) {
  .home .text-section h3 {
    font-size: 25px;
  }
}

.contact-us .text-section.column_2 {
  margin: 0;
}
.contact-us .text-section.column_2 .text-section__column {
  padding: 3rem 2rem;
}
@media print, screen and (min-width: 64em) {
  .contact-us .text-section.column_2 .text-section__column {
    padding: 3rem 2rem;
  }
}
.contact-us .text-section.column_2 .text-section__column:nth-child(2) {
  position: relative;
}
.contact-us .text-section.column_2 .icon {
  width: 40px;
  margin: 0 0.2rem;
}
.contact-us .text-section.column_2 a {
  color: #339933;
  text-decoration: none;
}

.contact .text-section.column_2 {
  background: linear-gradient(180deg, #339933 360px, transparent 360px);
}
@media print, screen and (min-width: 40em) {
  .contact .text-section.column_2 {
    background: linear-gradient(90deg, #339933 50%, transparent 50%);
    padding: 2rem;
  }
}
@media screen and (min-width: 56.25em) {
  .contact .text-section.column_2 {
    background: linear-gradient(90deg, #339933 40%, transparent 40%);
  }
}
.contact .text-section.column_2 form {
  text-align: left;
}
.contact .text-section.column_2 .text-section__column:nth-of-type(1) {
  color: #fefefe;
}
.contact .text-section.column_2 .text-section__column:nth-of-type(1) h2 {
  color: #fefefe;
  font-size: 2rem;
  margin-bottom: 0;
}

.home-welcome {
  background-image: url("/wp-content/uploads/2022/02/welcome.png");
  background-repeat: no-repeat;
  background-size: 700px;
  background-position: calc(50% - -430px) 20px;
  padding: 60px 0 80px;
}

.text_image_two_columns .text_image_two_columns_wrap {
  max-width: 75rem;
  margin: auto;
}
.text_image_two_columns
  .text_image_two_columns_wrap
  .text_image_two_columns_container {
  display: flex;
  margin-bottom: 60px;
  box-shadow: none;
  flex-wrap: wrap;
}
.text_image_two_columns
  .text_image_two_columns_wrap
  .text_image_two_columns_container.mobile-show {
  display: flex;
}
@media screen and (min-width: 48em) {
  .text_image_two_columns
    .text_image_two_columns_wrap
    .text_image_two_columns_container.mobile-show {
    display: none;
  }
}
.text_image_two_columns
  .text_image_two_columns_wrap
  .text_image_two_columns_container.mobile-hide {
  display: none;
}
@media screen and (min-width: 48em) {
  .text_image_two_columns
    .text_image_two_columns_wrap
    .text_image_two_columns_container.mobile-hide {
    display: flex;
  }
}
@media screen and (min-width: 48em) {
  .text_image_two_columns
    .text_image_two_columns_wrap
    .text_image_two_columns_container {
    flex-wrap: nowrap;
    box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.3);
  }
}
.text_image_two_columns
  .text_image_two_columns_wrap
  .text_image_two_columns_container
  .text_image_bg_image {
  width: 100%;
  height: 450px;
  margin: 0 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
@media screen and (min-width: 48em) {
  .text_image_two_columns
    .text_image_two_columns_wrap
    .text_image_two_columns_container
    .text_image_bg_image {
    width: 50%;
    height: auto;
    margin: 0;
  }
}
.text_image_two_columns
  .text_image_two_columns_wrap
  .text_image_two_columns_container
  .text_image_text_content {
  width: 100%;
  padding: 50px;
}
@media screen and (min-width: 48em) {
  .text_image_two_columns
    .text_image_two_columns_wrap
    .text_image_two_columns_container
    .text_image_text_content {
    width: 50%;
  }
}
.text_image_two_columns
  .text_image_two_columns_wrap
  .text_image_two_columns_container
  .text_image_text_content
  h3 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 22px;
  margin-top: 0;
}
.text_image_two_columns
  .text_image_two_columns_wrap
  .text_image_two_columns_container
  .text_image_text_content
  .text_image_button {
  text-align: center;
  margin-top: 40px;
}
.text_image_two_columns
  .text_image_two_columns_wrap
  .text_image_two_columns_container
  .text_image_text_content
  .text_image_button
  a {
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  background-color: #339933;
  padding: 10px 40px;
  color: #fff;
}
.text_image_two_columns
  .text_image_two_columns_wrap
  .text_image_two_columns_container
  .text_image_text_content
  .text_image_button
  a
  span {
  vertical-align: middle;
}
.text_image_two_columns
  .text_image_two_columns_wrap
  .text_image_two_columns_container
  .text_image_text_content
  .text_image_button
  a
  img {
  max-width: 8px;
  vertical-align: -2px;
  margin-left: 5px;
}

.text_trading_hours .text_trading_hours_wrap {
  max-width: 75rem;
  margin: auto;
}
.text_trading_hours .text_trading_hours_wrap .text_trading_hours_container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 78em) {
  .text_trading_hours .text_trading_hours_wrap .text_trading_hours_container {
    flex-wrap: nowrap;
  }
}
.text_trading_hours
  .text_trading_hours_wrap
  .text_trading_hours_container
  .text_content {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  border-right: 0;
}
@media screen and (min-width: 78em) {
  .text_trading_hours
    .text_trading_hours_wrap
    .text_trading_hours_container
    .text_content {
    border-right: solid 1px #2a2b2c;
  }
}
@media screen and (min-width: 78em) {
  .text_trading_hours
    .text_trading_hours_wrap
    .text_trading_hours_container
    .text_content {
    width: 60%;
    padding-left: 0;
    padding-right: 50px;
  }
}
.text_trading_hours
  .text_trading_hours_wrap
  .text_trading_hours_container
  .text_content
  .text_image_button {
  text-align: left;
  margin-top: 25px;
}
.text_trading_hours
  .text_trading_hours_wrap
  .text_trading_hours_container
  .text_content
  .text_image_button
  a {
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  background-color: #339933;
  padding: 10px 40px;
  color: #282829;
}
.text_trading_hours
  .text_trading_hours_wrap
  .text_trading_hours_container
  .text_content
  .text_image_button
  a
  span {
  vertical-align: middle;
}
.text_trading_hours
  .text_trading_hours_wrap
  .text_trading_hours_container
  .text_content
  .text_image_button
  a
  img {
  max-width: 8px;
  vertical-align: -2px;
  margin-left: 5px;
}
.text_trading_hours
  .text_trading_hours_wrap
  .text_trading_hours_container
  .trading_hours {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 60px;
}
@media screen and (min-width: 78em) {
  .text_trading_hours
    .text_trading_hours_wrap
    .text_trading_hours_container
    .trading_hours {
    width: 30%;
    padding-left: 50px;
    padding-right: 0;
    margin-top: 0;
  }
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  margin: auto;
  padding: 75px 0;
  /* max-width: 75rem;
  margin: 75px auto 75px auto; */
}
@media print, screen and (min-width: 64em) {
  .gallery {
    justify-content: left;
  }
}
.gallery .gallery__wrapper {
  flex: auto;
  width: 100%;
  max-width: 75rem;
  margin: auto;
}
@media print, screen and (min-width: 64em) {
  .gallery .gallery__wrapper {
    flex: 1;
  }
}
.gallery .gallery__wrapper h2 {
  margin-top: 0;
}
.gallery .gallery__wrapper .gallery__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px;
}
@media screen and (min-width: 48em) {
  .gallery .gallery__wrapper .gallery__bottom {
    gap: 12px;
    padding: 0;
  }
}
.gallery .gallery__wrapper .gallery__bottom .gallery__image_bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  flex-grow: 1;
  width: 100%;
  display: block;
  padding-top: 100%;
  cursor: pointer;
}
@media print, screen and (min-width: 28.125em) {
  .gallery .gallery__wrapper .gallery__bottom .gallery__image_bg {
    width: 18%;
    padding-top: 20%;
  }
}
.gallery__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: none;
  cursor: pointer;
}
.gallery__lightbox {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(20, 20, 20, 0.7);
  display: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.5s ease-in-out 0.3s;
}
.gallery__lightbox.active {
  display: block;
  z-index: 5;
  opacity: 1;
}
.gallery__lightbox.active .gallery__lightbox--close {
  display: block;
  opacity: 1;
}
.gallery__lightbox--close {
  display: none;
  position: fixed !important;
  top: 40px;
  right: 40px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out 0.3s;
  cursor: pointer;
}
.gallery__lightbox--close:before {
  content: "";
  background: url(../images/close-icon.svg);
  display: block;
  width: 30px;
  height: 30px;
}
.gallery__lightbox .lightbox__image {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px);
}
.gallery__lightbox .lightbox__image img {
  max-height: calc(100vh - 120px);
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gallery__lightbox .lightbox-navigation {
  max-width: 800px;
  max-height: 110px;
  margin: 0 auto;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
}
.gallery__lightbox .lightbox-navigation__image {
  padding: 0.3rem;
}
.gallery__lightbox .lightbox-navigation__bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 0;
  padding-bottom: 66.6%;
}
.gallery__lightbox .lightbox-navigation .slick-next {
  right: -45px;
  height: 40px;
  width: 40px;
}
.gallery__lightbox .lightbox-navigation .slick-prev {
  left: -45px;
  height: 40px;
  width: 40px;
}

.contact_details_section {
  padding-bottom: 75px;
}
.contact_details_section .contact_details_wrap {
  max-width: 75rem;
  margin: auto;
}
.contact_details_section .contact_details_wrap .contact_details_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 53.125em) {
  .contact_details_section .contact_details_wrap .contact_details_container {
    flex-wrap: nowrap;
  }
}
.contact_details_section
  .contact_details_wrap
  .contact_details_container
  .contact_details_info
  h2 {
  font-size: 45px;
  font-weight: 400;
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 53.125em) {
  .contact_details_section
    .contact_details_wrap
    .contact_details_container
    .contact_details_info
    h2 {
    text-align: left;
  }
}
.contact_details_section
  .contact_details_wrap
  .contact_details_container
  .contact_details_info
  h3 {
  font-weight: 400;
}
.contact_details_section
  .contact_details_wrap
  .contact_details_container
  .contact_details_info
  p {
  margin-top: 0;
  text-align: center;
}
@media screen and (min-width: 53.125em) {
  .contact_details_section
    .contact_details_wrap
    .contact_details_container
    .contact_details_info
    p {
    text-align: left;
  }
}
.contact_details_section
  .contact_details_wrap
  .contact_details_container
  .contact_details_info
  .address {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  justify-content: center;
}
@media screen and (min-width: 53.125em) {
  .contact_details_section
    .contact_details_wrap
    .contact_details_container
    .contact_details_info
    .address {
    justify-content: left;
  }
}
.contact_details_section
  .contact_details_wrap
  .contact_details_container
  .contact_details_info
  .address
  div {
  min-width: 25px;
  text-align: center;
}
.contact_details_section
  .contact_details_wrap
  .contact_details_container
  .contact_details_info
  .address
  div
  img {
  width: 20px;
  height: 20px;
  margin-right: 3px;
}
.contact_details_section
  .contact_details_wrap
  .contact_details_container
  .contact_details_info
  .email {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  justify-content: center;
}
@media screen and (min-width: 53.125em) {
  .contact_details_section
    .contact_details_wrap
    .contact_details_container
    .contact_details_info
    .email {
    justify-content: left;
  }
}
.contact_details_section
  .contact_details_wrap
  .contact_details_container
  .contact_details_info
  .email
  div {
  min-width: 25px;
  text-align: center;
}
.contact_details_section
  .contact_details_wrap
  .contact_details_container
  .contact_details_info
  .email
  div
  img {
  width: 23px;
  height: 17.5px;
}
.contact_details_section
  .contact_details_wrap
  .contact_details_container
  .contact_details_info
  .phone {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  justify-content: center;
}
@media screen and (min-width: 53.125em) {
  .contact_details_section
    .contact_details_wrap
    .contact_details_container
    .contact_details_info
    .phone {
    justify-content: left;
  }
}
.contact_details_section
  .contact_details_wrap
  .contact_details_container
  .contact_details_info
  .phone
  div {
  min-width: 25px;
  text-align: center;
}
.contact_details_section
  .contact_details_wrap
  .contact_details_container
  .contact_details_info
  .phone
  div
  img {
  width: 18px;
  height: 18px;
}
.contact_details_section
  .contact_details_wrap
  .contact_details_container
  .contact_details_info
  .social_icon {
  text-align: center;
}
@media screen and (min-width: 53.125em) {
  .contact_details_section
    .contact_details_wrap
    .contact_details_container
    .contact_details_info
    .social_icon {
    text-align: left;
  }
}
.contact_details_section
  .contact_details_wrap
  .contact_details_container
  .vertical_line_divider {
  width: 2px;
  height: 265px;
  background-color: #d0d0d0;
  margin: 0 115px;
  display: none;
}
@media screen and (min-width: 53.125em) {
  .contact_details_section
    .contact_details_wrap
    .contact_details_container
    .vertical_line_divider {
    flex-wrap: nowrap;
    display: block;
  }
}
.contact_details_section
  .contact_details_wrap
  .contact_details_container
  .contact_details_trading_hours {
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 53.125em) {
  .contact_details_section
    .contact_details_wrap
    .contact_details_container
    .contact_details_trading_hours {
    text-align: left;
    margin-top: 0;
  }
}

.image_with_title_list_section {
  padding-bottom: 75px;
}
.image_with_title_list_section .image_with_title_list_wrap {
  max-width: 75rem;
  margin: auto;
}
.image_with_title_list_section
  .image_with_title_list_wrap
  .image_with_title_list_container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 2rem;
}
@media screen and (min-width: 48em) {
  .image_with_title_list_section
    .image_with_title_list_wrap
    .image_with_title_list_container {
    padding: 0;
  }
}
.image_with_title_list_section
  .image_with_title_list_wrap
  .image_with_title_list_container
  .image_with_title_item {
  width: 100%;
}
@media screen and (min-width: 48em) {
  .image_with_title_list_section
    .image_with_title_list_wrap
    .image_with_title_list_container
    .image_with_title_item {
    width: calc(25% - 15px);
  }
}
.image_with_title_list_section
  .image_with_title_list_wrap
  .image_with_title_list_container
  .image_with_title_item
  .background_img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  min-height: 200px;
}
.image_with_title_list_section
  .image_with_title_list_wrap
  .image_with_title_list_container
  .image_with_title_item
  p {
  text-align: center;
  text-transform: uppercase;
}

.gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type="submit"],
.gform_wrapper .gform_page_footer input.button,
.gform_wrapper .gform_page_footer input[type="submit"] {
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  background-color: #339933;
  padding: 12px 40px;
  color: #282829;
  border: 0;
  cursor: pointer;
}

.post_grid_section {
  /* padding-bottom: 80px;
  padding-left: 30px;
  padding-right: 30px; */
}
.post_grid_section .post_grid_container {
  max-width: 75rem;
  margin: auto;
}
.post_grid_section .post_grid_container h2 {
  font-size: 4em;
  text-align: center;
  margin-top: 0;
}
.post_grid_section .post_grid_container .post_grid_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  height: auto !important;
  justify-content: center;
  padding: 0 1rem;
}
.post_grid_section .post_grid_container .post_grid_wrap .post_grid_item {
  width: 100%;
  /* box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.3); */
  padding: 20px;
  border: 1px solid #000;
  z-index: 1;
  background-color: #fff;
}
@media screen and (min-width: 48em) {
  .post_grid_section .post_grid_container .post_grid_wrap .post_grid_item {
    width: 48%;
  }
}
@media screen and (min-width: 61.25em) {
  .post_grid_section .post_grid_container .post_grid_wrap .post_grid_item {
    /* width: 30%; */
    width: 23%;
  }
  .post_grid_section .post_grid_container .post_grid_wrap {
    padding: 0 0rem !important;
  }
}
.post_grid_section
  .post_grid_container
  .post_grid_wrap
  .post_grid_item
  .post_bg {
  min-height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  justify-content: center;
  display: flex;
}
.grid-title-abs {
  position: absolute;
  bottom: 0;
  margin: auto;
  display: flex;
  color: #fff;
  flex-direction: column;
  background-color: #339933;
  width: 100%;
  text-align: center;
}
.grid-title-abs h3 {
  padding: 5px 0;
  margin: 0;
  font-family: "Proxima-Nova-Black";
  text-transform: uppercase;
  font-size: 21px;
  letter-spacing: 1.5px;
}
.post_grid_section
  .post_grid_container
  .post_grid_wrap
  .post_grid_item
  .post_details {
  padding: 25px 30px 10px;
  background-color: #fff;
}
.post_grid_section
  .post_grid_container
  .post_grid_wrap
  .post_grid_item
  .post_details
  h3 {
  text-align: center;
  display: block;
  font-weight: 300;
  margin-top: 10px;
  min-height: 56px;
  padding: 0 20px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  font-size: 21px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.post_grid_section
  .post_grid_container
  .post_grid_wrap
  .post_grid_item
  .post_details
  .post_description {
  text-align: center;
  font-family: "Proxima-Nova-Light";
}
.post_grid_section
  .post_grid_container
  .post_grid_wrap
  .post_grid_item
  .post-more-btn-container {
  text-align: center;
  margin-top: 40px;
  /* padding-bottom: 35px; */
}
.post_grid_section
  .post_grid_container
  .post_grid_wrap
  .post_grid_item
  .post-more-btn-container
  .post-more-btn {
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  background-color: #99cc99 !important;
  padding: 8px 40px;
  color: #282829;
}
.post_grid_section
  .post_grid_container
  .post_grid_wrap
  .post_grid_item
  .post-more-btn-container
  .post-more-btn
  img {
  max-width: 8px;
  vertical-align: -1px;
  margin-left: 5px;
}

.post_slider_section {
  padding: 38px 50px 80px;
}
.post_slider_section .post_slider_container {
  max-width: 75rem;
  margin: auto;
}
.post_slider_section .post_slider_container h2 {
  font-size: 4em;
  text-align: center;
  margin-bottom: 30px;
}
.post_slider_section .post_slider_container .post_slider_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  height: auto !important;
  justify-content: center;
}
.post_slider_section
  .post_slider_container
  .post_slider_wrap
  .post_slider_item {
  /* box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.3); */
  padding: 20px;
  border: 1px solid #000;
}
.post_slider_section
  .post_slider_container
  .post_slider_wrap
  .post_slider_item
  .post_bg {
  min-height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  justify-content: center;
  display: flex;
}
.post_slider_section
  .post_slider_container
  .post_slider_wrap
  .post_slider_item
  .post_details {
  padding: 25px 30px 10px;
}
.post_slider_section
  .post_slider_container
  .post_slider_wrap
  .post_slider_item
  .post_details
  h3 {
  text-align: center;
  display: block;
  font-weight: 300;
  margin-top: 10px;
  min-height: 56px;
  padding: 0 20px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  font-size: 21px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.post_slider_section
  .post_slider_container
  .post_slider_wrap
  .post_slider_item
  .post_details
  .post_description {
  text-align: center;
}
.post_slider_section
  .post_slider_container
  .post_slider_wrap
  .post_slider_item
  .post-more-btn-container {
  text-align: center;
  margin-top: 40px;
  /* padding-bottom: 35px; */
}
.post_slider_section
  .post_slider_container
  .post_slider_wrap
  .post_slider_item
  .post-more-btn-container
  .post-more-btn {
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  background-color: #339933;
  padding: 8px 40px;
  color: #282829;
}
.post_slider_section
  .post_slider_container
  .post_slider_wrap
  .post_slider_item
  .post-more-btn-container
  .post-more-btn
  img {
  max-width: 8px;
  vertical-align: -1px;
  margin-left: 5px;
  display: inline-block;
}
.post_slider_section .slick-list {
  margin: 0 -10px;
  box-sizing: initial;
  padding: 25px 0;
}
.post_slider_section .slick-list .slick-slide {
  margin: 0 10px;
}
.post_slider_section .slick-prev {
  height: 34px;
  width: 20px;
  left: -38px;
}
@media screen and (min-width: 61.3125em) {
  .post_slider_section .slick-prev {
    height: 65px;
    width: 39px;
    left: -53px;
  }
}
@media screen and (min-width: 83.125em) {
  .post_slider_section .slick-prev {
    height: 65px;
    width: 39px;
    left: -65px;
  }
}
.post_slider_section .slick-next {
  height: 34px;
  width: 20px;
  right: -38px;
}
@media screen and (min-width: 61.3125em) {
  .post_slider_section .slick-next {
    height: 65px;
    width: 39px;
    right: -53px;
  }
}
@media screen and (min-width: 83.125em) {
  .post_slider_section .slick-next {
    height: 65px;
    width: 39px;
    right: -65px;
  }
}

#blog-post .one-column-text-section {
  padding: 70px;
}
#blog-post .one-column-text-section .title h2 {
  font-size: 4em;
  display: block;
  color: #282829;
  margin: 0;
  font-family: "Futura-PT-Bold";
  font-weight: 800;
  margin-bottom: 20px;
}

.footer_subscription {
  display: none;
  background-color: #339933;
  padding: 15px 20px;
}
.footer_subscription .footer_subscription_container {
  display: flex;
  max-width: 75rem;
  justify-content: center;
  margin: auto;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 48em) {
  .footer_subscription .footer_subscription_container {
    flex-wrap: nowrap;
  }
}
.footer_subscription .footer_subscription_container .subscription_label {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 30px;
}
@media screen and (min-width: 48em) {
  .footer_subscription .footer_subscription_container .subscription_label {
    width: auto;
    text-align: left;
    margin-bottom: 0;
    margin-top: 0;
  }
}
.footer_subscription .footer_subscription_container .subscription_form {
  width: 100%;
}
@media screen and (min-width: 48em) {
  .footer_subscription .footer_subscription_container .subscription_form {
    width: auto;
  }
}
.footer_subscription
  .footer_subscription_container
  .subscription_form
  form
  .subscribe_form_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 48em) {
  .footer_subscription
    .footer_subscription_container
    .subscription_form
    form
    .subscribe_form_wrap {
    flex-wrap: nowrap;
  }
}
.footer_subscription
  .footer_subscription_container
  .subscription_form
  form
  .subscribe_form_wrap
  > div {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 48em) {
  .footer_subscription
    .footer_subscription_container
    .subscription_form
    form
    .subscribe_form_wrap
    > div {
    width: auto;
  }
}
.footer_subscription
  .footer_subscription_container
  .subscription_form
  form
  .subscribe_form_wrap
  input[type="email"] {
  border: 0;
  border-radius: 0;
  padding: 8px 10px;
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 48em) {
  .footer_subscription
    .footer_subscription_container
    .subscription_form
    form
    .subscribe_form_wrap
    input[type="email"] {
    width: auto;
    margin: 0 10px;
  }
}
.footer_subscription
  .footer_subscription_container
  .subscription_form
  form
  .subscribe_form_wrap
  input[type="email"]:focus {
  outline: 0;
}
.footer_subscription
  .footer_subscription_container
  .subscription_form
  form
  .subscribe_form_wrap
  input[type="submit"] {
  border: 0;
  background-color: #282829;
  color: #fefefe;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 0;
  letter-spacing: 2px;
  font-size: 12px;
  margin: 10px 0 10px;
}
@media screen and (min-width: 48em) {
  .footer_subscription
    .footer_subscription_container
    .subscription_form
    form
    .subscribe_form_wrap
    input[type="submit"] {
    display: inline-block;
    margin: 0 10px;
  }
}
.footer_subscription
  .footer_subscription_container
  .subscription_form
  form
  .subscribe_form_wrap
  .ajax-loader {
  display: block;
  margin: auto;
}
@media screen and (min-width: 48em) {
  .footer_subscription
    .footer_subscription_container
    .subscription_form
    form
    .subscribe_form_wrap
    .ajax-loader {
    display: inline-block;
    margin: 0 24px;
  }
}

footer {
  /* background-color: #2a2b2c;
  padding: 50px 20px; */
}
footer .footer_wrap {
  max-width: 75rem;
  margin: auto;
}
footer .footer_wrap .footer_content .footer_logo_contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 48em) {
  footer .footer_wrap .footer_content .footer_logo_contact {
    flex-wrap: nowrap;
  }
}
footer .footer_wrap .footer_content .footer_logo_contact .footer_logo {
  padding: 0 20px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 48em) {
  footer .footer_wrap .footer_content .footer_logo_contact .footer_logo {
    width: auto;
  }
}
footer .footer_wrap .footer_content .footer_logo_contact .footer_contact {
  padding: 0 20px;
  width: 100%;
}
@media screen and (min-width: 48em) {
  footer .footer_wrap .footer_content .footer_logo_contact .footer_contact {
    width: auto;
  }
}
footer
  .footer_wrap
  .footer_content
  .footer_logo_contact
  .footer_contact
  .footer_contact_details {
  display: flex;
  align-items: center;
  margin: 7px 0;
  font-size: 12px;
  justify-content: center;
}
@media screen and (min-width: 48em) {
  footer
    .footer_wrap
    .footer_content
    .footer_logo_contact
    .footer_contact
    .footer_contact_details {
    justify-content: left;
  }
}
footer
  .footer_wrap
  .footer_content
  .footer_logo_contact
  .footer_contact
  .footer_contact_details
  .footer_contact_details_icon {
  min-width: 30px;
  text-align: center;
  margin-right: 4px;
}
footer
  .footer_wrap
  .footer_content
  .footer_logo_contact
  .footer_contact
  .footer_contact_details
  .footer_contact_details_icon
  img {
  max-height: 20px;
}
footer
  .footer_wrap
  .footer_content
  .footer_logo_contact
  .footer_contact
  .footer_contact_details
  span,
footer
  .footer_wrap
  .footer_content
  .footer_logo_contact
  .footer_contact
  .footer_contact_details
  a {
  color: #fefefe;
  text-decoration: none;
}
footer .footer_wrap .footer_content .footer_menu {
  padding: 35px 0;
}
footer .footer_wrap .footer_content .footer_menu .dp-plain-footer-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
@media screen and (min-width: 48em) {
  footer .footer_wrap .footer_content .footer_menu .dp-plain-footer-menu {
    flex-wrap: nowrap;
  }
}
footer .footer_wrap .footer_content .footer_menu .dp-plain-footer-menu li {
  padding: 5px 35px;
  border-right: 0;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 48em) {
  footer .footer_wrap .footer_content .footer_menu .dp-plain-footer-menu li {
    flex-wrap: nowrap;
    width: 100%;
    border-right: solid 2px #339933;
  }
}
footer
  .footer_wrap
  .footer_content
  .footer_menu
  .dp-plain-footer-menu
  li:last-child {
  border-right: 0;
}
footer .footer_wrap .footer_content .footer_menu .dp-plain-footer-menu li a {
  color: #fefefe;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
}
footer .copyright_section .copyright_text {
  color: #fefefe;
  text-align: center;
}

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