@charset "UTF-8";
/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Variables
| Author: P11
| Visit us: @ p11.com
|--------------------------------------------------------------------------
/* GLOBAL*/
/* FONTS*/
/* COLORS */
/* BREAKPOINTS */
/* Extra small mobile */
/* Mobile */
/* Tablet */
/* Middle Sized Devices */
/* Small Laptop */
/* Large Laptop / Desktop */
/* Large Desktop */
/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Mixins
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
| 1. Resets
| 2. Positioning
|
| Notes: Define patterns of property value pairs, which can then be reused in other rule sets
|
*/
/*
| Font Smoothing
| --------------------------------------------------
|
| Aligns most of the browsers with the same font antialiasing.
|
*/
/*
| Strict Button Style
| --------------------------------------------------
|
| Sets the button style appearance to none for various
| mobile browsers and OS's that will auto change the styling
|
*/
/*
| Positioning
| --------------------------------------------------
|
| The following mixins are used for positioning elements
| via the absolute rule
|
*/
/*
| Transition
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| transition property
|
*/
/*
| Box Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| box-shadow property
|
*/
/*
| Text Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| text-shadow property
|
*/
/*
| SVG Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| filter property
|
*/
/*
| Responsive Media Query Mixins
| --------------------------------------------------
|
| The following mixins are used for applying various
| media queries and specified breakpoints
|
*/
/*
| Transparent Colors
| --------------------------------------------------
|
| Function for creating transparent colors.
|
*/
/*
| Gradient Backgrounds
| --------------------------------------------------
|
| Mixin for creating gradient backgrounds
| @include bg-gradient(fn-transparent-color($color-black, 1), fn-transparent-color($color-black, 0), top, bottom, 0%, 100%);
|
*/
/*
| Rotation
| --------------------------------------------------
|
| Mixin for applying the correct browser prefixes for the
| transform: rotate property
|
*/
/*
| Keyframe animations
| --------------------------------------------------
| Mixin for applying animations to elements
|
*/
/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Meyer Reset
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
|
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
b,
i,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
section,
time {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 100%;
}

:focus {
  outline: 0;
}

body {
  line-height: 1;
  color: #000000;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
}

