@charset "UTF-8";

/*  CSS Namespacing Legend - Based on https://csswizardry.com/2015/03/more-transparent-ui-code-with-namespaces/
--------------------------
    g-  'globals'        :   Pieces of UI globally available on the site. Making changes here are garaunteed to be seen anywhere on the site and are typically major pieces of UI.
    o-  'objects'        :   It may be used in any number of unrelated contexts to the one you can currently see it in. Making modifications to these types of class could potentially have knock-on effects in a lot of other unrelated places. Tread carefully.
    c-  'components'     :   Contextual specific piece of UI. All of the changes you make to its styles should be detectable in the context you’re currently looking at. Modifying these styles should be safe and have no side effects.
    l-  'layouts'        :   Layout specifc styles used for formatting and laying out specific blocks of content or compenents such as side bars, grids and so forth
    u-  'utilities'      :   It has a very specific role (often providing only one declaration) and should not be bound onto or changed. It can be reused and is not tied to any specific piece of UI. Classes just as `u-hide` or `u-active`
    is- / has-  'states' :   State management classes usually manipulated by JS. Would be used to like `.is-main-nav-open .c-child-component` when management styles based on the states of UI.
    js- 'JS binding'     :   Classes to bind to or reference with JS. Are not for styling. Used for stuff like `js-submit` where you would only use that class of on click events
--------------------------
*/
/* --------------------
 @@ Paths
-------------------- */
/* ----------
 @ External (Bourbon, Bootstrap) Utilities
---------- */
/* ----------
 @ Bourbon
---------- */
/* ----------
 @ Bootstrap Variables
---------- */
/* ----------
 @ Bootstrap Core
 Check base-theme/assets/scss/utilities/_config.scss for reference
---------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

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

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

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

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

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

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

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {

  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {

  .container,
  .container-sm,
  .container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1140px;
  }
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 0;
  max-width: 100%;
}

.row-cols-1>* {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2>* {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3>* {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.row-cols-4>* {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5>* {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6>* {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

  .row-cols-sm-1>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .row-cols-sm-4>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

  .row-cols-md-1>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .row-cols-md-4>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

  .row-cols-lg-1>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .row-cols-lg-4>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

  .row-cols-xl-1>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .row-cols-xl-4>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

/* ----------
 @ FontAwesome
---------- */
/* ----------
 @ Custom Utilities
---------- */
/* ----------
 @ Custom Variables
---------- */
/* --------------------
 @@ Project Specific Variables
-------------------- */
/* ----------
 @ Options
---------- */
/* ----------
 @ Colors
---------- */
/* ----------
 @ Typography
---------- */
/* ----------
 @ Layout
---------- */
/* ----------
 @ Custom Utilities
---------- */
/* Project specific mixins */
/* --------------------
 @@ Mixins
-------------------- */
/* ----------
 @ Maintain Aspect Ratio
	- *** requires that the element has an inner container element if there is inner content
	- $x => x portion of ratio
	- $y => y portion of ratio
    - $c => set to 'false' to skip :first-child styling
---------- */
/* ----------
 @ Background Image
	- Shortcut for linking images in the configured images folder
	- $i => image file name (relative to images folder)
	- $rest => any additional 'background' property shortcut declarations (ie: no-repeat)
---------- */
/* ----------
 @ Size
 	- Shortcut for setting height and width
 	- $width => width of element
 	- $height => height of element
 	- Single value will set both values (e.g. size(100%);
---------- */
/* --------------------
 @@ Functions
-------------------- */
/* ----------
 @ Color Get
 	- get value from the $theme-colors map
---------- */
/* ----------
 @ Breakpoint Get
 	- get value from the $grid-breakpoints map
 	- $type => 'max' | 'min', depending on media query type
---------- */
/* ----------
 @ Rems
	- convert pixels to rems
	- $p => pixel value
	- $b => base size (to use in formula) - defaults to $font-sizes root variable
---------- */
/* ----------
 @ Map Deep Get
 	- get value from nested maps
---------- */
/* ----------
 @ Weight Get
 	- get value from the $font-weights map
---------- */
/* --------------------
 @@ Importer Mixin

 Call this and pass in the components that you wish to load:
 ex: @mixin import-components(reset, base);

 Available components are:
 reset, base, wp-base
-------------------- */
/* ----------
     @ Basic Global Reset
    ---------- */
* {
  margin: 0;
  padding: 0;
  border: none;
}

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

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 !important;
  font-size: 112.5%;
}

html,
body {
  position: relative;
  height: 100%;
  min-height: 100%;
}

nav ul {
  list-style: none;
}

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

input,
select {
  vertical-align: middle;
}

button {
  background: none;
  cursor: pointer;
  border-radius: 0;
}

textarea {
  resize: vertical;
}

img {
  max-width: 100%;
}

.template,
template {
  display: none !important;
}

/* ----------
     @ Typography Reset - implement adjacent element margin-top axioms. Needs multiple additional rules to override bootstrap rules
    ---------- */

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0;
}

h1+h2,
h1+h3,
h1+h4,
h1+h5,
h1+h6,
h1+.h2,
h1+.h3,
h1+.h4,
h1+.h5,
h1+.h6,
h2+h2,
h2+h3,
h2+h4,
h2+h5,
h2+h6,
h2+.h2,
h2+.h3,
h2+.h4,
h2+.h5,
h2+.h6,
h3+h2,
h3+h3,
h3+h4,
h3+h5,
h3+h6,
h3+.h2,
h3+.h3,
h3+.h4,
h3+.h5,
h3+.h6,
h4+h2,
h4+h3,
h4+h4,
h4+h5,
h4+h6,
h4+.h2,
h4+.h3,
h4+.h4,
h4+.h5,
h4+.h6,
h5+h2,
h5+h3,
h5+h4,
h5+h5,
h5+h6,
h5+.h2,
h5+.h3,
h5+.h4,
h5+.h5,
h5+.h6,
h6+h2,
h6+h3,
h6+h4,
h6+h5,
h6+h6,
h6+.h2,
h6+.h3,
h6+.h4,
h6+.h5,
h6+.h6,
.h1+h2,
.h1+h3,
.h1+h4,
.h1+h5,
.h1+h6,
.h1+.h2,
.h1+.h3,
.h1+.h4,
.h1+.h5,
.h1+.h6,
.h2+h2,
.h2+h3,
.h2+h4,
.h2+h5,
.h2+h6,
.h2+.h2,
.h2+.h3,
.h2+.h4,
.h2+.h5,
.h2+.h6,
.h3+h2,
.h3+h3,
.h3+h4,
.h3+h5,
.h3+h6,
.h3+.h2,
.h3+.h3,
.h3+.h4,
.h3+.h5,
.h3+.h6,
.h4+h2,
.h4+h3,
.h4+h4,
.h4+h5,
.h4+h6,
.h4+.h2,
.h4+.h3,
.h4+.h4,
.h4+.h5,
.h4+.h6,
.h5+h2,
.h5+h3,
.h5+h4,
.h5+h5,
.h5+h6,
.h5+.h2,
.h5+.h3,
.h5+.h4,
.h5+.h5,
.h5+.h6,
.h6+h2,
.h6+h3,
.h6+h4,
.h6+h5,
.h6+h6,
.h6+.h2,
.h6+.h3,
.h6+.h4,
.h6+.h5,
.h6+.h6 {
  margin-top: 0;
}


ol,
ul,
dl,
address,
blockquote,
figure,
label,
pre {
  margin-bottom: 0;
}

.row>*,
.no-axiomatic-margin *+*,
.tooltipster-base,
.tooltipster-base *+*,
.gm-style *+*,
[data-dialog-location],
[data-autoform-error-holder],
.custom-dropdown *+*,
.custom-radio *+*,
.custom-checkbox *+*,
.pagination *+*,
br,
#_BH_frame {
  margin-top: 0;
}

/* ----------------------------------------------------------------------------
     @@@ Variables
    ---------------------------------------------------------------------------- */
/* ----------
     @ Layout
    ---------- */
