:root {
  --white: $color-white --one: $color-one;
  --two: $$color-two;
  --three: $color-three;
  --four: $color-four;
  --five: $color-five;
  --black: $color-black;
  --themeColor: #000;
  --themeColorRgb: 0, 0, 0;
  --contrastColor: #FFF;
  --contrastColorRgb: 255, 255, 255;
  --transitionSec: 0.3s;
  --heightOftopNav: auto;
}
@media (prefers-color-scheme: dark) {
  :root {
    --themeColor: #000;
    --themeColorRgb: 0, 0, 0;
    --contrastColor: #FFF;
    --contrastColorRgb: 255, 255, 255;
  }
  :root[data-theme=light] {
    --themeColor: #FFF;
    --themeColorRgb: 255, 255, 255;
    --contrastColor: #000;
    --contrastColorRgb: 0, 0, 0;
  }
}
@media (prefers-color-scheme: light) {
  :root {
    --themeColor: #FFF;
    --themeColorRgb: 255, 255, 255;
    --contrastColor: #000;
    --contrastColorRgb: 0, 0, 0;
  }
  :root[data-theme=dark] {
    --themeColor: #000;
    --themeColorRgb: 0, 0, 0;
    --contrastColor: #FFF;
    --contrastColorRgb: 255, 255, 255;
  }
}

.pb_widget:first-child .row,
.container:first-child .row {
  margin-top: 0;
}
#footer .pb_widget:first-child .row,
#footer .container:first-child .row {
  margin: calc(0px / 2) 0 calc(0px / 2) 0;
}
#footer .pb_widget:last-child .row,
#footer .container:last-child .row {
  margin-bottom: 0;
}

.pb_widget {
  position: relative;
}
.pb_widget:hover {
  z-index: 9;
}

.row {
  display: -moz-flex;
  display: flex;
  justify-content: space-between;
  margin: 0;
  flex-wrap: wrap;
  background-color: transparent;
  flex-flow: column;
}
.row.-bgcolortransparent {
  padding: 0;
}
.row.-reverseMobile .innerWrapper {
  flex-flow: column-reverse;
}
@media only screen and (min-width: 768px) {
  .row {
    flex-flow: column;
  }
  .row.-reverseMobile {
    flex-flow: row;
  }
  .row.-reverseMobile .innerWrapper {
    flex-flow: row;
  }
}

.innerWrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-flow: column;
  margin: auto;
  max-width: 1440px;
  width: 100%;
}
.innerWrapper.maxwidth_yes {
  max-width: none;
  padding: 0;
}
.innerWrapper.maxwidth_yes .block {
  border-radius: 0;
}
.innerWrapper.-logoloop .box {
  width: 100%;
}
.innerWrapper.-logoloop .text_holder {
  max-width: none;
}
.-bgImage .innerWrapper {
  background-color: transparent;
}
.innerWrapper.-slideshow {
  flex-flow: row;
}
@media only screen and (min-width: 768px) {
  .innerWrapper {
    flex-flow: row;
  }
  .innerWrapper.-gallery {
    flex-flow: column;
  }
}

.instagram {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 16px;
}
.instagram_post {
  min-width: calc(50% - 16px);
  margin: 8px;
  flex: 1;
}
@media only screen and (min-width: 768px) {
  .instagram_post {
    min-width: calc(33.333% - 24px);
    margin: 12px;
  }
}
@media only screen and (min-width: 992px) {
  .instagram_post {
    min-width: calc(25% - 32px);
    margin: 16px;
  }
}
.instagram_image {
  padding-top: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(1);
  transition: transform ease-out 0.2s;
}
.instagram_image:hover {
  transform: scale(0.98);
}