button,
input[type=submit] {
  border-radius: 0;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

*,
*:before,
*:after {
  border: 0;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  line-height: normal;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font: 400 normal 16px/16px Arial, Helvetica, sans-serif;
}

audio,
canvas,
img,
video {
  vertical-align: middle;
}

section {
  position: relative;
}

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

input,
textarea {
  font: inherit;
}

input[type=submit] {
  box-shadow: none;
}

textarea {
  resize: vertical;
  font-family: inherit;
  font-size: inherit;
}

a,
.trans {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

a {
  color: #000;
}

a:hover {
  color: #eee;
}

a:active {
  color: #eee;
}

p {
  font-size: 1em;
  line-height: 1.5em;
}

article p {
  line-height: 1.75em;
}

/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

Site design by p11|creative
Visit us @ p11.com

/*
|--------------------------------------------------------------------------
| Grid
|--------------------------------------------------------------------------
|
| This file holds all of the grid / structure related styles for the site.
|
*/
.half {
  width: 50%;
}
@media (max-width: 768px) {
  .half {
    width: 100%;
  }
  .half.md-half {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .half {
    width: 100%;
  }
  .half.md-half {
    width: 100%;
  }
  .half.sm-half {
    width: 50%;
  }
}

.third {
  width: 33.33333333%; /* IE Fallback */
  width: 33.3333333333%;
}
@media (max-width: 768px) {
  .third {
    width: 100%;
  }
  .third.md-third {
    width: 33.3333333333%;
  }
}
@media (max-width: 640px) {
  .third {
    width: 100%;
  }
  .third.md-third {
    width: 100%;
  }
  .third.sm-third {
    width: 33.3333333333%;
  }
}

.twothird,
.two-third {
  width: 66.66%; /* IE Fallback */
  width: 66.6666666667%;
}
@media (max-width: 768px) {
  .twothird,
  .two-third {
    width: 100%;
  }
  .twothird.md-twothird, .twothird.md-two-third,
  .two-third.md-twothird,
  .two-third.md-two-third {
    width: 66.6666666667%;
  }
}
@media (max-width: 640px) {
  .twothird,
  .two-third {
    width: 100%;
  }
  .twothird.md-twothird, .twothird.md-two-third,
  .two-third.md-twothird,
  .two-third.md-two-third {
    width: 100%;
  }
  .twothird.sm-twothird, .twothird.sm-two-third,
  .two-third.sm-twothird,
  .two-third.sm-two-third {
    width: 66.6666666667%;
  }
}

.fourth {
  width: 25%;
}
@media (max-width: 768px) {
  .fourth {
    width: 100%;
  }
  .fourth.md-fourth, .fourth.md-fourth {
    width: 25%;
  }
}
@media (max-width: 640px) {
  .fourth {
    width: 100%;
  }
  .fourth.md-fourth, .fourth.md-fourth {
    width: 100%;
  }
  .fourth.sm-fourth, .fourth.sm-fourth {
    width: 25%;
  }
}

.twofourth,
.two-fourth {
  width: 50%;
}
@media (max-width: 768px) {
  .twofourth,
  .two-fourth {
    width: 100%;
  }
  .twofourth.md-fourth, .twofourth.md-fourth,
  .two-fourth.md-fourth,
  .two-fourth.md-fourth {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .twofourth,
  .two-fourth {
    width: 100%;
  }
  .twofourth.md-fourth, .twofourth.md-fourth,
  .two-fourth.md-fourth,
  .two-fourth.md-fourth {
    width: 100%;
  }
  .twofourth.sm-fourth, .twofourth.sm-fourth,
  .two-fourth.sm-fourth,
  .two-fourth.sm-fourth {
    width: 50%;
  }
}

.threefourth,
.three-fourth {
  width: 75%;
}
@media (max-width: 768px) {
  .threefourth,
  .three-fourth {
    width: 100%;
  }
  .threefourth.md-threefourth, .threefourth.md-three-fourth,
  .three-fourth.md-threefourth,
  .three-fourth.md-three-fourth {
    width: 75%;
  }
}
@media (max-width: 640px) {
  .threefourth,
  .three-fourth {
    width: 100%;
  }
  .threefourth.md-threefourth, .threefourth.md-three-fourth,
  .three-fourth.md-threefourth,
  .three-fourth.md-three-fourth {
    width: 100%;
  }
  .threefourth.sm-threefourth, .threefourth.sm-threefourth,
  .three-fourth.sm-threefourth,
  .three-fourth.sm-threefourth {
    width: 25%;
  }
}

.fifth {
  width: 20%;
}
@media (max-width: 768px) {
  .fifth {
    width: 100%;
  }
  .fifth.md-fifth, .fifth.md-fifth {
    width: 20%;
  }
}
@media (max-width: 640px) {
  .fifth {
    width: 100%;
  }
  .fifth.md-fifth, .fifth.md-fifth {
    width: 100%;
  }
  .fifth.sm-fifth, .fifth.sm-fifth {
    width: 20%;
  }
}

.twofifth,
.two-fifth {
  width: 40%;
}
@media (max-width: 768px) {
  .twofifth,
  .two-fifth {
    width: 100%;
  }
  .twofifth.md-twofifth, .twofifth.md-two-fifth,
  .two-fifth.md-twofifth,
  .two-fifth.md-two-fifth {
    width: 40%;
  }
}
@media (max-width: 640px) {
  .twofifth,
  .two-fifth {
    width: 100%;
  }
  .twofifth.md-twofifth, .twofifth.md-two-fifth,
  .two-fifth.md-twofifth,
  .two-fifth.md-two-fifth {
    width: 100%;
  }
  .twofifth.sm-twofifth, .twofifth.sm-two-fifth,
  .two-fifth.sm-twofifth,
  .two-fifth.sm-two-fifth {
    width: 40%;
  }
}

.threefifth,
.three-fifth {
  width: 60%;
}
@media (max-width: 768px) {
  .threefifth,
  .three-fifth {
    width: 100%;
  }
  .threefifth.md-threefifth, .threefifth.md-three-fifth,
  .three-fifth.md-threefifth,
  .three-fifth.md-three-fifth {
    width: 60%;
  }
}
@media (max-width: 640px) {
  .threefifth,
  .three-fifth {
    width: 100%;
  }
  .threefifth.md-threefifth, .threefifth.md-three-fifth,
  .three-fifth.md-threefifth,
  .three-fifth.md-three-fifth {
    width: 100%;
  }
  .threefifth.sm-threefifth, .threefifth.sm-three-fifth,
  .three-fifth.sm-threefifth,
  .three-fifth.sm-three-fifth {
    width: 60%;
  }
}

.fourfifth,
.four-fifth {
  width: 80%;
}
@media (max-width: 768px) {
  .fourfifth,
  .four-fifth {
    width: 100%;
  }
  .fourfifth.md-fourfifth, .fourfifth.md-four-fifth,
  .four-fifth.md-fourfifth,
  .four-fifth.md-four-fifth {
    width: 80%;
  }
}
@media (max-width: 640px) {
  .fourfifth,
  .four-fifth {
    width: 100%;
  }
  .fourfifth.md-fourfifth, .fourfifth.md-four-fifth,
  .four-fifth.md-fourfifth,
  .four-fifth.md-four-fifth {
    width: 100%;
  }
  .fourfifth.sm-fourfifth, .fourfifth.sm-four-fifth,
  .four-fifth.sm-fourfifth,
  .four-fifth.sm-four-fifth {
    width: 80%;
  }
}

.sixth {
  width: 16.66666666; /* IE Fallback */
  width: 16.6666666667%;
}
@media (max-width: 768px) {
  .sixth {
    width: 100%;
  }
  .sixth.md-sixth, .sixth.md-sixth {
    width: 16%;
    width: 16.6666666667%;
  }
}
@media (max-width: 640px) {
  .sixth {
    width: 100%;
  }
  .sixth.md-sixth, .sixth.md-sixth {
    width: 100%;
  }
  .sixth.sm-sixth, .sixth.sm-sixth {
    width: 16%;
    width: 16.6666666667%;
  }
}

.twosixth,
.two-sixth {
  width: 33.33333333; /* IE Fallback */
  width: 33.3333333333%;
}
@media (max-width: 768px) {
  .twosixth,
  .two-sixth {
    width: 100%;
  }
  .twosixth.md-twosixth, .twosixth.md-two-sixth,
  .two-sixth.md-twosixth,
  .two-sixth.md-two-sixth {
    width: 33.33333333; /* IE Fallback */
    width: 33.3333333333%;
  }
}
@media (max-width: 640px) {
  .twosixth,
  .two-sixth {
    width: 100%;
  }
  .twosixth.md-twosixth, .twosixth.md-two-sixth,
  .two-sixth.md-twosixth,
  .two-sixth.md-two-sixth {
    width: 100%;
  }
  .twosixth.sm-twosixth, .twosixth.sm-two-sixth,
  .two-sixth.sm-twosixth,
  .two-sixth.sm-two-sixth {
    width: 33.33333333; /* IE Fallback */
    width: 33.3333333333%;
  }
}

.threesixth,
.three-sixth {
  width: 50%;
}
@media (max-width: 768px) {
  .threesixth,
  .three-sixth {
    width: 100%;
  }
  .threesixth.md-threesixth, .threesixth.md-three-sixth,
  .three-sixth.md-threesixth,
  .three-sixth.md-three-sixth {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .threesixth,
  .three-sixth {
    width: 100%;
  }
  .threesixth.md-threesixth, .threesixth.md-three-sixth,
  .three-sixth.md-threesixth,
  .three-sixth.md-three-sixth {
    width: 100%;
  }
  .threesixth.sm-threesixth, .threesixth.sm-three-sixth,
  .three-sixth.sm-threesixth,
  .three-sixth.sm-three-sixth {
    width: 50%;
  }
}

.foursixth,
.four-sixth {
  width: 66.66666666; /* IE Fallback */
  width: 66.6666666667%;
}
@media (max-width: 768px) {
  .foursixth,
  .four-sixth {
    width: 100%;
  }
  .foursixth.md-foursixth, .foursixth.md-four-sixth,
  .four-sixth.md-foursixth,
  .four-sixth.md-four-sixth {
    width: 66.66666666%;
    width: 66.6666666667%;
  }
}
@media (max-width: 640px) {
  .foursixth,
  .four-sixth {
    width: 100%;
  }
  .foursixth.md-foursixth, .foursixth.md-four-sixth,
  .four-sixth.md-foursixth,
  .four-sixth.md-four-sixth {
    width: 100%;
  }
  .foursixth.sm-foursixth, .foursixth.sm-four-sixth,
  .four-sixth.sm-foursixth,
  .four-sixth.sm-four-sixth {
    width: 66.66666666%;
    width: 66.6666666667%;
  }
}

.fivesixth,
.five-sixth {
  width: 83.33333333; /* IE Fallback */
  width: 83.3333333333%;
}
@media (max-width: 768px) {
  .fivesixth,
  .five-sixth {
    width: 100%;
  }
  .fivesixth.md-fivesixth, .fivesixth.md-five-sixth,
  .five-sixth.md-fivesixth,
  .five-sixth.md-five-sixth {
    width: 83.33333333%;
    width: 83.3333333333%;
  }
}
@media (max-width: 640px) {
  .fivesixth,
  .five-sixth {
    width: 100%;
  }
  .fivesixth.md-fivesixth, .fivesixth.md-five-sixth,
  .five-sixth.md-fivesixth,
  .five-sixth.md-five-sixth {
    width: 100%;
  }
  .fivesixth.sm-fivesixth, .fivesixth.sm-five-sixth,
  .five-sixth.sm-fivesixth,
  .five-sixth.sm-five-sixth {
    width: 83.33333333%;
    width: 83.3333333333%;
  }
}

/**** Gutters ***/
.half-gutter1 .half {
  width: calc(50% - 0.5rem);
}
@media (max-width: 768px) {
  .half-gutter1 .half {
    width: 100%;
  }
}
.half-gutter1 .half:nth-child(even) {
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .half-gutter1 {
    width: 100%;
    margin-left: 0 !important;
  }
}

.half-gutter2 .half {
  width: calc(50% - 1rem);
}
@media (max-width: 768px) {
  .half-gutter2 .half {
    width: 100%;
  }
}
.half-gutter2 .half:nth-child(even) {
  margin-left: 2rem;
}
@media (max-width: 768px) {
  .half-gutter2 .half:nth-child(even) {
    margin-left: 0 !important;
  }
}

.third-gutter1 .third {
  width: calc(33.3333333333% - 0.67rem);
  margin: 1rem 0 0;
}
.third-gutter1 .third:nth-child(3n+2) {
  margin: 1rem 1rem 0;
}
@media (max-width: 1024px) {
  .third-gutter1 .third {
    width: calc(50% - 0.5rem);
  }
  .third-gutter1 .third:nth-of-type(n) {
    margin: 1rem 0 0 0;
  }
  .third-gutter1 .third:nth-child(2n+1) {
    margin-right: 1rem;
  }
}
@media (max-width: 768px) {
  .third-gutter1 .third {
    width: 100%;
  }
  .third-gutter1 .third:nth-of-type(n) {
    margin: 1rem 0 0 0;
  }
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.full {
  width: 100%;
}

.left {
  float: left;
}

.right {
  float: right;
}

.center {
  margin: 0 auto;
}

.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.z-index0 {
  z-index: 0;
}

.fill {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 0;
}

/*~~ Gap ~~*/
.gap0 {
  gap: 0;
}

.gap1 {
  gap: 1rem;
}

.gap2 {
  gap: 2rem;
}

.gap3 {
  gap: 3rem;
}

.gap4 {
  gap: 4rem;
}

.gap5 {
  gap: 5rem;
}

@media (max-width: 768px) {
  .gapm0 {
    gap: 0;
  }
}

@media (max-width: 768px) {
  .gapm1 {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .gapm2 {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .gapm3 {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .gapm4 {
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .gapm5 {
    gap: 5rem;
  }
}

/*~~ VERTICAL ALIGN ~~*/
.vtop {
  justify-content: top;
}

.vcenter {
  justify-content: center;
}

.vbottom {
  justify-content: bottom;
}

/*~~ TEXT ALIGN ~~*/
.tleft,
.hleft,
.text-left {
  text-align: left;
}

.tright,
.hright,
.text-right {
  text-align: right;
}

.tcenter,
.hcenter,
.text-center {
  text-align: center;
}

.italic {
  font-style: italic;
}

.text-balance {
  text-wrap: balance;
}

.pt-auto {
  padding-top: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.pb-auto {
  padding-bottom: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.pl-auto {
  padding-left: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.pr-auto {
  padding-right: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.p-auto {
  padding-top: auto !important;
  padding-left: auto !important;
  padding-bottom: auto !important;
  padding-right: auto !important;
}

.m-auto {
  margin-top: auto !important;
  margin-left: auto !important;
  margin-bottom: auto !important;
  margin-right: auto !important;
}

.ph-auto {
  padding-left: auto !important;
  padding-right: auto !important;
}

.mh-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.pv-auto {
  padding-top: auto !important;
  padding-bottom: auto !important;
}

.mv-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.pt-8 {
  padding-top: 8rem !important;
}

.mt-8 {
  margin-top: 8rem !important;
}

.pb-8 {
  padding-bottom: 8rem !important;
}

.mb-8 {
  margin-bottom: 8rem !important;
}

.pl-8 {
  padding-left: 8rem !important;
}

.ml-8 {
  margin-left: 8rem !important;
}

.pr-8 {
  padding-right: 8rem !important;
}

.mr-8 {
  margin-right: 8rem !important;
}

.p-8 {
  padding-top: 8rem !important;
  padding-left: 8rem !important;
  padding-bottom: 8rem !important;
  padding-right: 8rem !important;
}

.m-8 {
  margin-top: 8rem !important;
  margin-left: 8rem !important;
  margin-bottom: 8rem !important;
  margin-right: 8rem !important;
}

.ph-8 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.mh-8 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.pv-8 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.mv-8 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.pt-7 {
  padding-top: 7rem !important;
}

.mt-7 {
  margin-top: 7rem !important;
}

.pb-7 {
  padding-bottom: 7rem !important;
}

.mb-7 {
  margin-bottom: 7rem !important;
}

.pl-7 {
  padding-left: 7rem !important;
}

.ml-7 {
  margin-left: 7rem !important;
}

.pr-7 {
  padding-right: 7rem !important;
}

.mr-7 {
  margin-right: 7rem !important;
}

.p-7 {
  padding-top: 7rem !important;
  padding-left: 7rem !important;
  padding-bottom: 7rem !important;
  padding-right: 7rem !important;
}

.m-7 {
  margin-top: 7rem !important;
  margin-left: 7rem !important;
  margin-bottom: 7rem !important;
  margin-right: 7rem !important;
}

.ph-7 {
  padding-left: 7rem !important;
  padding-right: 7rem !important;
}

.mh-7 {
  margin-left: 7rem !important;
  margin-right: 7rem !important;
}

.pv-7 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.mv-7 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.mt-6 {
  margin-top: 6rem !important;
}

.pb-6 {
  padding-bottom: 6rem !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

.pl-6 {
  padding-left: 6rem !important;
}

.ml-6 {
  margin-left: 6rem !important;
}

.pr-6 {
  padding-right: 6rem !important;
}

.mr-6 {
  margin-right: 6rem !important;
}

.p-6 {
  padding-top: 6rem !important;
  padding-left: 6rem !important;
  padding-bottom: 6rem !important;
  padding-right: 6rem !important;
}

.m-6 {
  margin-top: 6rem !important;
  margin-left: 6rem !important;
  margin-bottom: 6rem !important;
  margin-right: 6rem !important;
}

.ph-6 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.mh-6 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.pv-6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.mv-6 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.mt-5 {
  margin-top: 5rem !important;
}

.pb-5 {
  padding-bottom: 5rem !important;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.pl-5 {
  padding-left: 5rem !important;
}

.ml-5 {
  margin-left: 5rem !important;
}

.pr-5 {
  padding-right: 5rem !important;
}

.mr-5 {
  margin-right: 5rem !important;
}

.p-5 {
  padding-top: 5rem !important;
  padding-left: 5rem !important;
  padding-bottom: 5rem !important;
  padding-right: 5rem !important;
}

.m-5 {
  margin-top: 5rem !important;
  margin-left: 5rem !important;
  margin-bottom: 5rem !important;
  margin-right: 5rem !important;
}

.ph-5 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.mh-5 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.pv-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.mv-5 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.pt-4 {
  padding-top: 4rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.pb-4 {
  padding-bottom: 4rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.pl-4 {
  padding-left: 4rem !important;
}

.ml-4 {
  margin-left: 4rem !important;
}

.pr-4 {
  padding-right: 4rem !important;
}

.mr-4 {
  margin-right: 4rem !important;
}

.p-4 {
  padding-top: 4rem !important;
  padding-left: 4rem !important;
  padding-bottom: 4rem !important;
  padding-right: 4rem !important;
}

.m-4 {
  margin-top: 4rem !important;
  margin-left: 4rem !important;
  margin-bottom: 4rem !important;
  margin-right: 4rem !important;
}

.ph-4 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.mh-4 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.pv-4 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.mv-4 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.pt-3 {
  padding-top: 3rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.pb-3 {
  padding-bottom: 3rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.pl-3 {
  padding-left: 3rem !important;
}

.ml-3 {
  margin-left: 3rem !important;
}

.pr-3 {
  padding-right: 3rem !important;
}

.mr-3 {
  margin-right: 3rem !important;
}

.p-3 {
  padding-top: 3rem !important;
  padding-left: 3rem !important;
  padding-bottom: 3rem !important;
  padding-right: 3rem !important;
}

.m-3 {
  margin-top: 3rem !important;
  margin-left: 3rem !important;
  margin-bottom: 3rem !important;
  margin-right: 3rem !important;
}

.ph-3 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.mh-3 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.pv-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.mv-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.pl-2 {
  padding-left: 2rem !important;
}

.ml-2 {
  margin-left: 2rem !important;
}

.pr-2 {
  padding-right: 2rem !important;
}

.mr-2 {
  margin-right: 2rem !important;
}

.p-2 {
  padding-top: 2rem !important;
  padding-left: 2rem !important;
  padding-bottom: 2rem !important;
  padding-right: 2rem !important;
}

.m-2 {
  margin-top: 2rem !important;
  margin-left: 2rem !important;
  margin-bottom: 2rem !important;
  margin-right: 2rem !important;
}

.ph-2 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.mh-2 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.pv-2 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.mv-2 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.pl-1 {
  padding-left: 1rem !important;
}

.ml-1 {
  margin-left: 1rem !important;
}

.pr-1 {
  padding-right: 1rem !important;
}

.mr-1 {
  margin-right: 1rem !important;
}

.p-1 {
  padding-top: 1rem !important;
  padding-left: 1rem !important;
  padding-bottom: 1rem !important;
  padding-right: 1rem !important;
}

.m-1 {
  margin-top: 1rem !important;
  margin-left: 1rem !important;
  margin-bottom: 1rem !important;
  margin-right: 1rem !important;
}

.ph-1 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.mh-1 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.pv-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.mv-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

.mt-0 {
  margin-top: 0rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}

.ml-0 {
  margin-left: 0rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}

.p-0 {
  padding-top: 0rem !important;
  padding-left: 0rem !important;
  padding-bottom: 0rem !important;
  padding-right: 0rem !important;
}

.m-0 {
  margin-top: 0rem !important;
  margin-left: 0rem !important;
  margin-bottom: 0rem !important;
  margin-right: 0rem !important;
}

.ph-0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.mh-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

.pv-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.mv-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.p-8-8 {
  padding: 8rem 8rem !important;
}

.p-8-7 {
  padding: 8rem 7rem !important;
}

.p-8-6 {
  padding: 8rem 6rem !important;
}

.p-8-5 {
  padding: 8rem 5rem !important;
}

.p-8-4 {
  padding: 8rem 4rem !important;
}

.p-8-3 {
  padding: 8rem 3rem !important;
}

.p-8-2 {
  padding: 8rem 2rem !important;
}

.p-8-1 {
  padding: 8rem 1rem !important;
}

.p-8-0 {
  padding: 8rem 0rem !important;
}

.p-7-8 {
  padding: 7rem 8rem !important;
}

.p-7-7 {
  padding: 7rem 7rem !important;
}

.p-7-6 {
  padding: 7rem 6rem !important;
}

.p-7-5 {
  padding: 7rem 5rem !important;
}

.p-7-4 {
  padding: 7rem 4rem !important;
}

.p-7-3 {
  padding: 7rem 3rem !important;
}

.p-7-2 {
  padding: 7rem 2rem !important;
}

.p-7-1 {
  padding: 7rem 1rem !important;
}

.p-7-0 {
  padding: 7rem 0rem !important;
}

.p-6-8 {
  padding: 6rem 8rem !important;
}

.p-6-7 {
  padding: 6rem 7rem !important;
}

.p-6-6 {
  padding: 6rem 6rem !important;
}

.p-6-5 {
  padding: 6rem 5rem !important;
}

.p-6-4 {
  padding: 6rem 4rem !important;
}

.p-6-3 {
  padding: 6rem 3rem !important;
}

.p-6-2 {
  padding: 6rem 2rem !important;
}

.p-6-1 {
  padding: 6rem 1rem !important;
}

.p-6-0 {
  padding: 6rem 0rem !important;
}

.p-5-8 {
  padding: 5rem 8rem !important;
}

.p-5-7 {
  padding: 5rem 7rem !important;
}

.p-5-6 {
  padding: 5rem 6rem !important;
}

.p-5-5 {
  padding: 5rem 5rem !important;
}

.p-5-4 {
  padding: 5rem 4rem !important;
}

.p-5-3 {
  padding: 5rem 3rem !important;
}

.p-5-2 {
  padding: 5rem 2rem !important;
}

.p-5-1 {
  padding: 5rem 1rem !important;
}

.p-5-0 {
  padding: 5rem 0rem !important;
}

.p-4-8 {
  padding: 4rem 8rem !important;
}

.p-4-7 {
  padding: 4rem 7rem !important;
}

.p-4-6 {
  padding: 4rem 6rem !important;
}

.p-4-5 {
  padding: 4rem 5rem !important;
}

.p-4-4 {
  padding: 4rem 4rem !important;
}

.p-4-3 {
  padding: 4rem 3rem !important;
}

.p-4-2 {
  padding: 4rem 2rem !important;
}

.p-4-1 {
  padding: 4rem 1rem !important;
}

.p-4-0 {
  padding: 4rem 0rem !important;
}

.p-3-8 {
  padding: 3rem 8rem !important;
}

.p-3-7 {
  padding: 3rem 7rem !important;
}

.p-3-6 {
  padding: 3rem 6rem !important;
}

.p-3-5 {
  padding: 3rem 5rem !important;
}

.p-3-4 {
  padding: 3rem 4rem !important;
}

.p-3-3 {
  padding: 3rem 3rem !important;
}

.p-3-2 {
  padding: 3rem 2rem !important;
}

.p-3-1 {
  padding: 3rem 1rem !important;
}

.p-3-0 {
  padding: 3rem 0rem !important;
}

.p-2-8 {
  padding: 2rem 8rem !important;
}

.p-2-7 {
  padding: 2rem 7rem !important;
}

.p-2-6 {
  padding: 2rem 6rem !important;
}

.p-2-5 {
  padding: 2rem 5rem !important;
}

.p-2-4 {
  padding: 2rem 4rem !important;
}

.p-2-3 {
  padding: 2rem 3rem !important;
}

.p-2-2 {
  padding: 2rem 2rem !important;
}

.p-2-1 {
  padding: 2rem 1rem !important;
}

.p-2-0 {
  padding: 2rem 0rem !important;
}

.p-1-8 {
  padding: 1rem 8rem !important;
}

.p-1-7 {
  padding: 1rem 7rem !important;
}

.p-1-6 {
  padding: 1rem 6rem !important;
}

.p-1-5 {
  padding: 1rem 5rem !important;
}

.p-1-4 {
  padding: 1rem 4rem !important;
}

.p-1-3 {
  padding: 1rem 3rem !important;
}

.p-1-2 {
  padding: 1rem 2rem !important;
}

.p-1-1 {
  padding: 1rem 1rem !important;
}

.p-1-0 {
  padding: 1rem 0rem !important;
}

.p-0-8 {
  padding: 0rem 8rem !important;
}

.p-0-7 {
  padding: 0rem 7rem !important;
}

.p-0-6 {
  padding: 0rem 6rem !important;
}

.p-0-5 {
  padding: 0rem 5rem !important;
}

.p-0-4 {
  padding: 0rem 4rem !important;
}

.p-0-3 {
  padding: 0rem 3rem !important;
}

.p-0-2 {
  padding: 0rem 2rem !important;
}

.p-0-1 {
  padding: 0rem 1rem !important;
}

.p-0-0 {
  padding: 0rem 0rem !important;
}

@media (max-width: 768px) {
  .mpt-auto {
    padding-top: auto !important;
  }
  .mmt-auto {
    margin-top: auto !important;
  }
  .mpb-auto {
    padding-bottom: auto !important;
  }
  .mmb-auto {
    margin-bottom: auto !important;
  }
  .mpl-auto {
    padding-left: auto !important;
  }
  .mml-auto {
    margin-left: auto !important;
  }
  .mpr-auto {
    padding-right: auto !important;
  }
  .mmr-auto {
    margin-right: auto !important;
  }
  .mp-auto {
    padding-top: auto !important;
    padding-left: auto !important;
    padding-bottom: auto !important;
    padding-right: auto !important;
  }
  .mm-auto {
    margin-top: auto !important;
    margin-left: auto !important;
    margin-bottom: auto !important;
    margin-right: auto !important;
  }
  .mph-auto {
    padding-left: auto !important;
    padding-right: auto !important;
  }
  .mmh-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mpv-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
  }
  .mmv-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mpt-8 {
    padding-top: 8rem !important;
  }
  .mmt-8 {
    margin-top: 8rem !important;
  }
  .mpb-8 {
    padding-bottom: 8rem !important;
  }
  .mmb-8 {
    margin-bottom: 8rem !important;
  }
  .mpl-8 {
    padding-left: 8rem !important;
  }
  .mml-8 {
    margin-left: 8rem !important;
  }
  .mpr-8 {
    padding-right: 8rem !important;
  }
  .mmr-8 {
    margin-right: 8rem !important;
  }
  .mp-8 {
    padding-top: 8rem !important;
    padding-left: 8rem !important;
    padding-bottom: 8rem !important;
    padding-right: 8rem !important;
  }
  .mm-8 {
    margin-top: 8rem !important;
    margin-left: 8rem !important;
    margin-bottom: 8rem !important;
    margin-right: 8rem !important;
  }
  .mph-8 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .mmh-8 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .mpv-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .mmv-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .mpt-7 {
    padding-top: 7rem !important;
  }
  .mmt-7 {
    margin-top: 7rem !important;
  }
  .mpb-7 {
    padding-bottom: 7rem !important;
  }
  .mmb-7 {
    margin-bottom: 7rem !important;
  }
  .mpl-7 {
    padding-left: 7rem !important;
  }
  .mml-7 {
    margin-left: 7rem !important;
  }
  .mpr-7 {
    padding-right: 7rem !important;
  }
  .mmr-7 {
    margin-right: 7rem !important;
  }
  .mp-7 {
    padding-top: 7rem !important;
    padding-left: 7rem !important;
    padding-bottom: 7rem !important;
    padding-right: 7rem !important;
  }
  .mm-7 {
    margin-top: 7rem !important;
    margin-left: 7rem !important;
    margin-bottom: 7rem !important;
    margin-right: 7rem !important;
  }
  .mph-7 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .mmh-7 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .mpv-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .mmv-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .mpt-6 {
    padding-top: 6rem !important;
  }
  .mmt-6 {
    margin-top: 6rem !important;
  }
  .mpb-6 {
    padding-bottom: 6rem !important;
  }
  .mmb-6 {
    margin-bottom: 6rem !important;
  }
  .mpl-6 {
    padding-left: 6rem !important;
  }
  .mml-6 {
    margin-left: 6rem !important;
  }
  .mpr-6 {
    padding-right: 6rem !important;
  }
  .mmr-6 {
    margin-right: 6rem !important;
  }
  .mp-6 {
    padding-top: 6rem !important;
    padding-left: 6rem !important;
    padding-bottom: 6rem !important;
    padding-right: 6rem !important;
  }
  .mm-6 {
    margin-top: 6rem !important;
    margin-left: 6rem !important;
    margin-bottom: 6rem !important;
    margin-right: 6rem !important;
  }
  .mph-6 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .mmh-6 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .mpv-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .mmv-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .mpt-5 {
    padding-top: 5rem !important;
  }
  .mmt-5 {
    margin-top: 5rem !important;
  }
  .mpb-5 {
    padding-bottom: 5rem !important;
  }
  .mmb-5 {
    margin-bottom: 5rem !important;
  }
  .mpl-5 {
    padding-left: 5rem !important;
  }
  .mml-5 {
    margin-left: 5rem !important;
  }
  .mpr-5 {
    padding-right: 5rem !important;
  }
  .mmr-5 {
    margin-right: 5rem !important;
  }
  .mp-5 {
    padding-top: 5rem !important;
    padding-left: 5rem !important;
    padding-bottom: 5rem !important;
    padding-right: 5rem !important;
  }
  .mm-5 {
    margin-top: 5rem !important;
    margin-left: 5rem !important;
    margin-bottom: 5rem !important;
    margin-right: 5rem !important;
  }
  .mph-5 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .mmh-5 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .mpv-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .mmv-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .mpt-4 {
    padding-top: 4rem !important;
  }
  .mmt-4 {
    margin-top: 4rem !important;
  }
  .mpb-4 {
    padding-bottom: 4rem !important;
  }
  .mmb-4 {
    margin-bottom: 4rem !important;
  }
  .mpl-4 {
    padding-left: 4rem !important;
  }
  .mml-4 {
    margin-left: 4rem !important;
  }
  .mpr-4 {
    padding-right: 4rem !important;
  }
  .mmr-4 {
    margin-right: 4rem !important;
  }
  .mp-4 {
    padding-top: 4rem !important;
    padding-left: 4rem !important;
    padding-bottom: 4rem !important;
    padding-right: 4rem !important;
  }
  .mm-4 {
    margin-top: 4rem !important;
    margin-left: 4rem !important;
    margin-bottom: 4rem !important;
    margin-right: 4rem !important;
  }
  .mph-4 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .mmh-4 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .mpv-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .mmv-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .mpt-3 {
    padding-top: 3rem !important;
  }
  .mmt-3 {
    margin-top: 3rem !important;
  }
  .mpb-3 {
    padding-bottom: 3rem !important;
  }
  .mmb-3 {
    margin-bottom: 3rem !important;
  }
  .mpl-3 {
    padding-left: 3rem !important;
  }
  .mml-3 {
    margin-left: 3rem !important;
  }
  .mpr-3 {
    padding-right: 3rem !important;
  }
  .mmr-3 {
    margin-right: 3rem !important;
  }
  .mp-3 {
    padding-top: 3rem !important;
    padding-left: 3rem !important;
    padding-bottom: 3rem !important;
    padding-right: 3rem !important;
  }
  .mm-3 {
    margin-top: 3rem !important;
    margin-left: 3rem !important;
    margin-bottom: 3rem !important;
    margin-right: 3rem !important;
  }
  .mph-3 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .mmh-3 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .mpv-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .mmv-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .mpt-2 {
    padding-top: 2rem !important;
  }
  .mmt-2 {
    margin-top: 2rem !important;
  }
  .mpb-2 {
    padding-bottom: 2rem !important;
  }
  .mmb-2 {
    margin-bottom: 2rem !important;
  }
  .mpl-2 {
    padding-left: 2rem !important;
  }
  .mml-2 {
    margin-left: 2rem !important;
  }
  .mpr-2 {
    padding-right: 2rem !important;
  }
  .mmr-2 {
    margin-right: 2rem !important;
  }
  .mp-2 {
    padding-top: 2rem !important;
    padding-left: 2rem !important;
    padding-bottom: 2rem !important;
    padding-right: 2rem !important;
  }
  .mm-2 {
    margin-top: 2rem !important;
    margin-left: 2rem !important;
    margin-bottom: 2rem !important;
    margin-right: 2rem !important;
  }
  .mph-2 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .mmh-2 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .mpv-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .mmv-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .mpt-1 {
    padding-top: 1rem !important;
  }
  .mmt-1 {
    margin-top: 1rem !important;
  }
  .mpb-1 {
    padding-bottom: 1rem !important;
  }
  .mmb-1 {
    margin-bottom: 1rem !important;
  }
  .mpl-1 {
    padding-left: 1rem !important;
  }
  .mml-1 {
    margin-left: 1rem !important;
  }
  .mpr-1 {
    padding-right: 1rem !important;
  }
  .mmr-1 {
    margin-right: 1rem !important;
  }
  .mp-1 {
    padding-top: 1rem !important;
    padding-left: 1rem !important;
    padding-bottom: 1rem !important;
    padding-right: 1rem !important;
  }
  .mm-1 {
    margin-top: 1rem !important;
    margin-left: 1rem !important;
    margin-bottom: 1rem !important;
    margin-right: 1rem !important;
  }
  .mph-1 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .mmh-1 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .mpv-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .mmv-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .mpt-0 {
    padding-top: 0rem !important;
  }
  .mmt-0 {
    margin-top: 0rem !important;
  }
  .mpb-0 {
    padding-bottom: 0rem !important;
  }
  .mmb-0 {
    margin-bottom: 0rem !important;
  }
  .mpl-0 {
    padding-left: 0rem !important;
  }
  .mml-0 {
    margin-left: 0rem !important;
  }
  .mpr-0 {
    padding-right: 0rem !important;
  }
  .mmr-0 {
    margin-right: 0rem !important;
  }
  .mp-0 {
    padding-top: 0rem !important;
    padding-left: 0rem !important;
    padding-bottom: 0rem !important;
    padding-right: 0rem !important;
  }
  .mm-0 {
    margin-top: 0rem !important;
    margin-left: 0rem !important;
    margin-bottom: 0rem !important;
    margin-right: 0rem !important;
  }
  .mph-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .mmh-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .mpv-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .mmv-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .mp-8-8 {
    padding: 8rem 8rem !important;
  }
  .mp-8-7 {
    padding: 8rem 7rem !important;
  }
  .mp-8-6 {
    padding: 8rem 6rem !important;
  }
  .mp-8-5 {
    padding: 8rem 5rem !important;
  }
  .mp-8-4 {
    padding: 8rem 4rem !important;
  }
  .mp-8-3 {
    padding: 8rem 3rem !important;
  }
  .mp-8-2 {
    padding: 8rem 2rem !important;
  }
  .mp-8-1 {
    padding: 8rem 1rem !important;
  }
  .mp-8-0 {
    padding: 8rem 0rem !important;
  }
  .mp-7-8 {
    padding: 7rem 8rem !important;
  }
  .mp-7-7 {
    padding: 7rem 7rem !important;
  }
  .mp-7-6 {
    padding: 7rem 6rem !important;
  }
  .mp-7-5 {
    padding: 7rem 5rem !important;
  }
  .mp-7-4 {
    padding: 7rem 4rem !important;
  }
  .mp-7-3 {
    padding: 7rem 3rem !important;
  }
  .mp-7-2 {
    padding: 7rem 2rem !important;
  }
  .mp-7-1 {
    padding: 7rem 1rem !important;
  }
  .mp-7-0 {
    padding: 7rem 0rem !important;
  }
  .mp-6-8 {
    padding: 6rem 8rem !important;
  }
  .mp-6-7 {
    padding: 6rem 7rem !important;
  }
  .mp-6-6 {
    padding: 6rem 6rem !important;
  }
  .mp-6-5 {
    padding: 6rem 5rem !important;
  }
  .mp-6-4 {
    padding: 6rem 4rem !important;
  }
  .mp-6-3 {
    padding: 6rem 3rem !important;
  }
  .mp-6-2 {
    padding: 6rem 2rem !important;
  }
  .mp-6-1 {
    padding: 6rem 1rem !important;
  }
  .mp-6-0 {
    padding: 6rem 0rem !important;
  }
  .mp-5-8 {
    padding: 5rem 8rem !important;
  }
  .mp-5-7 {
    padding: 5rem 7rem !important;
  }
  .mp-5-6 {
    padding: 5rem 6rem !important;
  }
  .mp-5-5 {
    padding: 5rem 5rem !important;
  }
  .mp-5-4 {
    padding: 5rem 4rem !important;
  }
  .mp-5-3 {
    padding: 5rem 3rem !important;
  }
  .mp-5-2 {
    padding: 5rem 2rem !important;
  }
  .mp-5-1 {
    padding: 5rem 1rem !important;
  }
  .mp-5-0 {
    padding: 5rem 0rem !important;
  }
  .mp-4-8 {
    padding: 4rem 8rem !important;
  }
  .mp-4-7 {
    padding: 4rem 7rem !important;
  }
  .mp-4-6 {
    padding: 4rem 6rem !important;
  }
  .mp-4-5 {
    padding: 4rem 5rem !important;
  }
  .mp-4-4 {
    padding: 4rem 4rem !important;
  }
  .mp-4-3 {
    padding: 4rem 3rem !important;
  }
  .mp-4-2 {
    padding: 4rem 2rem !important;
  }
  .mp-4-1 {
    padding: 4rem 1rem !important;
  }
  .mp-4-0 {
    padding: 4rem 0rem !important;
  }
  .mp-3-8 {
    padding: 3rem 8rem !important;
  }
  .mp-3-7 {
    padding: 3rem 7rem !important;
  }
  .mp-3-6 {
    padding: 3rem 6rem !important;
  }
  .mp-3-5 {
    padding: 3rem 5rem !important;
  }
  .mp-3-4 {
    padding: 3rem 4rem !important;
  }
  .mp-3-3 {
    padding: 3rem 3rem !important;
  }
  .mp-3-2 {
    padding: 3rem 2rem !important;
  }
  .mp-3-1 {
    padding: 3rem 1rem !important;
  }
  .mp-3-0 {
    padding: 3rem 0rem !important;
  }
  .mp-2-8 {
    padding: 2rem 8rem !important;
  }
  .mp-2-7 {
    padding: 2rem 7rem !important;
  }
  .mp-2-6 {
    padding: 2rem 6rem !important;
  }
  .mp-2-5 {
    padding: 2rem 5rem !important;
  }
  .mp-2-4 {
    padding: 2rem 4rem !important;
  }
  .mp-2-3 {
    padding: 2rem 3rem !important;
  }
  .mp-2-2 {
    padding: 2rem 2rem !important;
  }
  .mp-2-1 {
    padding: 2rem 1rem !important;
  }
  .mp-2-0 {
    padding: 2rem 0rem !important;
  }
  .mp-1-8 {
    padding: 1rem 8rem !important;
  }
  .mp-1-7 {
    padding: 1rem 7rem !important;
  }
  .mp-1-6 {
    padding: 1rem 6rem !important;
  }
  .mp-1-5 {
    padding: 1rem 5rem !important;
  }
  .mp-1-4 {
    padding: 1rem 4rem !important;
  }
  .mp-1-3 {
    padding: 1rem 3rem !important;
  }
  .mp-1-2 {
    padding: 1rem 2rem !important;
  }
  .mp-1-1 {
    padding: 1rem 1rem !important;
  }
  .mp-1-0 {
    padding: 1rem 0rem !important;
  }
  .mp-0-8 {
    padding: 0rem 8rem !important;
  }
  .mp-0-7 {
    padding: 0rem 7rem !important;
  }
  .mp-0-6 {
    padding: 0rem 6rem !important;
  }
  .mp-0-5 {
    padding: 0rem 5rem !important;
  }
  .mp-0-4 {
    padding: 0rem 4rem !important;
  }
  .mp-0-3 {
    padding: 0rem 3rem !important;
  }
  .mp-0-2 {
    padding: 0rem 2rem !important;
  }
  .mp-0-1 {
    padding: 0rem 1rem !important;
  }
  .mp-0-0 {
    padding: 0rem 0rem !important;
  }
}
.pvht-auto {
  padding-top: auto !important;
}

.pvhb-auto {
  padding-bottom: auto !important;
}

.pvh-auto {
  padding-top: auto !important;
  padding-left: auto !important;
  padding-bottom: auto !important;
  padding-right: auto !important;
}

.pvhv-auto {
  padding-top: auto !important;
  padding-bottom: auto !important;
}

.pvht-30 {
  padding-top: 30vh !important;
}

.pvhb-30 {
  padding-bottom: 30vh !important;
}

.pvh-30 {
  padding-top: 30vh !important;
  padding-left: 30vh !important;
  padding-bottom: 30vh !important;
  padding-right: 30vh !important;
}

.pvhv-30 {
  padding-top: 30vh !important;
  padding-bottom: 30vh !important;
}

.pvht-25 {
  padding-top: 25vh !important;
}

.pvhb-25 {
  padding-bottom: 25vh !important;
}

.pvh-25 {
  padding-top: 25vh !important;
  padding-left: 25vh !important;
  padding-bottom: 25vh !important;
  padding-right: 25vh !important;
}

.pvhv-25 {
  padding-top: 25vh !important;
  padding-bottom: 25vh !important;
}

.pvht-20 {
  padding-top: 20vh !important;
}

.pvhb-20 {
  padding-bottom: 20vh !important;
}

.pvh-20 {
  padding-top: 20vh !important;
  padding-left: 20vh !important;
  padding-bottom: 20vh !important;
  padding-right: 20vh !important;
}

.pvhv-20 {
  padding-top: 20vh !important;
  padding-bottom: 20vh !important;
}

.pvht-15 {
  padding-top: 15vh !important;
}

.pvhb-15 {
  padding-bottom: 15vh !important;
}

.pvh-15 {
  padding-top: 15vh !important;
  padding-left: 15vh !important;
  padding-bottom: 15vh !important;
  padding-right: 15vh !important;
}

.pvhv-15 {
  padding-top: 15vh !important;
  padding-bottom: 15vh !important;
}

.pvht-5 {
  padding-top: 5vh !important;
}

.pvhb-5 {
  padding-bottom: 5vh !important;
}

.pvh-5 {
  padding-top: 5vh !important;
  padding-left: 5vh !important;
  padding-bottom: 5vh !important;
  padding-right: 5vh !important;
}

.pvhv-5 {
  padding-top: 5vh !important;
  padding-bottom: 5vh !important;
}

.pvht-0 {
  padding-top: 0vh !important;
}

.pvhb-0 {
  padding-bottom: 0vh !important;
}

.pvh-0 {
  padding-top: 0vh !important;
  padding-left: 0vh !important;
  padding-bottom: 0vh !important;
  padding-right: 0vh !important;
}

.pvhv-0 {
  padding-top: 0vh !important;
  padding-bottom: 0vh !important;
}

/*~~ GLOBAL ~~*/
sup {
  vertical-align: super;
  font-size: 50%;
}

.center {
  margin: 0 auto;
}

.upper {
  text-transform: uppercase;
}

.lower {
  text-transform: lowercase;
}

.hidden {
  display: none;
}

.noscroll,
.no-scroll {
  height: 100%;
  overflow: hidden;
}

.relative {
  position: relative;
}

.flex {
  display: flex;
}

.figure {
  overflow: hidden;
  position: relative;
}

.figure img,
.stretch {
  width: 100%;
  height: auto;
}

.stretch-h {
  height: 100%;
  width: auto;
}

@media (max-width: 768px) {
  .mmh0 {
    min-height: 0 !important;
  }
}

.cover {
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.contain {
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
}

.fixedbg,
.fixed-bg {
  background-attachment: fixed;
  will-change: top;
}

.css-table {
  display: table;
}
.css-table .css-col {
  display: table-cell;
}

/* Column Classes
 *
 * Width: 1200px
 * Gutter: 10px
 * Link: http://www.billerickson.net/column-class-generator/
--------------------------------------------- */
.five-sixths,
.four-sixths,
.four-fifths,
.one-fifth,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-fifths,
.three-sixths,
.two-fourths,
.two-fifths,
.two-sixths,
.two-thirds {
  float: left;
  margin-left: 1.6666666667%;
  margin-bottom: 1em;
}

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

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

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

.one-fourth {
  width: 23.75%;
}

.three-fourths {
  width: 74.5833333333%;
}

.one-fifth {
  width: 18.6666666667%;
}

.two-fifths {
  width: 39%;
}

.three-fifths {
  width: 59.3333333333%;
}

.four-fifths {
  width: 79.6666666667%;
}

.one-sixth {
  width: 15.2777777778%;
}

.five-sixths {
  width: 83.0555555556%;
}

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

@media (max-width: 640px) {
  .five-sixths,
  .four-sixths,
  .four-fifths,
  .one-fifth,
  .one-fourth,
  .one-half,
  .one-sixth,
  .one-third,
  .three-fourths,
  .three-fifths,
  .three-sixths,
  .two-fourths,
  .two-fifths,
  .two-sixths,
  .two-thirds {
    width: 100%;
    float: none;
    margin-left: 0;
    clear: both;
    display: block;
  }
}

/* End Column Classes */
/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

Site design by p11|creative
Visit us @ p11.com


/*
|--------------------------------------------------------------------------
| Font Style Generator (See Mixin)
|--------------------------------------------------------------------------
*/
@font-face {
  font-family: "Aldivaro";
  font-display: swap;
  src: url("../fonts/Aldivaro/Aldivaro.woff2") format("woff2"), url("../fonts/Aldivaro/Aldivaro.woff") format("woff"), url("../fonts/Aldivaro/Aldivaro.ttf") format("truetype");
}
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  GLOBAL
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
body,
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  padding: 0;
  font: 400 normal 16px/16px "din-2014", Arial, Helvetica, sans-serif, sans-serif;
  -webkit-font-smoothing: auto;
  -moz-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: auto;
  text-rendering: geometricprecision;
  color: #231f20;
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

*:focus,
*:focus label,
a:focus,
input:focus,
button:focus,
.checkboxitem label:focus-within {
  outline: 2px transparent solid !important;
  box-shadow: 0 0 0 2px #F9F9D1, 0 0 0 4px #396196, 0 0 4px 8px #F9F9D1 !important;
}

body.using-mouse *:focus,
body.using-mouse *:focus label,
body.using-mouse a:focus,
body.using-mouse input:focus,
body.using-mouse button:focus,
body.using-mouse .checkboxitem label:focus-within {
  outline: none !important;
  box-shadow: none !important;
}

em {
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "din-2014", Arial, Helvetica, sans-serif;
  font-weight: normal;
  line-height: 1em;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.75em;
}

h4 {
  font-size: 1.5em;
}

h5 {
  font-size: 1.25em;
}

h6 {
  font-size: 1.125em;
}

p {
  font-size: 1.25rem;
  line-height: 1.25em;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}
p a {
  text-decoration: underline;
  opacity: 1;
}
p a:hover {
  opacity: 0.65;
}

.lh-1-125 p {
  line-height: 1.125em !important;
}

.lh-1-25 p {
  line-height: 1.25em !important;
}

.lh-1-5 p {
  line-height: 1.5em !important;
}

.sm-body-text p {
  font-size: 1.25rem;
}

p.small {
  font-size: 0.85em;
}

a,
a:link,
a:visited,
.spanlink {
  color: inherit;
  cursor: pointer;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

a:hover,
a:active,
.spanlink:hover {
  cursor: pointer;
  text-decoration: underline;
  color: inherit;
}

a.nolink {
  color: inherit;
  text-decoration: none;
}

textarea,
input.text,
input[type=text],
input[type=button],
input[type=submit],
.input-checkbox {
  -webkit-appearance: none;
  border-radius: 0;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  ANIMATE
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
[class*=animate] {
  opacity: 0;
  -webkit-transition: transform 1s ease, zoom 1s ease, opacity 1s ease;
  -moz-transition: transform 1s ease, zoom 1s ease, opacity 1s ease;
  -ms-transition: transform 1s ease, zoom 1s ease, opacity 1s ease;
  -o-transition: transform 1s ease, zoom 1s ease, opacity 1s ease;
  transition: transform 1s ease, zoom 1s ease, opacity 1s ease;
}
[class*=animate].nofade {
  opacity: 1 !important;
}
[class*=animate].in-view {
  opacity: 1;
  transition-delay: 0.125s;
}
[class*=animate].in-view.quick {
  transition-delay: 0.05s;
}
[class*=animate].in-view.short-delay {
  transition-delay: 0.5s;
}
[class*=animate].in-view.medium-delay {
  transition-delay: 0.75s;
}
[class*=animate].in-view.long-delay {
  transition-delay: 1s;
}
[class*=animate].in-view.animate-fade-sequence:nth-of-type(1) {
  transition-delay: 0.125s;
}
[class*=animate].in-view.animate-fade-sequence:nth-of-type(2) {
  transition-delay: 0.25s;
}
[class*=animate].in-view.animate-fade-sequence:nth-of-type(3) {
  transition-delay: 0.375s;
}
[class*=animate].in-view.animate-fade-sequence:nth-of-type(4) {
  transition-delay: 0.5s;
}
[class*=animate].in-view.animate-fade-sequence:nth-of-type(5) {
  transition-delay: 0.625s;
}
[class*=animate].in-view.animate-fade-sequence:nth-of-type(6) {
  transition-delay: 0.75s;
}
[class*=animate].in-view.animate-fade-sequence:nth-of-type(7) {
  transition-delay: 0.875s;
}
[class*=animate].in-view.animate-fade-sequence:nth-of-type(8) {
  transition-delay: 1s;
}
[class*=animate].in-view.animate-fade-sequence:nth-of-type(9) {
  transition-delay: 1.125s;
}
[class*=animate].in-view.animate-fade-sequence:nth-of-type(10) {
  transition-delay: 1.25s;
}
[class*=animate].in-view.animate-up, [class*=animate].in-view.animate-down, [class*=animate].in-view.animate-left, [class*=animate].in-view.animate-right {
  transform: translate(0);
}
[class*=animate].in-view.animate-zoomin, [class*=animate].in-view.animate-zoomout {
  transform: scale(1);
}
[class*=animate].in-view.animate-zoom-and-spin {
  transform: scale(1) rotate(0);
  transform-origin: 50% 50% !important;
}

.animate-fadein {
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  -ms-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.animate-left {
  transform: translateX(50px);
}
@media (max-width: 640px) {
  .animate-left {
    transform: translateX(0);
  }
}

.animate-right {
  transform: translateX(-50px);
}
@media (max-width: 640px) {
  .animate-right {
    transform: translateX(0);
  }
}

.animate-up {
  transform: translateY(50px);
}
@media (max-width: 640px) {
  .animate-up {
    transform: translateX(0);
  }
}

.animate-down {
  transform: translateY(-50px);
}
@media (max-width: 640px) {
  .animate-down {
    transform: translateX(0);
  }
}

.animate-zoomin {
  transform: scale(0.85);
}

.animate-zoomout {
  transform: scale(1.5);
}

.animate-zoom-and-spin {
  transform: scale(0.65) rotate(-90deg);
  transform-origin: 50% 50% !important;
}

.in-view {
  opacity: 1;
}

.animate-spin {
  animation: spin-90 1s ease-in-out forwards;
}

.boxbtn, .boxbtn:link, .boxbtn:visited {
  font-family: "din-2014", Arial, Helvetica, sans-serif;
  font-weight: 400;
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.125rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  opacity: 1;
  padding: 0.85rem 1.25rem 0.75rem;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  color: #ffffff;
  background-color: #571d0c;
  cursor: pointer;
  -webkit-transition: color 0.5s ease, background-color 0.5s ease;
  -moz-transition: color 0.5s ease, background-color 0.5s ease;
  -ms-transition: color 0.5s ease, background-color 0.5s ease;
  -o-transition: color 0.5s ease, background-color 0.5s ease;
  transition: color 0.5s ease, background-color 0.5s ease;
}
.boxbtn.with-arrow > span, .boxbtn:link.with-arrow > span, .boxbtn:visited.with-arrow > span {
  display: inline;
}
.boxbtn.with-arrow > span::after, .boxbtn:link.with-arrow > span::after, .boxbtn:visited.with-arrow > span::after {
  font-family: "FontAwesome";
  content: "\f105";
  display: inline;
  margin-left: 0.5rem;
  font-size: 0.9em;
  vertical-align: 0.05em;
  -webkit-transition: transform 0.25s ease;
  -moz-transition: transform 0.25s ease;
  -ms-transition: transform 0.25s ease;
  -o-transition: transform 0.25s ease;
  transition: transform 0.25s ease;
}
.boxbtn.with-arrow > span::before, .boxbtn:link.with-arrow > span::before, .boxbtn:visited.with-arrow > span::before {
  content: none;
  display: none;
  margin: 0;
}
.boxbtn.with-arrow:hover > span::after, .boxbtn:link.with-arrow:hover > span::after, .boxbtn:visited.with-arrow:hover > span::after {
  transform: translateX(0.25rem);
}
.boxbtn.with-arrow.reverse > span::before, .boxbtn:link.with-arrow.reverse > span::before, .boxbtn:visited.with-arrow.reverse > span::before {
  font-family: "FontAwesome";
  content: "\f104";
  display: inline;
  margin-right: 0.5rem;
  margin-left: 0;
  font-size: 0.9em;
  vertical-align: 0.05em;
  -webkit-transition: transform 0.25s ease;
  -moz-transition: transform 0.25s ease;
  -ms-transition: transform 0.25s ease;
  -o-transition: transform 0.25s ease;
  transition: transform 0.25s ease;
}
.boxbtn.with-arrow.reverse > span::after, .boxbtn:link.with-arrow.reverse > span::after, .boxbtn:visited.with-arrow.reverse > span::after {
  content: none;
  display: none;
  margin: 0;
}
.boxbtn.with-arrow.reverse:hover > span::before, .boxbtn:link.with-arrow.reverse:hover > span::before, .boxbtn:visited.with-arrow.reverse:hover > span::before {
  transform: translateX(-0.25rem);
}
.boxbtn:hover, .boxbtn:link:hover, .boxbtn:visited:hover {
  background-color: rgb(48.5227272727, 42.9772727273, 44.3636363636);
}
.boxbtn.bgbase, .boxbtn:link.bgbase, .boxbtn:visited.bgbase {
  color: #ffffff;
  background-color: rgb(64.5909090909, 21.5303030303, 8.9090909091);
  border: 0;
}
.boxbtn.bgbase:hover, .boxbtn:link.bgbase:hover, .boxbtn:visited.bgbase:hover {
  background-color: rgb(21.4772727273, 19.0227272727, 19.6363636364);
}
.boxbtn.bgprimary, .boxbtn:link.bgprimary, .boxbtn:visited.bgprimary {
  color: #ffffff;
  background-color: #571d0c;
  border: 0;
}
.boxbtn.bgprimary:hover, .boxbtn:link.bgprimary:hover, .boxbtn:visited.bgprimary:hover {
  background-color: rgb(64.5909090909, 21.5303030303, 8.9090909091);
}
.boxbtn.bgsecondary, .boxbtn:link.bgsecondary, .boxbtn:visited.bgsecondary {
  color: #231f20;
  background-color: #c4b681;
  border: 0;
}
.boxbtn.bgsecondary:hover, .boxbtn:link.bgsecondary:hover, .boxbtn:visited.bgsecondary:hover {
  background-color: rgb(187.8675675676, 171.9378378378, 111.6324324324);
}
.boxbtn.bgtertiary, .boxbtn:link.bgtertiary, .boxbtn:visited.bgtertiary {
  color: #231f20;
  background-color: #505f2d;
  border: 0;
}
.boxbtn.bgtertiary:hover, .boxbtn:link.bgtertiary:hover, .boxbtn:visited.bgtertiary:hover {
  background-color: rgb(65.4285714286, 77.6964285714, 36.8035714286);
}
.boxbtn.bgsubdued, .boxbtn:link.bgsubdued, .boxbtn:visited.bgsubdued {
  color: #231f20;
  background-color: #f9f8f0;
  border: 0;
}
.boxbtn.bgsubdued:hover, .boxbtn:link.bgsubdued:hover, .boxbtn:visited.bgsubdued:hover {
  background-color: rgb(187.8675675676, 171.9378378378, 111.6324324324);
}
.boxbtn.bgwhite, .boxbtn:link.bgwhite, .boxbtn:visited.bgwhite {
  color: #231f20;
  background-color: #ffffff;
  border: 0;
}
.boxbtn.bgwhite:hover, .boxbtn:link.bgwhite:hover, .boxbtn:visited.bgwhite:hover {
  background-color: #f9f8f0;
}
.boxbtn.bgaccent, .boxbtn:link.bgaccent, .boxbtn:visited.bgaccent {
  color: #ffffff;
  background-color: #c7900f;
  border: 0;
}
.boxbtn.bgaccent:hover, .boxbtn:link.bgaccent:hover, .boxbtn:visited.bgaccent:hover {
  background-color: rgb(222.7126168224, 161.1588785047, 16.7873831776);
}

.arrowlink, a.arrowlink:link, a.arrowlink:visited {
  position: relative;
  display: inline-block;
  text-decoration: none;
  line-height: 1.125em;
  text-wrap: wrap;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.arrowlink:after, a.arrowlink:link:after, a.arrowlink:visited:after {
  font-family: "FontAwesome";
  content: " \f105";
  display: inline;
  position: relative;
  margin: 0 0.25em 0 0;
  margin-top: 0.2em;
  margin-bottom: 0;
  font-size: 0.7em;
  white-space: nowrap;
  will-change: margin;
  -webkit-transition: margin 0.25s ease;
  -moz-transition: margin 0.25s ease;
  -ms-transition: margin 0.25s ease;
  -o-transition: margin 0.25s ease;
  transition: margin 0.25s ease;
}
.arrowlink.font-headline:after, .arrowlink.font-headline-light:after, .arrowlink.font-headline-bold:after, a.arrowlink:link.font-headline:after, a.arrowlink:link.font-headline-light:after, a.arrowlink:link.font-headline-bold:after, a.arrowlink:visited.font-headline:after, a.arrowlink:visited.font-headline-light:after, a.arrowlink:visited.font-headline-bold:after {
  margin-top: 0.125em;
  margin-bottom: 0.125em;
}
.arrowlink:hover, a.arrowlink:link:hover, a.arrowlink:visited:hover {
  opacity: 0.65;
}
.arrowlink:hover:after, a.arrowlink:link:hover:after, a.arrowlink:visited:hover:after {
  margin-left: 0.5em;
  margin-right: 0;
}
.arrowlink.reverse, a.arrowlink:link.reverse, a.arrowlink:visited.reverse {
  padding-right: 0;
}
.arrowlink.reverse:after, a.arrowlink:link.reverse:after, a.arrowlink:visited.reverse:after {
  display: none;
}
.arrowlink.reverse:before, a.arrowlink:link.reverse:before, a.arrowlink:visited.reverse:before {
  font-family: "FontAwesome";
  content: "\f104";
  display: inline-block;
  position: relative;
  margin: 0.25em;
  font-size: 0.9em;
  will-change: left, opacity;
  -webkit-transition: margin 0.25s ease;
  -moz-transition: margin 0.25s ease;
  -ms-transition: margin 0.25s ease;
  -o-transition: margin 0.25s ease;
  transition: margin 0.25s ease;
}
.arrowlink.reverse:hover, a.arrowlink:link.reverse:hover, a.arrowlink:visited.reverse:hover {
  opacity: 0.65;
}
.arrowlink.reverse:hover:before, a.arrowlink:link.reverse:hover:before, a.arrowlink:visited.reverse:hover:before {
  margin: 0 0.5em 0 0;
}
.arrowlink.up, a.arrowlink:link.up, a.arrowlink:visited.up {
  padding-right: 0;
  text-align: center;
}
.arrowlink.up:after, a.arrowlink:link.up:after, a.arrowlink:visited.up:after {
  display: none;
}
.arrowlink.up:before, a.arrowlink:link.up:before, a.arrowlink:visited.up:before {
  content: "";
  width: 0.5em;
  height: 0.4em;
  background-image: url("/wp-content/themes/client-theme/images/global/arrow-up.svg");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  bottom: 100%;
  margin: 0;
  -webkit-transition: bottom 0.3s ease;
  -moz-transition: bottom 0.3s ease;
  -ms-transition: bottom 0.3s ease;
  -o-transition: bottom 0.3s ease;
  transition: bottom 0.3s ease;
}
.arrowlink.up:hover, a.arrowlink:link.up:hover, a.arrowlink:visited.up:hover {
  opacity: 0.65;
}
.arrowlink.up:hover:before, a.arrowlink:link.up:hover:before, a.arrowlink:visited.up:hover:before {
  bottom: calc(100% + 0.25rem);
}

/* Fonts */
.font-main {
  font-family: "din-2014", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.font-main-bold {
  font-family: "din-2014", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.font-main-light {
  font-family: "din-2014", Arial, Helvetica, sans-serif;
  font-weight: 300;
}

.font-headline {
  font-family: "Aldivaro", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
}

.font-headline-bold {
  font-family: "Aldivaro", Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
}

.font-headline-light {
  font-family: "Aldivaro", Georgia, "Times New Roman", Times, serif;
  font-weight: 300;
}

.bgwood {
  background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("/wp-content/uploads/2026/06/wood-texture.jpg");
  background-repeat: repeat;
  background-position: center top;
  background-size: 40%;
}

.bgwhite {
  background-color: #ffffff;
}

.bgblack {
  background-color: #000000;
}

.bgbase {
  background-color: #231f20;
}

.bgbase-dark {
  background-color: rgb(21.4772727273, 19.0227272727, 19.6363636364);
}

.bgbase-darkest {
  background-color: rgb(7.9545454545, 7.0454545455, 7.2727272727);
}

.bgbase-light {
  background-color: rgb(48.5227272727, 42.9772727273, 44.3636363636);
}

.bgbase-lightest {
  background-color: rgb(62.0454545455, 54.9545454545, 56.7272727273);
}

.bgprimary {
  background-color: #571d0c;
}

.bgprimary-dark {
  background-color: rgb(64.5909090909, 21.5303030303, 8.9090909091);
}

.bgprimary-darkest {
  background-color: rgb(42.1818181818, 14.0606060606, 5.8181818182);
}

.bgprimary-light {
  background-color: rgb(109.4090909091, 36.4696969697, 15.0909090909);
}

.bgprimary-lightest {
  background-color: rgb(131.8181818182, 43.9393939394, 18.1818181818);
}

.bgsecondary {
  background-color: #c4b681;
}

.bgsecondary-dark {
  background-color: rgb(187.8675675676, 171.9378378378, 111.6324324324);
}

.bgsecondary-darkest {
  background-color: rgb(179.7351351351, 161.8756756757, 94.2648648649);
}

.bgsecondary-light {
  background-color: rgb(204.1324324324, 192.0621621622, 146.3675675676);
}

.bgsecondary-lightest {
  background-color: rgb(212.2648648649, 202.1243243243, 163.7351351351);
}

.bgtertiary {
  background-color: #505f2d;
}

.bgtertiary-dark {
  background-color: rgb(65.4285714286, 77.6964285714, 36.8035714286);
}

.bgtertiary-darkest {
  background-color: rgb(50.8571428571, 60.3928571429, 28.6071428571);
}

.bgtertiary-light {
  background-color: rgb(94.5714285714, 112.3035714286, 53.1964285714);
}

.bgtertiary-lightest {
  background-color: rgb(109.1428571429, 129.6071428571, 61.3928571429);
}

.bgaccent {
  background-color: #c7900f;
}

.bgaccent-dark {
  background-color: rgb(175.2873831776, 126.8411214953, 13.2126168224);
}

.bgaccent-darkest {
  background-color: rgb(151.5747663551, 109.6822429907, 11.4252336449);
}

.bgaccent-light {
  background-color: rgb(222.7126168224, 161.1588785047, 16.7873831776);
}

.bgaccent-lightest {
  background-color: rgb(237.8271028037, 174.8598130841, 27.1728971963);
}

.bgsubdued {
  background-color: #f9f8f0;
}

.bgprimary-trans {
  background-color: rgba(87, 29, 12, 0.95);
}

/* Text Color */
.twhite, a.twhite {
  color: #ffffff;
}

.tblack, a.tblack {
  color: #000000;
}

.tbase, a.tbase {
  color: #231f20;
}

.tbase-dark, a.tbase-dark {
  color: rgb(21.4772727273, 19.0227272727, 19.6363636364);
}

.tbase-darkest, a.tbase-darkest {
  color: rgb(7.9545454545, 7.0454545455, 7.2727272727);
}

.tbase-light, a.tbase-light {
  color: rgb(48.5227272727, 42.9772727273, 44.3636363636);
}

.tbase-lightest, a.tbase-lightest {
  color: rgb(62.0454545455, 54.9545454545, 56.7272727273);
}

.tprimary, a.tprimary {
  color: #571d0c;
}

.tprimary-dark, a.tprimary-dark {
  color: rgb(64.5909090909, 21.5303030303, 8.9090909091);
}

.tprimary-darkest, a.tprimary-darkest {
  color: rgb(42.1818181818, 14.0606060606, 5.8181818182);
}

.tprimary-light, a.tprimary-light {
  color: rgb(109.4090909091, 36.4696969697, 15.0909090909);
}

.tprimary-lightest, a.tprimary-lightest {
  color: rgb(131.8181818182, 43.9393939394, 18.1818181818);
}

.tsecondary, a.tsecondary {
  color: #c4b681;
}

.tsecondary-dark, a.tsecondary-dark {
  color: rgb(187.8675675676, 171.9378378378, 111.6324324324);
}

.tsecondary-darkest, a.tsecondary-darkest {
  color: rgb(179.7351351351, 161.8756756757, 94.2648648649);
}

.tsecondary-light, a.tsecondary-light {
  color: rgb(204.1324324324, 192.0621621622, 146.3675675676);
}

.tsecondary-lightest, a.tsecondary-lightest {
  color: rgb(212.2648648649, 202.1243243243, 163.7351351351);
}

.ttertiary, a.ttertiary {
  color: #505f2d;
}

.ttertiary-dark, a.ttertiary-dark {
  color: rgb(65.4285714286, 77.6964285714, 36.8035714286);
}

.ttertiary-darkest, a.ttertiary-darkest {
  color: rgb(50.8571428571, 60.3928571429, 28.6071428571);
}

.ttertiary-light, a.ttertiary-light {
  color: rgb(94.5714285714, 112.3035714286, 53.1964285714);
}

.ttertiary-lightest, a.ttertiary-lightest {
  color: rgb(109.1428571429, 129.6071428571, 61.3928571429);
}

.taccent, a.taccent {
  color: #c7900f;
}

.taccent-dark, a.taccent-dark {
  color: rgb(175.2873831776, 126.8411214953, 13.2126168224);
}

.taccent-darkest, a.taccent-darkest {
  color: rgb(151.5747663551, 109.6822429907, 11.4252336449);
}

.taccent-light, a.taccent-light {
  color: rgb(222.7126168224, 161.1588785047, 16.7873831776);
}

.taccent-lightest, a.taccent-lightest {
  color: rgb(237.8271028037, 174.8598130841, 27.1728971963);
}

.tsubdued, a.tsubdued {
  color: #f9f8f0;
}

strong {
  font-weight: 500;
}

.tlarge {
  font-size: 125%;
}

.tlarger {
  font-size: 150%;
}

.nofade {
  opacity: 1 !important;
  visibility: 1 !important;
}

.multiply {
  mix-blend-mode: multiply;
}

::selection {
  background-color: #000000;
  color: #ffffff;
}

::-moz-selection {
  background-color: #000000;
  color: #ffffff;
}

::-o-selection {
  background-color: #000000;
  color: #ffffff;
}

::-ms-selection {
  background-color: #000000;
  color: #ffffff;
}

::-webkit-selection {
  background-color: #000000;
  color: #ffffff;
}

.cleanlist {
  margin: 0 0 1em;
  padding: 0;
}
.cleanlist h2 {
  display: block;
  font-size: 1em;
  margin: 0 0 0.5em -15px;
  padding: 0;
}
.cleanlist li {
  font-size: 1.25em;
  line-height: 1.125em;
  margin: 0 0 0.5em;
  padding: 0.25em 0;
}
.cleanlist li ul {
  margin: 1em 0 0 1em;
  padding: 0;
}
.cleanlist li ul li {
  font-size: 1em;
  line-height: 1.125em;
  margin: 0 0 0.5em;
  padding: 0.25em 0;
}

.boxheight, .boxheight-slim {
  height: 65vh;
  min-height: 550px;
}
@media (max-width: 1248px) {
  .boxheight, .boxheight-slim {
    height: 80vh;
  }
}
@media (max-width: 1024px) {
  .boxheight, .boxheight-slim {
    height: 75vh;
  }
}
@media (max-width: 768px) {
  .boxheight, .boxheight-slim {
    height: auto;
    min-height: 0;
  }
}

.boxheight-slim {
  height: 40vh;
  min-height: 425px;
}

.fullheight {
  height: 88vh;
  min-height: 500px;
}
@media (max-width: 768px) {
  .fullheight {
    height: auto;
    min-height: 0;
  }
}
@media (max-width: 768px) {
  .fullheight.mh-450 {
    min-height: 450px;
  }
}
@media (max-width: 768px) {
  .fullheight.mh-350 {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .mobile-height {
    height: 450px !important;
  }
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

#uplink {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: fixed;
  right: 2em;
  bottom: -100px;
  z-index: 2000;
  color: rgba(0, 0, 0, 0.6);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.25);
  -o-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.25);
  -webkit-transition: background-color 0.5s ease, bottom 0.5s ease;
  -moz-transition: background-color 0.5s ease, bottom 0.5s ease;
  -ms-transition: background-color 0.5s ease, bottom 0.5s ease;
  -o-transition: background-color 0.5s ease, bottom 0.5s ease;
  transition: background-color 0.5s ease, bottom 0.5s ease;
}
#uplink.up {
  bottom: 3em;
}

#uplink:hover {
  background-color: rgb(255, 255, 255);
}

.secnav {
  display: block;
  text-align: center;
  min-height: 75px;
}
.secnav li {
  display: inline-block;
  margin: 0.75rem 0.5rem;
}
@media (max-width: 640px) {
  .secnav li {
    width: 100%;
    max-width: none;
  }
}
.secnav li a {
  font-family: "din-2014", Arial, Helvetica, sans-serif;
  font-weight: 400;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 1;
  padding: 0.85rem 1.75rem 0.75rem;
  color: #231f20;
  background-color: rgba(199, 144, 15, 0);
  border: 1px solid #231f20;
  position: relative;
  min-width: 200px;
  cursor: pointer;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease, border-bottom-width 0.2s ease;
  -moz-transition: color 0.2s ease, background-color 0.2s ease, border-bottom-width 0.2s ease;
  -ms-transition: color 0.2s ease, background-color 0.2s ease, border-bottom-width 0.2s ease;
  -o-transition: color 0.2s ease, background-color 0.2s ease, border-bottom-width 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease, border-bottom-width 0.2s ease;
}
.secnav li a:hover, .secnav li a:active {
  background-color: rgba(199, 144, 15, 0.1);
  border-color: #c7900f;
}
.secnav li a.active {
  background-color: rgba(199, 144, 15, 0.1);
  border-color: #c7900f;
  border-bottom-width: 5px;
}
.secnav li.active > a {
  background-color: rgba(199, 144, 15, 0.1);
  border-color: #c7900f;
  border-bottom-width: 5px;
}

.mobile-menu-toggle {
  display: none;
}

.select.mobile-select {
  border: none;
}
@media (max-width: 640px) {
  .select.mobile-select {
    border: 1px solid #571d0c;
  }
}
.select.mobile-select .select__arrow {
  display: none;
  border-color: #571d0c transparent transparent transparent;
}
@media (max-width: 640px) {
  .select.mobile-select .select__arrow {
    display: block;
  }
}
.select.mobile-select ul select {
  color: #571d0c;
  text-indent: 1em;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  display: none;
}
@media (max-width: 640px) {
  .select.mobile-select ul select {
    display: inline-block;
  }
}
@media (max-width: 640px) {
  .select.mobile-select ul li {
    display: none;
  }
}

.secnav-title {
  display: inline-block;
  font-family: "din-2014", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.5em;
  line-height: 1em;
}
@media (max-width: 768px) {
  .secnav-title {
    font-size: 1.75em;
  }
}
@media (max-width: 640px) {
  .secnav-title {
    display: block;
    padding-top: 0.25em;
    font-size: 2em;
  }
}

.select.mobile-select {
  border: none;
  width: 90%;
  margin: 0 5%;
}
@media (max-width: 768px) {
  .select.mobile-select {
    border: 1px solid #571d0c;
  }
}
.select.mobile-select .select__arrow {
  display: none;
  top: 20px;
  border-color: #571d0c transparent transparent transparent;
}
@media (max-width: 768px) {
  .select.mobile-select .select__arrow {
    display: block;
  }
}
.select.mobile-select ul select {
  color: #571d0c;
  text-indent: 1em;
  text-transform: uppercase;
  font-size: 16px;
  border: 0;
  display: none;
}
@media (max-width: 768px) {
  .select.mobile-select ul select {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .select.mobile-select ul li {
    display: none;
  }
}

.default-content p {
  margin-bottom: 1rem;
}
.default-content p:last-child {
  margin-bottom: 0;
}
.default-content p a {
  color: inherit;
}
.default-content p a:hover {
  opacity: 0.65;
}
.default-content h1,
.default-content h2,
.default-content h3,
.default-content h4,
.default-content h5,
.default-content h6 {
  line-height: 1.25em;
  margin-bottom: 1.5rem;
}
.default-content ul,
.default-content ol {
  margin: 0;
  list-style: none;
  padding-left: 1em;
  font-family: "din-2014", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.25em;
  text-indent: -1.25em;
}
.default-content ul li,
.default-content ol li {
  margin: 0px 0px 1rem 0px;
  padding: 0px 0px 0px 0px;
  text-align: left;
}
.default-content ul li:before,
.default-content ol li:before {
  content: "• ";
  padding-right: 0.75rem;
  font-size: 1.5rem;
  color: #c4b681;
}
.default-content ul li a,
.default-content ol li a {
  color: inherit;
}
.default-content ul li a:hover,
.default-content ol li a:hover {
  opacity: 0.65;
}
.default-content ul li.no-bullet:before,
.default-content ol li.no-bullet:before {
  opacity: 0 !important;
}
.default-content ul ul,
.default-content ul ol,
.default-content ol ul,
.default-content ol ol {
  margin: 0;
  padding: 0 2rem 0 2rem;
  list-style: none;
  margin-left: 0;
  padding-left: 2rem;
  text-indent: -1.75rem;
}
.default-content ul ul li,
.default-content ul ol li,
.default-content ol ul li,
.default-content ol ol li {
  margin: 0px 0px 10px 0px;
  padding: 0px 0px 0px 0px;
  font-size: 1.25rem;
  line-height: 1em;
}
.default-content ul ul li:before,
.default-content ul ol li:before,
.default-content ol ul li:before,
.default-content ol ol li:before {
  content: " ";
  padding-right: 1rem;
}
.default-content ol {
  counter-reset: list-nums;
}
.default-content ol li {
  counter-increment: list-nums;
}
.default-content ol li:before {
  content: counter(list-nums) ".";
}
.default-content blockquote {
  font-weight: "din-2014", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  max-width: 600px;
  display: inline-block;
  line-height: 1.5rem;
  position: relative;
  margin: 0;
  padding: 0.5rem;
}
.default-content blockquote:before, .default-content blockquote:after {
  position: absolute;
  color: #c4b681;
  font-size: 8rem;
  width: 4rem;
  height: 4rem;
}
.default-content blockquote:before {
  content: "“";
  left: -5rem;
  top: -2rem;
}
.default-content blockquote:after {
  content: "”";
  right: -5rem;
  bottom: 1rem;
}
.default-content blockquote cite {
  display: block;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 85%;
}

.privacy-policy .default-content ul, .privacy-policy .default-content ol {
  margin-bottom: 1.5rem;
}
.privacy-policy .default-content ul ul, .privacy-policy .default-content ol ul {
  text-indent: 0;
}
.privacy-policy .default-content ul ul li, .privacy-policy .default-content ol ul li {
  list-style-type: disc;
  line-height: 1.25em;
}
.privacy-policy .default-content ul ul li:before, .privacy-policy .default-content ol ul li:before {
  display: none;
}

.divider,
.divider-slim {
  position: relative;
  width: 100%;
  height: 4rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .divider,
  .divider-slim {
    height: 3rem;
  }
}

.divider-slim {
  height: 2rem;
}

.hideme {
  display: none;
}

.hideme-important {
  display: none !important;
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none;
  }
}

.imgloader,
.videoloader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 3em;
  color: #ffffff;
}

.offscreen, .sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.split-list ul {
  padding-right: 2rem;
}
@media (max-width: 768px) {
  .split-list ul {
    padding-right: 0;
  }
}

ul#condo-list li,
ul#condo-list-2 li {
  line-height: 1.25em;
}

.arrow-icons {
  width: 250px;
  position: absolute;
  z-index: 600;
}
@media (max-width: 768px) {
  .arrow-icons {
    width: 150px;
  }
}
.arrow-icons img {
  position: absolute;
  top: 0;
  left: 0;
}
.arrow-icons img:first-of-type {
  position: relative;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  STRUCTURE
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
header,
footer,
section {
  clear: both;
  width: 100%;
  position: relative;
}

.need-content {
  padding: 8rem 1rem;
}
.need-content h2 {
  font-size: 3rem;
  font-family: "din-2014", Arial, Helvetica, sans-serif;
  color: #e0218a;
}

.wrapper, .wrapper-full, .wrapper-wide, .wrapper-xwide, .wrapper-slim {
  max-width: 980px;
  width: calc(100% - 2rem);
  margin: 0 auto;
  position: relative;
}
.wrapper.with-gap, .wrapper.inset, .wrapper-full.with-gap, .wrapper-full.inset, .wrapper-wide.with-gap, .wrapper-wide.inset, .wrapper-xwide.with-gap, .wrapper-xwide.inset, .wrapper-slim.with-gap, .wrapper-slim.inset {
  width: calc(100% - 8rem);
}
@media (max-width: 768px) {
  .wrapper.with-gap, .wrapper.inset, .wrapper-full.with-gap, .wrapper-full.inset, .wrapper-wide.with-gap, .wrapper-wide.inset, .wrapper-xwide.with-gap, .wrapper-xwide.inset, .wrapper-slim.with-gap, .wrapper-slim.inset {
    width: calc(100% - 3rem);
  }
}
.wrapper.with-half-gap, .wrapper-full.with-half-gap, .wrapper-wide.with-half-gap, .wrapper-xwide.with-half-gap, .wrapper-slim.with-half-gap {
  width: calc(100% - 3rem);
}
@media (max-width: 768px) {
  .wrapper.with-half-gap, .wrapper-full.with-half-gap, .wrapper-wide.with-half-gap, .wrapper-xwide.with-half-gap, .wrapper-slim.with-half-gap {
    width: calc(100% - 2rem);
  }
}

.wrapper-full {
  width: 100%;
  max-width: none;
}

.wrapper-wide {
  max-width: 1200px;
}

.wrapper-xwide {
  max-width: 1600px;
}

.wrapper-slim {
  max-width: 600px;
}

.responsive-background-image {
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.responsive-background-image img.responsive-image-placement {
  display: none;
}

[class*=section-title] {
  font-size: 2.25rem;
  line-height: 1.125em;
}
@media (max-width: 768px) {
  [class*=section-title] {
    font-size: 2.125rem;
  }
}
@media (max-width: 640px) {
  [class*=section-title] {
    font-size: 1.625rem;
  }
}
[class*=section-title].font-headline, [class*=section-title].font-headline-bold, [class*=section-title].font-headline-light {
  font-size: 2.25rem;
  line-height: 1.125em;
}
@media (max-width: 768px) {
  [class*=section-title].font-headline, [class*=section-title].font-headline-bold, [class*=section-title].font-headline-light {
    font-size: 2.125rem;
  }
}
@media (max-width: 640px) {
  [class*=section-title].font-headline, [class*=section-title].font-headline-bold, [class*=section-title].font-headline-light {
    font-size: 1.625rem;
  }
}

.section-title-large {
  font-size: 3.25rem;
}
@media (max-width: 768px) {
  .section-title-large {
    font-size: 3.125rem;
  }
}
@media (max-width: 640px) {
  .section-title-large {
    font-size: 2.625rem;
  }
}
.section-title-large.font-headline, .section-title-large.font-headline-bold, .section-title-large.font-headline-light {
  font-size: 3.25rem;
}
@media (max-width: 768px) {
  .section-title-large.font-headline, .section-title-large.font-headline-bold, .section-title-large.font-headline-light {
    font-size: 3.125rem;
  }
}
@media (max-width: 640px) {
  .section-title-large.font-headline, .section-title-large.font-headline-bold, .section-title-large.font-headline-light {
    font-size: 2.125rem;
  }
}

.section-title-medium {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .section-title-medium {
    font-size: 2.875rem;
  }
}
@media (max-width: 640px) {
  .section-title-medium {
    font-size: 2.25rem;
  }
}
.section-title-medium.font-headline, .section-title-medium.font-headline-bold, .section-title-medium.font-headline-light {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .section-title-medium.font-headline, .section-title-medium.font-headline-bold, .section-title-medium.font-headline-light {
    font-size: 2.875rem;
  }
}
@media (max-width: 640px) {
  .section-title-medium.font-headline, .section-title-medium.font-headline-bold, .section-title-medium.font-headline-light {
    font-size: 2.25rem;
  }
}

.section-title-small {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .section-title-small {
    font-size: 1.625rem;
  }
}
@media (max-width: 640px) {
  .section-title-small {
    font-size: 1.125rem;
  }
}
.section-title-small.font-headline, .section-title-small.font-headline-bold, .section-title-small.font-headline-light {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .section-title-small.font-headline, .section-title-small.font-headline-bold, .section-title-small.font-headline-light {
    font-size: 1.625rem;
  }
}
@media (max-width: 640px) {
  .section-title-small.font-headline, .section-title-small.font-headline-bold, .section-title-small.font-headline-light {
    font-size: 1.125rem;
  }
}

.section-title-xsmall {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .section-title-xsmall {
    font-size: 1.125rem;
  }
}
@media (max-width: 640px) {
  .section-title-xsmall {
    font-size: 0.875rem;
  }
}
.section-title-xsmall.font-headline, .section-title-xsmall.font-headline-bold, .section-title-xsmall.font-headline-light {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .section-title-xsmall.font-headline, .section-title-xsmall.font-headline-bold, .section-title-xsmall.font-headline-light {
    font-size: 1.125rem;
  }
}
@media (max-width: 640px) {
  .section-title-xsmall.font-headline, .section-title-xsmall.font-headline-bold, .section-title-xsmall.font-headline-light {
    font-size: 0.875rem;
  }
}

.section-title-xxsmall {
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  .section-title-xxsmall {
    font-size: 0.625rem;
  }
}
@media (max-width: 640px) {
  .section-title-xxsmall {
    font-size: 0.75rem;
  }
}
.section-title-xxsmall.font-headline, .section-title-xxsmall.font-headline-bold, .section-title-xxsmall.font-headline-light {
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  .section-title-xxsmall.font-headline, .section-title-xxsmall.font-headline-bold, .section-title-xxsmall.font-headline-light {
    font-size: 0.625rem;
  }
}
@media (max-width: 640px) {
  .section-title-xxsmall.font-headline, .section-title-xxsmall.font-headline-bold, .section-title-xxsmall.font-headline-light {
    font-size: 0.75rem;
  }
}

[class*=link-size] {
  line-height: 1.5em;
}

.link-size-large {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .link-size-large {
    font-size: 1.5rem;
  }
}
@media (max-width: 640px) {
  .link-size-large {
    font-size: 1.25rem;
  }
}
.link-size-large.font-headline, .link-size-large.font-headline-bold, .link-size-large.font-headline-light {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .link-size-large.font-headline, .link-size-large.font-headline-bold, .link-size-large.font-headline-light {
    font-size: 1.5rem;
  }
}
@media (max-width: 640px) {
  .link-size-large.font-headline, .link-size-large.font-headline-bold, .link-size-large.font-headline-light {
    font-size: 1.25rem;
  }
}

.link-size-medium {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .link-size-medium {
    font-size: 1.125rem;
  }
}
@media (max-width: 640px) {
  .link-size-medium {
    font-size: 1.125rem;
  }
}
.link-size-medium.font-headline, .link-size-medium.font-headline-bold, .link-size-medium.font-headline-light {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .link-size-medium.font-headline, .link-size-medium.font-headline-bold, .link-size-medium.font-headline-light {
    font-size: 1.125rem;
  }
}
@media (max-width: 640px) {
  .link-size-medium.font-headline, .link-size-medium.font-headline-bold, .link-size-medium.font-headline-light {
    font-size: 1.125rem;
  }
}

.link-size-default {
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .link-size-default {
    line-height: 1.25em;
  }
}
@media (max-width: 640px) {
  .link-size-default {
    font-size: 1.125rem;
  }
}
.link-size-default.font-headline, .link-size-default.font-headline-bold, .link-size-default.font-headline-light {
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .link-size-default.font-headline, .link-size-default.font-headline-bold, .link-size-default.font-headline-light {
    line-height: 1.25em;
  }
}
@media (max-width: 640px) {
  .link-size-default.font-headline, .link-size-default.font-headline-bold, .link-size-default.font-headline-light {
    font-size: 1.125rem;
  }
}

.link-size-small {
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .link-size-small {
    font-size: 1rem;
  }
}
.link-size-small.font-headline, .link-size-small.font-headline-bold, .link-size-small.font-headline-light {
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .link-size-small.font-headline, .link-size-small.font-headline-bold, .link-size-small.font-headline-light {
    font-size: 1rem;
  }
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#contain-all {
  width: 100%;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow: hidden;
}
#contain-all::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.4s ease;
}
#contain-all.menu-open {
  transform: translate3d(-450px, 0, 0);
  transform-style: preserve-3d;
}
@media (max-width: 450px) {
  #contain-all.menu-open {
    transform: translate3d(-100%, 0, 0);
  }
}
#contain-all.menu-open::after {
  opacity: 1;
}

.inline-links {
  margin: 2em 0 1em;
}
.inline-links a {
  display: inline-block;
  min-width: calc(33% - 2em);
  margin: 1em 1em 0;
}
@media (max-width: 768px) {
  .inline-links a {
    width: 90%;
    max-width: 500px;
  }
}

.fade-cover {
  background: linear-gradient(to right, #fff 0, rgba(255, 255, 255, 0) 100%);
}

/*******************
Skip to content (ADA)
*******************/
a.ada-skip-to-content {
  display: block;
  color: #ffffff;
  background-color: #000000;
  border-radius: 5px;
  text-align: center;
  font-size: 1.2em;
  width: 200px;
  height: auto;
  position: absolute;
  left: -999px;
  top: 5px;
  padding: 10px;
  overflow: hidden;
  z-index: -9999;
  text-decoration: none;
}
a.ada-skip-to-content:focus, a.ada-skip-to-content:active {
  left: 5px;
  z-index: 9999;
}

/*******************
Top Promo Bar
*******************/
.top-promo-bar {
  background-color: #571d0c;
  text-align: center;
  left: 0;
  top: 0;
  position: relative;
  z-index: 999999;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding: 0 3rem;
  opacity: 0;
  pointer-events: none;
  transition: grid-template-rows var(--promo-slide-duration, 1s) ease-out, padding var(--promo-slide-duration, 1s) ease-out, opacity 0.4s ease 0.15s;
}
@media (max-width: 640px) {
  .top-promo-bar {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.top-promo-bar.is-preparing {
  display: none;
}
.top-promo-bar.is-visible {
  grid-template-rows: 1fr;
  padding-top: 1rem;
  padding-bottom: 1rem;
  opacity: 1;
  pointer-events: auto;
}
.top-promo-bar .promo-slides {
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 5;
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.top-promo-bar .promo-slides.promo-slides-ready {
  display: grid;
  align-items: center;
  justify-items: center;
}
.top-promo-bar .promo-slides.promo-slides-ready .frame {
  grid-area: 1/1;
  width: 100%;
  display: flex !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s ease, visibility 1s ease;
}
.top-promo-bar .promo-slides.promo-slides-ready .frame.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.top-promo-bar .frame {
  display: flex !important;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin: 0 !important;
}
@media (max-width: 640px) {
  .top-promo-bar .frame {
    width: calc(100% - 50px);
  }
}
.top-promo-bar .frame span {
  display: inline;
}
.top-promo-bar .frame span.link-title {
  display: inline-block;
}
.top-promo-bar .frame a, .top-promo-bar .frame .spanlink {
  color: #ffffff !important;
  opacity: 1;
  text-decoration: none;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  padding: 0;
}
.top-promo-bar .frame a .promo-arrow, .top-promo-bar .frame .spanlink .promo-arrow {
  font-size: 0.7em;
  display: inline-block;
  vertical-align: middle;
  transition: margin-left 0.5s ease;
}
.top-promo-bar .frame a:hover, .top-promo-bar .frame .spanlink:hover {
  opacity: 0.65;
}
.top-promo-bar .frame a:hover .promo-arrow, .top-promo-bar .frame .spanlink:hover .promo-arrow {
  margin-left: 5px;
}
.top-promo-bar .promo-text {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
  padding: 0;
  text-align: center;
  display: block;
  flex: 1;
  box-sizing: border-box;
  -webkit-transition: color 0.5s ease;
  -moz-transition: color 0.5s ease;
  -ms-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
@media (max-width: 640px) {
  .top-promo-bar .promo-text {
    text-align: left;
    font-size: 1.25rem;
  }
}
.top-promo-bar .promo-text .promo-disclaimer {
  font-size: 0.85rem;
}
.top-promo-bar #top-promo-close {
  height: 15px;
  width: 15px;
  position: absolute;
  top: 1rem;
  transform: translateY(-50%);
  right: 2.5rem;
  cursor: pointer;
  z-index: 1000;
  -webkit-transition: 0.2s all ease-in-out;
  -moz-transition: 0.2s all ease-in-out;
  -ms-transition: 0.2s all ease-in-out;
  -o-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}
@media (max-width: 640px) {
  .top-promo-bar #top-promo-close {
    right: 1rem;
  }
}
.top-promo-bar #top-promo-close i {
  font-size: 1.5rem;
  color: #ffffff;
}
.top-promo-bar #top-promo-close:hover {
  opacity: 0.65 !important;
}

/*~~~~~~~~~~~~~~~~~*/
.hamburger,
.hamburger-menu-item {
  width: 40px;
  height: 23px;
  margin: 0;
  position: relative;
  display: inline-block;
}
.hamburger span,
.hamburger-menu-item span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #ffffff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 250ms ease-in-out;
  -moz-transition: 250ms ease-in-out;
  -o-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
}
.hamburger span:nth-child(1),
.hamburger-menu-item span:nth-child(1) {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  top: 0px;
}
.hamburger span:nth-child(2), .hamburger span:nth-child(3), .hamburger span:nth-child(4),
.hamburger-menu-item span:nth-child(2),
.hamburger-menu-item span:nth-child(3),
.hamburger-menu-item span:nth-child(4) {
  top: 8px;
}
.hamburger span:nth-child(4),
.hamburger-menu-item span:nth-child(4) {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  top: 16px;
}
.hamburger:hover span:nth-child(1), .hamburger:hover span:nth-child(4),
.hamburger-menu-item:hover span:nth-child(1),
.hamburger-menu-item:hover span:nth-child(4) {
  width: 100%;
}
.hamburger.menu-close span:nth-child(1),
.hamburger-menu-item.menu-close span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}
.hamburger.menu-close span:nth-child(2),
.hamburger-menu-item.menu-close span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hamburger.menu-close span:nth-child(3),
.hamburger-menu-item.menu-close span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.menu-close span:nth-child(4),
.hamburger-menu-item.menu-close span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

header {
  position: relative;
  left: 0;
  top: 0;
  z-index: 9999;
  overflow: visible;
}
header.no-transition {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
header.menu-fade-out {
  opacity: 0;
  transition: opacity 150ms ease;
}
header.menu-fade-in {
  opacity: 1;
  transition: opacity 300ms ease;
}

#header-spacer {
  height: 0;
}

.header-logo-holder {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  top: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: #ffffff;
  padding: 50px 2rem 1.58rem 2rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: flex;
  align-items: end;
  justify-content: center;
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .header-logo-holder {
    top: -75px;
    width: 225px;
    height: 225px;
  }
}
@media (max-width: 640px) {
  .header-logo-holder {
    top: -15px;
    width: 130px;
    height: 130px;
    padding: 50px 1rem 1.25rem 1rem;
  }
}
.header-logo-holder .header-logo {
  display: inline-block;
  width: 130px;
  height: auto;
  margin: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .header-logo-holder .header-logo {
    width: 100px;
  }
}
@media (max-width: 640px) {
  .header-logo-holder .header-logo {
    width: 80px;
  }
}

#header:has(#header-content.hide) {
  overflow: hidden;
}

ul.header-social li,
ul.footer-social li,
ul.news-social li {
  display: inline-block;
  list-style: none;
  margin: 0 0.5em;
}
ul.header-social li a,
ul.footer-social li a,
ul.news-social li a {
  color: #c7900f;
  font-size: 1.5rem;
  margin: 0;
  text-decoration: none;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
ul.header-social li a:hover,
ul.footer-social li a:hover,
ul.news-social li a:hover {
  opacity: 0.65;
}

#header-content {
  position: relative;
  background-color: #ffffff;
  transform: translateY(0);
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0);
  -ms-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0);
  -o-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0);
  -webkit-transition: height 0.5s ease, background-color 0.25s ease 0s, transform 0.75s ease;
  -moz-transition: height 0.5s ease, background-color 0.25s ease 0s, transform 0.75s ease;
  -ms-transition: height 0.5s ease, background-color 0.25s ease 0s, transform 0.75s ease;
  -o-transition: height 0.5s ease, background-color 0.25s ease 0s, transform 0.75s ease;
  transition: height 0.5s ease, background-color 0.25s ease 0s, transform 0.75s ease;
}
#header-content.hide {
  pointer-events: none;
  transform: translateY(-700px);
}
#header-content.hide #main-nav.mobile-nav {
  height: 0;
}
#header-content #header-content-holder {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
  text-align: right;
  width: calc(100% - 6rem);
  margin: 0 auto;
  background: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: height 0.5s ease, background-color 0.5s ease 0.25s;
  -moz-transition: height 0.5s ease, background-color 0.5s ease 0.25s;
  -ms-transition: height 0.5s ease, background-color 0.5s ease 0.25s;
  -o-transition: height 0.5s ease, background-color 0.5s ease 0.25s;
  transition: height 0.5s ease, background-color 0.5s ease 0.25s;
}
@media (max-width: 1600px) {
  #header-content #header-content-holder {
    width: calc(100% - 4rem);
  }
}
@media (max-width: 1024px) {
  #header-content #header-content-holder {
    width: calc(100% - 2rem);
  }
}
@media (max-width: 640px) {
  #header-content #header-content-holder {
    width: calc(100% - 1rem);
  }
}
#header-content #header-content-holder .header-left,
#header-content #header-content-holder .header-right {
  color: #505f2d;
  font-size: 1.25rem;
  line-height: 1em;
  font-weight: 400;
  text-transform: uppercase;
  text-align: left;
  text-wrap: balance;
  width: 29%;
}
@media (max-width: 768px) {
  #header-content #header-content-holder .header-left,
  #header-content #header-content-holder .header-right {
    font-size: 1.125rem;
  }
}
@media (max-width: 640px) {
  #header-content #header-content-holder .header-left,
  #header-content #header-content-holder .header-right {
    font-size: 0.85rem;
  }
}
#header-content #header-content-holder .header-left a,
#header-content #header-content-holder .header-right a {
  display: inline-block;
  color: #571d0c;
  text-decoration: none;
  text-wrap: balance;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#header-content #header-content-holder .header-left a:hover,
#header-content #header-content-holder .header-right a:hover {
  opacity: 0.65;
}
#header-content #header-content-holder .header-right {
  text-align: right;
}
#header-content #header-content-holder .mobile-nav-toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 0;
  padding: 0;
  z-index: 1100;
  color: #231f20;
  text-align: center;
  cursor: pointer;
  -webkit-transition: opacity 0.5s ease, top 0.5s ease, right 0.2s ease;
  -moz-transition: opacity 0.5s ease, top 0.5s ease, right 0.2s ease;
  -ms-transition: opacity 0.5s ease, top 0.5s ease, right 0.2s ease;
  -o-transition: opacity 0.5s ease, top 0.5s ease, right 0.2s ease;
  transition: opacity 0.5s ease, top 0.5s ease, right 0.2s ease;
}
#header-content #header-content-holder .mobile-nav-toggle:hover {
  cursor: pointer;
}
#header-content #header-content-holder .mobile-nav-toggle .toggle-text {
  display: block;
  color: #ffffff;
  font-family: "din-2014", Arial, Helvetica, sans-serif;
  font-size: 0.85em;
  font-weight: 400;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
  -webkit-transition: color 0.5s ease;
  -moz-transition: color 0.5s ease;
  -ms-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
#header-content.slim .header-logo-holder {
  top: -195px;
}
@media (max-width: 768px) {
  #header-content.slim .header-logo-holder {
    top: -137px;
  }
}
@media (max-width: 640px) {
  #header-content.slim .header-logo-holder {
    top: -60px;
  }
}
#header-content.open #header-content-holder .mobile-nav-toggle {
  opacity: 0;
  pointer-events: none;
}