/* ----------------------------------------------------------------------------
     @@@ Styles
    ---------------------------------------------------------------------------- */
/* --------------------------------------
     @ Global Snippets
    -------------------------------------- */
*,
*:before,
*:after {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

a,
button,
.btn,
body.gf-base-styles .gform_button {
  -webkit-transition: 0.15s color ease-in-out, 0.15s background ease-in-out, 0.15s opacity ease-in-out;
  transition: 0.15s color ease-in-out, 0.15s background ease-in-out, 0.15s opacity ease-in-out;
}

.iframe {
  position: relative;
  width: 100%;
  margin: 2rem 0;
}

.iframe:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.iframe> :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.iframe iframe {
  width: 100%;
  height: 100%;
}

::-ms-clear {
  display: none;
}

/* --------------------------------------
     @ Typography
    -------------------------------------- */
h1,
.h1 {
  font-size: 3.11111rem;
}

h2,
.h2 {
  font-size: 2.55556rem;
}

h3,
.h3 {
  font-size: 1.77778rem;
}

h4,
.h4 {
  font-size: 1.33333rem;
}

h5,
.h5 {
  font-size: 0.94444rem;
}

h6,
.h6 {
  font-size: 0.88889rem;
}

.lead {
  font-size: 1.27778rem;
}

blockquote {
  font-size: 2.22222rem;
}

/* ----------------------------------------------------------------------------
     @@@ Variables
    ---------------------------------------------------------------------------- */
/* ----------
     @ Colors
    ---------- */
/* ----------------------------------------------------------------------------
     @@@ Styles
    ---------------------------------------------------------------------------- */
/* ----------
     @ Misc
    ---------- */
#wpadminbar {
  margin-top: 0 !important;
  position: fixed !important;
}

/* ----------
     @ Layout
    ---------- */
img.alignleft,
img.alignright {
  margin-bottom: 2rem;
}

img.alignleft {
  float: left;
  margin-right: 2rem;
}

img.alignright {
  float: right;
  margin-left: 2rem;
}

@media only screen and (max-width: 576px) {

  img.alignleft,
  img.alignright {
    margin-left: 0;
    margin-right: 0;
    float: none;
    display: block;
  }
}

/* ----------
     @ Gravity Forms
    ---------- */
body.gf-base-styles .gform_button {
  font-weight: 700;
}

body.gf-base-styles .gfield,
body.gf-base-styles .gfield.gfield_error {
  vertical-align: top;
}

body.gf-base-styles .custom-radio,
body.gf-base-styles .gfield_checkbox>li {
  vertical-align: top;
}

body.gf-base-styles div.validation_error {
  color: #e27422;
  border-color: #e27422;
}

body.gf-base-styles li.gfield.gfield_error .gfield_label,
body.gf-base-styles li.gfield.gfield_error textarea,
body.gf-base-styles li.gfield.gfield_error .fake-dropdown [data-value],
body.gf-base-styles li.gfield.gfield_error input[type="text"],
body.gf-base-styles li.gfield.gfield_error input[type="email"],
body.gf-base-styles li.gfield.gfield_error input[type="number"] {
  border-color: #e27422;
}

body.gf-base-styles li.gfield.gfield_error .validation_message {
  color: #e27422;
}

@media only screen and (max-width: 576px) {

  body div.gform_wrapper .gfield,
  body div.gform_wrapper .gfield.gfield_error {
    padding-right: 0;
    width: 100% !important;
  }

  body div.gform_wrapper .gfield.small-field,
  body div.gform_wrapper .gfield.gfield_error.small-field {
    margin-top: -0.25em;
    margin-bottom: 0.75em;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1.25em;
  }
}

/* Styles */
/* ----------
 @ Global Snippets
---------- */
html {
  font-size: 112.5%;
  font-size: clamp(16px, 2vw, 112.5%);
}

body {
  font-family: brother-1816, Arial, sans-serif;
  font-size: 1rem;
  color: #253a38;
  background-color: #fff;
}

::-moz-selection {
  background: rgba(226, 116, 34, 0.25);
}

::selection {
  background: rgba(226, 116, 34, 0.25);
}

/* ----------
 @ Layout
---------- */
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  max-width: 1476px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.u-fixed-container,
.u-container-fixed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  height: 100%;
  max-width: 1476px;
}

main {
  margin: 0;
  overflow: hidden;
}

.u-content-spacer {
  margin-top: 7.5rem;
  margin-bottom: 7.5rem;
}

@media only screen and (max-width: 768px) {
  .u-content-spacer {
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }
}

/* ----------
 @ Typography
---------- */
a {
  color: #7a3562;
}

ul,
ol {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}

/* ----------
 @ Titles  */
.o-title,
.c-wysiwyg h1,
.c-wysiwyg h2,
.c-wysiwyg h3,
.c-wysiwyg h4,
.c-wysiwyg h5 {
  margin-top: 2rem;
  font-family: brother-1816, Arial, sans-serif;
}

.o-title+*,
.c-wysiwyg h1+*,
.c-wysiwyg h2+*,
.c-wysiwyg h3+*,
.c-wysiwyg h4+*,
.c-wysiwyg h5+* {
  margin-top: 1rem;
}

.o-title:first-child,
.c-wysiwyg h1:first-child,
.c-wysiwyg h2:first-child,
.c-wysiwyg h3:first-child,
.c-wysiwyg h4:first-child,
.c-wysiwyg h5:first-child {
  margin-top: 0;
}

.o-title--primary,
.c-wysiwyg h1 {
  font-size: 3.11111rem;
  line-height: 3.66667rem;
  font-weight: 800;
}

.o-title--secondary,
.c-wysiwyg h2 {
  font-size: 2.55556rem;
  line-height: 3.11111rem;
  font-weight: 800;
  color: #7a3562;
}

.o-title--tertiary,
.c-wysiwyg h3 {
  font-size: 1.77778rem;
  line-height: 2.33333rem;
  font-weight: 800;
}

.o-title--quaternary,
.c-wysiwyg h4 {
  font-size: 1.33333rem;
  line-height: 1.88889rem;
  font-weight: 800;
}

.o-title-quinternary,
.c-wysiwyg h5 {
  font-size: 0.94444rem;
  line-height: 1.33333rem;
  font-weight: 800;
  text-transform: uppercase;
}

.o-body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55556rem;
}

.o-lead {
  font-size: 1.27778rem;
  line-height: 1.88889rem;
  font-weight: 700;
}

.o-caption {
  font-size: 0.83333rem;
  font-weight: 400;
  line-height: 1.22222rem;
}

.o-blockquote {
  font-size: 2.22222rem;
  font-weight: 800;
  line-height: 3.11111rem;
}

.o-datetime {
  font-size: 0.94444rem;
  font-weight: 400;
  text-transform: uppercase;
}

/* ----------
@ WYSIWYG wrapper styles for content we can't add classes to
---------- */
.c-wysiwyg a[href$=".pdf"]::before {
  font-family: "Font Awesome 5 Pro";
  content: \f1c1;
  font-weight: normal;
  margin-right: 0.35em;
}

.c-wysiwyg ul,
.c-wysiwyg ol {
  list-style: none;
}

.c-wysiwyg ul li,
.c-wysiwyg ol li {
  position: relative;
  left: 1.75rem;
  width: calc(100% - 1.75rem);
  text-indent: -1.75rem;
}

.c-wysiwyg ul li::before,
.c-wysiwyg ol li::before {
  display: inline-block;
  width: 1.75rem;
  font-size: 2rem;
  line-height: 1rem;
  text-indent: 0;
  color: #e27422;
  vertical-align: top;
  padding-top: 4px;
}

.c-wysiwyg ul li+li,
.c-wysiwyg ol li+li {
  margin-top: 1.25rem;
}

.c-wysiwyg ul li ol,
.c-wysiwyg ul li ul,
.c-wysiwyg ol li ol,
.c-wysiwyg ol li ul {
  display: block;
  width: 100%;
  margin-top: 1rem;
}

.c-wysiwyg ul li ul li::before,
.c-wysiwyg ol li ul li::before {
  content: "\26ac";
  font-size: 0.77778rem;
}