.gallery {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.galleryThumb {
  width: calc(25% - 2px);
  margin: 1px;
}
.gallery a {
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(1);
  transition: transform ease-out 0.2s;
}
.gallery a:hover {
  transform: scale(0.98);
}

.gallery_paging {
  position: relative;
  padding: 0;
  text-align: center;
  width: 100%;
}
.gallery_paging .paging_box {
  display: inline-block;
  padding: 16px;
  width: 100%;
}
.gallery_paging a.gallery_paginglink {
  text-decoration: none;
  padding: 7px 11px;
  border-radius: 4px;
  line-height: normal;
  font-size: 12px;
  line-height: 19.5px;
  font-size: 1.2rem;
  line-height: 1.95rem;
  color: #ffffff;
}
.-bgcolorone .gallery_paging a.gallery_paginglink {
  color: #000000;
}
.gallery_paging a.gallery_paginglink:hover {
  background: rgba(48, 48, 48, 0.5);
  color: #ffffff;
}
.gallery_paging a.gallery_paginglink.-on {
  background: #474344;
  color: #ffffff;
}

.-bgcolorone {
  background-color: #ffffff;
}

.-bgcolortwo {
  background-color: #FFFBEC;
}

.-bgcolorthree {
  background-color: #474344;
}

.-bgcolorfour {
  background-color: #231F20;
}

.-bgcolorfive {
  background-color: #CEA830;
}

.-bgcolorsix {
  background-color: #CEA830;
}

.-bgcolorseven {
  background-color: #000000;
}

.-bgcolortransparent {
  background-color: transparent;
}

.row-bgcolorone {
  background-color: #ffffff;
}

.row-bgcolortwo {
  background-color: #FFFBEC;
}

.row-bgcolorthree {
  background-color: #474344;
}

.row-bgcolorfour {
  background-color: #231F20;
}

.row-bgcolorfive {
  background-color: #CEA830;
}

.row-bgcolorsix {
  background-color: #CEA830;
}

.row-bgcolorseven {
  background-color: #000000;
}

.row-bgcolortransparent {
  background-color: transparent;
}

.faqAnswer {
  padding: 0 0 16px 0;
  color: rgba(var(--contrastColorRgb), 0.6);
  display: none;
}
.faqQuestion {
  cursor: pointer;
  padding: 16px 16px 16px 0;
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
}
.faqQuestion:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f067";
  font-size: 18px;
  color: var(--contrastColor);
  margin-left: 16px;
  align-self: start;
  text-align: center;
  transform: rotate(0deg);
  transition: all var(--transitionSec) cubic-bezier(0.33, 0, 0.2, 1);
}
.faqContent {
  overflow: hidden;
  transition: height 0.33s cubic-bezier(0.33, 0, 0.2, 1);
  box-sizing: border-box;
  max-width: 100%;
  width: 600px;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
.faqContent.open .faqQuestion:after {
  content: "\f068";
  color: rgba(var(--contrastColorRgb), 1);
  transform: rotate(180deg);
}

.featureWrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  flex-direction: column;
  padding: 32px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #FFFBEC;
  flex: 1;
  margin-bottom: 32px;
  border-radius: 4px;
}
@media only screen and (min-width: 667px) {
  .feature {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) {
  .feature {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) {
  .feature {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .feature {
    margin-right: 72px;
  }
}
@media only screen and (min-width: 1200px) {
  .feature {
    margin-right: 72px;
  }
}
@media only screen and (min-width: 1440px) {
  .feature {
    margin-right: 72px;
  }
}
.feature:last-child {
  margin-right: 0;
}
.featureHeader {
  display: flex;
}
.featureImg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.featureTitle {
  color: #231F20;
  font-size: 20px;
}
.featureText {
  margin: 8px 0;
}
.featureLink {
  color: #474344;
  font-size: 14px;
  font-weight: 500;
}

.storytellingWrapper {
  width: 100%;
}

.storytellingContainer {
  display: block;
  width: 100vw;
  padding: 32px 0;
  white-space: nowrap;
  overflow-y: hidden;
  overflow-x: auto;
  margin: -32px -24px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: mandatory;
}
@media only screen and (min-width: 667px) {
  .storytellingContainer {
    margin: -32px -24px;
  }
}
@media only screen and (min-width: 768px) {
  .storytellingContainer {
    margin: -32px -24px;
  }
}
@media only screen and (min-width: 992px) {
  .storytellingContainer {
    margin: -32px -24px;
  }
}
@media only screen and (min-width: 1024px) {
  .storytellingContainer {
    margin: -32px -88px;
  }
}
@media only screen and (min-width: 1200px) {
  .storytellingContainer {
    margin: -32px -88px;
  }
}
@media only screen and (min-width: 1440px) {
  .storytellingContainer {
    margin: -32px -88px;
  }
}

.storytelling {
  display: inline-block;
  vertical-align: top;
  width: 320px;
  background: #fafafa;
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.104);
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 32px;
  margin-right: 16px;
  scroll-snap-align: center;
}
@media only screen and (min-width: 667px) {
  .storytelling {
    width: 320px;
  }
}
@media only screen and (min-width: 1024px) {
  .storytelling {
    width: 480px;
  }
}
@media only screen and (min-width: 667px) {
  .storytelling {
    margin-right: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .storytelling {
    margin-right: 16px;
  }
}
@media only screen and (min-width: 992px) {
  .storytelling {
    margin-right: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .storytelling {
    margin-right: 72px;
  }
}
@media only screen and (min-width: 1200px) {
  .storytelling {
    margin-right: 72px;
  }
}
@media only screen and (min-width: 1440px) {
  .storytelling {
    margin-right: 72px;
  }
}
.storytelling:first-child {
  margin-left: 24px;
}
@media only screen and (min-width: 667px) {
  .storytelling:first-child {
    margin-left: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .storytelling:first-child {
    margin-left: 24px;
  }
}
@media only screen and (min-width: 992px) {
  .storytelling:first-child {
    margin-left: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .storytelling:first-child {
    margin-left: 88px;
  }
}
@media only screen and (min-width: 1200px) {
  .storytelling:first-child {
    margin-left: 88px;
  }
}
@media only screen and (min-width: 1440px) {
  .storytelling:first-child {
    margin-left: 88px;
  }
}
.storytelling:last-child {
  margin-right: 24px;
}
@media only screen and (min-width: 667px) {
  .storytelling:last-child {
    margin-right: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .storytelling:last-child {
    margin-right: 24px;
  }
}
@media only screen and (min-width: 992px) {
  .storytelling:last-child {
    margin-right: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .storytelling:last-child {
    margin-right: 88px;
  }
}
@media only screen and (min-width: 1200px) {
  .storytelling:last-child {
    margin-right: 88px;
  }
}
@media only screen and (min-width: 1440px) {
  .storytelling:last-child {
    margin-right: 88px;
  }
}
.storytellingContent {
  padding: 24px;
}
.storytellingTitle {
  color: #231F20;
  font-size: 24px;
  white-space: break-spaces;
}
.storytellingText {
  margin: 8px 0;
  font-size: 16px;
  white-space: break-spaces;
}
.storytellingLink {
  color: #474344;
  font-size: 14px;
  font-weight: 500;
}

.block {
  align-self: stretch !important;
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  margin-bottom: 0px;
  transition: border-color var(--transitionSec) cubic-bezier(0.33, 0, 0.2, 1);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0;
  overflow: hidden;
}
.block.-squareImages {
  border-radius: 0;
}
.block.-quote {
  background-color: transparent !important;
}
.block.-quote .smallHeader {
  display: none;
}
.block.-quote .smallHeader.-quote {
  display: inline-block;
  text-align: center;
  display: block;
  font-weight: 500;
  font-size: 20px;
  font-style: normal;
  margin-top: 24px;
}
@media only screen and (min-width: 667px) {
  .block.-quote:first-child .box {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media only screen and (min-width: 667px) {
  .block.-quote:last-child .box {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.block.-quote .box {
  border-radius: 8px;
  font-size: 16px;
  line-height: 22px;
  font-style: italic;
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media only screen and (min-width: 992px) {
  .block.-quote .box {
    border-radius: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .block.-quote .box {
    border-radius: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .block.-quote .box {
    border-radius: 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .block:first-child .block.-quote .box {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .block.-quote .block.-quote .box {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media only screen and (min-width: 667px) {
  .block.-quote .box {
    padding-top: 72px;
    margin-top: 72px;
    padding-left: 56px;
    padding-right: 56px;
  }
}
@media only screen and (min-width: 768px) {
  .block.-quote .box {
    margin-top: 72px;
    padding-top: 72px;
    padding-left: 56px;
    padding-right: 56px;
  }
}
@media only screen and (min-width: 992px) {
  .block.-quote .box {
    padding-top: 72px;
    margin-top: 48px;
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .block.-quote .box {
    margin-top: 92px;
    padding-top: 116px;
    padding-left: 92px;
    padding-right: 92px;
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 1200px) {
  .block.-quote .box {
    margin-top: 92px;
    font-size: 24px;
    line-height: 32px;
  }
}
@media only screen and (min-width: 1440px) {
  .block.-quote .box {
    margin-top: 80px;
  }
}
.block.-quote .box .body_text::before, .block.-quote .box .body_text::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 24px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  z-index: 99;
}
@media only screen and (min-width: 768px) {
  .block.-quote .box .body_text::before, .block.-quote .box .body_text::after {
    font-size: 32px;
    line-height: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .block.-quote .box .body_text::before, .block.-quote .box .body_text::after {
    font-size: 48px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  .block.-quote .box .body_text::before, .block.-quote .box .body_text::after {
    font-size: 56px;
    line-height: 30px;
  }
}
.block.-quote .box .body_text::before {
  content: "\f10d";
  left: -32px;
  top: 0;
}
@media only screen and (min-width: 667px) {
  .block.-quote .box .body_text::before {
    left: -40px;
  }
}
@media only screen and (min-width: 1024px) {
  .block.-quote .box .body_text::before {
    left: -72px;
  }
}
.block.-quote .box .body_text::after {
  content: "\f10e";
  right: -32px;
  bottom: 0;
}
@media only screen and (min-width: 667px) {
  .block.-quote .box .body_text::after {
    right: -40px;
  }
}
@media only screen and (min-width: 1024px) {
  .block.-quote .box .body_text::after {
    right: -72px;
  }
}
.pb_widget:last-child .block.size100:last-child, .container:last-child .block.size100:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .block {
    margin-bottom: 0px;
  }
}
.block.-gallery, .block.-instagram {
  display: none;
}
.block.-darkplate {
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .block.-darkplate .box {
    padding: 0;
  }
}
.block.-video {
  overflow: hidden;
}

.-bgRowImage {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.-bgImage {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #ffffff;
}
.-bgImage h1,
.-bgImage h2,
.-bgImage h3,
.-bgImage h4,
.-bgImage h5,
.-bgImage a {
  color: #ffffff;
}
.-bgcolorone .-bgImage, .-bgcolortwo .-bgImage, .-bgcolorthree .-bgImage, .-bgcolorfour .-bgImage, .-bgcolorfive .-bgImage, .-bgcolorsix .-bgImage, .-bgcolorseven .-bgImage, .-bgcolortransparent .-bgImage {
  color: #ffffff;
}
.-bgcolorone .-bgImage h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-bgImage h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-bgImage h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-bgImage h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-bgImage h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-bgImage a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortwo .-bgImage h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-bgImage h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-bgImage h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-bgImage h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-bgImage h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-bgImage a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorthree .-bgImage h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-bgImage h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-bgImage h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-bgImage h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-bgImage h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-bgImage a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorfour .-bgImage h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-bgImage h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-bgImage h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-bgImage h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-bgImage h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-bgImage a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorfive .-bgImage h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-bgImage h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-bgImage h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-bgImage h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-bgImage h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-bgImage a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorsix .-bgImage h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-bgImage h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-bgImage h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-bgImage h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-bgImage h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-bgImage a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorseven .-bgImage h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-bgImage h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-bgImage h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-bgImage h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-bgImage h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-bgImage a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortransparent .-bgImage h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-bgImage h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-bgImage h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-bgImage h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-bgImage h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-bgImage a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem) {
  color: #ffffff;
}
.-bgImage.-parallax {
  background-attachment: fixed;
}
@media only screen and (max-width: 768px) {
  .-bgImage.-parallax {
    background-size: cover;
    background-position: top center;
  }
}

@media only screen and (min-width: 558px) {
  .size20 {
    min-height: 50vw;
    max-width: 50%;
    width: calc(50% - 0px * 0.5);
  }
}
@media only screen and (min-width: 667px) {
  .size20 {
    min-height: 40vw;
  }
}
@media only screen and (min-width: 768px) {
  .size20 {
    min-height: 33vw;
  }
}
@media only screen and (min-width: 992px) {
  .size20 {
    min-height: 33vw;
    max-width: 33.33333%;
    width: calc(33.33333% - 0px * 0.5);
  }
}
@media only screen and (min-width: 1024px) {
  .size20 {
    min-height: 25vw;
  }
}
@media only screen and (min-width: 1200px) {
  .size20 {
    min-height: 25vw;
    max-width: 20%;
    width: calc(20% - 0px * 0.75);
  }
}
@media only screen and (min-width: 1440px) {
  .size20 {
    min-height: 480px;
  }
}

@media only screen and (min-width: 558px) {
  .size25 {
    min-height: 50vw;
    max-width: 50%;
    width: calc(50% - 0px * 0.5);
  }
}
@media only screen and (min-width: 667px) {
  .size25 {
    min-height: 40vw;
  }
}
@media only screen and (min-width: 768px) {
  .size25 {
    min-height: 33vw;
  }
}
@media only screen and (min-width: 992px) {
  .size25 {
    min-height: 33vw;
  }
}
@media only screen and (min-width: 1024px) {
  .size25 {
    min-height: 25vw;
  }
}
@media only screen and (min-width: 1200px) {
  .size25 {
    min-height: 25vw;
    max-width: 25%;
    width: calc(25% - 0px * 0.75);
  }
}
@media only screen and (min-width: 1440px) {
  .size25 {
    min-height: 480px;
  }
}
@media only screen and (min-width: 558px) {
  .-withImages .size25 {
    min-height: 50vw;
    max-width: 50%;
    width: calc(50% - 0px * 0.5);
  }
}
@media only screen and (min-width: 667px) {
  .-withImages .size25 {
    min-height: 40vw;
  }
}
@media only screen and (min-width: 768px) {
  .-withImages .size25 {
    min-height: 33vw;
  }
}
@media only screen and (min-width: 992px) {
  .-withImages .size25 {
    min-height: 33vw;
    max-width: 25%;
    width: calc(25% - 0px * 0.75);
  }
}
@media only screen and (min-width: 1024px) {
  .-withImages .size25 {
    min-height: 25vw;
  }
}
@media only screen and (min-width: 1200px) {
  .-withImages .size25 {
    min-height: 25vw;
  }
}
@media only screen and (min-width: 1440px) {
  .-withImages .size25 {
    min-height: 480px;
  }
}

.size33 {
  min-height: 56.25vw;
}
.size33.-video {
  padding-top: 56.25% !important;
  position: relative;
  height: 0 !important;
  min-height: 0 !important;
}
@media only screen and (min-width: 992px) {
  .size33 {
    max-width: 33.333333%;
    width: calc(33.333333% - 0px * 0.666666);
  }
  .size33.-video {
    padding-top: 18.75% !important;
  }
}
@media only screen and (min-width: 667px) {
  .size33 {
    min-height: 56.25vw;
  }
}
@media only screen and (min-width: 768px) {
  .size33 {
    min-height: calc(0.3333 * (100vw - 32px) - 0px * 0.66666);
  }
}
@media only screen and (min-width: 992px) {
  .size33 {
    min-height: calc(0.3333 * (100vw - 32px) - 0px * 0.66666);
  }
}
@media only screen and (min-width: 1024px) {
  .size33 {
    min-height: calc(0.3333 * (100vw - 32px) - 0px * 0.66666);
  }
}
@media only screen and (min-width: 1200px) {
  .size33 {
    min-height: calc(0.3333 * (100vw - 32px) - 0px * 0.66666);
  }
  .size663366 .size33 {
    max-width: 33.333333%;
    width: calc(33.333333% - 0px * 0.666666);
  }
}
@media only screen and (min-width: 1440px) {
  .size33 {
    min-height: calc(0.3333 * (100vw - (100vw - 1408px)) - 0px * 0.66666);
  }
}

.size50 {
  min-height: 56.25vw;
}
.size50.-video {
  padding-top: 56.25% !important;
  position: relative;
  height: 0 !important;
  min-height: 0 !important;
}
.size50.-squareImages {
  position: relative;
  padding-top: 100%;
  height: 0 !important;
  min-height: 0 !important;
}
@media only screen and (min-width: 768px) {
  .size50.-squareImages {
    padding-top: 50% !important;
  }
}
@media only screen and (min-width: 768px) {
  .size50 {
    max-width: 50%;
    width: calc(50% - 0px * 0.5);
  }
  .size50.-video {
    padding-top: 28.125% !important;
  }
}
@media only screen and (min-width: 667px) {
  .size50 {
    min-height: 56.25vw;
  }
}
@media only screen and (min-width: 768px) {
  .size50 {
    min-height: 50vw;
  }
}
@media only screen and (min-width: 992px) {
  .size50 {
    min-height: 50vw;
  }
}
@media only screen and (min-width: 1024px) {
  .size50 {
    min-height: 50vw;
  }
}
@media only screen and (min-width: 1200px) {
  .size50 {
    min-height: 36vw;
  }
}
@media only screen and (min-width: 1440px) {
  .size50 {
    min-height: 674px;
  }
}
.size50.-heightAuto {
  min-height: 320px;
  height: auto;
  font-size: 16px;
  line-height: 22px;
}
.size50.-heightAuto .box {
  width: 100%;
}
.size50.-heightAuto .box .text_holder {
  flex: 1;
}

.size66 {
  min-height: 30vw;
}
@media only screen and (max-width: 667px) {
  .size66.-bgImage {
    min-height: 100vw;
  }
}
.size66.-video {
  padding-top: 37.5% !important;
  position: relative;
  height: 0 !important;
  min-height: 0 !important;
}
@media only screen and (min-width: 992px) {
  .size66 {
    max-width: 66.666666%;
    width: calc(66.666666% - 0px * 0.333333);
  }
  .size663366 .size66 {
    max-width: 50%;
    width: calc(50% - 0px * 0.5);
  }
}
@media only screen and (min-width: 667px) {
  .size66 {
    min-height: 56.25vw;
  }
}
@media only screen and (min-width: 768px) {
  .size66 {
    min-height: 33.33vw;
  }
}
@media only screen and (min-width: 992px) {
  .size66 {
    min-height: 33.33vw;
  }
}
@media only screen and (min-width: 1024px) {
  .size66 {
    min-height: 33.33vw;
  }
}
@media only screen and (min-width: 1200px) {
  .size66 {
    min-height: 33.33vw;
  }
  .size663366 .size66 {
    max-width: 66.666666%;
    width: calc(66.666666% - 0px * 0.333333);
  }
}
@media only screen and (min-width: 1440px) {
  .size66 {
    min-height: 480px;
  }
}
.size66.-heightAuto {
  min-height: auto;
  height: auto;
}

.size100 {
  min-height: 330px;
  width: 100%;
  margin-bottom: 0;
}
@media only screen and (min-width: 667px) {
  .size100 {
    min-height: 46.3vw;
  }
}
@media only screen and (min-width: 768px) {
  .size100 {
    min-height: 46.3vw;
  }
}
@media only screen and (min-width: 992px) {
  .size100 {
    min-height: 46.3vw;
  }
}
@media only screen and (min-width: 1024px) {
  .size100 {
    min-height: 46.3vw;
  }
}
@media only screen and (min-width: 1200px) {
  .size100 {
    min-height: calc(0.463 * (100vw - (100vw - 1440px)));
  }
}
@media only screen and (min-width: 1440px) {
  .size100 {
    min-height: calc(0.463 * (100vw - (100vw - 1440px)));
  }
}
.size100.-slideshow {
  min-height: 480px;
}
@media only screen and (min-width: 667px) {
  .size100.-slideshow {
    min-height: 480px;
  }
}
@media only screen and (min-width: 768px) {
  .size100.-slideshow {
    min-height: 480px;
  }
}
@media only screen and (min-width: 992px) {
  .size100.-slideshow {
    min-height: 42vw;
  }
}
@media only screen and (min-width: 1024px) {
  .size100.-slideshow {
    height: 42vw;
  }
}
@media only screen and (min-width: 1200px) {
  .size100.-slideshow {
    height: 42vw;
  }
}
@media only screen and (min-width: 1440px) {
  .size100.-slideshow {
    height: 42vw;
  }
}
.size100.-heightAuto {
  min-height: auto;
  height: auto;
}

.-hide {
  display: none !important;
  padding: 0 !important;
}

.cycle-slideshow {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.-absolute .cycle-slideshow {
  position: absolute;
}

.cycle-slide {
  width: 100%;
  height: 100%;
}
.cycle-slide img {
  min-height: 100%;
  min-width: 100%;
  width: auto;
  height: auto;
  max-width: none;
}

.-bgcolorone .-video, .-bgcolortwo .-video, .-bgcolorthree .-video, .-bgcolorfour .-video, .-bgcolorfive .-video, .-bgcolorsix .-video, .-bgcolorseven .-video, .-bgcolortransparent .-video {
  color: #ffffff;
}
.-bgcolorone .-video h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-video h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-video h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-video h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-video h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-video a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortwo .-video h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-video h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-video h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-video h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-video h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-video a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorthree .-video h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-video h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-video h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-video h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-video h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-video a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorfour .-video h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-video h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-video h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-video h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-video h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-video a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorfive .-video h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-video h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-video h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-video h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-video h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-video a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorsix .-video h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-video h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-video h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-video h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-video h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-video a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorseven .-video h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-video h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-video h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-video h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-video h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-video a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortransparent .-video h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-video h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-video h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-video h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-video h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-video a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem) {
  color: #ffffff;
}
.-video.size100 {
  padding-top: 56.25% !important;
  position: relative;
  height: 0 !important;
  min-height: 0 !important;
}

img.video_loader {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 50px;
}

.text_holder {
  position: relative;
  max-height: 100%;
  align-self: center;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.text_holder h1,
.text_holder h2,
.text_holder h3,
.text_holder h4,
.text_holder h5 {
  margin-bottom: 0;
}
.-top .text_holder {
  align-self: flex-start;
}
.-bottom .text_holder {
  align-self: flex-end;
}
@media only screen and (max-width: 558px) {
  .-darkplate .text_holder {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 24px;
  }
}
@media only screen and (min-width: 558px) {
  .-darkplate .text_holder {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    max-width: none;
  }
}
@media only screen and (min-width: 1024px) {
  .-darkplate .text_holder {
    padding: 72px 56px;
  }
}
@media only screen and (min-width: 1200px) {
  .-darkplate .text_holder {
    padding: 72px;
  }
}
.-instagram .text_holder {
  max-width: 1200px;
  width: 100%;
}

.box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding: 48px 24px;
  transition: color var(--transitionSec) cubic-bezier(0.33, 0, 0.2, 1);
}
.size33 .box {
  padding: 24px;
}
@media only screen and (min-width: 992px) {
  .size33 .box {
    padding: 40px;
  }
}
.-squareImages .box {
  display: none;
}
.box.-slideshow {
  position: relative;
  padding: 0 !important;
  margin-top: 48px;
  margin-left: 48px;
  margin-bottom: 64px;
  width: calc(100% - 96px);
}
.box.-slideshow.-absolute {
  position: absolute;
}
@media only screen and (min-width: 992px) {
  .box.-slideshow.-absolute {
    position: absolute;
  }
}
@media only screen and (min-width: 667px) {
  .box.-slideshow {
    margin-left: 48px;
    margin-top: 48px;
    width: calc(100% - 96px);
  }
}
@media only screen and (min-width: 768px) {
  .box.-slideshow {
    margin-left: 48px;
    margin-top: 48px;
    width: auto;
  }
}
@media only screen and (min-width: 992px) {
  .box.-slideshow {
    position: absolute;
    margin-left: 48px;
    margin-top: 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .box.-slideshow {
    margin-left: 92px;
    margin-top: 92px;
  }
}
@media only screen and (min-width: 1200px) {
  .box.-slideshow {
    margin-left: 92px;
    margin-top: 92px;
  }
}
@media only screen and (min-width: 1440px) {
  .box.-slideshow {
    margin-left: 80px;
    margin-top: 80px;
  }
}
@media only screen and (min-width: 667px) {
  .box {
    padding: 48px 24px;
  }
}
@media only screen and (min-width: 768px) {
  .box {
    padding: 48px 24px;
  }
}
@media only screen and (min-width: 992px) {
  .box {
    padding: 48px 24px;
  }
  .size100 .box {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media only screen and (min-width: 1024px) {
  .box {
    padding: 48px 24px;
  }
  .size100 .box {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
@media only screen and (min-width: 1200px) {
  .box {
    padding: 48px 32px;
  }
}
@media only screen and (min-width: 1440px) {
  .box {
    padding: 56px 32px;
  }
  #footer .box {
    padding: 48px 0;
  }
  .size100 .box {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.box.-noPadding {
  padding: 0;
  width: 100%;
}
.box.-noPadding {
  padding: 0;
  width: 100%;
}
.-bgcolorone .box {
  color: #231f20;
}
.-bgcolorone .box h1,
.-bgcolorone .box h2,
.-bgcolorone .box h3,
.-bgcolorone .box h4,
.-bgcolorone .box h5 {
  color: #231F20;
}
.-bgcolorone .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem) {
  color: #231f20;
}
.-bgcolortwo .-bgcolorone .box, .-bgcolorthree .-bgcolorone .box, .-bgcolorfour .-bgcolorone .box, .-bgcolorfive .-bgcolorone .box, .-bgcolorsix .-bgcolorone .box, .-bgcolorseven .-bgcolorone .box, .-bgcolortransparent .-bgcolorone .box {
  color: #231f20;
}
.-bgcolortwo .-bgcolorone .box h1,
.-bgcolortwo .-bgcolorone .box h2,
.-bgcolortwo .-bgcolorone .box h3,
.-bgcolortwo .-bgcolorone .box h4,
.-bgcolortwo .-bgcolorone .box h5, .-bgcolorthree .-bgcolorone .box h1,
.-bgcolorthree .-bgcolorone .box h2,
.-bgcolorthree .-bgcolorone .box h3,
.-bgcolorthree .-bgcolorone .box h4,
.-bgcolorthree .-bgcolorone .box h5, .-bgcolorfour .-bgcolorone .box h1,
.-bgcolorfour .-bgcolorone .box h2,
.-bgcolorfour .-bgcolorone .box h3,
.-bgcolorfour .-bgcolorone .box h4,
.-bgcolorfour .-bgcolorone .box h5, .-bgcolorfive .-bgcolorone .box h1,
.-bgcolorfive .-bgcolorone .box h2,
.-bgcolorfive .-bgcolorone .box h3,
.-bgcolorfive .-bgcolorone .box h4,
.-bgcolorfive .-bgcolorone .box h5, .-bgcolorsix .-bgcolorone .box h1,
.-bgcolorsix .-bgcolorone .box h2,
.-bgcolorsix .-bgcolorone .box h3,
.-bgcolorsix .-bgcolorone .box h4,
.-bgcolorsix .-bgcolorone .box h5, .-bgcolorseven .-bgcolorone .box h1,
.-bgcolorseven .-bgcolorone .box h2,
.-bgcolorseven .-bgcolorone .box h3,
.-bgcolorseven .-bgcolorone .box h4,
.-bgcolorseven .-bgcolorone .box h5, .-bgcolortransparent .-bgcolorone .box h1,
.-bgcolortransparent .-bgcolorone .box h2,
.-bgcolortransparent .-bgcolorone .box h3,
.-bgcolortransparent .-bgcolorone .box h4,
.-bgcolortransparent .-bgcolorone .box h5 {
  color: #231F20;
}
.-bgcolortwo .-bgcolorone .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorthree .-bgcolorone .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorfour .-bgcolorone .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorfive .-bgcolorone .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorsix .-bgcolorone .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorseven .-bgcolorone .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortransparent .-bgcolorone .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem) {
  color: #231f20;
}
.-bgcolortwo .box {
  color: #231f20;
}
.-bgcolortwo .box h1,
.-bgcolortwo .box h2,
.-bgcolortwo .box h3,
.-bgcolortwo .box h4,
.-bgcolortwo .box h5 {
  color: #231F20;
}
.-bgcolortwo .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem) {
  color: #231f20;
}
.-bgcolorone .-bgcolortwo .box, .-bgcolorthree .-bgcolortwo .box, .-bgcolorfour .-bgcolortwo .box, .-bgcolorfive .-bgcolortwo .box, .-bgcolorsix .-bgcolortwo .box, .-bgcolorseven .-bgcolortwo .box, .-bgcolortransparent .-bgcolortwo .box {
  color: #231f20;
}
.-bgcolorone .-bgcolortwo .box h1,
.-bgcolorone .-bgcolortwo .box h2,
.-bgcolorone .-bgcolortwo .box h3,
.-bgcolorone .-bgcolortwo .box h4,
.-bgcolorone .-bgcolortwo .box h5, .-bgcolorthree .-bgcolortwo .box h1,
.-bgcolorthree .-bgcolortwo .box h2,
.-bgcolorthree .-bgcolortwo .box h3,
.-bgcolorthree .-bgcolortwo .box h4,
.-bgcolorthree .-bgcolortwo .box h5, .-bgcolorfour .-bgcolortwo .box h1,
.-bgcolorfour .-bgcolortwo .box h2,
.-bgcolorfour .-bgcolortwo .box h3,
.-bgcolorfour .-bgcolortwo .box h4,
.-bgcolorfour .-bgcolortwo .box h5, .-bgcolorfive .-bgcolortwo .box h1,
.-bgcolorfive .-bgcolortwo .box h2,
.-bgcolorfive .-bgcolortwo .box h3,
.-bgcolorfive .-bgcolortwo .box h4,
.-bgcolorfive .-bgcolortwo .box h5, .-bgcolorsix .-bgcolortwo .box h1,
.-bgcolorsix .-bgcolortwo .box h2,
.-bgcolorsix .-bgcolortwo .box h3,
.-bgcolorsix .-bgcolortwo .box h4,
.-bgcolorsix .-bgcolortwo .box h5, .-bgcolorseven .-bgcolortwo .box h1,
.-bgcolorseven .-bgcolortwo .box h2,
.-bgcolorseven .-bgcolortwo .box h3,
.-bgcolorseven .-bgcolortwo .box h4,
.-bgcolorseven .-bgcolortwo .box h5, .-bgcolortransparent .-bgcolortwo .box h1,
.-bgcolortransparent .-bgcolortwo .box h2,
.-bgcolortransparent .-bgcolortwo .box h3,
.-bgcolortransparent .-bgcolortwo .box h4,
.-bgcolortransparent .-bgcolortwo .box h5 {
  color: #231F20;
}
.-bgcolorone .-bgcolortwo .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorthree .-bgcolortwo .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorfour .-bgcolortwo .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorfive .-bgcolortwo .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorsix .-bgcolortwo .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorseven .-bgcolortwo .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortransparent .-bgcolortwo .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem) {
  color: #231f20;
}
.-bgcolorthree .box {
  color: #ffffff;
}
.-bgcolorthree .box h1,
.-bgcolorthree .box h2,
.-bgcolorthree .box h3,
.-bgcolorthree .box h4,
.-bgcolorthree .box h5 {
  color: #ffffff;
}
.-bgcolorthree .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem) {
  color: #ffffff;
}
.-bgcolorone .-bgcolorthree .box, .-bgcolortwo .-bgcolorthree .box, .-bgcolorfour .-bgcolorthree .box, .-bgcolorfive .-bgcolorthree .box, .-bgcolorsix .-bgcolorthree .box, .-bgcolorseven .-bgcolorthree .box, .-bgcolortransparent .-bgcolorthree .box {
  color: #ffffff;
}
.-bgcolorone .-bgcolorthree .box h1,
.-bgcolorone .-bgcolorthree .box h2,
.-bgcolorone .-bgcolorthree .box h3,
.-bgcolorone .-bgcolorthree .box h4,
.-bgcolorone .-bgcolorthree .box h5, .-bgcolortwo .-bgcolorthree .box h1,
.-bgcolortwo .-bgcolorthree .box h2,
.-bgcolortwo .-bgcolorthree .box h3,
.-bgcolortwo .-bgcolorthree .box h4,
.-bgcolortwo .-bgcolorthree .box h5, .-bgcolorfour .-bgcolorthree .box h1,
.-bgcolorfour .-bgcolorthree .box h2,
.-bgcolorfour .-bgcolorthree .box h3,
.-bgcolorfour .-bgcolorthree .box h4,
.-bgcolorfour .-bgcolorthree .box h5, .-bgcolorfive .-bgcolorthree .box h1,
.-bgcolorfive .-bgcolorthree .box h2,
.-bgcolorfive .-bgcolorthree .box h3,
.-bgcolorfive .-bgcolorthree .box h4,
.-bgcolorfive .-bgcolorthree .box h5, .-bgcolorsix .-bgcolorthree .box h1,
.-bgcolorsix .-bgcolorthree .box h2,
.-bgcolorsix .-bgcolorthree .box h3,
.-bgcolorsix .-bgcolorthree .box h4,
.-bgcolorsix .-bgcolorthree .box h5, .-bgcolorseven .-bgcolorthree .box h1,
.-bgcolorseven .-bgcolorthree .box h2,
.-bgcolorseven .-bgcolorthree .box h3,
.-bgcolorseven .-bgcolorthree .box h4,
.-bgcolorseven .-bgcolorthree .box h5, .-bgcolortransparent .-bgcolorthree .box h1,
.-bgcolortransparent .-bgcolorthree .box h2,
.-bgcolortransparent .-bgcolorthree .box h3,
.-bgcolortransparent .-bgcolorthree .box h4,
.-bgcolortransparent .-bgcolorthree .box h5 {
  color: #ffffff;
}
.-bgcolorone .-bgcolorthree .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortwo .-bgcolorthree .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorfour .-bgcolorthree .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorfive .-bgcolorthree .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorsix .-bgcolorthree .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorseven .-bgcolorthree .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortransparent .-bgcolorthree .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem) {
  color: #ffffff;
}
.-bgcolorfour .box {
  color: #ffffff;
}
.-bgcolorfour .box h1,
.-bgcolorfour .box h2,
.-bgcolorfour .box h3,
.-bgcolorfour .box h4,
.-bgcolorfour .box h5 {
  color: #ffffff;
}
.-bgcolorfour .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem) {
  color: #ffffff;
}
.-bgcolorone .-bgcolorfour .box, .-bgcolortwo .-bgcolorfour .box, .-bgcolorfour .-bgcolorfour .box, .-bgcolorfive .-bgcolorfour .box, .-bgcolorsix .-bgcolorfour .box, .-bgcolorseven .-bgcolorfour .box, .-bgcolortransparent .-bgcolorfour .box {
  color: #ffffff;
}
.-bgcolorone .-bgcolorfour .box h1,
.-bgcolorone .-bgcolorfour .box h2,
.-bgcolorone .-bgcolorfour .box h3,
.-bgcolorone .-bgcolorfour .box h4,
.-bgcolorone .-bgcolorfour .box h5, .-bgcolortwo .-bgcolorfour .box h1,
.-bgcolortwo .-bgcolorfour .box h2,
.-bgcolortwo .-bgcolorfour .box h3,
.-bgcolortwo .-bgcolorfour .box h4,
.-bgcolortwo .-bgcolorfour .box h5, .-bgcolorfour .-bgcolorfour .box h1,
.-bgcolorfour .-bgcolorfour .box h2,
.-bgcolorfour .-bgcolorfour .box h3,
.-bgcolorfour .-bgcolorfour .box h4,
.-bgcolorfour .-bgcolorfour .box h5, .-bgcolorfive .-bgcolorfour .box h1,
.-bgcolorfive .-bgcolorfour .box h2,
.-bgcolorfive .-bgcolorfour .box h3,
.-bgcolorfive .-bgcolorfour .box h4,
.-bgcolorfive .-bgcolorfour .box h5, .-bgcolorsix .-bgcolorfour .box h1,
.-bgcolorsix .-bgcolorfour .box h2,
.-bgcolorsix .-bgcolorfour .box h3,
.-bgcolorsix .-bgcolorfour .box h4,
.-bgcolorsix .-bgcolorfour .box h5, .-bgcolorseven .-bgcolorfour .box h1,
.-bgcolorseven .-bgcolorfour .box h2,
.-bgcolorseven .-bgcolorfour .box h3,
.-bgcolorseven .-bgcolorfour .box h4,
.-bgcolorseven .-bgcolorfour .box h5, .-bgcolortransparent .-bgcolorfour .box h1,
.-bgcolortransparent .-bgcolorfour .box h2,
.-bgcolortransparent .-bgcolorfour .box h3,
.-bgcolortransparent .-bgcolorfour .box h4,
.-bgcolortransparent .-bgcolorfour .box h5 {
  color: #ffffff;
}
.-bgcolorone .-bgcolorfour .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortwo .-bgcolorfour .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorfour .-bgcolorfour .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorfive .-bgcolorfour .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorsix .-bgcolorfour .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorseven .-bgcolorfour .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortransparent .-bgcolorfour .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem) {
  color: #ffffff;
}
.-bgcolorfive .box, .-bgcolorsix .box, .-bgcolorseven .box {
  color: #231F20;
}
.-bgcolorfive .box h1,
.-bgcolorfive .box h2,
.-bgcolorfive .box h3,
.-bgcolorfive .box h4,
.-bgcolorfive .box h5, .-bgcolorsix .box h1,
.-bgcolorsix .box h2,
.-bgcolorsix .box h3,
.-bgcolorsix .box h4,
.-bgcolorsix .box h5, .-bgcolorseven .box h1,
.-bgcolorseven .box h2,
.-bgcolorseven .box h3,
.-bgcolorseven .box h4,
.-bgcolorseven .box h5 {
  color: #231F20;
}
.-bgcolorfive .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorsix .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorseven .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem) {
  color: #231F20;
}
.-bgcolorone .-bgcolorfive .box, .-bgcolortwo .-bgcolorfive .box, .-bgcolorthree .-bgcolorfive .box, .-bgcolortransparent .-bgcolorfive .box, .-bgcolorone .-bgcolorsix .box, .-bgcolortwo .-bgcolorsix .box, .-bgcolorthree .-bgcolorsix .box, .-bgcolortransparent .-bgcolorsix .box, .-bgcolorone .-bgcolorseven .box, .-bgcolortwo .-bgcolorseven .box, .-bgcolorthree .-bgcolorseven .box, .-bgcolortransparent .-bgcolorseven .box {
  color: #231F20;
}
.-bgcolorone .-bgcolorfive .box h1,
.-bgcolorone .-bgcolorfive .box h2,
.-bgcolorone .-bgcolorfive .box h3,
.-bgcolorone .-bgcolorfive .box h4,
.-bgcolorone .-bgcolorfive .box h5, .-bgcolortwo .-bgcolorfive .box h1,
.-bgcolortwo .-bgcolorfive .box h2,
.-bgcolortwo .-bgcolorfive .box h3,
.-bgcolortwo .-bgcolorfive .box h4,
.-bgcolortwo .-bgcolorfive .box h5, .-bgcolorthree .-bgcolorfive .box h1,
.-bgcolorthree .-bgcolorfive .box h2,
.-bgcolorthree .-bgcolorfive .box h3,
.-bgcolorthree .-bgcolorfive .box h4,
.-bgcolorthree .-bgcolorfive .box h5, .-bgcolortransparent .-bgcolorfive .box h1,
.-bgcolortransparent .-bgcolorfive .box h2,
.-bgcolortransparent .-bgcolorfive .box h3,
.-bgcolortransparent .-bgcolorfive .box h4,
.-bgcolortransparent .-bgcolorfive .box h5, .-bgcolorone .-bgcolorsix .box h1,
.-bgcolorone .-bgcolorsix .box h2,
.-bgcolorone .-bgcolorsix .box h3,
.-bgcolorone .-bgcolorsix .box h4,
.-bgcolorone .-bgcolorsix .box h5, .-bgcolortwo .-bgcolorsix .box h1,
.-bgcolortwo .-bgcolorsix .box h2,
.-bgcolortwo .-bgcolorsix .box h3,
.-bgcolortwo .-bgcolorsix .box h4,
.-bgcolortwo .-bgcolorsix .box h5, .-bgcolorthree .-bgcolorsix .box h1,
.-bgcolorthree .-bgcolorsix .box h2,
.-bgcolorthree .-bgcolorsix .box h3,
.-bgcolorthree .-bgcolorsix .box h4,
.-bgcolorthree .-bgcolorsix .box h5, .-bgcolortransparent .-bgcolorsix .box h1,
.-bgcolortransparent .-bgcolorsix .box h2,
.-bgcolortransparent .-bgcolorsix .box h3,
.-bgcolortransparent .-bgcolorsix .box h4,
.-bgcolortransparent .-bgcolorsix .box h5, .-bgcolorone .-bgcolorseven .box h1,
.-bgcolorone .-bgcolorseven .box h2,
.-bgcolorone .-bgcolorseven .box h3,
.-bgcolorone .-bgcolorseven .box h4,
.-bgcolorone .-bgcolorseven .box h5, .-bgcolortwo .-bgcolorseven .box h1,
.-bgcolortwo .-bgcolorseven .box h2,
.-bgcolortwo .-bgcolorseven .box h3,
.-bgcolortwo .-bgcolorseven .box h4,
.-bgcolortwo .-bgcolorseven .box h5, .-bgcolorthree .-bgcolorseven .box h1,
.-bgcolorthree .-bgcolorseven .box h2,
.-bgcolorthree .-bgcolorseven .box h3,
.-bgcolorthree .-bgcolorseven .box h4,
.-bgcolorthree .-bgcolorseven .box h5, .-bgcolortransparent .-bgcolorseven .box h1,
.-bgcolortransparent .-bgcolorseven .box h2,
.-bgcolortransparent .-bgcolorseven .box h3,
.-bgcolortransparent .-bgcolorseven .box h4,
.-bgcolortransparent .-bgcolorseven .box h5 {
  color: #231F20;
}
.-bgcolorone .-bgcolorfive .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortwo .-bgcolorfive .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorthree .-bgcolorfive .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortransparent .-bgcolorfive .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorone .-bgcolorsix .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortwo .-bgcolorsix .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorthree .-bgcolorsix .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortransparent .-bgcolorsix .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorone .-bgcolorseven .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortwo .-bgcolorseven .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorthree .-bgcolorseven .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortransparent .-bgcolorseven .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem) {
  color: #231F20;
}
.-bgcolortransparent .box {
  color: #ffffff;
}
.-bgcolortransparent .box h1,
.-bgcolortransparent .box h2,
.-bgcolortransparent .box h3,
.-bgcolortransparent .box h4,
.-bgcolortransparent .box h5 {
  color: #ffffff;
}
.-bgcolortransparent .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem) {
  color: #ffffff;
}
.box.-darkplate {
  overflow: hidden;
}

.-bgImage {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #ffffff;
}
.-bgImage h1,
.-bgImage h2,
.-bgImage h3,
.-bgImage h4,
.-bgImage h5,
.-bgImage a {
  color: #ffffff;
}
.-bgcolorone .-bgImage .box, .-bgcolortwo .-bgImage .box, .-bgcolorthree .-bgImage .box, .-bgcolorfour .-bgImage .box, .-bgcolorfive .-bgImage .box, .-bgcolorsix .-bgImage .box, .-bgcolorseven .-bgImage .box, .-bgcolortransparent .-bgImage .box {
  color: #ffffff;
}
.-bgcolorone .-bgImage .box h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-bgImage .box h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-bgImage .box h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-bgImage .box h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-bgImage .box h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-bgImage .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortwo .-bgImage .box h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-bgImage .box h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-bgImage .box h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-bgImage .box h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-bgImage .box h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-bgImage .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorthree .-bgImage .box h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-bgImage .box h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-bgImage .box h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-bgImage .box h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-bgImage .box h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-bgImage .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorfour .-bgImage .box h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-bgImage .box h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-bgImage .box h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-bgImage .box h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-bgImage .box h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-bgImage .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorfive .-bgImage .box h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-bgImage .box h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-bgImage .box h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-bgImage .box h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-bgImage .box h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-bgImage .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorsix .-bgImage .box h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-bgImage .box h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-bgImage .box h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-bgImage .box h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-bgImage .box h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-bgImage .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorseven .-bgImage .box h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-bgImage .box h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-bgImage .box h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-bgImage .box h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-bgImage .box h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-bgImage .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortransparent .-bgImage .box h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-bgImage .box h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-bgImage .box h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-bgImage .box h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-bgImage .box h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-bgImage .box a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem) {
  color: #ffffff;
}
.-bgImage .-bgImage {
  color: #ffffff;
}
.-bgImage .-bgImage h1,
.-bgImage .-bgImage h2,
.-bgImage .-bgImage h3,
.-bgImage .-bgImage h4,
.-bgImage .-bgImage h5 {
  color: #ffffff;
}
.-bgImage .-bgImage a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem) {
  color: #ffffff;
}
.-video .-bgImage {
  color: #ffffff;
}
.-video .-bgImage h1,
.-video .-bgImage h2,
.-video .-bgImage h3,
.-video .-bgImage h4,
.-video .-bgImage h5 {
  color: #ffffff;
}
.-video .-bgImage a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem) {
  color: #ffffff;
}
.-hasautoplay .-bgImage.-show {
  display: flex;
  color: #ffffff;
}
.-bgcolorone .-hasautoplay .-bgImage.-show, .-bgcolortwo .-hasautoplay .-bgImage.-show, .-bgcolorthree .-hasautoplay .-bgImage.-show, .-bgcolorfour .-hasautoplay .-bgImage.-show, .-bgcolorfive .-hasautoplay .-bgImage.-show, .-bgcolorsix .-hasautoplay .-bgImage.-show, .-bgcolorseven .-hasautoplay .-bgImage.-show, .-bgcolortransparent .-hasautoplay .-bgImage.-show {
  color: #ffffff;
}
.-bgcolorone .-hasautoplay .-bgImage.-show h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-hasautoplay .-bgImage.-show h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-hasautoplay .-bgImage.-show h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-hasautoplay .-bgImage.-show h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-hasautoplay .-bgImage.-show h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorone .-hasautoplay .-bgImage.-show a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortwo .-hasautoplay .-bgImage.-show h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-hasautoplay .-bgImage.-show h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-hasautoplay .-bgImage.-show h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-hasautoplay .-bgImage.-show h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-hasautoplay .-bgImage.-show h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortwo .-hasautoplay .-bgImage.-show a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorthree .-hasautoplay .-bgImage.-show h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-hasautoplay .-bgImage.-show h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-hasautoplay .-bgImage.-show h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-hasautoplay .-bgImage.-show h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-hasautoplay .-bgImage.-show h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorthree .-hasautoplay .-bgImage.-show a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorfour .-hasautoplay .-bgImage.-show h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-hasautoplay .-bgImage.-show h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-hasautoplay .-bgImage.-show h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-hasautoplay .-bgImage.-show h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-hasautoplay .-bgImage.-show h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfour .-hasautoplay .-bgImage.-show a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorfive .-hasautoplay .-bgImage.-show h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-hasautoplay .-bgImage.-show h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-hasautoplay .-bgImage.-show h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-hasautoplay .-bgImage.-show h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-hasautoplay .-bgImage.-show h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorfive .-hasautoplay .-bgImage.-show a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorsix .-hasautoplay .-bgImage.-show h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-hasautoplay .-bgImage.-show h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-hasautoplay .-bgImage.-show h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-hasautoplay .-bgImage.-show h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-hasautoplay .-bgImage.-show h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorsix .-hasautoplay .-bgImage.-show a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolorseven .-hasautoplay .-bgImage.-show h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-hasautoplay .-bgImage.-show h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-hasautoplay .-bgImage.-show h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-hasautoplay .-bgImage.-show h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-hasautoplay .-bgImage.-show h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolorseven .-hasautoplay .-bgImage.-show a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem), .-bgcolortransparent .-hasautoplay .-bgImage.-show h1:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-hasautoplay .-bgImage.-show h2:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-hasautoplay .-bgImage.-show h3:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-hasautoplay .-bgImage.-show h4:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-hasautoplay .-bgImage.-show h5:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem),
.-bgcolortransparent .-hasautoplay .-bgImage.-show a:not(.button):not(.cms_a_-button):not(.topLink):not(.gridItem):not(.loopItem) {
  color: #ffffff;
}

.videoPlayer {
  width: 100%;
  height: 100%;
  height: calc(100% + 2px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.-hasautoplay .videoPlayer {
  z-index: 0;
}

.videoFixer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.slideshowFixer {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}
.-squareImages .slideshowFixer {
  position: absolute;
  left: 0;
  top: 0;
  flex-direction: column;
  row-gap: 16px;
  padding-top: 24px;
}
.slideshowFixer .box {
  position: absolute;
}
@media only screen and (min-width: 992px) {
  .slideshowFixer .box {
    position: absolute;
  }
}
.slideshowFixer.-absolute {
  position: absolute;
}
@media only screen and (min-width: 992px) {
  .slideshowFixer.-absolute {
    position: absolute;
  }
}
@media only screen and (min-width: 992px) {
  .slideshowFixer {
    position: absolute;
  }
}
.slideshowFixer .slick-list {
  height: 100% !important;
}

.-textAlignCenter {
  text-align: center;
}

.-textAlignLeft {
  text-align: left;
}

.-textAlignRight {
  text-align: right;
}

.-alignCenter {
  align-self: center;
}

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

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

.-alignLeft {
  justify-content: flex-start;
}

.-alignCenter {
  justify-content: center;
}

.-alignRight {
  justify-content: flex-end;
}

.-form {
  overflow-x: auto;
  width: 600px;
  max-width: 100%;
}

.-boxes {
  width: 100%;
  flex-direction: column;
  z-index: 3;
  position: relative;
}

.slideshowBackground {
  width: 100%;
  position: absolute;
  height: 100%;
}
.slideshowBackground.-img {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slideshowBackground.-img.-dekstop {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .slideshowBackground.-img.-dekstop {
    display: block;
  }
}
.slideshowBackground.-img.-ipad {
  display: none;
}
@media only screen and (min-width: 992px) and (max-width: 1024px) {
  .slideshowBackground.-img.-ipad {
    display: block;
  }
}
.slideshowBackground.-img.-mobile {
  display: none;
}
@media only screen and (max-width: 992px) {
  .slideshowBackground.-img.-mobile {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .slideshowBackground iframe {
    display: none;
  }
}
.slideshowBackground img,
.slideshowBackground video {
  height: 100%;
  max-width: none;
  width: auto;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}
@media only screen and (min-width: 768px) {
  .slideshowBackground {
    height: auto;
  }
  .slideshowBackground.-img {
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .slideshowBackground img,
  .slideshowBackground video {
    width: 100%;
    height: auto;
  }
}

.img_overlay {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
}
.img_overlay.-show {
  display: block;
}
.-hasautoplay .img_overlay, .slideshowFixer .img_overlay {
  z-index: 1;
}

.-bgcolorone .smallHeader {
  color: #CEA830;
}
.-bgcolorone .-bgcolorone .smallHeader, .-bgcolortwo .-bgcolorone .smallHeader, .-bgcolorthree .-bgcolorone .smallHeader, .-bgcolorfour .-bgcolorone .smallHeader, .-bgcolorfive .-bgcolorone .smallHeader, .-bgcolorsix .-bgcolorone .smallHeader, .-bgcolorseven .-bgcolorone .smallHeader, .-bgcolortransparent .-bgcolorone .smallHeader {
  color: #CEA830;
}
.-bgImage .-bgcolorone .-bgcolorone .smallHeader, .-bgImage .-bgcolortwo .-bgcolorone .smallHeader, .-bgImage .-bgcolorthree .-bgcolorone .smallHeader, .-bgImage .-bgcolorfour .-bgcolorone .smallHeader, .-bgImage .-bgcolorfive .-bgcolorone .smallHeader, .-bgImage .-bgcolorsix .-bgcolorone .smallHeader, .-bgImage .-bgcolorseven .-bgcolorone .smallHeader, .-bgImage .-bgcolortransparent .-bgcolorone .smallHeader {
  color: #CEA830;
}
.-bgcolortwo .smallHeader {
  color: #CEA830;
}
.-bgcolorone .-bgcolortwo .smallHeader, .-bgcolortwo .-bgcolortwo .smallHeader, .-bgcolorthree .-bgcolortwo .smallHeader, .-bgcolorfour .-bgcolortwo .smallHeader, .-bgcolorfive .-bgcolortwo .smallHeader, .-bgcolorsix .-bgcolortwo .smallHeader, .-bgcolorseven .-bgcolortwo .smallHeader, .-bgcolortransparent .-bgcolortwo .smallHeader {
  color: #CEA830;
}
.-bgcolorthree .smallHeader {
  color: #CEA830;
}
.-bgcolorone .-bgcolorthree .smallHeader, .-bgcolortwo .-bgcolorthree .smallHeader, .-bgcolorthree .-bgcolorthree .smallHeader, .-bgcolorfour .-bgcolorthree .smallHeader, .-bgcolorfive .-bgcolorthree .smallHeader, .-bgcolorsix .-bgcolorthree .smallHeader, .-bgcolorseven .-bgcolorthree .smallHeader, .-bgcolortransparent .-bgcolorthree .smallHeader {
  color: #CEA830;
}
.-bgcolorfour .smallHeader {
  color: #CEA830;
}
.-bgcolorone .-bgcolorfour .smallHeader, .-bgcolortwo .-bgcolorfour .smallHeader, .-bgcolorthree .-bgcolorfour .smallHeader, .-bgcolorfour .-bgcolorfour .smallHeader, .-bgcolorfive .-bgcolorfour .smallHeader, .-bgcolorsix .-bgcolorfour .smallHeader, .-bgcolorseven .-bgcolorfour .smallHeader, .-bgcolortransparent .-bgcolorfour .smallHeader {
  color: #CEA830;
}
.-bgcolorfive .smallHeader {
  color: #CEA830;
}
.-bgcolorone .-bgcolorfive .smallHeader, .-bgcolortwo .-bgcolorfive .smallHeader, .-bgcolorthree .-bgcolorfive .smallHeader, .-bgcolorfour .-bgcolorfive .smallHeader, .-bgcolorfive .-bgcolorfive .smallHeader, .-bgcolorsix .-bgcolorfive .smallHeader, .-bgcolorseven .-bgcolorfive .smallHeader, .-bgcolortransparent .-bgcolorfive .smallHeader {
  color: #CEA830;
}
.-bgcolorsix .smallHeader {
  color: rgba(255, 255, 255, 0.7);
}
.-bgcolorseven .smallHeader {
  color: rgba(255, 255, 255, 0.7);
}
.-bgcolortransparent .smallHeader {
  color: rgba(var(--contrastColorRgb), 0.7);
}
.-bgcolortwo .smallHeader {
  color: #FFFBEC;
}
.-bgcolorthree .smallHeader {
  color: #ffffff;
}
.-bgcolorfour .smallHeader {
  color: #ffffff;
}
.-bgcolorfive .smallHeader {
  color: #ffffff;
}
.-bgcolorsix .smallHeader {
  color: rgba(255, 255, 255, 0.7);
}
.-bgcolorseven .smallHeader {
  color: rgba(255, 255, 255, 0.7);
}
.-bgcolortransparent .smallHeader {
  color: #ffffff;
}
.-bgImage .smallHeader {
  color: rgba(255, 255, 255, 0.8);
}
.-video .smallHeader {
  color: rgba(255, 255, 255, 0.8);
}
#footer .smallHeader {
  color: #ffffff;
}

.pb_widget:first-child .block.size100.-bgImage.-alignCenter .text_holder {
  max-width: 680px;
}

.smallBox {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}
.-partners .smallBox img {
  width: 180px;
  height: auto;
}
.-withImages .smallBox img {
  width: 283px;
  height: auto;
}
@media only screen and (min-width: 1024px) {
  .smallBox {
    padding: 32px;
  }
}
.smallBoxes .innerWrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
@media only screen and (min-width: 558px) {
  .smallBoxes .innerWrapper {
    flex-direction: row;
  }
}
.smallBoxText {
  margin: 16px 0;
  font-size: 16px;
  line-height: 22px;
  height: 110px;
}
.smallBoxInner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-self: stretch;
  flex: 1;
  flex-grow: 1;
  border: 1px solid;
  border-radius: 24px;
  padding: 24px;
}
.-partners .smallBoxInner, .-withImages .smallBoxInner {
  border: 0;
  padding: 0;
}
.-bgcolorone .smallBoxInner {
  border-color: #ffffff;
  color: #000000;
}
.-bgcolorone .smallBoxInner h4 {
  color: #ffffff;
}
.-bgcolortwo .smallBoxInner {
  border-color: #FFFBEC;
  color: #FFFBEC;
}
.-bgcolortwo .smallBoxInner h4 {
  color: #FFFBEC;
}
.-bgcolorthree .smallBoxInner {
  border-color: #ffffff;
  color: #ffffff;
}
.-bgcolorthree .smallBoxInner h4 {
  color: #ffffff;
}
.-bgcolorfour .smallBoxInner {
  border-color: #ffffff;
  color: #000000;
}
.-bgcolorfour .smallBoxInner h4 {
  color: #000000;
}
.-bgcolorfive .smallBoxInner {
  border-color: #ffffff;
  color: #ffffff;
}
.-bgcolorfive .smallBoxInner h4 {
  color: #ffffff;
}

.blockImage {
  content: url("/resources/site/media/images/transparent.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
}

.divider {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.divider:after {
  content: "";
  width: calc(100% - 80px);
  position: absolute;
  height: 1px;
}
.-bgcolorone .divider:after {
  background: #ffffff;
}
.-bgcolortwo .divider:after {
  background: #FFFBEC;
}
.-bgcolorthree .divider:after {
  background: #ffffff;
}
.-bgcolorfour .divider:after {
  background: #ffffff;
}
.-bgcolorfive .divider:after {
  background: #ffffff;
}
.dividerTitle {
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  padding: 0 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 8px;
  position: relative;
  z-index: 1;
}
.-bgcolorone .dividerTitle {
  color: #ffffff;
  background: #ffffff;
}
.-bgcolortwo .dividerTitle {
  color: #FFFBEC;
  background: #FFFBEC;
}
.-bgcolorthree .dividerTitle {
  color: #ffffff;
  background: #474344;
}
.-bgcolorfour .dividerTitle {
  color: #ffffff;
  background: #231F20;
}
.-bgcolorfive .dividerTitle {
  color: #ffffff;
  background: #CEA830;
}

.rowVideoWrapper {
  display: flex;
  background-color: #000000;
  overflow: hidden;
  position: relative;
  flex-direction: column;
}
@media only screen and (min-width: 992px) {
  .rowVideoWrapper {
    height: 66vw;
  }
}
@media only screen and (min-width: 1200px) {
  .rowVideoWrapper {
    height: 56.25vw;
  }
}
.rowVideoWrapper .videoPlayer {
  opacity: 0.8;
  height: calc(200% + 2px);
  width: 400%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
@media only screen and (min-width: 768px) {
  .rowVideoWrapper .videoPlayer {
    width: 200%;
  }
}
@media only screen and (min-width: 992px) {
  .rowVideoWrapper .videoPlayer {
    height: calc(100% + 2px);
  }
}
.rowVideoWrapper .innerWrapper {
  position: relative;
  z-index: 9;
}
.rowVideoWrapper .innerWrapper .box {
  color: #ffffff;
}
@media only screen and (max-width: 992px) {
  .rowVideoWrapper .innerWrapper .box {
    align-self: flex-start;
  }
  .rowVideoWrapper .innerWrapper .box:not(.widgets) {
    padding-top: 30vw;
  }
}
.rowVideoWrapper .innerWrapper .box h1,
.rowVideoWrapper .innerWrapper .box h2,
.rowVideoWrapper .innerWrapper .box h3,
.rowVideoWrapper .innerWrapper .box h4,
.rowVideoWrapper .innerWrapper .box h5 {
  color: #ffffff;
}
.rowVideoWrapper .innerWrapper .block {
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .rowVideoWrapper .innerWrapper .block {
    flex-direction: column;
  }
}

.maxwidth_yes .text_holder {
  max-width: 100%;
}
.maxwidth_yes .box {
  width: 100%;
}