#main-nav {
  display: none;
  position: absolute;
  top: 0;
  opacity: 1;
  width: calc(100% - 250px);
  right: 0;
  margin-top: 3.25rem;
  background: none;
  z-index: 1000;
  pointer-events: none;
  -webkit-transition: margin 0.5s ease;
  -moz-transition: margin 0.5s ease;
  -ms-transition: margin 0.5s ease;
  -o-transition: margin 0.5s ease;
  transition: margin 0.5s ease;
}
#main-nav ul {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  pointer-events: all;
}
#main-nav ul li {
  display: inline-block;
  background: none;
  margin: 0 0 0 3rem;
}
@media (max-width: 1150px) {
  #main-nav ul li {
    margin: 0 0 0 2.5rem;
  }
}
@media (max-width: 1065px) {
  #main-nav ul li {
    margin: 0 0 0 1.5rem;
  }
}
#main-nav ul li a {
  font-family: "Aldivaro", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5rem;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  padding: 0 0 5px 0;
  border: 0;
  color: #571d0c;
  text-decoration: none;
  background: none;
  white-space: nowrap;
}
#main-nav ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  opacity: 0;
  background-color: #571d0c;
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#main-nav ul li a:hover {
  opacity: 0.65;
}
#main-nav ul li a:not([href]) {
  pointer-events: none;
}
#main-nav ul li.active > a:after, #main-nav ul li.activeparent > a:after {
  opacity: 1;
}
#main-nav ul li {
  /* START DROP DOWN */
  /* END DROP DOWN */
}