.c-wysiwyg ul li ul li+li,
.c-wysiwyg ol li ul li+li {
  margin-top: 1rem;
}

.c-wysiwyg ul li ol li::before,
.c-wysiwyg ol li ol li::before {
  font-weight: 400;
}

.c-wysiwyg ul li::before {
  content: "\2022";
  font-weight: 800;
}

.c-wysiwyg ol {
  counter-reset: ordered-list;
}

.c-wysiwyg ol li::before {
  font-size: 1em;
  font-weight: 700;
  content: counter(ordered-list) ".";
  counter-increment: ordered-list;
}

/* ----------
 @ Buttons
---------- */
.o-btn {
  position: relative;
  display: inline-block;
  padding: 0.75rem 2.5rem;
  color: #d0e2e0;
  background-color: transparent;
  font-size: 1.11111rem;
  font-weight: 700;
  border: 3px solid #e27422;
  border-radius: 0.8rem;
  line-height: 1.66667rem;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: color 0.3s ease-out, border-radius 0.25s ease-out;
  transition: color 0.3s ease-out, border-radius 0.25s ease-out;
}

.o-btn[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.o-btn::after {
  content: '';
  position: absolute;
  top: -150%;
  right: -50%;
  bottom: -150%;
  left: -50%;
  display: block;
  background: #e27422;
  padding: 0.85em 0.75em;
  border-radius: 50%;
  line-height: 8.34em;
  z-index: -1;
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.o-btn:focus,
.o-btn:hover {
  color: #253a38;
  border-radius: 0;
  text-decoration: none;
}

.o-btn:focus::after,
.o-btn:hover::after {
  -webkit-transform: scale(1, 2);
  transform: scale(1, 2);
}

.o-btn--primary {
  color: #253a38;
}

.o-btn--primary::after {
  background: #e27422;
}

.o-btn--tertiary {
  color: #253a38;
  border-color: #7a3562;
}

.o-btn--tertiary:hover,
.o-btn--tertiary:focus {
  color: #fff !important;
}

.o-btn--tertiary::after {
  background: #7a3562;
}

/* ----------
 @ Links
---------- */
.o-text-link,
.g-footer__informative__content a,
.g-footer__legals__link,
.g-this-land__content-blurb a,
.c-wysiwyg a {
  color: #253a38;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff)), -webkit-gradient(linear, left top, right top, from(#7a3562), to(#7a3562));
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #7a3562, #7a3562);
  background-size: 20px 2px, 100% 2px;
  background-repeat: no-repeat;
  background-position-x: -20px, 0;
  background-position-y: 100%;
  -webkit-transition: background-position-x 0.35s ease;
  transition: background-position-x 0.35s ease;
}

.o-text-link:hover,
.g-footer__informative__content a:hover,
.g-footer__legals__link:hover,
.g-this-land__content-blurb a:hover,
.c-wysiwyg a:hover {
  color: #7a3562;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff)), -webkit-gradient(linear, left top, right top, from(#8c3d70), to(#8c3d70));
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #8c3d70, #8c3d70);
  background-position-x: calc(100% + 20px), 0;
}

.o-text-link--primary,
.g-this-land__content-blurb a {
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#7a3562), to(#7a3562)), -webkit-gradient(linear, left top, right top, from(#e27422), to(#e27422));
  background-image: linear-gradient(90deg, #7a3562, #7a3562), linear-gradient(90deg, #e27422, #e27422);
}

.o-text-link--primary:hover,
.g-this-land__content-blurb a:hover {
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#7a3562), to(#7a3562)), -webkit-gradient(linear, left top, right top, from(#e27422), to(#e27422));
  background-image: linear-gradient(90deg, #7a3562, #7a3562), linear-gradient(90deg, #e27422, #e27422);
}

.o-link {
  color: var(--link-color, #253a38);
  font-size: 20px;
  line-height: 30px;
  font-weight: 800;
}

.o-link:hover {
  color: #7a3562;
}

.o-link.o-link--main {
  color: #e27422;
}

.o-link.o-link--main:hover {
  color: #e27422;
  outline: none;
  text-decoration: none;
}

.o-link.o-link--caret {
  position: relative;
}

.o-link.o-link--caret::after {
  position: relative;
  margin-left: 0.75rem;
  content: "\f178";
  font-family: "Font Awesome 5 Pro";
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  display: inline-block;
}

.o-link.o-link--caret:hover,
.o-link.o-link--caret:focus,
.o-link.o-link--caret.is-active {
  text-decoration: none;
}

.o-link.o-link--caret:hover::after,
.o-link.o-link--caret:focus::after,
.o-link.o-link--caret.is-active::after {
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}

.o-link.o-link--caret--reverse::after {
  position: absolute;
  content: "\f177";
  top: 0.15rem;
  right: unset;
  left: -1.5rem;
  margin-left: 0;
  display: block;
}

.o-link.o-link--caret--reverse:hover::after,
.o-link.o-link--caret--reverse:focus::after,
.o-link.o-link--caret--reverse.is-active::after {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* ----------
 @ Utilities
---------- */
.u-mt-0 {
  margin-top: 0rem;
}

.u-mt-1 {
  margin-top: 1rem;
}

.u-mt-2 {
  margin-top: 2rem;
}

.u-mt-3 {
  margin-top: 3rem;
}

.u-mt-4 {
  margin-top: 4rem;
}

.u-mt-5 {
  margin-top: 5rem;
}

.u-block {
  display: block;
}

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

.u-bold {
  font-weight: 700;
}

/* ----------
 @ Loader
---------- */
.loader {
  text-align: center;
  position: relative;
  min-height: 3rem;
  height: 100%;
}

.loader::before {
  content: "";
  width: 3rem;
  height: 3rem;
  display: inline-block;
  vertical-align: bottom;
  border-radius: 50%;
  border: 3px solid #e27422;
  border-right-color: transparent;
  -webkit-animation: 0.75s loader-spin infinite;
  animation: 0.75s loader-spin infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@-webkit-keyframes loader-spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loader-spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ----------
 @ Outdated Browser Alert
---------- */
.alert-outdated-browser {
  margin-bottom: 0;
}

.alert-outdated-browser .close,
.alert-outdated-browser a {
  color: #fff;
}

.alert-outdated-browser a {
  font-weight: 700;
}

.alert-outdated-browser .alert-content {
  display: table;
  width: 100%;
}

.alert-outdated-browser .alert-content>div {
  display: table-cell;
  vertical-align: middle;
}

.alert-outdated-browser .alert-content>div:first-child {
  width: 100%;
}

/* ----------
 @ Horizontal Rule
---------- */
hr {
  margin: 2rem 0;
}

/* ----------
 @ No results
---------- */
.c-no-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-no-results::before,
.c-no-results::after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 1px;
  background: rgba(37, 58, 56, 0.25);
}

/* ----------
 @ Full-width class
---------- */
.u-w-100 {
  width: 100%;
}

.u-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

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

/* ----------
 @ No gutter for row
---------- */
.g-0>div[class^="col-"] {
  padding: 0;
}

/* ----------
 @ Global image captions
---------- */
.c-block-figure__caption {
  font-size: 0.77778rem;
  font-weight: 400;
  margin-top: 0.75rem;
  opacity: 0.8;
}

/* ----------
 @ Responsive
---------- */
@media only screen and (max-width: 768px) {
  main {
    padding-top: 6.11111rem;
  }
}

@media only screen and (max-width: 575px) {
  main {
    padding-top: 4.44444rem;
  }
}

/* ----------
 @ No results
---------- */
.c-no-results {
  border-top-left-radius: 3.33rem;
  border-top-right-radius: 3.33rem;
  border-bottom-right-radius: 3.33rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  padding: 4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1476px;
  background-color: #d0e2e0;
}

@media only screen and (max-width: 768px) {
  .c-no-results {
    border-top-left-radius: 1.998rem;
    border-top-right-radius: 1.998rem;
    border-bottom-right-radius: 1.998rem;
  }
}

.c-no-results::before,
.c-no-results::after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 5rem;
  height: 1px;
  background: rgba(37, 58, 56, 0.25);
}

.c-no-results__text {
  padding: 1rem;
}

/* ----------
 @ Resetting some styles for search elements... they're very fiddly to style
---------- */
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  width: 1em;
  height: 1em;
  color: inherit;
  background-image: none;
  background-position: center;
  background-repeat: no-repeat;
}

/* ----------
 @ Layout
---------- */
fieldset {
  margin: 0;
}

.form-group {
  position: relative;
  margin: 1em 0;
}

.form-group.no-margin {
  margin: 0;
}

/* ----------
@ Base Text Input 
---------- */
.u-strut-input {
  position: relative;
  margin-top: 0;
  padding: 1.2em 1.5em 0.8em;
  line-height: 1.2;
  color: #7a3562;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 2rem;
  z-index: 1;
}

.u-strut-input.has-error {
  border-color: #e27422;
}

.u-strut-input.is-dragging {
  border-color: #167066;
}

.u-strut-input:focus,
.u-strut-input:focus-visible {
  outline: none;
}

.u-strut-input:focus-within,
.has-focus .u-strut-input {
  border-color: #167066;
  outline: none;
}

.u-strut-label {
  position: absolute;
  top: calc(1em * 1.2);
  left: 1.5em;
  margin: 0;
  padding: 0;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  font-size: 1rem;
  line-height: 1;
  color: #253a38;
  opacity: 0.65;
  -webkit-transition: top 150ms ease-out, opacity 150ms ease-out, -webkit-transform 150ms ease-out;
  transition: top 150ms ease-out, opacity 150ms ease-out, -webkit-transform 150ms ease-out;
  transition: transform 150ms ease-out, top 150ms ease-out, opacity 150ms ease-out;
  transition: transform 150ms ease-out, top 150ms ease-out, opacity 150ms ease-out, -webkit-transform 150ms ease-out;
  z-index: 2;
}

.has-value .u-strut-label,
.has-focus .u-strut-label,
.u-strut-input:focus-within .u-strut-label {
  top: 0.1em;
  opacity: 1;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

.has-visible-placeholder [data-value] {
  visibility: hidden;
}

/* ----------
 @ Inputs
---------- */
.c-strut-input--p {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: -1;
}

.c-strut-input__el {
  width: 100%;
  color: inherit;
  outline: none;
}

/* ----------
 @ Textareas
---------- */
.c-strut-textarea__el {
  display: block;
  width: 100%;
  min-height: 100px;
  color: inherit;
  outline: none;
}

/* ----------
 @ File Inputs
---------- */
.c-strut-file-input {
  position: relative;
  margin-top: 0;
}

.c-strut-file-input__el {
  display: none;
}

.c-strut-file-input__label {
  top: -1.25em;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.c-strut-file-input__ui {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}

.c-strut-file-input__ui:hover .c-strut-file-input__btn {
  background-color: #b95d18;
}

.c-strut-file-input__btn {
  position: relative;
  padding: 0.5em;
  cursor: pointer;
  z-index: 4;
  color: #fff;
  background-color: #e27422;
}

.c-strut-file-input__text {
  position: relative;
  margin: 0;
  padding: 0.5em;
  z-index: 4;
}

/* ----------
 @ Multifile inputs
---------- */
.c-strut-multifile-input__ui {
  margin-top: 0;
  position: relative;
  width: 100%;
  padding: 2rem;
  background-color: #efefef;
  border: 2px dashed #c6c6c6;
  border-radius: 10px;
  text-align: center;
}

.c-strut-multifile-input__ui.is-dragging {
  border-color: #167066;
}

.c-strut-multifile-input__instructions {
  display: block;
  color: #253a38;
}

.c-strut-multifile-input__button {
  margin-top: 0.5rem;
}

.c-strut-multifile__file {
  margin-top: 0;
}

.c-strut-multifile__remove {
  color: #e27422;
  margin-right: 0.5rem;
}

.c-strut-multifile-input__el {
  display: none;
}

/* ----------
 @ Dropdowns
---------- */
.c-strut-dropdown {
  position: relative;
}

.c-strut-dropdown.has-focus .c-strut-dropdown__ui {
  border: 0;
  outline: 0;
}

.c-strut-dropdown__el {
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
}

.c-strut-dropdown__ui {
  width: 100%;
  height: 100%;
}

.c-strut-dropdown__ui:focus,
.c-strut-dropdown__ui:focus-visible {
  outline: 0;
  border: 0;
}

.c-strut-dropdown__value {
  width: 100%;
  height: 100%;
}

.c-strut-dropdown__arrow {
  position: absolute;
  top: 0;
  right: 0.5em;
  display: inline-block;
  width: 2.05em;
  height: 100%;
  margin: 0;
  text-align: center;
  line-height: 2em;
  -webkit-transition: 150ms -webkit-transform ease-out;
  transition: 150ms -webkit-transform ease-out;
  transition: 150ms transform ease-out;
  transition: 150ms transform ease-out, 150ms -webkit-transform ease-out;
}

.c-strut-dropdown__arrow::before {
  content: "\f107";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: "Font Awesome 5 Pro";
  color: #e27422;
}

/* ----------
 @ Checkboxes
---------- */
.c-strut-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-strut-checkbox__el {
  position: relative;
  margin: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
}

.c-strut-checkbox__el[disabled] {
  cursor: not-allowed;
}

.c-strut-checkbox__el[disabled]~.input-bg {
  opacity: 0.35;
}

.c-strut-checkbox__label {
  display: inline-block;
  margin: 0;
  padding-left: 0.5em;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  vertical-align: middle;
}

.c-strut-checkbox__ui {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 1.1em;
  height: 1.1em;
  cursor: pointer;
  border: 1px solid #7a3562;
}

.c-strut-checkbox__ui::before {
  content: "\f00c";
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Pro";
  width: 100%;
  height: 100%;
  line-height: 1.2;
  text-align: center;
  display: inline-block;
  -webkit-transition: 150ms -webkit-transform ease-out;
  transition: 150ms -webkit-transform ease-out;
  transition: 150ms transform ease-out;
  transition: 150ms transform ease-out, 150ms -webkit-transform ease-out;
  -webkit-transform: scale(0);
  transform: scale(0);
  color: #fff;
}

.has-selected .c-strut-checkbox__ui {
  background-color: #7a3562;
}

.has-selected .c-strut-checkbox__ui::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.has-focus .c-strut-checkbox__ui {
  border-color: #682d54;
}

/* ----------
 @ Radio Buttons
---------- */
.c-strut-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-strut-radio__el {
  opacity: 0;
  margin-top: 0;
  position: relative;
  z-index: 5;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.c-strut-radio__el[disabled] {
  cursor: not-allowed;
}

.c-strut-radio__el[disabled]~.input-bg {
  opacity: 0.35;
}

.c-strut-radio__label {
  margin-top: 0;
  padding-left: 0.5em;
  font-size: 1rem;
  line-height: 1.2;
}

.c-strut-radio__ui {
  width: 1.25em;
  height: 1.25em;
  position: relative;
  cursor: pointer;
  border: 1px solid #7a3562;
  border-radius: 20rem;
  background-color: #7a3562;
}

.c-strut-radio__ui::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
  -webkit-transform-origin: top left;
  transform-origin: top left;
  width: calc(100% - 1.5px);
  height: calc(100% - 1.5px);
  text-align: center;
  display: inline-block;
  -webkit-transition: 150ms -webkit-transform ease-out;
  transition: 150ms -webkit-transform ease-out;
  transition: 150ms transform ease-out;
  transition: 150ms transform ease-out, 150ms -webkit-transform ease-out;
  border-radius: 20rem;
  background-color: #fff;
}

.has-selected .c-strut-radio__ui::before {
  -webkit-transform: scale(0.4) translate(-50%, -50%);
  transform: scale(0.4) translate(-50%, -50%);
}

.has-focus .c-strut-radio__ui {
  border-color: #7a3562;
}

/* ----------
 @ Character Counters
---------- */
.counter-wrapper {
  position: relative;
}

.counter-wrapper .char-counter {
  position: absolute;
  top: 2px;
  right: 3px;
  font-size: 0.65em;
  text-shadow: 0 2px 0 #fff, 0 -2px 0 #fff, 2px 0 0 #fff, -2px 0 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff;
}

.counter-wrapper.error .char-counter {
  color: #e27422;
  text-shadow: 0 2px 0 #fff, 0 -2px 0 #fff, 2px 0 0 #fff, -2px 0 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff;
}

/* ----------
 @ Input Masks
---------- */
.input-mask-set {
  position: relative;
}

.input-mask-set .display-field {
  border-color: transparent;
  background: none;
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  color: transparent;
}

.input-mask-set .display-field .display {
  color: #ccc;
  text-shadow: 0 0 1px #fff, 0 0 2px #fff;
}

.input-mask-set [data-increment-btn] {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.text-right .input-mask-set .display-field {
  right: 0;
}

/* ----------
 @ GravityForms
---------- */
.c-gravityform__group {
  margin-top: 1.5rem;
}

.c-gravityform__input {
  margin-top: 1.5rem;
}

.c-gravityform__label {
  margin-bottom: -1rem;
  font-size: 0.94444rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}

.u--hide {
  display: none;
}

/* ----------
 @ reCAPTCHA disclaimer styling
---------- */
.grecaptcha-badge {
  visibility: hidden;
}

.c-gravityform__recaptcha-notice {
  opacity: 1;
  font-size: 0.8rem;
}

/* ----------
 @ error messages
---------- */
.u-error-message {
  color: #e27422;
  text-align: left;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  line-height: 1;
}

.c-paginator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-paginator__item {
  display: inline-block;
  min-width: 3em;
  margin: 0 0.5em;
  padding: 0.5em;
  line-height: 1;
  text-align: center;
  border: 1px solid #444;
  -webkit-transition: border 150ms ease-out, color 150ms ease-out;
  transition: border 150ms ease-out, color 150ms ease-out;
}

.c-paginator__item:hover,
.c-paginator__item:focus {
  color: #e27422;
  border-color: #e27422;
}

.c-paginator__item--prev {
  margin-left: 0;
}

.c-paginator__item--next {
  margin-right: 0;
}

.c-paginator__item.u-active {
  font-weight: bold;
}

.c-paginator__item.u-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.c-paginator__page-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 0;
}

.g-newsletter-form {
  background-color: #7a3562;
  color: #fff;
  padding-top: 2.22222rem;
  padding-bottom: 2.77778rem;
  margin-top: 0;
}

.g-newsletter-form .c-gravityform__header {
  display: none;
}

.g-newsletter-form .c-gravityform {
  position: relative;
  padding: 0;
  margin: 1.5rem auto 0;
  max-width: 950px;
}

.g-newsletter-form .c-gravityform__input {
  margin-top: 0;
}

.g-newsletter-form .c-gravityform__submit {
  position: absolute;
  top: 1.65rem;
  right: 2.5rem;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  color: #253a38;
  font-size: 20px;
  font-weight: 700;
  z-index: +1;
  overflow: visible;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.g-newsletter-form .c-gravityform__submit::after {
  content: "\f178";
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  right: -1.5rem;
  left: unset;
  bottom: unset;
  background: transparent;
  padding: 0;
  color: #e27422;
  font-family: "Font Awesome 5 Pro";
  font-size: 1rem;
  line-height: normal;
  max-height: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.g-newsletter-form .c-gravityform__submit:hover {
  background: transparent;
  color: #7a3562;
}

.g-newsletter-form .c-gravityform__submit:hover::after {
  color: #7a3562;
}

.g-newsletter-form .c-gravityform-confirmation {
  padding: 1.5rem 8.3333%;
}

.error404 .g-newsletter-form {
  display: none;
}

.g-newsletter-form__column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100vw;
  text-align: center;
}

.g-newsletter-form__label {
  font-size: 17px;
  line-height: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.g-newsletter-form__title {
  font-size: 40px;
  line-height: normal;
  font-weight: 800;
}

.g-newsletter-form__content {
  margin-top: 0.25rem;
}

@media only screen and (max-width: 768px) {
  .g-newsletter-form__title {
    font-size: 32px;
    line-height: 42px;
  }

  .g-newsletter-form .c-gravityform__submit {
    font-size: 0;
  }
}

.g-footer {
  background-color: #336272;
  color: #fff;
  margin-top: 0;
}

.g-footer__container {
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  width: 100%;
  height: 100%;
  max-width: 1600px;
}

.g-footer__container__row {
  align-items: center;
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
  width: 100%;
}

.g-footer__container__row .__col-right {
  text-align: right;
  padding-left: 2rem;
}

.g-footer__container__row .__col-left {
  text-align: left;
  padding-right: 2rem;
}


@media only screen and (max-width: 750px) {
  .g-footer__container__row {
    display: flex;
    flex-flow: column;
    width: 100%;
  }

  .g-footer__container__row .__col-right,
  .g-footer__container__row .__col-left {
    max-width: 500px;
    padding: 1rem 0;
    text-align: center;
  }
}



.g-footer__informative {
  position: relative;
  margin-top: 0;
}

.g-footer__informative__image-container {
  margin-left: 3.3rem;
}

.g-footer__informative__image-container:first-of-type {
  margin-left: 0;
}

.g-footer__informative__image-container img,
.g-footer__informative__image-container svg {
  height: 65px;
  width: auto;
  max-width: 100%;
}

.g-footer__informative__paragraph {
  color: #fff;
}

.g-footer__informative__contact-title {
  color: #fff;
  font-size: 1.25rem;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

@media only screen and (max-width: 750px) {
  .g-footer__informative__contact-title {
    margin-bottom: 0;
  }
}


.g-footer__informative__content {
  color: #fff;
  line-height: 30px;
}

.g-footer__informative__content a {
  color: #fff;
  word-break: break-all;
  word-break: break-word;
}

.g-footer__informative__content a:hover {
  color: #fff;
}

.g-footer__informative__social-icon a {
  width: 2rem;
  padding: 0.5rem;
  background-color: #167066;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: background-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, background-color 0.25s ease;
  transition: transform 0.25s ease, background-color 0.25s ease, -webkit-transform 0.25s ease;
}

.g-footer__informative__social-icon a:hover {
  background-color: #7a3562;
  color: #cccccc;
  outline: none;
  text-decoration: none;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}

.g-footer__informative__social-icon__container {
  padding-left: 0;
  padding-right: 15px;
}

.g-footer__informative__social-icon__container:first-of-type {
  padding-left: 15px;
}

.g-footer__legals {
  color: #fff;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.g-footer__legals__copyright,
.g-footer__legals__link {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  margin: 0 1rem;
}

.g-footer__legals__link {
  background-image: none;
  display: inline-block;
  text-transform: uppercase;
}

.g-footer__legals__link:hover {
  color: #fff;
  border-color: #7a3562;
  text-decoration: none;
  outline: none;
}

.g-footer__legals-row {
  display: block;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .g-footer__background {
    min-height: 300px;
  }

  .g-footer__informative__image-container {
    margin: 0 auto;
  }

  .g-footer__informative__image-container:first-of-type {
    margin: 0 auto 1rem;
  }

  .g-footer__informative__image-container img,
  .g-footer__informative__image-container svg {
    height: 50px;
  }

  .g-footer__informative {
    padding-top: 1.5rem;
  }

  .g-footer__informative__paragraph {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .g-footer__informative__contact-title,
  .g-footer__informative__address {
    text-align: center;
    display: block;
    margin: 0 auto;
  }

  .g-footer__informative__email {
    display: none;
  }

  .g-footer__informative__social-icon {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 360px;
    margin: 1.5rem auto 0;
  }

  .g-footer__informative__content {
    text-align: center;
  }
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 40px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

/*
     * Slider
     */
.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 8px;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 16px;
}

.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
  transform: translate3d(0, 8px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -4px, 0);
  transform: rotate(-45deg) translate3d(-5.71429px, -4px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -16px, 0) rotate(-90deg);
  transform: translate3d(0, -16px, 0) rotate(-90deg);
}

.g-search-input__el-container {
  width: 100%;
  max-width: 950px;
  position: relative;
  margin-top: 6rem;
}

.g-search-input__el {
  width: 100%;
  font-size: 1.22222rem;
  padding: 0.5rem 0 0.5rem 2rem;
  border-radius: 0;
  background-color: #fff;
  outline: none;
  color: #253a38;
  border-bottom: 2px solid #253a38;
}

.g-search-input__button {
  position: absolute;
  top: 0;
  bottom: 0;
  font-weight: 700;
  font-size: 1.25em;
}

.g-search-input__button-icon {
  color: #e27422;
  left: 0;
}

.g-search-input__button-icon::before {
  font-family: "Font Awesome 5 Pro";
  content: "\f002";
}

.g-search-input__button-text {
  color: #253a38;
  right: 0;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

.g-search-input__close {
  position: absolute;
  top: 5rem;
  right: 2rem;
  font-size: 1rem;
  line-height: 1;
}

.g-search-input__close::before {
  font-family: "Font Awesome 5 Pro";
  content: "\f00d";
}

.g-header__mobile-search {
  width: 100%;
  background-color: #fff;
  padding: 2rem;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.g-header__mobile-search-el {
  position: relative;
  width: 100%;
  font-size: 1.77778rem;
  padding: 0.5rem 0 0.5rem;
  border-radius: 0;
  background-color: #fff;
  outline: none;
  color: #253a38;
  border-bottom: 2px solid #253a38;
}

.g-header__mobile-search__submit {
  position: absolute;
  right: 2rem;
}

.g-header__mobile-search__submit::before {
  content: "\f002";
  font-size: 1.77778rem;
  font-family: "Font Awesome 5 Pro";
  color: #e27422;
  font-weight: 700;
}

.g-search-input__el-container--grey .g-search-input__button {
  color: #167066;
}

.g-language-switcher {
  background-color: #253a38;
  color: #fff;
}

.g-language-switcher:focus,
.g-language-switcher:hover {
  outline: none;
  text-decoration: none;
}

.g-language-switcher .c-strut-dropdown .c-strut-dropdown__ui {
  padding: 0.3rem 1rem 0.3rem 0;
  background: transparent;
  color: #fff;
}

.g-language-switcher .c-strut-dropdown .c-strut-dropdown__ui.has-focus,
.g-language-switcher .c-strut-dropdown .c-strut-dropdown__ui:focus,
.g-language-switcher .c-strut-dropdown .c-strut-dropdown__ui:hover {
  outline: none;
  text-decoration: none;
}

.g-language-switcher .c-strut-dropdown .c-strut-dropdown__ui .c-strut-dropdown__arrow {
  right: -0.7rem;
}

.g-language-switcher .c-strut-dropdown__el:focus-visible {
  outline: #e27422;
}

.g-language-switcher .c-strut-dropdown__el:focus-visible+.c-strut-dropdown__ui .c-strut-dropdown__arrow {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1) translateY(3px);
  transform: scale(1.1) translateY(3px);
}

.g-language-switcher .c-strut-dropdown__value {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

@media only screen and (max-width: 1450px) {
  .g-language-switcher .c-strut-dropdown__value {
    padding-left: 2rem;
  }

  .g-language-switcher .c-strut-dropdown .c-strut-dropdown__ui .c-strut-dropdown__arrow {
    right: 1rem;
  }
}

.g-header {
  width: 100vw;
  min-height: 110px;
  margin: 0;
  background-color: #fff;
  z-index: 20;
  -webkit-transition: 400ms height ease, 400ms background ease;
  transition: 400ms height ease, 400ms background ease;
  top: 0;
  position: fixed;
}

.g-header.is-open-search .g-header__navigations-container {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
}

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

.g-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  height: 100%;
  max-width: 1476px;
  background-color: transparent;
}

.g-header__logo {
  padding: 16px 0;
  padding-right: 1rem;
  z-index: 100;
}


.g-header__logo img {
  max-width: 150px;
}


.g-header__navigations-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 0;
  position: relative;
}

.wavy-background-container {
  background-image: url("../../assets/img/Navigation_Background_Wave.svg");
  background-size: cover;
  width: 100%;
  height: 1090px;
  margin-top: 0;
  z-index: 0;
  position: absolute;
  bottom: -70px;
}

.wavy-background-container--search {
  bottom: -200px;
}

.g-header__chevron-link {
  position: relative;
}

.g-header__chevron-link::after {
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #e27422;
  -webkit-transform: translateX(-0.5em);
  transform: translateX(-0.5em);
  -webkit-transition: 150ms opacity ease, 150ms -webkit-transform ease;
  transition: 150ms opacity ease, 150ms -webkit-transform ease;
  transition: 150ms transform ease, 150ms opacity ease;
  transition: 150ms transform ease, 150ms opacity ease, 150ms -webkit-transform ease;
  position: absolute;
  bottom: 0.55556rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  line-height: 1;
}

.g-header__chevron-link:hover,
.g-header__chevron-link:focus,
.g-header__chevron-link.is-active {
  text-decoration: none;
  color: currentColor;
}

.g-header__chevron-link:hover::after,
.g-header__chevron-link:focus::after,
.g-header__chevron-link.is-active::after {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.g-header__utility-nav {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  border-bottom-left-radius: 0.55556rem;
  border-bottom-right-radius: 0.55556rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 0.7rem 0.2rem;
  background-color: #253a38;
  -webkit-transition: 400ms -webkit-transform ease;
  transition: 400ms -webkit-transform ease;
  transition: 400ms transform ease;
  transition: 400ms transform ease, 400ms -webkit-transform ease;
}

.g-header__utility-nav__item {
  display: inline-block;
  margin: 0 0 0 0.5rem;
}

.g-header__utility-nav__item:first-child {
  margin-left: 0;
}

.g-header__utility-nav__link {
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  opacity: 0.3;
  -webkit-transition: 150ms color ease, 150ms opacity ease;
  transition: 150ms color ease, 150ms opacity ease;
}

.g-header__utility-nav__link.active {
  opacity: 1;
}

.g-header__utility-nav__link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  background-color: #253a38;
  -webkit-transition: 150ms opacity ease, 150ms -webkit-transform ease;
  transition: 150ms opacity ease, 150ms -webkit-transform ease;
  transition: 150ms transform ease, 150ms opacity ease;
  transition: 150ms transform ease, 150ms opacity ease, 150ms -webkit-transform ease;
  opacity: 0;
}

.g-header__utility-nav__link:hover,
.g-header__utility-nav__link:focus {
  color: #e27422;
  text-decoration: none;
  opacity: 1;
}

.g-header__utility-nav__link:hover::before,
.g-header__utility-nav__link:focus::before {
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  opacity: 1;
}

.g-header__main-nav {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-transition: 400ms -webkit-transform ease;
  transition: 400ms -webkit-transform ease;
  transition: 400ms transform ease;
  transition: 400ms transform ease, 400ms -webkit-transform ease;
}

.g-header__main-nav__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}

.g-header__main-nav__item:first-of-type {
  margin: 0;
}

.g-header__main-nav__link {
  font-size: 1rem;
  font-weight: 400;
  color: #253a38;
  padding: 0.75rem 0;
  display: block;
}

.g-header__main-nav__link:hover,
.g-header__main-nav__link:focus {
  text-decoration: none;
  outline: none;
}

.g-header__main-nav__link--border-hover::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.5rem;
  height: 2px;
  background-color: #e27422;
  opacity: 0;
  -webkit-transform: translateY(0.1rem) scale(0);
  transform: translateY(0.1rem) scale(0);
  -webkit-transition: 300ms opacity ease, 300ms -webkit-transform ease;
  transition: 300ms opacity ease, 300ms -webkit-transform ease;
  transition: 300ms transform ease, 300ms opacity ease;
  transition: 300ms transform ease, 300ms opacity ease, 300ms -webkit-transform ease;
}

.g-header__main-nav__link--border-hover:hover,
.g-header__main-nav__link--border-hover:focus,
.g-header__main-nav__link--border-hover.is-active,
.g-header__main-nav__link--border-hover.current-menu-item {
  color: #253a38;
}

.g-header__main-nav__link--border-hover:hover::before,
.g-header__main-nav__link--border-hover:focus::before,
.g-header__main-nav__link--border-hover.is-active::before,
.g-header__main-nav__link--border-hover.current-menu-item::before {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}

.g-header__main-nav__link--search {
  position: relative;
}

.g-header__main-nav__link--search::after {
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #e27422;
  -webkit-transform: translateX(-0.5em);
  transform: translateX(-0.5em);
  -webkit-transition: 150ms opacity ease, 150ms -webkit-transform ease;
  transition: 150ms opacity ease, 150ms -webkit-transform ease;
  transition: 150ms transform ease, 150ms opacity ease;
  transition: 150ms transform ease, 150ms opacity ease, 150ms -webkit-transform ease;
  position: absolute;
  bottom: 0.55556rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  line-height: 1;
}

.g-header__main-nav__link--search:hover,
.g-header__main-nav__link--search:focus,
.g-header__main-nav__link--search.is-active {
  text-decoration: none;
  color: currentColor;
}

.g-header__main-nav__link--search:hover::after,
.g-header__main-nav__link--search:focus::after,
.g-header__main-nav__link--search.is-active::after {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.g-header__main-nav__link--search::before {
  color: #e27422;
  content: "\f002";
  font-family: "Font Awesome 5 Pro";
  margin-right: 0.5rem;
}

.g-header__subnav {
  position: absolute;
  left: -2rem;
  top: 100%;
  min-width: 300px;
  margin: 0;
  padding: 1.5rem 2rem;
  background-color: white;
  border-bottom: none;
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  -webkit-transition: 400ms background ease, 400ms -webkit-transform ease, 400ms -webkit-box-shadow ease;
  transition: 400ms background ease, 400ms -webkit-transform ease, 400ms -webkit-box-shadow ease;
  transition: 400ms transform ease, 400ms background ease, 400ms box-shadow ease;
  transition: 400ms transform ease, 400ms background ease, 400ms box-shadow ease, 400ms -webkit-transform ease, 400ms -webkit-box-shadow ease;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  display: none;
}

.g-header__subnav::before,
.g-header__subnav::after {
  content: none;
}

.is-minified .g-header__subnav {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.g-header__subnav__item:not(.g-header--mobile-only) {
  margin: 0 0 1.5rem;
}

.g-header__subnav__item:not(.g-header--mobile-only):last-child {
  margin-bottom: 0;
}

.g-header__subnav__item--heading {
  position: relative;
  font-size: 1.22222rem;
  font-weight: 700;
  display: inline-block;
}

.g-header__subnav__item--heading::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.5rem;
  height: 2px;
  background-color: #e27422;
}

.g-header__subnav__item--custom-label {
  color: #253a38;
  font-weight: 700;
}

.g-header__subnav__link {
  position: relative;
  display: inline-block;
  color: #253a38;
}

.g-header__subnav__link::after {
  content: "\f178";
  position: absolute;
  top: 50%;
  right: -0.5rem;
  display: block;
  font-family: "Font Awesome 5 Pro";
  font-size: 1rem;
  color: #e27422;
  line-height: normal;
  opacity: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: opacity 0.25s ease-in, -webkit-transform 0.25s ease-in-out;
  transition: opacity 0.25s ease-in, -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in;
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in, -webkit-transform 0.25s ease-in-out;
}

.g-header__subnav__link:hover,
.g-header__subnav__link:focus,
.g-header__subnav__link.is-active {
  color: #7a3562;
  text-decoration: none;
}

.g-header__subnav__link:hover::after,
.g-header__subnav__link:focus::after,
.g-header__subnav__link.is-active::after {
  -webkit-transform: translate(120%, -50%);
  transform: translate(120%, -50%);
  opacity: 1;
}

.g-header__subnav__link--has-children {
  font-weight: 700;
}

.g-header__subnav__link--strong {
  font-weight: 700;
}

.g-header__subnav__link--strong::after {
  font-size: 1rem;
  top: 0.77778rem;
}

.g-header__subnav__back {
  color: #253a38;
}

.g-header__subnav__back::before {
  content: "\f053";
  color: #e27422;
  margin-right: 0.5rem;
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
}

.g-header__tertiary-nav {
  margin-left: 1rem;
}

.g-header__tertiary-nav__link {
  color: #253a38;
}

.g-header-search-takeover {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 50vh;
  min-height: 320px;
  background-color: transparent;
  margin: 0;
  z-index: 30;
  display: none;
}

.g-header-search-takeover__aligner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  max-width: 1476px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.g-header-search-takeover__input {
  background-color: transparent;
}

.g-header__mobile-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0;
}

.g-header__mobile-buttons__hamburger {
  margin-left: 2rem;
  color: #253a38;
}

.hamburger {
  padding: 0;
}

.hamburger-box {
  align-items: center;
  display: flex;
  width: 36px;
  height: 36px;
  outline: none;
  justify-content: center ;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after,
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  width: 22px;
  height: 4px;
  background-color: currentColor;
  outline: 0;
}

.hamburger .hamburger-inner {
  top: 10px;
}

.g-header__logo-el__seed {
  -webkit-transform-origin: 90% center;
  transform-origin: 90% center;
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in, -webkit-transform 0.3s ease-out;
  transition: opacity 0.2s ease-in, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.2s ease-in;
  transition: transform 0.3s ease-out, opacity 0.2s ease-in, -webkit-transform 0.3s ease-out;
}


@media only screen and (min-width: 1450px) {
  .g-header--mobile-only {
    display: none !important;
  }

  body:not(.is-tabbing) .g-header.is-minified .g-header__logo-el {
    position: relative;
    margin-top: 0;
  }

  body:not(.is-tabbing) .g-header.is-minified .g-header__logo-el .g-header__logo-el__seed {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
  }

  body:not(.is-tabbing) .g-header.is-minified::before {
    height: 200px;
    bottom: 0;
  }

  body:not(.is-tabbing) .g-header.is-minified .g-header__utility-nav {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  body:not(.is-tabbing) .g-header.is-minified .g-header__logo-el {
    height: 95px;
  }

  body:not(.is-tabbing) .g-header.is-minified .g-header__subnav {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: white;
  }
}

@media only screen and (max-width: 1200px) {
  .g-header__logo-el {
    height: 100px;
  }
}

@media only screen and (max-width: 1100px) {
  .g-header__logo-el {
    height: 90px;
  }

  .g-header__main-nav__item {
    margin: 0 0 0 1rem;
  }

  .g-header__main-nav__link {
    font-size: 1rem;
  }

  .g-header__main-nav {
    -webkit-transform: translateY(-2.5rem);
    transform: translateY(-2.5rem);
  }
}

@media only screen and (max-width: 1450px) {
  .g-header__logo-el {
    height: 100px;
  }

  .g-header--desktop-only {
    display: none !important;
  }

  .g-header-search-takeover {
    display: none;
  }

  .has-open-menu .g-header {
    background-color: white;
  }

  .g-header__navigations-container {
    top: 110px;
    height: calc(100vh - 110px);
    background-color: white;
    position: absolute;
    left: 0;
    right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow-y: auto;
    display: none;
  }

  body.admin-bar .g-header__navigations-container {
    height: calc(100vh);
  }

  .g-header__utility-nav {
    position: fixed;
    top: unset;
    height: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: block;
    padding: 1rem 0;
    z-index: +1;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 1.66667rem;
    border-top-right-radius: 1.66667rem;
  }

  .g-header__utility-nav {
    overflow: hidden;
  }

  .g-header__utility-nav__item {
    display: block;
    margin: 0;
  }

  .g-header__utility-nav__link {
    padding: 1rem 2rem;
    border-bottom: 1px solid #cee1e4;
    display: block;
  }

  .g-header__utility-nav__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .g-header__main-nav {
    display: block;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .g-header__main-nav__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2rem 2rem 4rem;
    max-width: 100%;
  }

  .g-header__main-nav__item,
  .g-header__main-nav__item:first-of-type {
    display: block;
    position: static;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 0 2rem;
  }

  .g-header__main-nav__link--donate {
    display: none;
  }

  .g-header__main-nav__link--search {
    display: none;
  }

  .g-header__main-nav_link {
    font-size: 1.11111rem;
    font-weight: 700;
  }

  .g-header__subnav {
    position: fixed;
    top: calc(-70px - 3rem);
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: none;
    transition: none;
    padding: 2rem 2rem 90px;
    display: none;
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow-y: auto;
    z-index: +1;
  }

  .g-header__main-nav__link,
  .g-header__subnav__link {
    font-size: 1.22222rem;
  }

  body.admin-bar .g-header__navigations-container {
    height: calc(100vh - 146px);
  }

  .g-header__subnav__item.g-header__subnav__item {
    margin: 0 0 1.5rem 0;
  }

  .g-header__subnav__item--heading.g-header__subnav__item {
    margin: 1.5rem 0;
    text-transform: uppercase;
  }

  .g-header__subnav__item--back-button-holder,
  .g-header__subnav__item--heading {
    margin-left: 0;
  }

  .g-header__tertiary-nav {
    margin-top: 0.75rem;
  }

  .g-header__tertiary-nav__item {
    margin-top: 0.75rem;
  }

  .g-header__chevron-link::after {
    display: none;
  }

  .g-header__main-nav__link--border-hover::before {
    display: none;
  }

  .g-header__main-nav__link.g-header__main-nav__link--has-children::after {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .g-header__main-nav__link--has-children:hover::after,
  .g-header__main-nav__link--has-children:focus::after {
    -webkit-transform: translateX(0.5em);
    transform: translateX(0.5em);
  }

  .wavy-background-container {
    background-size: contain;
    background-repeat: repeat-x;
    height: 30px;
    bottom: -30px;
    opacity: 0.9;
  }

  body:not(.is-tabbing) .g-header.is-minified .g-header__logo-el {
    position: relative;
  }
}

@media only screen and (max-width: 768px) {
  .admin-bar .g-header {
    top: 46px;
  }
}

@media only screen and (max-width: 575px) {
  .g-header__mobile-buttons__hamburger {
    margin-left: 1rem;
  }

  .g-header__donate-link {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

.g-this-land__button {
  position: fixed;
  top: 55vh;
  right: -2rem;
  background-color: #7a3562;
  color: #fff;
  padding: 0.7rem 3rem 0.7rem 1rem;
  font-size: 0.88889rem;
  line-height: 1;
  font-weight: 700;
  border-radius: 2.77778rem;
  outline: none;
  text-transform: uppercase;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 6;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.g-this-land__button:hover:not(.active),
.g-this-land__button:focus-visible:not(.active) {
  text-decoration: none;
  outline: none;
  background-color: #562645;
  -webkit-transform: rotate(-90deg) scale(0.9);
  transform: rotate(-90deg) scale(0.9);
}

.g-this-land__button:hover:not(.active) .g-this-land__button-icon,
.g-this-land__button:focus-visible:not(.active) .g-this-land__button-icon {
  right: 25px;
}

.g-this-land__button:focus {
  text-decoration: none;
  outline: none;
}

.g-this-land__button.active {
  background-color: #e27422;
  -webkit-transform: rotate(-90deg) scale(1);
  transform: rotate(-90deg) scale(1);
  text-decoration: none;
  outline: none;
}

.g-this-land__button.active .g-this-land__button-icon {
  background-image: none;
}

.g-this-land__button.active .g-this-land__button-icon::before {
  content: "\f00d";
  font-family: "Font Awesome 5 Pro";
  display: block;
  font-style: normal;
  font-size: 24px;
}

.g-this-land__button-icon {
  background-image: url("./../../assets/img/This_Land_Icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 26px;
  margin-left: 0.5rem;
  display: inline-block;
  position: absolute;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 8px;
  right: 20px;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}

.g-this-land__content {
  position: fixed;
  top: 50%;
  right: 2rem;
  padding: clamp(4rem, 6%, 10rem) clamp(6rem, 9.5%, 10rem);
  width: clamp(450px, 60%, 1200px);
  background-color: rgba(122, 53, 98, 0.97);
  color: #fff;
  border-radius: 3.33rem;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  opacity: 0;
  overflow: hidden;
  max-height: 70vh;
  overflow-y: auto;
  scrollbar-color: #7a3562 #682d54;
  scrollbar-width: thin;
  z-index: 5;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.g-this-land__content::after {
  content: "";
  display: block;
  width: 50px;
  height: 100%;
  background-color: #7a3562;
  right: calc(-10vw + 50px);
  position: relative;
  border-radius: 30px;
}

.g-this-land__content.active {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.g-this-land__content::-webkit-scrollbar {
  width: 10px;
}

.g-this-land__content::-webkit-scrollbar-track {
  background: transparent;
}

.g-this-land__content::-webkit-scrollbar-thumb {
  background-color: #682d54;
  border-radius: 20px;
  border: 3px solid #7a3562;
}

.g-this-land__content-blurb {
  margin-top: 0;
}

.g-this-land__content-background {
  background-image: url(./../../assets/img/brand-assets/aas-ancestors.svg);
  background-size: 100% 100%;
  background-position: center left;
  position: absolute;
  left: -75%;
  top: -40%;
  display: block;
  width: 120%;
  height: 120%;
  z-index: -1;
  background-repeat: no-repeat;
  -webkit-transform: scale(-1) rotate(90deg);
  transform: scale(-1) rotate(90deg);
}

.g-this-land__content-background__bottom {
  top: unset;
  left: unset;
  right: -45%;
  bottom: -25%;
  width: 90%;
  height: 90%;
  background-size: 90% 90%;
  -webkit-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}

.g-this-land__content .g-this-land__content-link {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
}

.g-this-land__content .g-this-land__content-link::after {
  color: #e27422;
}

@media only screen and (max-width: 1630px) {
  .g-this-land__content {
    width: clamp(450px, 80%, 1200px);
  }
}

@media only screen and (max-width: 1200px) {
  .g-this-land__content-background {
    width: 110%;
  }

  .g-this-land__content-background__bottom {
    width: 85%;
  }
}

@media only screen and (max-width: 991px) {
  .g-this-land__content {
    width: calc(100% - (2rem * 2));
  }
}

@media only screen and (max-width: 768px) {
  .g-this-land__button {
    top: 20vh;
    right: 1rem;
    padding: 0;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0;
    border-radius: 50%;
  }

  .g-this-land__button-icon {
    margin: 0;
    top: 50%;
    right: 50%;
    -webkit-transform-origin: 50% 40%;
    transform-origin: 50% 40%;
    -webkit-transform: rotate(90deg) translate(-50%, -50%);
    transform: rotate(90deg) translate(-50%, -50%);
  }

  .g-this-land__content {
    top: calc(20vh - 1rem);
    right: calc(2rem - 0.5rem);
    width: calc(100% - (2rem * 1.5));
    padding: clamp(1rem, 8%, 10rem);
    font-size: 0.9rem;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  .g-this-land__content.active {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .g-this-land__content-background {
    left: -120%;
  }

  .g-this-land__content-background__bottom {
    right: -55%;
    bottom: -45%;
  }
}

.c-accordion__inner::after {
  display: none;
}


.main-elementor-cntr {
  padding-top: 60px;
}

/*Elementor Custom Styles*/

.full-width-img-cntr {
  position: relative;
}

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

.arch-cutout-cntr {
  position: relative;
}

.arch-cutout-cntr .arch-cutout {
  display: flex;
  justify-content: center;
  position: absolute !important;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.arch-cutout-cntr .arch-cutout img {
  display: block;
  height: auto;
  max-width: none;
  vertical-align: bottom;
  width: 100%;
}