#main-nav.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  width: 450px;
  max-width: 450px;
  padding: 5rem 0;
  margin-top: 0;
  background-color: #f9f8f0;
  height: 100vh;
  white-space: nowrap;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease, margin-top 0.4s ease;
  transform: translate3d(450px, 0, 0);
  visibility: hidden;
}
@media (max-width: 450px) {
  #main-nav.mobile-nav {
    width: 100%;
    transform: translate3d(100%, 0, 0);
  }
}
#main-nav.mobile-nav .mobile-nav-toggle {
  position: absolute;
  top: 2.5rem;
  right: 2rem;
  z-index: 1100;
  color: #231f20;
  text-align: center;
  opacity: 0;
  cursor: pointer;
}
#main-nav.mobile-nav .mobile-nav-toggle .hamburger span {
  background: #571d0c;
}
#main-nav.mobile-nav .mobile-nav-toggle .toggle-text {
  display: block;
  color: #571d0c;
  font-size: 0.85rem;
  font-weight: 400;
  font-family: "din-2014", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}
#main-nav.mobile-nav.open {
  transform: translate3d(0, 0, 0);
  pointer-events: all;
  visibility: visible;
}
#main-nav.mobile-nav.open .mobile-nav-toggle {
  opacity: 1;
}
@media (max-height: 750px) {
  #main-nav.mobile-nav {
    align-items: flex-start !important;
  }
}
#main-nav.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  float: none;
  padding: 0.25rem 0;
}
#main-nav.mobile-nav li {
  position: relative;
  opacity: 0;
  width: 100%;
  margin: 0.5rem 0 3vh !important;
  text-align: center;
  display: block;
}
@media (max-height: 500px) {
  #main-nav.mobile-nav li {
    margin: 0.5rem 0 !important;
  }
}
@media (max-width: 640px) {
  #main-nav.mobile-nav li {
    margin: 0.6rem 0 !important;
  }
}
#main-nav.mobile-nav li a {
  opacity: 1;
}
#main-nav.mobile-nav li.activeparent > a {
  color: #c7900f;
}
#main-nav.mobile-nav li.activeparent > a:after {
  background-color: #c7900f;
  opacity: 1;
}
#main-nav.mobile-nav li.active > a {
  color: #c7900f;
}
#main-nav.mobile-nav li.active > a:after {
  background-color: #c7900f;
  opacity: 1;
}
#main-nav.mobile-nav li {
  /* START DROP DOWN */
}
#main-nav.mobile-nav li:has(ul) ul {
  opacity: 1 !important;
  position: relative !important;
  top: auto;
  left: auto;
  min-width: 0;
  background-color: #ffffff;
  padding: 20px 0;
  margin: 15px 0 0.75rem;
  max-width: none;
  max-height: none;
  overflow: hidden;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
@media (max-width: 640px) {
  #main-nav.mobile-nav li:has(ul) ul {
    padding: 10px 0;
  }
}
#main-nav.mobile-nav li:has(ul):hover ul {
  opacity: 1;
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
  right: auto !important;
  left: auto !important;
  transform: translate(0%, 0%) !important;
  -webkit-transform: translate(0%, 0%) !important;
  -moz-transform: translate(0%, 0%) !important;
  -ms-transform: translate(0%, 0%) !important;
  -o-transform: translate(0%, 0%) !important;
}
#main-nav.mobile-nav li:has(ul):hover ul li > a {
  color: #c4b681;
}
#main-nav.mobile-nav li:has(ul):hover ul li > a:before {
  opacity: 1;
}
#main-nav.mobile-nav li:has(ul) li a {
  color: #571d0c;
}
#main-nav.mobile-nav li:has(ul) li.activeparent > a {
  color: #571d0c;
}
#main-nav.mobile-nav li:has(ul) li.activeparent > a:before {
  width: 0;
  opacity: 0;
}
#main-nav.mobile-nav li:has(ul) li.activeparent > a:hover {
  color: #c4b681;
}
#main-nav.mobile-nav li:has(ul) li.activeparent > a:hover:before {
  width: 100%;
  opacity: 1;
}
#main-nav.mobile-nav li:has(ul) li.active > a {
  color: #c4b681;
}
#main-nav.mobile-nav li:has(ul) li.active > a:before {
  opacity: 1;
}
#main-nav.mobile-nav li {
  /* END DROP DOWN */
}
#main-nav.mobile-nav .fill {
  margin: 0;
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#main-nav.mobile-nav.open:before {
  opacity: 1;
  position: fixed;
}
#main-nav.mobile-nav.open li {
  display: block;
  opacity: 1;
}
#main-nav.mobile-nav.open .fill {
  opacity: 0.7;
}

body.fixed-nav #header-spacer {
  height: var(--header-bar-height, 75px);
}
body.fixed-nav #header-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0);
  -ms-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0);
  -o-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0);
}
body.fixed-nav #main-nav.mobile-nav {
  margin-top: 0 !important;
  height: 100vh !important;
}
body.fixed-nav #slider .top-gradient {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  width: 100% !important;
  z-index: 300 !important;
}

.mobile-nav-blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 499;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
}
.mobile-nav-blur-overlay.active {
  opacity: 1;
  visibility: visible;
}

.overlay {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  opacity: 0.4;
}

.section-content {
  position: relative;
  z-index: 1;
}

.top-video {
  background-color: #000000;
  height: 100%;
  overflow: hidden;
  padding: 0;
  position: relative;
  min-height: 500px;
}

.top-video iframe, .top-video object, .top-video embed, .top-video video, .top-video-bg {
  box-sizing: border-box;
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  width: 300.77777778vh;
  z-index: 1;
}

.parallax-rev,
.parallax-bg {
  height: 110% !important;
}

#slider {
  display: inherit;
  position: relative;
  min-height: 600px;
  height: 70vh;
  overflow: hidden;
  background-color: #000000;
  z-index: 0;
  margin: 0 auto;
  width: 100%;
  -webkit-transition: margin 0.5s ease;
  -moz-transition: margin 0.5s ease;
  -ms-transition: margin 0.5s ease;
  -o-transition: margin 0.5s ease;
  transition: margin 0.5s ease;
}
@media (max-width: 640px) {
  #slider {
    min-height: 400px !important;
    height: 500px !important;
  }
}
#slider .overlay {
  background-color: #b67319;
  z-index: 500;
  opacity: 0.5;
}
#slider .overlay2 {
  background-color: #b47f30;
  z-index: 501;
  opacity: 0.2;
  mix-blend-mode: multiply;
}
#slider .top-gradient {
  opacity: 1;
  position: absolute;
  width: 100%;
  height: 100px;
  top: 0;
  z-index: 300;
  background: 0 0;
  background: -moz-linear-gradient(bottom, transparent 0, rgba(0, 0, 0, 0.65) 100%);
  background: -webkit-linear-gradient(bottom, transparent 0, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(to top, transparent 0, rgba(0, 0, 0, 0.65) 100%);
  -webkit-transition: opacity 0.5s ease, height 0.5s ease;
  -moz-transition: opacity 0.5s ease, height 0.5s ease;
  -ms-transition: opacity 0.5s ease, height 0.5s ease;
  -o-transition: opacity 0.5s ease, height 0.5s ease;
  transition: opacity 0.5s ease, height 0.5s ease;
}
#slider .top-gradient.gosmall {
  height: 0;
  opacity: 0;
}
#slider .bottom-gradient {
  position: absolute;
  width: 100%;
  height: 70%;
  bottom: 0;
  z-index: 300;
  background: 0 0;
  background: -moz-linear-gradient(top, transparent 0, rgba(0, 0, 0, 0.65) 100%);
  background: -webkit-linear-gradient(top, transparent 0, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.65) 100%);
}
#slider .imgloader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 2em;
  color: #ffffff;
}
#slider .slider-title-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 600;
}
#slider .home-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 600;
  margin-top: 23px;
  font-size: clamp(2.5rem, 2.5rem + 2.1vw, 5.25rem);
  line-height: 1.125em;
}
@media screen and (max-height: 700px) {
  #slider .home-title {
    margin-top: 20px;
    font-size: clamp(1.75rem, 1.25rem + 2vw, 7vh);
  }
}
@media (max-width: 768px) {
  #slider .home-title {
    font-size: clamp(2.5rem, 2.5rem + 2.1vw, 5.25rem);
    margin-top: 15px;
  }
}
#slider .home-title-content {
  position: relative;
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
  line-height: 1;
}
#slider .home-title-content span {
  display: block;
}
#slider .home-title-content span.title-to-lines {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: "look-script", Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 0.875em;
}
#slider .home-title-content span.title-to-lines .title-line {
  display: block;
  flex-shrink: 0;
  width: 1.5em;
  height: 0.2em;
  position: relative;
}
#slider .home-title-content span.title-to-lines .title-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 0.07em;
  background-color: #ffffff;
  transform: translateY(-50%);
  clip-path: polygon(0.05em 0, 100% 0, 100% 100%, 0 100%);
}
#slider .home-title-content span.title-to-lines .title-line:last-child::before {
  clip-path: polygon(0 0, calc(100% - 0.05em) 0, 100% 100%, 0 100%);
}
#slider .home-title-content span.title-to-lines .title-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.2em;
  height: 0.2em;
  background-color: #ffffff;
  transform: translate(-50%, -50%) rotate(45deg);
}
#slider .home-title-content span.title-to-lines:first-of-type .title-line::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0.05em 100%);
}
#slider .home-title-content span.title-to-lines:first-of-type .title-line:last-child::before {
  clip-path: polygon(0 0, 100% 0, calc(100% - 0.05em) 100%, 0 100%);
}
#slider .home-title-content span.title-country {
  font-family: "Aldivaro", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0.25em 0 0.6em;
}
#slider .home-title-content span.title-contemporary {
  font-family: "din-2014", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.68em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.125em;
}
#slider .page-title {
  display: block;
  width: 100%;
  position: absolute;
  right: 2rem;
  bottom: 4rem;
  z-index: 600;
  background: none;
  text-align: center;
}
@media (max-width: 768px) {
  #slider .page-title {
    right: 1rem;
  }
}
#slider .page-title h1, #slider .page-title span {
  font-family: "din-2014", Arial, Helvetica, sans-serif;
  font-weight: 300;
  display: block;
  width: 100%;
  padding: 0 1rem;
  font-size: 3.5rem;
  line-height: 1.125em;
  color: #ffffff;
  text-align: right;
}
@media (max-width: 768px) {
  #slider .page-title h1, #slider .page-title span {
    font-size: 7vw;
  }
}
#slider div.slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 300;
}
#slider div.slide.parallax-rev {
  height: 100% !important;
}
#slider div.slide div {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: transform 6.5s linear;
}
#slider div.slide div.cover {
  top: 0;
  bottom: auto;
  height: auto;
  min-height: calc(100vh - var(--header-bar-height, 75px));
  background-size: cover;
  background-position: center center;
}
#slider div.slide.scale div {
  transform: scale(1.1);
}
#slider div.slide.fx1 div {
  transform-origin: bottom left;
}
#slider div.slide.fx2 div {
  transform-origin: top left;
}
#slider div.slide.fx3 div {
  transform-origin: top right;
}
#slider div.slide.fx4 div {
  transform-origin: bottom right;
}

body.home #slider,
body.landing #slider {
  min-height: 0;
  height: calc(100vh - var(--header-bar-height, 75px) - var(--promo-bar-height, 0px));
}
@media (max-width: 640px) {
  body.home #slider,
  body.landing #slider {
    min-height: 400px;
    height: 400px !important;
  }
  body.home #slider div.slide div.cover,
  body.landing #slider div.slide div.cover {
    min-height: 100%;
  }
}
body.home.promo-revealing #slider,
body.landing.promo-revealing #slider {
  transition: none !important;
}
body.home.promo-revealing #slider div.slide div,
body.landing.promo-revealing #slider div.slide div {
  transition: none !important;
}
body.home #intro .text-section-content,
body.landing #intro .text-section-content {
  grid-template-columns: auto 1fr;
}
@media (max-width: 1024px) {
  body.home #intro .text-section-content,
  body.landing #intro .text-section-content {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  body.home #intro .text-section-content .circle-heading,
  body.landing #intro .text-section-content .circle-heading {
    order: 2;
  }
  body.home #intro .text-section-content > .text-section-text:not(.circle-heading),
  body.landing #intro .text-section-content > .text-section-text:not(.circle-heading) {
    order: 1;
    align-self: start;
    justify-content: flex-start;
    margin-bottom: 0;
    text-align: center;
    text-wrap: balance;
  }
}
body.home #intro .circle-heading,
body.landing #intro .circle-heading {
  align-self: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 450px);
  max-width: 450px;
  aspect-ratio: 1;
  margin: 0 auto;
  padding: 2rem 1.75rem;
  border-radius: 50%;
  background-color: #95b493;
  color: #ffffff;
  font-family: "din-2014", Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  text-wrap: balance;
}
@media (max-width: 640px) {
  body.home #intro .circle-heading,
  body.landing #intro .circle-heading {
    max-width: 350px;
  }
}
body.home #intro .circle-heading::before,
body.landing #intro .circle-heading::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 3px dashed #505f2d;
  border-radius: 50%;
  pointer-events: none;
}
body.home #intro .circle-heading.text-section-text,
body.landing #intro .circle-heading.text-section-text {
  flex-shrink: 0;
}
body.home #intro .circle-heading.text-section-text .text-section-text-content,
body.landing #intro .circle-heading.text-section-text .text-section-text-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
}
body.home #landing-form .form-section-inner,
body.landing #landing-form .form-section-inner {
  border-top: 10px solid #c4b681;
}

#down-to-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  bottom: 0;
  z-index: 600;
  display: inline-block;
  height: 70px;
  width: 55px;
  background-color: #ffffff;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  #down-to-content {
    display: none !important;
  }
}
#down-to-content #down-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  cursor: pointer;
  width: 100%;
  padding-top: 10px;
}
#down-to-content #down-arrow i {
  padding: 0 0 10px;
  font-size: 2.5rem;
  font-weight: 300;
  color: #c7900f;
  transition: padding 0.5s ease;
}
#down-to-content #down-arrow:hover i {
  padding: 10px 0 0;
}

/* inline column max width */
.list-column {
  width: 100%;
  max-width: 600px;
  display: inline-block;
  text-align: center;
  padding: 1rem;
}
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  SUBHERO NAV
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.subhero-nav {
  position: relative;
  z-index: 4;
  text-align: center;
}
.subhero-nav .wrapper {
  max-width: 2500px;
}
.subhero-nav .menu-main-menu-container {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 1024px) {
  .subhero-nav .menu-main-menu-container {
    position: absolute;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: #c4b681;
  }
  .subhero-nav .menu-main-menu-container.subnav-open {
    max-height: 800px;
    padding-bottom: 1rem;
  }
}
@media (max-width: 1024px) {
  .subhero-nav {
    padding: 1rem 0 0;
  }
  .subhero-nav .wrapper {
    width: 100%;
  }
}
.subhero-nav ul.menu {
  font-size: 0;
}
.subhero-nav li {
  display: inline;
  margin: 0;
  line-height: 100%;
}
.subhero-nav li a {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  padding: 25px 20px 25px 16px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .subhero-nav li a {
    display: inline-block;
  }
}
.subhero-nav li.active a, .subhero-nav li.current-page-ancestor a {
  background-color: rgb(187.8675675676, 171.9378378378, 111.6324324324);
}
@media (max-width: 1024px) {
  .subhero-nav li {
    display: block;
  }
}
.subhero-nav ul {
  margin: 0;
  text-align: center;
}
.subhero-nav .subnav-mobile {
  font-family: "din-2014", Arial, Helvetica, sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  display: none;
  padding: 0 20px 1rem 0;
  position: relative;
}
@media (max-width: 1024px) {
  .subhero-nav .subnav-mobile {
    display: inline-block;
  }
}
.subhero-nav .subnav-mobile:after {
  content: url("/wp-content/themes/client-theme/images/global/icon-arrow-down-white.svg");
  position: absolute;
  top: 2px;
  right: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.subhero-nav .subnav-mobile:hover {
  cursor: pointer;
  color: #c7900f;
}
.subhero-nav .subnav-mobile.subnav-open:after {
  transform: rotate(-180deg);
}

.subhero-nav li a,
.subhero-nav a.subhero-link {
  position: relative;
  display: inline-block;
  font-size: 1.125rem;
  padding: 0 15px;
  line-height: 56px;
  text-align: center;
  vertical-align: middle;
  font-family: "din-2014", Arial, Helvetica, sans-serif;
}
.subhero-nav li a:hover,
.subhero-nav a.subhero-link:hover {
  background-color: rgb(179.7351351351, 161.8756756757, 94.2648648649);
}
@media (max-width: 1248px) {
  .subhero-nav li a,
  .subhero-nav a.subhero-link {
    font-size: 1rem;
  }
}
@media (max-width: 1024px) {
  .subhero-nav li a,
  .subhero-nav a.subhero-link {
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    line-height: 25px;
  }
  .subhero-nav li a:after,
  .subhero-nav a.subhero-link:after {
    display: none;
  }
}

.blog a.subhero-link {
  color: #ffffff;
}

a.subhero-link:last-of-type:after {
  display: none;
}

.subhero-nav li:last-of-type a:after {
  display: none;
}

.content-pad {
  padding: 3rem 0;
}

.subnav-child-pages {
  background-color: #ffffff;
  position: relative;
  z-index: 4;
  text-align: center;
}
.subnav-child-pages .wrapper {
  max-width: 2500px;
}
@media (max-width: 768px) {
  .subnav-child-pages {
    padding: 1rem 0;
  }
}
.subnav-child-pages li {
  display: inline-block;
  margin: 0;
  line-height: 100%;
}
.subnav-child-pages li a {
  font-size: 14px;
  display: block;
  color: #c7900f;
  padding: 25px 15px 25px 11px;
  line-height: 10px;
  font-family: "din-2014", Arial, Helvetica, sans-serif;
}
.subnav-child-pages li.active a {
  color: #571d0c;
}
.subnav-child-pages ul {
  margin: 0;
  text-align: center;
}

#main-content {
  position: relative;
  contain: paint;
  z-index: 1;
  background-color: #ffffff;
  transition: filter 0.4s ease;
  overflow: hidden;
}

.fpo:after {
  content: "FPO";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  font-size: clamp(4rem, 20vw, 8rem);
  font-weight: 700;
  font-family: "din-2014", Arial, Helvetica, sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  z-index: 200;
  color: fuchsia;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  FANCYBOX
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
div.fancybox-container {
  z-index: 99999;
}

div.fancybox-content {
  max-height: calc(100vh - 118px);
}

div.fancybox-controls {
  bottom: 0 !important;
}

div.fancybox-toolbar {
  opacity: 1 !important;
  visibility: visible !important;
}
div.fancybox-toolbar > button {
  display: none !important;
}
div.fancybox-toolbar .fancybox-button--close {
  right: 5px;
  top: 5px;
  display: block !important;
}

div.fancybox-caption {
  text-align: center;
  font-size: 1.125rem;
  font-family: "Aldivaro", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
}

div.fancybox-show-infobar fancybox-infobar {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  text-align: center !important;
  width: 100% !important;
}

div.fancybox-show-infobar .fancybox-button--right,
div.fancybox-show-infobar .fancybox-button--left {
  position: absolute !important;
  top: 49% !important;
  font-size: 2em !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}

div.fancybox-show-infobar .fancybox-button--right {
  right: 2% !important;
}

div.fancybox-show-infobar .fancybox-button--left {
  left: 2% !important;
}

div.fancybox-show-infobar .fancybox-button--left::after,
div.fancybox-show-infobar .fancybox-button--right::after {
  top: 15px !important;
  width: 15px !important;
  height: 15px !important;
  border-top: 4px solid currentColor !important;
  border-right: 4px solid currentColor !important;
}

div.fancybox-show-infobar .fancybox-button--right::after {
  right: 18px !important;
}

div.fancybox-show-infobar .fancybox-button--left::after {
  left: 18px !important;
}

div.fancybox-infobar__body {
  color: #ffffff;
}
div.fancybox-infobar__body .js-fancybox-index,
div.fancybox-infobar__body .js-fancybox-count {
  color: #ffffff;
}

button.fancybox-button:disabled {
  visibility: hidden !important;
  opacity: 0 !important;
}

img.fancybox-image {
  padding: 2em;
}
@media (max-width: 640px) {
  img.fancybox-image {
    padding: 1em;
  }
}

div.fancybox-navigation button.fancybox-button--arrow_left,
div.fancybox-navigation button.fancybox-button--arrow_right {
  opacity: 1 !important;
  visibility: visible;
  width: 90px;
  height: 120px;
}

.sansfill {
  position: fixed !important;
  top: -1000px !important;
  left: -1000px !important;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  PRIVACY POLICY
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
body.privacy-policy .default-content h1, body.privacy-policy .default-content h2, body.privacy-policy .default-content h3, body.privacy-policy .default-content h4, body.privacy-policy .default-content h3, body.privacy-policy .default-content h6 {
  font-family: "Aldivaro", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  FOOTER
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#above-footer {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.above-footer-hills {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  line-height: 0;
  transition: none !important;
}

.above-footer-hills-track {
  width: 130%;
  will-change: transform;
  transition: none !important;
}
.above-footer-hills-track img {
  display: block;
  width: 100%;
  height: auto;
}

.above-footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 2rem;
  padding-bottom: 27vw;
  text-align: left;
  padding: 4rem 0 28vw;
  border-top: 10px solid #c4b681;
}
@media (max-width: 768px) {
  .above-footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .above-footer-content {
    padding: 3rem 0 30vw;
  }
}

.footer-promo {
  justify-self: center;
}

.footer-promo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #c7900f;
  position: relative;
}
@media (max-width: 768px) {
  .footer-promo-content {
    width: 170px;
    height: 170px;
  }
}
@media (max-width: 1024px) {
  .footer-promo-content {
    width: 180px;
    height: 180px;
  }
}
.footer-promo-content::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px dashed #571d0c;
  border-radius: 50%;
  pointer-events: none;
}
.footer-promo-content h2 {
  display: block;
  margin: 0;
  padding: 0 0.85rem;
  font-family: "din-2014", Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer-promo-content h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .footer-promo-content h2 {
    font-size: 1.65rem;
  }
}
.footer-promo-content h2 span {
  display: block;
}

.footer-logo {
  justify-self: center;
  text-align: center;
}
.footer-logo img {
  display: block;
  width: auto;
  max-width: 175px;
  height: auto;
  margin: 0 auto;
}

#above-footer .footer-promo-text.address-block {
  justify-self: center;
  text-align: center;
}
#above-footer .footer-promo-text.address-block p {
  margin: 0;
  color: #505f2d;
}
#above-footer .footer-promo-text.address-block ul.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem 0 0;
  padding: 0;
}
#above-footer .footer-promo-text.address-block ul.footer-social li {
  margin: 0 0.4em;
}
#above-footer .footer-promo-text.address-block ul.footer-social li:first-child {
  margin-left: 0;
}
#above-footer .footer-promo-text.address-block ul.footer-social li a {
  color: #c4b681;
  font-size: 2rem;
}
#above-footer .footer-promo-text.address-block ul.footer-social li a:hover {
  opacity: 0.65;
}

@media (max-width: 640px) {
  #footer-image {
    height: 300px !important;
    max-height: 300px !important;
  }
}

.address-block .address-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem !important;
}
.address-block p {
  font-size: 1.25rem;
  line-height: 1.5em;
}
.address-block a,
.address-block .spanlink {
  text-decoration: none;
}
ul.footer-social {
  display: block;
  margin-top: 1rem;
}
ul.footer-social li {
  margin: 0 0.5em;
}
ul.footer-social li a {
  font-size: 1.75em;
}

footer .footer-legal {
  text-align: center;
}
footer .footer-legal .footer-legal-content {
  padding: 0;
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
}
footer .footer-legal .footer-legal-content .builder-logo {
  display: inline-block;
  text-align: left;
  flex-shrink: 0;
}
footer .footer-legal .footer-legal-content .builder-logo img {
  max-width: 200px;
}
footer .footer-legal .footer-legal-content a {
  opacity: 1;
  margin-left: 0.25rem;
  transition: opacity 0.5s ease;
}
footer .footer-legal .footer-legal-content a:hover {
  opacity: 0.65;
}
footer .footer-legal .footer-legal-content .copyright {
  position: relative;
  display: block;
  text-align: right;
  margin-top: 0;
  min-width: 0;
}
footer .footer-legal .footer-legal-content .copyright .c-icons {
  display: inline-block;
  color: #ffffff;
  margin-right: 0.5rem;
}
footer .footer-legal .footer-legal-content .copyright p {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1em;
  line-height: 1.5em;
  color: #ffffff;
  margin: 0;
  text-align: right;
}
@media (max-width: 640px) {
  footer .footer-legal .footer-legal-content .copyright p {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  footer .footer-legal .footer-legal-content .copyright .footer-links {
    display: block;
  }
}
footer .footer-legal .footer-broker-info p {
  font-size: 1em;
  line-height: 1.5em;
  color: #ffffff;
  margin: 1.5em 0;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  PRIVACY ALERT
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#privacy-alert {
  display: none;
  background-color: #c7900f;
  display: none;
  padding: 1rem 2rem;
  width: 100%;
  text-align: center;
  position: fixed;
  z-index: 5000;
  bottom: 0;
  -webkit-box-shadow: 0px 10px 25px 0px rgba(2, 2, 2, 0.5);
  -moz-box-shadow: 0px 10px 25px 0px rgba(2, 2, 2, 0.5);
  -ms-box-shadow: 0px 10px 25px 0px rgba(2, 2, 2, 0.5);
  -o-box-shadow: 0px 10px 25px 0px rgba(2, 2, 2, 0.5);
  box-shadow: 0px 10px 25px 0px rgba(2, 2, 2, 0.5);
}
@media (max-width: 640px) {
  #privacy-alert {
    padding: 1rem;
    text-align: center;
  }
}
#privacy-alert h2 {
  font-size: 18px;
  color: #ffffff;
  margin: 0;
  font-weight: 400;
  line-height: 1.5em;
  display: inline-block;
}
@media (max-width: 845px) {
  #privacy-alert h2 {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 1.5em;
  }
}
#privacy-alert h2 a:link, #privacy-alert h2 a:visited {
  color: #ffffff;
  text-decoration: underline;
}
#privacy-alert h2 a:link:hover, #privacy-alert h2 a:visited:hover {
  opacity: 0.65;
}
#privacy-alert #privacy-policy-agree {
  display: inline-block;
  text-decoration: none !important;
  padding: 0.5rem 1rem;
  color: #c4b681 !important;
  white-space: nowrap;
  cursor: pointer;
  opacity: 1;
  margin: 0 1em;
  background-color: #ffffff;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#privacy-alert #privacy-policy-agree:hover {
  opacity: 0.8;
}
@media (max-width: 845px) {
  #privacy-alert #privacy-policy-agree {
    margin: 1em 0 0;
  }
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  POPUP
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#fullpopup,
#fullpopupbg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999999999;
}

#fullpopup {
  display: none;
}

#fullpopupbg {
  background-color: rgba(0, 0, 0, 0.65);
}

#fullpopupbox {
  position: relative;
  margin: 0;
  padding: 5rem 3rem 3rem;
  background: #ffffff;
  text-align: center;
  z-index: 9999999999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(750px, 90vw);
  max-width: 90vw;
  min-width: fit-content;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-height: 90svh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
@media (max-width: 768px) {
  #fullpopupbox {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 92svh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 1rem 1rem;
  }
}
@media (max-width: 640px) {
  #fullpopupbox {
    padding: 2rem;
  }
}
@media (max-height: 500px) {
  #fullpopupbox {
    justify-content: flex-start;
  }
}

#fullpopupbox .popup-logo {
  flex: 0 0 180px;
  max-width: 180px;
  align-self: flex-start;
  margin-top: 0;
}
@media (max-width: 768px) {
  #fullpopupbox .popup-logo {
    flex: 0 0 auto;
    max-width: 200px;
    align-self: center;
    display: block;
    order: -1;
    margin: 0 auto 1rem;
    width: 160px;
    flex-shrink: 0;
  }
}
@media (max-width: 640px) {
  #fullpopupbox .popup-logo {
    max-width: 160px;
  }
}
#fullpopupbox .popup-logo .banner-logo,
#fullpopupbox .popup-logo img.banner-logo,
#fullpopupbox .popup-logo svg.banner-logo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
}

a#btn-x {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 7px 11px 5px;
  margin: 0;
  color: #c7900f;
  font-size: 2em;
  font-weight: 900;
  text-decoration: none;
  transition: color 0.2s ease;
}
a#btn-x:hover {
  color: #c4b681;
}

#fullpopuptext {
  color: #c4b681;
  flex: 1 1 auto;
  max-width: 560px;
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: center;
  margin-bottom: 0;
}
#fullpopuptext > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
#fullpopuptext h2 {
  font-family: "Aldivaro", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.125em;
  color: #c7900f;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  #fullpopuptext h2 {
    font-size: 1.25rem;
  }
}
#fullpopuptext p {
  color: #c4b681;
  font-size: 1.25rem;
  line-height: 1.125em;
}
#fullpopuptext a:not(.boxbtn) {
  color: #c4b681;
  text-decoration: underline;
}
#fullpopuptext .boxbtn {
  width: 250px;
  margin: 0 auto;
}
#fullpopuptext .popup-buttons {
  margin-bottom: 0;
}
#fullpopuptext .popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1rem;
}

/*******************************************************
 IOS
********************************************************/
@supports (-webkit-touch-callout: none) {
  * {
    background-attachment: scroll !important;
    -webkit-appearance: none;
  }
}
@media only screen and (device-width: 768px) {
  /* For general iPad layouts */
}
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* For portrait layouts only */
}
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* For landscape layouts only */
}
/*******************************************************
 IE 10+
********************************************************/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .select .select__arrow {
    display: none !important;
    left: -9999px !important;
  }
}

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