/**
* 02.4 LINE-HEIGHTS & LETTER-SPACING
*/
/**
*
* 03. SHAPES 
*
*/
/**
*
* 04. SHADOWS
*
*/
/**
*
* 06. Responsive & Breakpoints
*
*/
/**
*
* 07. Spacer values
*
*/
@keyframes border-animate-width-ltr {
  0% {
    clip-path: inset(0 43rem 0 0);
  }
  33% {
    clip-path: inset(0 33rem 0 0);
  }
  66% {
    clip-path: inset(0 23rem 0 0);
  }
  88% {
    clip-path: inset(0 13rem 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes border-animate-width-rtl {
  0% {
    clip-path: inset(0 0 0 43rem);
  }
  33% {
    clip-path: inset(0 0 0 33rem);
  }
  66% {
    clip-path: inset(0 0 0 23rem);
  }
  88% {
    clip-path: inset(0 0 0 13rem);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
  opacity: 0.7;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #f9d74b;
  opacity: 1;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2.5em;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #f9d74b;
  height: 2.5em;
  transition: fill 0.2s linear;
  width: 2.5em;
}

.splide__arrow:hover:not(:disabled) svg {
  fill: #5a5a59;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #f9d74b;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #f9d74b;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  margin: 3px;
  padding: 0;
  position: relative;
  transition: background-color 0.2s linear, transform 0.2s linear;
  width: 10px;
}

.splide__pagination__page.is-active {
  background: #f9d74b;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  background: #5a5a59;
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #f9d74b;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #f9d74b;
  outline-offset: 3px;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #f9d74b;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #f9d74b;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #f9d74b;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #f9d74b;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #f9d74b;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #f9d74b;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #f9d74b;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #f9d74b;
  outline-offset: 3px;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.splide-custom-pagination {
  margin-top: 3rem;
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none;
}
.splide-custom-pagination button {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  margin: 3px;
  padding: 0;
  position: relative;
  transition: background-color 0.2s linear, transform 0.2s linear;
  width: 10px;
  text-indent: -999999px;
}
.splide-custom-pagination button.active {
  background: #f9d74b;
  transform: scale(1.4);
  z-index: 1;
}

@font-face {
  font-family: "Bree Serif";
  src: url(e64bc9c597a598619e5cfaf0f7dfa62f.woff2) format("woff2"), url(f0bd5102b7319704916a9f6ceed024a8.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "asapcondensed";
  src: url(9989ec98a9dc309e74796bf9c3220bc2.ttf) format("woff2"), url(9989ec98a9dc309e74796bf9c3220bc2.ttf) format("woff");
  font-weight: normal;
  font-style: normal;
}
/**
*
* Markup types
*
*/
html {
  font-size: 62.5%;
}
html.sr .load-hidden {
  visibility: hidden;
}

body {
  font-family: "Bree Serif", serif;
  font-size: 2.1rem;
  line-height: normal;
  letter-spacing: normal;
  background: #ffffff;
  color: #363635;
  margin: 0;
  padding: 0;
}

a {
  color: #f9d74b;
}
a:hover {
  color: #f7cc1a;
}

p {
  font-size: 2.1rem;
  font-family: "Bree Serif", serif;
  font-weight: 300;
  line-height: 120%;
}

.dark {
  color: #ffffff !important;
}
.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6,
.dark a,
.dark li,
.dark p {
  color: #ffffff !important;
}

.light {
  color: #363635 !important;
}
.light h1,
.light h2,
.light h3,
.light h4,
.light h5,
.light h6,
.light a,
.light li,
.light p {
  color: #363635 !important;
}

.txt_black {
  color: #363635;
}

.txt_white {
  color: #ffffff;
}

.txt_neutral {
  color: #dfdfdf;
}

.txt_primary {
  color: #f9d74b;
}

.txt_primary-light {
  color: #f9d74b;
}

.txt_primary-dark {
  color: #f9d74b;
}

.txt_secondary {
  color: #363635;
}

.txt_secondary-light {
  color: transparent;
}

.txt_secondary-dark {
  color: transparent;
}

.txt_tertiary {
  color: transparent;
}

.txt_tertiary-light {
  color: transparent;
}

.txt_tertiary-dark {
  color: transparent;
}

.bg_black {
  background-color: #363635;
}

.bg_white {
  background-color: #ffffff;
}

.bg_neutral {
  background-color: #dfdfdf;
}

.bg_primary {
  background-color: #f9d74b;
}

.bg_primary-light {
  background-color: #f9d74b;
}

.bg_primary-dark {
  background-color: #f9d74b;
}

.bg_secondary {
  background-color: #363635;
}

.bg_secondary-light {
  background-color: transparent;
}

.bg_secondary-dark {
  background-color: transparent;
}

.bg_tertiary {
  background-color: transparent;
}

.bg_tertiary-light {
  background-color: transparent;
}

.bg_tertiary-dark {
  background-color: transparent;
}

.max-w-sm {
  width: min(576px, 100%);
}

.max-w-md {
  width: min(768px, 100%);
}

.max-w-lg {
  width: min(992px, 100%);
}

.max-w-xl {
  width: min(1200px, 100%);
}

.max-w-xxl {
  width: min(1440px, 100%);
}

.max-w-2k {
  width: min(1920px, 100%);
}

.max-w-4k {
  width: min(2560px, 100%);
}

.px-section-sm {
  padding-inline: 2.4rem;
}
@media all and (min-width: 768px) {
  .px-section-sm {
    padding-inline: 3.2rem;
  }
}
@media all and (min-width: 1200px) {
  .px-section-sm {
    padding-inline: 8rem;
  }
}
@media all and (min-width: 1920px) {
  .px-section-sm {
    padding-inline: 16rem;
  }
}

@media all and (min-width: 768px) {
  .px-section-md {
    padding-inline: 3.2rem;
  }
}
@media all and (min-width: 1200px) {
  .px-section-md {
    padding-inline: 8rem;
  }
}
@media all and (min-width: 1920px) {
  .px-section-md {
    padding-inline: 16rem;
  }
}

@media all and (min-width: 1200px) {
  .px-section-xl {
    padding-inline: 8rem;
  }
}
@media all and (min-width: 1920px) {
  .px-section-xl {
    padding-inline: 16rem;
  }
}

@media all and (min-width: 1920px) {
  .px-section-2k {
    padding-inline: 16rem;
  }
}

.py-xs {
  padding-block: 2.5rem;
}

.px-xs {
  padding-inline: 2.5rem;
}

.py-sm {
  padding-block: 5rem;
}

.px-sm {
  padding-inline: 5rem;
}

.py-md {
  padding-block: 10rem;
}

.px-md {
  padding-inline: 10rem;
}

.py-lg {
  padding-block: 15rem;
}

.px-lg {
  padding-inline: 15rem;
}

.py-xl {
  padding-block: 20rem;
}

.px-xl {
  padding-inline: 20rem;
}

.py-2k {
  padding-block: 25rem;
}

.px-2k {
  padding-inline: 25rem;
}

.my-xs {
  margin-block: 2.5rem;
}

.mx-xs {
  margin-inline: 2.5rem;
}

.my-sm {
  margin-block: 5rem;
}

.mx-sm {
  margin-inline: 5rem;
}

.my-md {
  margin-block: 10rem;
}

.mx-md {
  margin-inline: 10rem;
}

.my-lg {
  margin-block: 15rem;
}

.mx-lg {
  margin-inline: 15rem;
}

.my-xl {
  margin-block: 20rem;
}

.mx-xl {
  margin-inline: 20rem;
}

.my-2k {
  margin-block: 25rem;
}

.mx-2k {
  margin-inline: 25rem;
}

/**
*
* Headings & titles
*
*/
h1,
.bm__h1 {
  font-family: "Bree Serif", serif;
  font-weight: 400;
  font-size: 3.3rem;
  line-height: 130%;
}
@media all and (min-width: 768px) {
  h1,
  .bm__h1 {
    font-size: 3.3rem;
  }
}
@media all and (min-width: 992px) {
  h1,
  .bm__h1 {
    font-size: 3.3rem;
  }
}
@media all and (min-width: 1440px) {
  h1,
  .bm__h1 {
    font-size: 3.3rem;
  }
}
h1.txt_white,
.bm__h1.txt_white {
  color: #ffffff;
}
h1.txt_black,
.bm__h1.txt_black {
  color: #363635;
}
h1.txt_primary,
.bm__h1.txt_primary {
  color: #f9d74b;
}
h1.txt_primary-light,
.bm__h1.txt_primary-light {
  color: #f9d74b;
}
h1.txt_primary-dark,
.bm__h1.txt_primary-dark {
  color: #f9d74b;
}
h1.txt_secondary,
.bm__h1.txt_secondary {
  color: #363635;
}
h1.txt_secondary-light,
.bm__h1.txt_secondary-light {
  color: transparent;
}
h1.txt_secondary-dark,
.bm__h1.txt_secondary-dark {
  color: transparent;
}
h1.txt_tertiary,
.bm__h1.txt_tertiary {
  color: transparent;
}
h1.txt_tertiary-light,
.bm__h1.txt_tertiary-light {
  color: transparent;
}
h1.txt_tertiary-dark,
.bm__h1.txt_tertiary-dark {
  color: transparent;
}
h1.txt_neutral,
.bm__h1.txt_neutral {
  color: #dfdfdf;
}

h2,
.bm__h2 {
  font-family: "Bree Serif", serif;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 100%;
}
h2.wp-block-heading,
.bm__h2.wp-block-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-block: 1rem;
}

h3,
.bm__h3 {
  font-family: "Bree Serif", serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 100%;
}
h4,
.bm__h4 {
  font-family: "Bree Serif", serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 3.9rem;
  padding-bottom: 2rem;
}
@media all and (min-width: 992px) {
  h4,
  .bm__h4 {
    font-size: 3.2rem;
    line-height: 4.8rem;
  }
}
@media all and (min-width: 1200px) {
  h4,
  .bm__h4 {
    font-size: 4rem;
    line-height: 6rem;
  }
}
@media all and (min-width: 1440px) {
  h4,
  .bm__h4 {
    font-size: 4.4rem;
    line-height: 6.6rem;
  }
}

h5,
.bm__h5 {
  font-family: "Bree Serif", serif;
  font-weight: 500;
  font-size: 1.8rem;
  padding-bottom: 1rem;
}

h6,
.bm__h6 {
  font-family: "Bree Serif", serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 3rem;
  padding-bottom: 1rem;
}

.bm_fs-small {
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.bm_fs-medium {
  font-size: 1.8rem;
  line-height: 2rem;
}

.bm_fs-large {
  font-size: 2rem;
  line-height: 2.9rem;
}
@media all and (min-width: 992px) {
  .bm_fs-large {
    font-size: 2.4rem;
    line-height: 3.12rem;
  }
}

.section-title {
  font-family: "Bree Serif", serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  text-align: center;
  margin-bottom: 32px;
  text-transform: uppercase;
  color: #363635;
}
@media (min-width: 768px) {
  .section-title {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .section-title {
    margin-bottom: 48px;
  }
}
@media (min-width: 1440px) {
  .section-title {
    font-size: 39px;
    line-height: 46.8px;
  }
}
@media (min-width: 1920px) {
  .section-title {
    font-size: 44px;
    line-height: 52.8px;
  }
}

.cta {
  font-family: "Bree Serif", serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  padding: 15px 25px;
  display: inline-block;
  border: 2px solid transparent;
  background-color: transparent;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  text-align: center;
  text-decoration: none;
  position: relative;
}
.cta.-plain.-primary {
  color: #363635 !important;
  background-color: #f9d74b;
}
.cta.-plain.-primary:hover {
  color: #f9d74b !important;
  background-color: #363635;
}
.cta.-plain.-primary:hover.-on-bg_white {
  background-color: #dfdfdf;
}
.cta.-plain.-primary:hover.-clear {
  border: 2px solid #f9d74b;
}
.cta.-plain.-primary-light {
  color: #ffffff;
  background-color: #f9d74b;
}
.cta.-plain.-primary-light:hover {
  color: #f9d74b;
  background-color: #ffffff;
}
.cta.-plain.-primary-light:hover.-on-bg_white {
  background-color: #dfdfdf;
}
.cta.-plain.-primary-light:hover.-clear {
  border: 2px solid #f9d74b;
}
.cta.-plain.-primary-dark {
  color: #ffffff;
  background-color: #f9d74b;
}
.cta.-plain.-primary-dark:hover {
  color: #f9d74b;
  background-color: #ffffff;
}
.cta.-plain.-primary-dark:hover.-on-bg_white {
  background-color: #dfdfdf;
}
.cta.-plain.-primary-dark:hover.-clear {
  border: 2px solid #f9d74b;
}
.cta.-plain.-secondary {
  color: #ffffff;
  background-color: #363635;
}
.cta.-plain.-secondary:hover {
  color: #363635;
  background-color: #ffffff;
}
.cta.-plain.-secondary:hover.-on-bg_white {
  background-color: #dfdfdf;
}
.cta.-plain.-secondary:hover.-clear {
  border: 2px solid #363635;
}
.cta.-plain.-secondary-light {
  color: #ffffff;
  background-color: transparent;
}
.cta.-plain.-secondary-light:hover {
  color: transparent;
  background-color: #ffffff;
}
.cta.-plain.-secondary-light:hover.-on-bg_white {
  background-color: #dfdfdf;
}
.cta.-plain.-secondary-light:hover.-clear {
  border: 2px solid transparent;
}
.cta.-plain.-secondary-dark {
  color: #ffffff;
  background-color: transparent;
}
.cta.-plain.-secondary-dark:hover {
  color: transparent;
  background-color: #ffffff;
}
.cta.-plain.-secondary-dark:hover.-on-bg_white {
  background-color: #dfdfdf;
}
.cta.-plain.-secondary-dark:hover.-clear {
  border: 2px solid transparent;
}
.cta.-plain.-tertiary {
  color: #ffffff;
  background-color: transparent;
}
.cta.-plain.-tertiary:hover {
  color: transparent;
  background-color: #ffffff;
}
.cta.-plain.-tertiary:hover.-on-bg_white {
  background-color: #dfdfdf;
}
.cta.-plain.-tertiary:hover.-clear {
  border: 2px solid transparent;
}
.cta.-plain.-tertiary-light {
  color: #ffffff;
  background-color: transparent;
}
.cta.-plain.-tertiary-light:hover {
  color: transparent;
  background-color: #ffffff;
}
.cta.-plain.-tertiary-light:hover.-on-bg_white {
  background-color: #dfdfdf;
}
.cta.-plain.-tertiary-light:hover.-clear {
  border: 2px solid transparent;
}
.cta.-plain.-tertiary-dark {
  color: #ffffff;
  background-color: transparent;
}
.cta.-plain.-tertiary-dark:hover {
  color: transparent;
  background-color: #ffffff;
}
.cta.-plain.-tertiary-dark:hover.-on-bg_white {
  background-color: #dfdfdf;
}
.cta.-plain.-tertiary-dark:hover.-clear {
  border: 2px solid transparent;
}
.cta.-plain.-black {
  color: #ffffff;
  background-color: #363635;
}
.cta.-plain.-black:hover {
  color: #363635;
  background-color: #ffffff;
}
.cta.-plain.-black:hover.-on-bg_white {
  background-color: #dfdfdf;
}
.cta.-plain.-black:hover.-clear {
  border: 2px solid #363635;
}
.cta.-plain.-white {
  color: #363635;
  background-color: #ffffff;
}
.cta.-plain.-white.-on-bg_white {
  background-color: #dfdfdf;
}
.cta.-plain.-white:hover {
  color: #ffffff;
  background-color: #363635;
}
.cta.-plain.-neutral {
  color: #f9d74b;
  background-color: #dfdfdf;
}
.cta.-plain.-neutral:hover {
  color: #dfdfdf;
  background-color: #f9d74b;
}
.cta.-outline.-primary {
  color: #f9d74b;
  border: 2px solid #f9d74b;
}
.cta.-outline.-primary:hover {
  color: #ffffff;
  background-color: #f9d74b;
}
.cta.-outline.-primary-light {
  color: #f9d74b;
  border: 2px solid #f9d74b;
}
.cta.-outline.-primary-light:hover {
  color: #ffffff;
  background-color: #f9d74b;
}
.cta.-outline.-primary-dark {
  color: #f9d74b;
  border: 2px solid #f9d74b;
}
.cta.-outline.-primary-dark:hover {
  color: #ffffff;
  background-color: #f9d74b;
}
.cta.-outline.-secondary {
  color: #363635;
  border: 2px solid #363635;
}
.cta.-outline.-secondary:hover {
  color: #ffffff;
  background-color: #363635;
}
.cta.-outline.-secondary-light {
  color: transparent;
  border: 2px solid transparent;
}
.cta.-outline.-secondary-light:hover {
  color: #ffffff;
  background-color: transparent;
}
.cta.-outline.-secondary-dark {
  color: transparent;
  border: 2px solid transparent;
}
.cta.-outline.-secondary-dark:hover {
  color: #ffffff;
  background-color: transparent;
}
.cta.-outline.-tertiary {
  color: transparent;
  border: 2px solid transparent;
}
.cta.-outline.-tertiary:hover {
  color: #ffffff;
  background-color: transparent;
}
.cta.-outline.-tertiary-light {
  color: transparent;
  border: 2px solid transparent;
}
.cta.-outline.-tertiary-light:hover {
  color: #ffffff;
  background-color: transparent;
}
.cta.-outline.-tertiary-dark {
  color: transparent;
  border: 2px solid transparent;
}
.cta.-outline.-tertiary-dark:hover {
  color: #ffffff;
  background-color: transparent;
}
.cta.-outline.-black {
  color: #363635;
  border: 2px solid #363635;
}
.cta.-outline.-black:hover {
  color: #ffffff !important;
  background-color: #363635;
}
.cta.-outline.-white {
  color: #ffffff;
  border: 2px solid #ffffff;
}
.cta.-outline.-white:hover {
  color: #363635;
  background-color: #ffffff;
}
.cta.-outline.-neutral {
  color: #dfdfdf;
  border: 2px solid #dfdfdf;
}
.cta.-outline.-neutral:hover {
  color: #f9d74b;
  background-color: #dfdfdf;
}
.cta.-text {
  display: flex;
  align-items: center;
  color: #f9d74b;
  margin-top: 1rem;
  text-decoration: none;
  font-size: 1.8rem;
  line-height: 2.5rem;
}
.cta.-text:hover:after {
  margin-left: 1rem;
}
.cta .-inherit {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: inherit;
}
.cta.-contact {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.cta.-contact::after {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 2.1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 414.2 362.4'%3E%3Cpath fill='%23212529' d='M207.1,0C92.7,0,0,81.1,0,181.2s13.9,74.7,37.7,104.2c-4.8,20.2-8.2,40.7-10.2,61.3-.5,5,4.2,9,9.1,7.7l64.7-17.4c31,16.1,67.2,25.4,105.8,25.4,114.4,0,207.1-81.1,207.1-181.2S321.5,0,207.1,0M109.7,207.1c-14.3,0-25.9-11.6-25.9-25.9s11.6-25.9,25.9-25.9,25.9,11.6,25.9,25.9-11.6,25.9-25.9,25.9M207.1,207.1c-14.3,0-25.9-11.6-25.9-25.9s11.6-25.9,25.9-25.9,25.9,11.6,25.9,25.9-11.6,25.9-25.9,25.9M304.5,207.1c-14.3,0-25.9-11.6-25.9-25.9s11.6-25.9,25.9-25.9,25.9,11.6,25.9,25.9-11.6,25.9-25.9,25.9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s ease-in-out;
}
.cta.-contact:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 414.2 362.4'%3E%3Cpath fill='%23f9d74b' d='M207.1,0C92.7,0,0,81.1,0,181.2s13.9,74.7,37.7,104.2c-4.8,20.2-8.2,40.7-10.2,61.3-.5,5,4.2,9,9.1,7.7l64.7-17.4c31,16.1,67.2,25.4,105.8,25.4,114.4,0,207.1-81.1,207.1-181.2S321.5,0,207.1,0M109.7,207.1c-14.3,0-25.9-11.6-25.9-25.9s11.6-25.9,25.9-25.9,25.9,11.6,25.9,25.9-11.6,25.9-25.9,25.9M207.1,207.1c-14.3,0-25.9-11.6-25.9-25.9s11.6-25.9,25.9-25.9,25.9,11.6,25.9,25.9-11.6,25.9-25.9,25.9M304.5,207.1c-14.3,0-25.9-11.6-25.9-25.9s11.6-25.9,25.9-25.9,25.9,11.6,25.9,25.9-11.6,25.9-25.9,25.9'/%3E%3C/svg%3E");
}
.cta.-more {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.cta.-more::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34.9 34.9'%3E%3Cpath fill='%23242424' fill-rule='evenodd' d='M34.9,17.4c0,4.9-2,9.2-5.1,12.4-3.1,3.1-7.5,5.1-12.3,5.1s-9.2-2-12.4-5.1C2,26.6,0,22.3,0,17.4S2,8.3,5.1,5.1C8.3,2,12.6,0,17.5,0s9.2,2,12.3,5.1c3.1,3.1,5.1,7.5,5.1,12.3M24.8,15.4l-7.2,7.2c0,0-.2,0-.3,0l-7.2-7.2c0,0,0-.2,0-.3l1.6-1.5,5.6,5.6c.1,0,.2,0,.3,0l5.6-5.6,1.6,1.5c0,.1,0,.2,0,.3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s ease-in-out;
}
.cta.-more:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34.9 34.9'%3E%3Cpath fill='%23f9d74b' fill-rule='evenodd' d='M34.9,17.4c0,4.9-2,9.2-5.1,12.4-3.1,3.1-7.5,5.1-12.3,5.1s-9.2-2-12.4-5.1C2,26.6,0,22.3,0,17.4S2,8.3,5.1,5.1C8.3,2,12.6,0,17.5,0s9.2,2,12.3,5.1c3.1,3.1,5.1,7.5,5.1,12.3M24.8,15.4l-7.2,7.2c0,0-.2,0-.3,0l-7.2-7.2c0,0,0-.2,0-.3l1.6-1.5,5.6,5.6c.1,0,.2,0,.3,0l5.6-5.6,1.6,1.5c0,.1,0,.2,0,.3'/%3E%3C/svg%3E");
}

.cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/**
* IFRAME Video responsive
*/
.responsive-video,
.responsive-iframe {
  height: 0;
  padding-bottom: 56.5%;
  position: relative;
  overflow: hidden;
}
.responsive-video.widescreen,
.responsive-iframe.widescreen {
  padding-bottom: 56.34%;
}
.responsive-video.vimeo,
.responsive-iframe.vimeo {
  padding-top: 0;
}
.responsive-video embed,
.responsive-video iframe,
.responsive-video object,
.responsive-video video,
.responsive-iframe embed,
.responsive-iframe iframe,
.responsive-iframe object,
.responsive-iframe video {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

/**
*
* FORMS
*
*/
:root {
  --color: $secondary;
  --disabled: #959495;
}

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

.bm_form input[type=text],
.bm_form input[type=email],
.bm_form input[type=tel],
.bm_form select {
  font-size: 1.6rem !important;
  line-height: 2.16rem !important;
  padding: 1.5rem !important;
  background-color: #ffffff !important;
  border: 1px solid #363635 !important;
  border-radius: 0.4rem !important;
  height: 40px !important;
}
.bm_form input[type=text]:hover, .bm_form input[type=text]:focus,
.bm_form input[type=email]:hover,
.bm_form input[type=email]:focus,
.bm_form input[type=tel]:hover,
.bm_form input[type=tel]:focus,
.bm_form select:hover,
.bm_form select:focus {
  border: 1px solid #363635 !important;
  outline: none !important;
  box-shadow: none !important;
}
.bm_form textarea {
  font-size: 1.6rem !important;
  line-height: 2.16rem !important;
  padding: 1.5rem !important;
  background-color: #ffffff !important;
  border: 1px solid #363635 !important;
  border-radius: 0.4rem !important;
}
.bm_form textarea:hover, .bm_form textarea:focus {
  border: 1px solid #363635 !important;
  outline: none !important;
  box-shadow: none !important;
}
.bm_form.-subscribe {
  display: initial;
}
.bm_form.-subscribe input[type=email] {
  font-size: 1.6rem !important;
  border: none;
  border-radius: 0.4rem !important;
  width: 100%;
  height: 40px !important;
  padding: 10px 70px 10px 20px;
  margin: 1rem auto;
}
.bm_form.-subscribe .subscribe_email {
  width: 100%;
}
.bm_form.-subscribe .input-group-prepend {
  position: absolute;
  right: 0;
  top: 1rem;
  z-index: 9;
  cursor: pointer;
}
.bm_form.-subscribe .input-group-prepend .ajax-loader {
  margin: 0 44px 0 24px;
  width: 23px;
  height: 23px;
  background-color: #f9d74b;
}
.bm_form.-subscribe .bm_icon-plane {
  width: 22px;
  height: 19px;
  position: absolute !important;
  right: 1rem;
  border: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='22' height='19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.888.075a.35.35 0 0 0-.355-.047L.19 9.176a.303.303 0 0 0-.19.272.302.302 0 0 0 .184.276L4.4 11.479c.11.05 8.8-4.174 8.8-4.174l-5.36 5.539a.5.5 0 0 0-.14.348v4.385a.5.5 0 0 0 .854.353l2.985-2.986 4.401 2.055c.086.038.186.04.273.004a.313.313 0 0 0 .183-.187L21.985.394a.289.289 0 0 0-.097-.319Z' fill='%235AC994'/%3E%3C/svg%3E");
}
.bm_form.-subscribe .bm_icon-plane:hover {
  opacity: 0.7;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
.bm_form.-subscribe .bm_icon-plane:focus, .bm_form.-subscribe .bm_icon-plane:active {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
.bm_form.-search .input-group-prepend {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 9;
  cursor: pointer;
}
.bm_form.-search .input-group-prepend input[type=submit] {
  width: 21px;
  height: 22px;
  position: absolute !important;
  right: 1rem;
  border: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='21' height='22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m20.588 19.615-2.994-2.967c1.589-1.765 2.576-4.102 2.576-6.654C20.17 4.484 15.645 0 10.085 0 4.525 0 0 4.484 0 9.994s4.525 9.994 10.085 9.994c1.973 0 3.803-.573 5.343-1.527l3.162 3.134c.265.262.626.405.987.405.36 0 .722-.143.987-.405a1.367 1.367 0 0 0 .024-1.98ZM2.816 9.994c0-3.96 3.25-7.203 7.269-7.203 4.02 0 7.245 3.243 7.245 7.203 0 3.96-3.25 7.203-7.245 7.203-3.996 0-7.269-3.22-7.269-7.203Z' fill='%235AC994'/%3E%3C/svg%3E");
}
.bm_form.-search .input-group-prepend input[type=submit]:hover {
  opacity: 0.7;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
.bm_form.-search .input-group-prepend input[type=submit]:focus, .bm_form.-search .input-group-prepend input[type=submit]:active {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.newsletter-form {
  padding: 9.6rem 0 2.4rem;
}
.newsletter-form .content {
  color: #ffffff;
  background: #5a5a59;
  border-radius: 1.5rem;
  padding: 4rem 2.4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .newsletter-form .content {
    padding: 4rem 3.8rem;
  }
}
@media (min-width: 992px) {
  .newsletter-form .content {
    padding: 4rem 2.4rem;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .newsletter-form .content {
    padding: 4rem 3.2rem;
  }
}
@media (min-width: 1440px) {
  .newsletter-form .content {
    padding: 4rem 4.8rem;
  }
}
@media (min-width: 1920px) {
  .newsletter-form .content {
    padding: 4rem 12.8rem;
  }
}
@media (min-width: 992px) {
  .newsletter-form .content .-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 4rem;
  }
}
.newsletter-form .content .-text h3 {
  font-family: "Bree Serif", serif;
  font-weight: normal;
  margin-bottom: 1.2rem;
}
@media (min-width: 992px) {
  .newsletter-form .content .-text h3 {
    font-size: 3.5rem;
  }
}
.newsletter-form .content .footer_wrapper {
  background: transparent;
}
.newsletter-form .content .footer_wrapper .gform_heading {
  display: none;
}
.newsletter-form .content .footer_wrapper .footer {
  background: transparent;
}
@media (min-width: 768px) {
  .newsletter-form .content .footer_wrapper .footer {
    display: flex;
    align-items: flex-end;
  }
}
@media (min-width: 768px) {
  .newsletter-form .content .footer_wrapper .footer .gform-body ul {
    display: flex;
    align-items: flex-end;
    width: 100%;
    flex-grow: 1;
  }
}
@media (min-width: 768px) {
  .newsletter-form .content .footer_wrapper .footer .gform-body ul li {
    width: 100%;
    margin-top: 0;
  }
}
.newsletter-form .content .footer_wrapper .footer .gform-body ul li .ginput_container {
  margin-top: 0;
}
.newsletter-form .content .footer_wrapper .footer .gform-body ul li label {
  font-size: 1.2rem;
}
.newsletter-form .content .footer_wrapper .footer .gform-body ul li label .gfield_required {
  color: #ffffff !important;
}
.newsletter-form .content .footer_wrapper .footer .gform-body input[type=text],
.newsletter-form .content .footer_wrapper .footer .gform-body input[type=email] {
  background: transparent;
  padding: 5px 4px !important;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 1px solid #ffffff;
  border-radius: 0;
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease-out;
}
.newsletter-form .content .footer_wrapper .footer .gform-body input[type=text]:placeholder,
.newsletter-form .content .footer_wrapper .footer .gform-body input[type=email]:placeholder {
  display: none !important;
}
.newsletter-form .content .footer_wrapper .footer .gform-body input[type=text]:focus,
.newsletter-form .content .footer_wrapper .footer .gform-body input[type=email]:focus {
  outline: none !important;
}
@media (min-width: 768px) {
  .newsletter-form .content .footer_wrapper .footer .gform-body input[type=text],
  .newsletter-form .content .footer_wrapper .footer .gform-body input[type=email] {
    display: flex;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .newsletter-form .content .footer_wrapper .footer .gform_footer {
    width: 33.3333333333%;
  }
}
@media (min-width: 768px) {
  .newsletter-form .content .footer_wrapper .footer .gform_footer {
    padding: 0 !important;
    margin: 0 !important;
  }
}
.newsletter-form .content .footer_wrapper .footer .gform_footer .cta {
  background: #f9d74b;
  font-family: "Bree Serif", serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  border: 0;
  display: block !important;
  width: 100%;
  color: #ffffff;
  padding-block: 1.1rem;
  padding-inline: 4rem;
}
.newsletter-form .content .footer_wrapper .footer .gform_footer .cta.-clear {
  border: 2px solid #f9d74b;
}
.newsletter-form .content .footer_wrapper .footer .gform_footer .cta:hover {
  color: #f9d74b;
  background-color: #ffffff;
}
.newsletter-form .content .privacy {
  font-size: 1.3rem;
  color: #dfdfdf;
}
.newsletter-form .gform_legacy_markup_wrapper .validation_message {
  color: #ffffff;
}

.contact-form__form .gform_legacy_markup_wrapper {
  margin: 0;
}
.contact-form__form .gform_legacy_markup_wrapper .gform_heading {
  display: none;
}
.contact-form__form .gform_legacy_markup_wrapper form {
  background: #e0e0e0;
  padding: 48px 16px 40px 16px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
@media (min-width: 768px) {
  .contact-form__form .gform_legacy_markup_wrapper form {
    padding: 48px 45px 40px 45px;
  }
}
@media (min-width: 992px) {
  .contact-form__form .gform_legacy_markup_wrapper form {
    padding: 48px 78px 40px 78px;
  }
}
@media (min-width: 1200px) {
  .contact-form__form .gform_legacy_markup_wrapper form {
    padding: 48px 24px 40px 24px;
  }
}
@media (min-width: 1440px) {
  .contact-form__form .gform_legacy_markup_wrapper form {
    padding: 56px 32px 64px 32px;
  }
}
@media (min-width: 1920px) {
  .contact-form__form .gform_legacy_markup_wrapper form {
    padding: 56px 110px 72px 110px;
  }
}
.contact-form__form .gform_legacy_markup_wrapper form .gform-body ul {
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .contact-form__form .gform_legacy_markup_wrapper form .gform-body ul {
    display: flex;
    flex-wrap: wrap;
  }
}
.contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li {
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li.gfield.gfield--type-text, .contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li.gfield.gfield--type-phone, .contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li.gfield.gfield--type-email {
    width: 50%;
    padding-right: 2.4rem;
  }
  .contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li.gfield.gfield--type-text + .gfield--type-text, .contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li.gfield.gfield--type-text + .gfield--type-phone, .contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li.gfield.gfield--type-phone + .gfield--type-text, .contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li.gfield.gfield--type-phone + .gfield--type-phone, .contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li.gfield.gfield--type-email + .gfield--type-text, .contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li.gfield.gfield--type-email + .gfield--type-phone {
    padding-right: 0;
  }
  .contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li.gfield.gfield--type-select, .contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li.gfield.gfield--type-textarea, .contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li.gfield.gfield--type-consent {
    width: 100%;
  }
}
.contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li label {
  width: 100%;
  color: #363635;
  font-family: "Bree Serif", serif;
}
.contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li .ginput_container {
  margin-bottom: 1.6rem;
}
.contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li .ginput_container input:not([type=checkbox]):not([type=submit]),
.contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li .ginput_container select {
  width: 100%;
  height: 4rem;
  margin-top: 0rem;
  border: 1px solid #363635;
  border-radius: 0.4rem;
}
.contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li .ginput_container textarea {
  max-height: 12rem;
  border: 1px solid #363635;
  border-radius: 0.4rem;
}
.contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li .ginput_container_consent {
  display: flex;
  gap: 1rem;
}
.contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li .ginput_container_consent label {
  color: #5a5a59;
  font-family: "Bree Serif", serif;
}
.contact-form__form .gform_legacy_markup_wrapper form .gform-body ul li .ginput_container_consent input[type=checkbox] {
  margin: 0;
  border: 1px solid #363635;
}
.contact-form__form .gform_legacy_markup_wrapper form .gform_footer input[type=submit] {
  background: #f9d74b;
  font-family: "Bree Serif", serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  padding: 1.1rem 5rem;
  width: 100%;
  border: none;
  color: #ffffff;
  margin: 0;
  margin-top: 1.6rem;
  border-radius: 0.4rem;
}
@media (min-width: 768px) {
  .contact-form__form .gform_legacy_markup_wrapper form .gform_footer input[type=submit] {
    display: block;
    margin: 1.6rem auto 0 auto;
    width: unset !important;
  }
}
@media (min-width: 1200px) {
  .contact-form__form .gform_legacy_markup_wrapper form .gform_footer input[type=submit] {
    margin-top: 0.8rem;
  }
}
@media (min-width: 1440px) {
  .contact-form__form .gform_legacy_markup_wrapper form .gform_footer input[type=submit] {
    margin-top: 3.2rem;
  }
}
.contact-form__form .gform_legacy_markup_wrapper .gform_validation_errors {
  margin-top: 2.5rem !important;
  margin-bottom: 0.5rem;
  padding-inline: 1rem !important;
}
.contact-form__form .gform_legacy_markup_wrapper .field_description_below .gfield_description {
  padding-top: 0;
  padding-bottom: 32px;
}

.gform_confirmation_wrapper {
  background: none !important;
}

@keyframes heroBannerFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#hero-banner {
  animation: heroBannerFade 300ms 600ms ease-in-out forwards;
  background-color: black;
  opacity: 0;
  overflow: hidden;
  /* @media (min-width: 778px) {
    padding-bottom: 43%;
  } */
}
#hero-banner .hero-banner-heading {
  color: white;
  font-size: 5.5vw;
  font-weight: normal;
  line-height: 1.2;
  margin: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}
#hero-banner .hero-banner-heading b {
  display: block;
}
#hero-banner.hero-banner-active #hero-banner-image {
  display: none;
}

#hero-banner-video,
#hero-banner-image {
  left: 0;
  object-fit: cover;
  opacity: 0.8;
  position: absolute;
  top: 0;
  transition: all 150ms ease-in-out;
  width: 100%;
  height: 100%;
}
.paused #hero-banner-video,
.paused #hero-banner-image {
  opacity: 0.6;
}

#hero-banner-button {
  background-color: black;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADUAAABQAQMAAACDEa/aAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAABFJREFUKM9j+P//xygexQOFAVmQ2dAaCQcwAAAAAElFTkSuQmCC");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25%;
  border-radius: 5px;
  border: 1px #ffffff solid;
  bottom: 1.5vw;
  height: 30px;
  opacity: 0.5;
  position: absolute;
  right: 1.5vw;
  transition: all 350ms ease-in-out;
  width: 30px;
  z-index: 4;
}
#hero-banner:hover #hero-banner-button, #hero-banner-button:focus {
  opacity: 1;
}
.paused #hero-banner-button {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAE4AAABgAQMAAACJwtYYAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAAMdJREFUOMtF06FxxEAMhWGVkBJcimDK2hJUwpUSuPBKMFhgmNEYnG/2VpkYvF/oI/8IPfsy3QETTrhcrIAHTDibWA4DHjDhbGI5DDhgwtnEchhwwDecTSyDAQd8w9nE2uATDvi6SVd0RVd0RVd0pU58wgEvuJpYG/yBO3xBWDsM6OLkRfJ4hyEuF6eJCQ8Y4nLxY2LCDkNcLn5MTNhhu0llVDcTdtjE5eJl4i/s8CFqUP+VeMIOHyIzpLI6YYebuCS74Am/IdUfqsf2gxHDS4AAAAAASUVORK5CYII=");
}

.divider {
  margin: 56px 0;
}
@media (min-width: 768px) {
  .divider {
    margin: 64px 0;
  }
}
@media (min-width: 992px) {
  .divider {
    margin: 72px 0;
  }
}
@media (min-width: 1200px) {
  .divider {
    margin: 80px 0;
  }
}
@media (min-width: 1440px) {
  .divider {
    margin: 88px 0;
  }
}
@media (min-width: 1920px) {
  .divider {
    margin: 96px 0;
  }
}

.divider--text {
  display: flex;
  flex-direction: row;
  color: #f9d74b;
  font-weight: 700;
  font-size: 22px;
}
.divider--text:before, .divider--text:after {
  content: "";
  flex: 1 1;
  border-bottom: 1px solid #f9d74b;
  margin: auto;
}
.divider--text:before {
  margin-right: 17px;
}
.divider--text:after {
  margin-left: 17px;
}

.divider--black {
  border: 1px solid #363635;
}

.divider--red {
  border: 1px solid #f9d74b;
}

button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.h-button {
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  padding: 11px 40px;
  text-decoration: none;
  display: inline-block;
}

.h-button-black {
  background: #1D1D1B;
}

.h-button-outline {
  border: 1px solid #1D1D1B;
  color: #1D1D1B;
}

.h-button-red {
  background: #E40520;
}

#resetButton {
  display: block;
  margin: 0 auto 56px;
}

/**
*
* SOCIAL ICONS
*
*/
.social-menu {
  display: flex;
  list-style-type: none;
  justify-content: center;
  margin: 0 0 0 2rem;
  padding: 0;
  flex-wrap: wrap;
  gap: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.social-menu li:last-child {
  margin-right: 0;
}
.social-menu a {
  text-decoration: none;
}
.social-menu i {
  display: flex;
  width: 2.4rem;
  height: 2.4rem;
  transform: scale(1.4);
  transition: all 0.3s ease-in-out;
}
@media all and (min-width: 992px) {
  .social-menu i {
    transform: scale(1.2);
  }
}

.facebook {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' fill='none'%3E%3Cpath fill='%23000000' fill-rule='evenodd' d='M13.32 20v-8h2.37L16 9.24h-2.68V7.86c0-.72.08-1.1 1.18-1.1h1.48V4h-2.36c-2.85 0-3.85 1.34-3.85 3.59v1.65H8V12h1.77v8h3.55z' clip-rule='evenodd' /%3E%3Ccircle cx='12' cy='12' r='11.5' stroke='%23000000' /%3E%3C/svg%3E");
}
.facebook:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' fill='none'%3E%3Cpath fill='%23000000' fill-rule='evenodd' d='M12 24a12 12 0 100-24 12 12 0 000 24zm1.15-11.5V20h-3.1v-7.5H8.5V9.9h1.55V8.36c0-2.1.88-3.36 3.36-3.36h2.08v2.59h-1.3c-.97 0-1.03.36-1.03 1.03v1.3h2.34l-.27 2.58h-2.08z' clip-rule='evenodd' /%3E%3C/svg%3E");
}
.instagram {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' fill='none'%3E%3Cpath fill='%23000000' fill-rule='evenodd' d='M11.82 5h-.49c-1.61 0-1.92.01-2.72.05a4.8 4.8 0 00-1.61.3c-.41.16-.7.34-1 .65-.3.3-.5.59-.65 1-.12.3-.26.76-.3 1.6-.04.92-.05 1.2-.05 3.5 0 2.33 0 2.6.05 3.51.04.85.18 1.3.3 1.61.16.41.34.7.65 1 .3.3.59.5 1 .65.3.12.76.26 1.6.3.92.04 1.2.05 3.51.05 2.32 0 2.6 0 3.5-.05.85-.04 1.31-.18 1.62-.3.4-.16.69-.34 1-.65.3-.3.49-.59.64-1 .12-.3.26-.76.3-1.6.04-.92.05-1.2.05-3.5 0-2.32 0-2.6-.05-3.51a4.8 4.8 0 00-.3-1.61 2.7 2.7 0 00-.65-1c-.3-.3-.59-.5-1-.65a4.8 4.8 0 00-1.6-.3c-.92-.04-1.2-.05-3.5-.05h-.3zm3.88 2.48a1.04 1.04 0 112.08 0 1.04 1.04 0 01-2.08 0zm-3.59.18a4.45 4.45 0 100 8.9 4.45 4.45 0 000-8.9zm2.9 4.45a2.9 2.9 0 10-5.79 0 2.9 2.9 0 005.78 0z' clip-rule='evenodd' /%3E%3Ccircle cx='12' cy='12' r='11.5' stroke='%23000000' /%3E%3C/svg%3E");
}
.instagram:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' fill='none'%3E%3Cpath fill='%23000000' fill-rule='evenodd' d='M12 24a12 12 0 100-24 12 12 0 000 24zM9.01 4.94A51.4 51.4 0 0112 4.9c1.97 0 2.22 0 2.99.04s1.3.16 1.76.34c.48.19.88.43 1.28.84.4.4.65.8.84 1.28.18.46.3.99.34 1.76.03.77.04 1.02.04 2.99 0 1.97 0 2.22-.04 2.99s-.16 1.3-.34 1.76c-.19.48-.43.88-.84 1.28-.4.4-.8.65-1.28.84-.46.18-.99.3-1.76.34-.77.03-1.02.04-2.99.04-1.97 0-2.22 0-2.99-.04a5.32 5.32 0 01-1.76-.34 3.55 3.55 0 01-1.28-.84c-.4-.4-.65-.8-.84-1.28-.18-.46-.3-.99-.34-1.76-.03-.77-.04-1.02-.04-2.99 0-1.97 0-2.22.04-2.99s.16-1.3.34-1.76c.19-.48.43-.88.84-1.28.4-.4.8-.65 1.28-.84.46-.18.99-.3 1.76-.34zm5.92 1.3c-.76-.03-1-.03-2.93-.03-1.94 0-2.17 0-2.93.04-.7.03-1.09.15-1.35.25-.33.13-.58.29-.83.54-.25.25-.41.5-.54.83-.1.26-.22.64-.25 1.35-.04.76-.04 1-.04 2.93 0 1.94 0 2.17.04 2.93.03.7.15 1.09.25 1.35.13.33.29.58.54.83.25.25.5.41.83.54.26.1.64.22 1.35.25.76.04 1 .04 2.93.04 1.94 0 2.17 0 2.93-.04.7-.03 1.09-.15 1.35-.25.33-.13.58-.29.83-.54.25-.25.41-.5.54-.83a4 4 0 00.25-1.35 122.06 122.06 0 000-5.86 4 4 0 00-.25-1.35 2.24 2.24 0 00-.54-.83c-.25-.25-.5-.41-.83-.54-.26-.1-.64-.22-1.35-.25zM12 14.58a2.42 2.42 0 110-4.84 2.42 2.42 0 010 4.84zm0-6.14a3.72 3.72 0 100 7.44 3.72 3.72 0 000-7.44zm3.87.72a.87.87 0 100-1.74.87.87 0 000 1.74z' clip-rule='evenodd' /%3E%3C/svg%3E");
}

.twitter {
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' fill='none'%3E%3Ccircle cx='13' cy='13' r='12.5' stroke='%23fff'/%3E%3Cpath fill='%23fff' d='m6.034 6 5.405 7.722L6 20h1.224l4.763-5.497L15.834 20H20l-5.71-8.156L19.354 6H18.13l-4.386 5.062L10.2 6H6.034Zm1.8.964h1.914L18.2 19.037h-1.913L7.834 6.964Z'/%3E%3C/svg%3E");
}
.twitter:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' fill='%23fff'%3E%3Ccircle cx='13' cy='13' r='12.5' stroke='%23fff'/%3E%3Cpath fill='%23513fc6' fill-rule='evenodd' d='m6.034 6 5.405 7.722L6 20h1.224l4.763-5.497L15.834 20H20l-5.71-8.156L19.354 6H18.13l-4.386 5.062L10.2 6H6.034Zm1.8.964h1.914L18.2 19.037h-1.913L7.834 6.964Z'/%3E%3C/svg%3E");
}

.youtube {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' fill='none'%3E%3Ccircle cx='12' cy='12' r='11.5' stroke='%23000000' /%3E%3Cpath fill='%23000000' fill-rule='evenodd' d='M9.18 4.5h1.11l-.84 2.47a9.26 9.26 0 01-.31.84c-.05.12-.08.26-.12.41v2.64h-1.1V8.34c-.01-.12-.16-.54-.44-1.27L6.61 4.5h1.12l.7 2.54h.08l.67-2.54zm3.89 2.76v2.43c0 .42-.13.74-.38.96-.26.22-.6.33-1.04.33-.42 0-.76-.12-1.02-.35a1.22 1.22 0 01-.38-.96V7.26c0-.4.14-.7.41-.9.28-.2.63-.3 1.03-.3s.72.1.98.33c.27.21.4.51.4.88zm3.61-1.1v4.7h-.97v-.52c-.38.38-.76.58-1.13.58-.46 0-.69-.28-.69-.84V6.16h.98v3.6c0 .21.09.32.26.32s.36-.12.58-.36V6.16h.97zm-4.6 1.04v2.57c0 .26-.15.38-.43.38-.27 0-.4-.13-.4-.38V7.2c0-.1.04-.18.12-.25.09-.06.18-.1.28-.1.1 0 .2.04.29.1.1.07.14.15.14.25zm6.33 10.56c.06-.96.09-1.69.09-2.18 0-.48-.03-1.21-.1-2.17-.03-.5-.23-.9-.58-1.2-.35-.29-.78-.45-1.29-.47-1-.04-2.5-.07-4.53-.07-2.02 0-3.53.03-4.53.07-.51.03-.94.18-1.3.48-.34.3-.54.69-.58 1.19-.06.96-.09 1.69-.09 2.18 0 .48.03 1.21.1 2.17.03.5.23.9.58 1.2.35.29.78.45 1.29.46 1 .05 2.5.08 4.53.08 2.01 0 3.52-.02 4.53-.07.51-.02.94-.18 1.3-.48.34-.3.54-.69.58-1.19zm-1-.81v-.29h-.8a7.02 7.02 0 000 .43l-.03.18a.24.24 0 01-.1.14.42.42 0 01-.22.05.3.3 0 01-.24-.09.3.3 0 01-.1-.18v-.97h1.5v-.96c0-.36-.1-.63-.3-.83-.19-.2-.46-.3-.82-.3-.34 0-.63.1-.86.3-.23.21-.34.48-.34.83v1.69c0 .36.1.65.3.86.2.22.48.33.84.33.79 0 1.18-.4 1.18-1.19zm-2.9-1.81v2.1c0 .56-.25.84-.72.84-.28 0-.53-.12-.75-.35v.3h-.8v-5.15h.8v1.65a.95.95 0 01.7-.34c.5 0 .76.32.76.95zm-3.82 2.89h.78v-3.8h-.78v2.88c-.18.2-.33.29-.48.29-.13 0-.2-.08-.2-.25v-2.91h-.79v3.19c0 .44.19.66.55.66.3 0 .61-.16.92-.48v.42zm-1.45-4.4H8.3v4.4h-.89v-4.4h-.91v-.75h2.73v.75zm7.37 1.58v.42h-.69v-.42c0-.27.12-.4.35-.4.23 0 .34.13.34.4zm-2.92 1.95v-2c0-.25-.1-.37-.32-.37a.47.47 0 00-.33.15v2.37c.11.11.24.17.38.17.18 0 .27-.11.27-.32z' clip-rule='evenodd' /%3E%3C/svg%3E");
}
.youtube:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' fill='none'%3E%3Cpath fill='%23000000' fill-rule='evenodd' d='M12 24a12 12 0 100-24 12 12 0 000 24zM10.4 5H9.37l-.61 2.37h-.07L8.04 5H7.02l.8 2.4c.25.68.39 1.07.4 1.18v2.36h1.01V8.47a2.7 2.7 0 01.19-.6 24.56 24.56 0 01.2-.56L10.4 5zm2.54 4.84V7.58c0-.35-.12-.62-.36-.83-.24-.2-.54-.3-.9-.3-.37 0-.68.09-.94.28a.97.97 0 00-.39.83v2.27c0 .37.12.67.36.89.24.22.55.33.93.33.4 0 .72-.1.95-.31.24-.2.35-.5.35-.9zm3.32 1.1V6.55h-.9v3.32c-.19.23-.37.34-.53.34-.15 0-.23-.1-.23-.3V6.55h-.9v3.66c0 .52.21.78.63.78.35 0 .7-.18 1.04-.54v.49h.9zM12.03 9.9V7.52c0-.1-.04-.17-.12-.23a.45.45 0 00-.27-.1.38.38 0 00-.25.1.28.28 0 00-.11.23v2.4c0 .24.12.36.36.36.26 0 .4-.12.4-.37zm5.9 5.44c0 .45-.03 1.13-.09 2.03-.03.46-.21.83-.53 1.1-.33.28-.72.43-1.19.45-.92.05-2.3.07-4.16.07a89.5 89.5 0 01-4.15-.07 1.88 1.88 0 01-1.19-.44c-.32-.28-.5-.65-.54-1.11A35.4 35.4 0 016 15.35c0-.46.03-1.14.08-2.03.04-.47.22-.84.54-1.12.32-.27.72-.42 1.19-.44.91-.04 2.3-.07 4.15-.07 1.86 0 3.25.03 4.16.07.47.02.86.17 1.19.44.32.28.5.65.53 1.12.06.9.09 1.57.09 2.03zm-1 1v.27c0 .74-.36 1.1-1.07 1.1-.34 0-.6-.1-.78-.3-.18-.2-.27-.46-.27-.8v-1.58c0-.32.1-.57.31-.76.21-.2.47-.3.8-.3.32 0 .57.1.75.29.18.18.26.44.26.77v.9h-1.37v.9l.05.12a.28.28 0 00.26.14c.08 0 .15-.02.2-.05a.23.23 0 00.1-.14l.03-.16v-.21-.19h.73zm-2.67.54v-1.96c0-.6-.23-.89-.7-.89-.23 0-.45.11-.64.33v-1.54h-.73v4.8h.73v-.28c.2.21.43.32.68.32.44 0 .66-.26.66-.78zm-2.79.74h-.71v-.4c-.28.3-.56.45-.84.45-.34 0-.5-.2-.5-.61v-2.98h.72v2.71c0 .16.06.24.19.24s.27-.09.43-.27V14.1h.71v3.54zm-2.9-4.1h.86v-.7h-2.5v.7h.83v4.1h.82v-4.1zm7.62 1.86v-.4c0-.25-.1-.37-.3-.37-.22 0-.33.12-.33.38v.39h.63zm-2.67-.44v1.87c0 .2-.09.29-.25.29a.48.48 0 01-.35-.15v-2.22c.09-.09.2-.14.3-.14.2 0 .3.12.3.35z' clip-rule='evenodd' /%3E%3C/svg%3E");
}

.linkedin {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' fill='none'%3E%3Ccircle cx='12' cy='12' r='11.5' stroke='%23000000' /%3E%3Cpath fill='%23000000' fill-rule='evenodd' d='M8.43 6.58C8.4 5.68 7.77 5 6.73 5 5.67 5 5 5.68 5 6.58c0 .88.66 1.59 1.69 1.59h.01c1.07 0 1.73-.7 1.73-1.59zm-.2 2.84H5.18v9.15h3.05V9.42zm7.48-.22c2 0 3.51 1.31 3.51 4.12v5.25h-3.05v-4.9c0-1.23-.44-2.07-1.54-2.07-.84 0-1.34.57-1.56 1.12-.09.2-.1.47-.1.74v5.11H9.91s.04-8.3 0-9.15h3.04v1.3a3.03 3.03 0 012.75-1.52z' clip-rule='evenodd' /%3E%3C/svg%3E");
}
.linkedin:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' fill='none'%3E%3Cpath fill='%23000000' fill-rule='evenodd' d='M12 24a12 12 0 100-24 12 12 0 000 24zM7.14 5c.99 0 1.6.66 1.62 1.52 0 .84-.63 1.51-1.64 1.51H7.1c-.97 0-1.6-.67-1.6-1.51C5.5 5.66 6.15 5 7.14 5zM5.67 9.23h2.9V18h-2.9V9.23zM19 12.97c0-2.7-1.43-3.95-3.33-3.95-1.54 0-2.23.85-2.61 1.45V9.23h-2.9c.04.82 0 8.77 0 8.77h2.9v-4.9c0-.26.02-.52.1-.71.2-.52.68-1.07 1.48-1.07 1.05 0 1.47.8 1.47 1.99V18H19v-5.03z' clip-rule='evenodd' /%3E%3C/svg%3E");
}

form {
  font-size: 1.6rem;
  line-height: 1.8rem;
  color: #363635;
}
form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=password],
form textarea,
form textarea.form-control {
  border-radius: 3px;
  border: 2px solid rgba(249, 215, 75, 0.4);
  background: rgba(54, 54, 53, 0.05);
  padding: 5px;
  font-size: 1.2rem;
  color: #363635;
}
form input[type=submit] {
  background: #f9d74b;
  font-weight: 500;
  transition: 0.5s;
  color: #ffffff;
  border: 0 none;
  padding: 5px 7px;
  border-radius: 3px;
}
form input[type=submit]:hover {
  opacity: 0.8;
}
form .banc_form {
  font-size: 1.6rem;
  line-height: 1.8rem;
  padding: 1.5rem;
}
form .banc_form h2,
form .banc_form h3 {
  text-align: center;
  color: #f9d74b;
}
form .banc_form h4 {
  color: var(--e-global-color-primary);
  font-family: "Roboto Condensed", Sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  font-style: italic;
  text-decoration: none;
  line-height: 1.2em;
  letter-spacing: 0px;
}
form .banc_form .message.alert {
  color: var(--e-global-color-accent);
}
form .banc_form label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
form .banc_form input::placeholder,
form .banc_form textarea::placeholder,
form .banc_form select,
form .banc_form option {
  color: #363635;
  font-size: 1.6rem;
}
form .banc_form .banc_form_submit p {
  margin: 0;
  padding: 0;
}
form .banc_form input[type=submit].banc_submit {
  font-family: "Bree Serif", serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  padding: 15px 50px 15px 25px;
  border: 2px solid transparent;
  border-radius: 0;
  background-color: #f9d74b;
  color: #363635;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 414.2 362.4'%3E%3Cpath fill='%23212529' d='M207.1,0C92.7,0,0,81.1,0,181.2s13.9,74.7,37.7,104.2c-4.8,20.2-8.2,40.7-10.2,61.3-.5,5,4.2,9,9.1,7.7l64.7-17.4c31,16.1,67.2,25.4,105.8,25.4,114.4,0,207.1-81.1,207.1-181.2S321.5,0,207.1,0M109.7,207.1c-14.3,0-25.9-11.6-25.9-25.9s11.6-25.9,25.9-25.9,25.9,11.6,25.9,25.9-11.6,25.9-25.9,25.9M207.1,207.1c-14.3,0-25.9-11.6-25.9-25.9s11.6-25.9,25.9-25.9,25.9,11.6,25.9,25.9-11.6,25.9-25.9,25.9M304.5,207.1c-14.3,0-25.9-11.6-25.9-25.9s11.6-25.9,25.9-25.9,25.9,11.6,25.9,25.9-11.6,25.9-25.9,25.9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 2.4rem 2.1rem;
}
form .banc_form input[type=submit].banc_submit:hover {
  background-color: #363635;
  color: #f9d74b;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 414.2 362.4'%3E%3Cpath fill='%23f9d74b' d='M207.1,0C92.7,0,0,81.1,0,181.2s13.9,74.7,37.7,104.2c-4.8,20.2-8.2,40.7-10.2,61.3-.5,5,4.2,9,9.1,7.7l64.7-17.4c31,16.1,67.2,25.4,105.8,25.4,114.4,0,207.1-81.1,207.1-181.2S321.5,0,207.1,0M109.7,207.1c-14.3,0-25.9-11.6-25.9-25.9s11.6-25.9,25.9-25.9,25.9,11.6,25.9,25.9-11.6,25.9-25.9,25.9M207.1,207.1c-14.3,0-25.9-11.6-25.9-25.9s11.6-25.9,25.9-25.9,25.9,11.6,25.9,25.9-11.6,25.9-25.9,25.9M304.5,207.1c-14.3,0-25.9-11.6-25.9-25.9s11.6-25.9,25.9-25.9,25.9,11.6,25.9,25.9-11.6,25.9-25.9,25.9'/%3E%3C/svg%3E");
}
form .banc_form .wpcf7-spinner {
  position: absolute;
}
form .banc_form label.banc_form_label-full span.wpcf7-list-item {
  width: 100% !important;
}
form .banc_form .banc_form-group {
  margin-bottom: 2rem;
}
form .banc_form .banc_form-group input[type=text],
form .banc_form .banc_form-group input[type=email],
form .banc_form .banc_form-group input[type=tel],
form .banc_form .banc_form-group input[type=password],
form .banc_form .banc_form-group textarea,
form .banc_form .banc_form-group textarea.form-control {
  border-radius: 0;
  border: 2px solid transparent;
}
form .banc_form .banc_form-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}
@media screen and (min-width: 640px) {
  form .banc_form .banc_form-row {
    flex-direction: row;
  }
}
form .banc_form .banc_form-row p {
  margin: 0;
}
form .banc_form .banc_form-row br {
  display: none;
}
form .banc_form .banc_form-simple {
  width: 100%;
}
@media screen and (min-width: 640px) {
  form .banc_form .banc_form-double {
    width: 50%;
  }
}
form .banc_form input[type=text],
form .banc_form input[type=email],
form .banc_form input[type=tel],
form .banc_form input[type=password],
form .banc_form textarea {
  width: 100%;
}
form .banc_form .banc_form_acceptance label {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  font-size: 1.2rem;
  line-height: 120%;
  color: rgba(54, 54, 53, 0.7);
}
form .banc_form .banc_form-center {
  justify-content: flex-end;
  color: #ffffff;
}
form .banc_form .wpcf7-not-valid-tip {
  font-size: 1rem;
  color: rgba(54, 54, 53, 0.5);
  font-style: italic;
  margin-top: 0.3rem;
}

.page-header {
  position: relative;
}
@media all and (min-width: 1440px) {
  .page-header .container {
    padding-block: 3rem;
    padding-inline: 14rem;
  }
}
.page-header .header-nav-wrap {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.page-header a {
  color: #f9d74b;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 300;
  transition: all 0.3s ease-in-out;
}
@media all and (min-width: 1200px) {
  .page-header a {
    color: #363635;
    text-align: left;
    font-size: 1.6rem;
  }
}
@media all and (min-width: 1440px) {
  .page-header a {
    font-size: 1.8rem;
  }
}
.page-header a:hover {
  color: #f9d74b;
}
.page-header .logo {
  display: flex;
}
@media all and (min-width: 1200px) {
  .page-header .logo img {
    width: 25rem;
  }
}
.page-header .main-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.page-header .main-menu .current_page_item a {
  color: #f9d74b;
}
.page-header .menu-wrapper {
  display: none;
}
@media all and (max-width: 1200px) {
  .page-header .menu-wrapper.active {
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 998;
    width: 100vw;
    height: 100vh;
    background: rgba(54, 54, 53, 0.97);
  }
}
@media all and (min-width: 1200px) {
  .page-header .menu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.page-header .main-nav {
  position: relative;
  order: 1;
}
@media all and (min-width: 1200px) {
  .page-header .main-nav {
    order: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 7rem;
  }
}
.page-header .main-nav .menu-closer {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
@media all and (min-width: 1200px) {
  .page-header .main-nav .menu-closer {
    display: none;
  }
}
.page-header .main-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding-inline: 1rem;
}
@media all and (min-width: 1200px) {
  .page-header .main-menu {
    padding-inline: 0;
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
  }
}
.page-header .main-menu li {
  padding-block: 1rem;
  width: 100%;
}
@media all and (min-width: 1200px) {
  .page-header .main-menu li {
    padding-block: 0;
    width: auto;
  }
}
.page-header .main-menu li.dropdown {
  margin-right: 0;
}
@media all and (min-width: 1200px) {
  .page-header .main-menu li.dropdown {
    margin-right: 2rem;
  }
}
@media all and (min-width: 1200px) {
  .page-header .main-menu li .nav-link {
    text-align: left;
  }
}
.page-header .dropdown-menu {
  border-radius: 0;
  background: #dfdfdf;
  position: relative !important;
}
@media all and (max-width: 1199px) {
  .page-header .dropdown-menu {
    transform: none !important;
    width: 100% !important;
    max-width: 100%;
    word-wrap: break-word;
    white-space: normal;
  }
}
@media all and (min-width: 1200px) {
  .page-header .dropdown-menu {
    position: absolute !important;
    padding: 2rem;
  }
}
.page-header .dropdown-menu li.menu-item a.dropdown-item {
  padding: 0.5rem;
}
@media all and (max-width: 1200px) {
  .page-header .dropdown-menu li.menu-item a.dropdown-item {
    white-space: normal;
  }
}
.page-header .dropdown-menu li.menu-item a.dropdown-item:hover, .page-header .dropdown-menu li.menu-item a.dropdown-item:focus {
  background-color: #363635;
}
.page-header .logo-mobile {
  position: relative;
  display: block;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media all and (min-width: 1200px) {
  .page-header .logo-mobile {
    display: none;
  }
}
.page-header .logo-mobile img {
  max-width: 15rem;
}
.page-header .logo-mobile .menu-toggler {
  position: absolute;
  top: 3rem;
  right: 1rem;
  z-index: 999;
  width: 5rem;
  height: 5rem;
}
.page-header .logo-mobile .menu-toggler .line {
  height: 0.6rem;
  background: #f9d74b;
  margin-block: 1rem;
}
.page-header .logo-mobile .menu-toggler.-close .line {
  background: #f9d74b;
  margin: 0;
}
.page-header .logo-mobile .menu-toggler.-close .line.-top {
  transform: rotate(45deg);
}
.page-header .logo-mobile .menu-toggler.-close .line.-mid {
  position: relative;
  top: -0.6rem;
  transform: rotate(-45deg);
}
.page-header .logo-mobile .menu-toggler.-close .line.-bot {
  display: none;
}
.page-header .logo {
  display: none;
}
@media all and (min-width: 992px) {
  .page-header .logo {
    display: flex;
  }
}

.home .page-header {
  height: 150px;
  position: relative;
  z-index: 2;
}
@media all and (min-width: 1200px) {
  .home .page-header {
    height: 205px;
  }
}
.home .page-header .container {
  padding-block: 3rem;
}

.main-footer {
  margin-top: 5rem;
  padding-block: 5rem;
  background: #dfdfdf;
  color: #363635;
}
@media all and (min-width: 992px) {
  .main-footer {
    padding-block: 5rem 8rem;
  }
}
@media all and (min-width: 992px) {
  .main-footer .-ctnr {
    height: 25rem;
  }
}
.main-footer .-ctnr.row {
  display: flex !important;
  align-items: stretch !important;
}
.main-footer .-ctnr > .col-md-4 {
  align-self: stretch !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}
.main-footer h4 {
  font-size: 2.1rem;
  line-height: 120%;
  color: #363635;
  margin: 0;
  padding: 0;
}
.main-footer h4 .job {
  background: #363635;
  color: #f9d74b;
  padding: 0.2rem 0.5rem;
  width: auto;
  display: inline-block !important;
}
.main-footer a {
  color: #363635;
  text-decoration: none;
}
.main-footer a:hover {
  background: #363635;
  color: #f9d74b;
}
.main-footer ul,
.main-footer li {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.4rem;
  font-variation-settings: "wght" 300;
}
.main-footer .-identity,
.main-footer .-presentation,
.main-footer .-end {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-footer .-presentation,
.main-footer .-end {
  padding-inline: 6rem;
}
@media all and (min-width: 992px) {
  .main-footer .-identity,
  .main-footer .-presentation {
    border-right: 1px solid rgba(54, 54, 53, 0.2);
  }
}
.main-footer .-identity > .row {
  align-items: stretch;
}
.main-footer .-identity .-logo {
  padding-right: 2rem;
  text-align: center;
}
@media all and (min-width: 992px) {
  .main-footer .-identity .-logo {
    text-align: right;
  }
}
.main-footer .-identity .-logo img {
  height: 20rem;
  width: auto;
}
.main-footer .-identity .-coords {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}
@media all and (min-width: 992px) {
  .main-footer .-identity .-coords {
    align-items: flex-start;
    margin-bottom: 0;
  }
}
.main-footer .-identity .-coords .name {
  margin-bottom: 3rem;
}
.main-footer .-identity .-coords .name span {
  display: block;
  font-size: 2.4rem;
}
.main-footer .-identity .-coords .name span.big {
  font-size: 3.6rem;
}
.main-footer .-identity .-coords .contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}
.main-footer .-identity .-coords .contact-list li.phone, .main-footer .-identity .-coords .contact-list li.address {
  font-size: 2.4rem;
}
.main-footer .-identity .-coords .contact-list li .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background: #363635;
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}
.main-footer .-identity .-coords .contact-list li .icon i {
  color: #ffffff;
  font-size: 1.2rem;
}
.main-footer .-presentation {
  margin-bottom: 3rem;
}
@media all and (min-width: 992px) {
  .main-footer .-presentation {
    margin-bottom: 0;
  }
}
.main-footer .-presentation p {
  font-size: 1.8rem;
}
.main-footer .-presentation .-footer-nav {
  display: inline;
}
.main-footer .-presentation .-footer-nav li a {
  display: inline-block;
  padding: 0.7rem 0.3rem;
}
.main-footer .-end {
  align-items: flex-start !important;
}
.main-footer .-end img {
  display: block;
  height: 6rem;
  width: auto;
}
.main-footer .text-reassurance {
  margin-bottom: 2rem;
}
.main-footer .text-reassurance li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.main-footer .text-reassurance li::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  background-color: #363635;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f9d74b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem;
}
.main-footer .logos-reassurance {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.main-footer .logos-reassurance img {
  height: 6rem;
  width: auto;
}

.menu-container .anchor-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.menu-container .menu-double {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 768px) {
  .menu-container .menu-double {
    align-items: flex-start;
    flex-direction: row;
  }
}
.menu-container .menu-double .item-container {
  width: 100%;
}
@media all and (min-width: 768px) {
  .menu-container .menu-double .item-container {
    width: 50%;
    padding-right: 4rem;
  }
}
.menu-container .menu-double .form-container {
  width: 100%;
}
@media all and (min-width: 768px) {
  .menu-container .menu-double .form-container {
    display: block;
    position: sticky;
    width: 50%;
    padding-right: 0;
    padding-left: 4rem;
    top: 3rem;
  }
}
.menu-container .menu-double .item-parent {
  margin-bottom: 8rem;
}
.menu-container .menu-double .item-parent h3 {
  margin-bottom: 3rem;
}
.menu-container .menu-double .item-parent .photos .photo {
  padding-left: 1rem;
}
.menu-container .menu-double .item-parent .photos .photo:first-child {
  padding-left: 0;
}
.menu-container .menu-double .item-parent .item {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ffffff;
}
.menu-container .menu-double .item-parent .item h3.-title {
  font-family: "Bree Serif", serif;
  font-size: 1.6rem;
  line-height: 120%;
  margin-bottom: 1rem;
}
.menu-container .menu-double .item-parent .item h3.-title span {
  font-variation-settings: "wght" 400;
  color: #f9d74b;
}
.menu-container .menu-double .item-parent .item .-price {
  font-variation-settings: "wght" 600;
}
.menu-container .-pro .item {
  margin-bottom: 3rem;
}
.menu-container .-pro .item .-title {
  color: #f9d74b;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f9d74b;
}
@media all and (min-width: 768px) {
  .menu-container .-pro .item .-left {
    padding-right: 2rem;
  }
}
.menu-container .-pro .item .-excerpt {
  margin-bottom: 2rem;
  font-size: 1.4rem;
}
.menu-container .-pro .item .-excerpt p {
  font-size: 1.4rem;
}
.menu-container .-pro .item .-price {
  font-variation-settings: "wght" 600;
}
.menu-container .-pro .item .-thumbnail {
  max-width: 100%;
}

.legals h1 {
  margin-top: 10rem;
}
.legals h2,
.legals h3,
.legals h4,
.legals h5,
.legals h6 {
  color: #f9d74b;
  margin-top: 5rem;
}

@media all and (min-width: 992px) {
  .page-bg {
    background: url(f5d8d05b672bce168e356e35eb343701.png) no-repeat center top;
    background-size: 1400px auto;
  }
}

.page-content {
  padding-block: 4rem;
}
@media all and (min-width: 992px) {
  .page-content {
    padding-block: 15rem 10rem;
  }
}

.page-heading {
  padding-block: 2rem;
  padding-inline: 2rem;
}
@media all and (min-width: 992px) {
  .page-heading {
    padding-block: 0 4rem;
    padding-inline: 15rem;
  }
}

.page-left {
  padding-block: 2rem;
  padding-inline: 2rem;
}
@media all and (min-width: 992px) {
  .page-left {
    padding-block: 0;
    padding-inline: 15rem;
  }
}
.page-left.fs-page p,
.page-left.fs-page ul {
  font-size: 1.8rem;
  line-height: 130%;
  font-weight: 400;
}
.page-left.fs-page ul li::marker {
  color: #f9d74b;
}
.page-left.fs-page p.intro {
  font-size: 2.4rem;
}

.page-right {
  padding-block: 2rem;
  padding-inline: 2rem;
}
@media all and (min-width: 992px) {
  .page-right {
    padding-block: 0rem;
    padding-inline: 4rem;
  }
}
.page-right p {
  margin-bottom: 2.5rem;
}
.page-right.-photo img {
  max-width: 100%;
  margin-bottom: 2rem;
}

.-has-icon {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.-has-icon::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  transform: translateY(-0.8rem);
  background-color: #f9d74b;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem;
}
.-has-icon.-id::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}
.-has-icon.-phone::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}
.-has-icon.-email::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
}
.-has-icon.-hours::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
}
.-has-icon h3 {
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
}
.-has-icon p {
  margin: 0;
  font-size: 1.8rem;
  line-height: 140%;
}

.large-container {
  padding-inline: 2rem;
  margin-bottom: 4rem;
}
@media all and (min-width: 992px) {
  .large-container {
    padding-inline: 6rem;
    margin-bottom: 10rem;
  }
}
.large-container .domaine {
  min-height: 25rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media all and (min-width: 992px) {
  .large-container .domaine {
    min-height: 37.5rem;
    padding-bottom: 5rem;
    margin-bottom: 0;
  }
}
.large-container .domaine.-industriel {
  background-image: url(a935d48fba568f2d7d2b457694960647.jpg);
}
@media all and (min-width: 992px) {
  .large-container .domaine.-industriel {
    justify-content: flex-end;
    padding-right: 5rem;
    margin-right: 1rem;
  }
}
.large-container .domaine.-particulier {
  background-image: url(c696365e1faf2ce4a1763f40eb2dacdc.jpg);
}
@media all and (min-width: 992px) {
  .large-container .domaine.-particulier {
    padding-left: 5rem;
    margin-left: 1rem;
  }
}
.large-container .domaine .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}
@media all and (min-width: 992px) {
  .large-container .domaine .inner {
    flex-direction: row;
    padding: 0;
  }
}
.large-container .domaine .inner h3 {
  position: relative;
  background: #f9d74b;
  text-transform: uppercase;
  margin: 0;
  padding: 1.5rem 2rem;
}
.large-container .domaine .inner h3::before {
  content: "";
  position: absolute;
  left: -4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12rem;
  height: 12rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='80 210 240 260'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='157.5' y1='228.3' x2='270.8' y2='453.3' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23515151'/%3E%3Cstop offset='1' stop-color='%23343434'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23grad)' d='M215.7,461.2c-65.3,0-118.4-53.1-118.4-118.4s53.1-118.4,118.4-118.4,73,18.6,94.6,47.3h11.6c-23-34.2-62-56.8-106.2-56.8-70.5,0-127.8,57.3-127.8,127.8s57.3,127.8,127.8,127.8,71.8-16.5,95.2-42.6h-13.2c-21.3,20.5-50.2,33.1-82.1,33.1Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hero {
  background: #363635;
  margin-top: 5rem;
  min-height: 35rem;
  display: flex;
  align-items: center;
  background-image: url(a728f25e31a2a9ed42b771b3b5d08c32.jpg);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  font-size: 3.3rem;
}
@media all and (min-width: 992px) {
  .hero {
    background-position: right center;
  }
}
.hero strong {
  color: #f9d74b;
  text-transform: uppercase;
}
.hero > .container {
  width: 100%;
}
.hero .right {
  padding: 4rem 2rem;
  text-align: center;
}
@media all and (min-width: 992px) {
  .hero .right {
    padding: 0;
    text-align: left;
  }
}
.hero .hero-img {
  width: 80%;
}

.hero-page h1,
.hero-page .bm__h1 {
  font-family: "Bree Serif", serif;
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 110%;
}
@media all and (min-width: 768px) {
  .hero-page h1,
  .hero-page .bm__h1 {
    font-size: 4.8rem;
  }
}
@media all and (min-width: 992px) {
  .hero-page h1,
  .hero-page .bm__h1 {
    font-size: 4.8rem;
  }
}
@media all and (min-width: 1440px) {
  .hero-page h1,
  .hero-page .bm__h1 {
    font-size: 4.8rem;
  }
}
.hero-page p.subtitle {
  border-top: 1px solid rgba(223, 223, 223, 0.2);
  margin-top: 3rem;
  padding-top: 3rem;
  color: #f9d74b;
}

.hero-page h1,
.hero-page .bm__h1 {
  font-family: "Bree Serif", serif;
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 110%;
}
@media all and (min-width: 768px) {
  .hero-page h1,
  .hero-page .bm__h1 {
    font-size: 4.8rem;
  }
}
@media all and (min-width: 992px) {
  .hero-page h1,
  .hero-page .bm__h1 {
    font-size: 4.8rem;
  }
}
@media all and (min-width: 1440px) {
  .hero-page h1,
  .hero-page .bm__h1 {
    font-size: 4.8rem;
  }
}
.hero-page p.subtitle {
  border-top: 1px solid rgba(223, 223, 223, 0.2);
  margin-top: 3rem;
  padding-top: 3rem;
  color: #f9d74b;
}

#hero_video {
  position: relative;
  width: 100%;
  top: -150px;
  left: 0;
  height: 100vh;
  margin-bottom: -150px;
}
@media all and (min-width: 1200px) {
  #hero_video {
    top: -205px;
    margin-bottom: -205px;
  }
}
#hero_video video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hero_video .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#hero_video .-custom-height {
  height: calc(100% - 150px);
  position: relative;
  top: 150px;
}
@media all and (min-width: 1200px) {
  #hero_video .-custom-height {
    height: calc(100% - 205px);
    top: 205px;
  }
}
#hero_video .container {
  position: relative;
}
#hero_video .container .content {
  padding-inline: 2rem;
}
@media all and (min-width: 1200px) {
  #hero_video .container .content {
    padding-inline: 0;
  }
}
#hero_video .container h1,
#hero_video .container .excerpt {
  margin-bottom: 3rem;
}
#hero_video .container .sub-heading {
  color: #f9d74b;
  font-size: 2.1rem;
  text-transform: uppercase;
  font-weight: 300;
}
#hero_video .container .excerpt, #hero_video .containerp {
  font-weight: 300;
  line-height: 130%;
  font-size: 2.1rem;
}

@media all and (max-width: 768px) {
  .shops {
    overflow: hidden;
  }
}
@media all and (min-width: 992px) {
  .shops {
    padding: 0;
  }
}
.shops .head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
  background: #dfdfdf;
  padding-inline: 3rem;
  padding-block: 1rem;
}
.shops .head h2 {
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  letter-spacing: 1.5px;
}
.shops .row {
  --bs-gutter-x: 1rem;
}
.shops .row .item {
  margin-bottom: 3rem;
}
.shops .row .item h3 {
  margin-block: 2.5rem 0;
  font-size: 4rem;
}
.shops .row .item .tags {
  margin-block: 1rem;
}
.shops .row .item .tags span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 300;
  background: #e0e0e0;
  margin: 0.2rem;
  padding: 0.4rem;
  border-radius: 4px;
}
.shops .row .item .cta {
  margin-top: 1.5rem;
}

.highlight {
  padding-block: 10rem;
}
@media all and (max-width: 768px) {
  .highlight {
    overflow: hidden;
  }
}
.highlight .-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-block: 4rem;
}
@media all and (min-width: 768px) {
  .highlight .-left {
    margin-block: 0;
  }
}
.highlight .-left .main {
  border-radius: 100rem;
  border: 5px solid #ffffff;
  max-width: 20rem;
  position: relative;
  top: -3rem;
}
@media all and (min-width: 768px) {
  .highlight .-left .main {
    max-width: 18rem;
    top: 0;
  }
}
@media all and (min-width: 992px) {
  .highlight .-left .main {
    max-width: 26rem;
    top: 0;
  }
}
.highlight .-left .deco {
  position: absolute;
}
.highlight .-left .deco.bottom {
  border-radius: 100rem;
  max-width: 16rem;
  left: 12rem;
  bottom: 0;
}
@media all and (min-width: 768px) {
  .highlight .-left .deco.bottom {
    max-width: 14rem;
    left: 0;
    bottom: -2rem;
  }
}
@media all and (min-width: 992px) {
  .highlight .-left .deco.bottom {
    max-width: 22rem;
    left: 0;
    bottom: -3rem;
  }
}
.highlight .-left .deco.top {
  max-width: 16rem;
  right: 10rem;
  bottom: -3rem;
}
@media all and (min-width: 768px) {
  .highlight .-left .deco.top {
    max-width: 12rem;
    right: -1rem;
    bottom: -4rem;
  }
}
@media all and (min-width: 992px) {
  .highlight .-left .deco.top {
    max-width: 18rem;
    right: 3rem;
    bottom: -8rem;
  }
}
.highlight .-left .bg {
  width: 100%;
  position: absolute;
  z-index: -1;
}
.highlight .-left .bg .neon {
  position: relative;
  border-radius: 100rem;
  filter: blur(8rem);
  background-blend-mode: lighten;
  width: 18rem;
  height: 18rem;
  left: 10rem;
  bottom: -3rem;
  background-color: #006fb9;
}
.highlight .-middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 5rem 0;
}
.highlight .-middle img {
  width: 4.8rem;
}
.highlight .-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.highlight .-right img {
  max-width: 18rem;
}
@media all and (min-width: 768px) {
  .highlight .-right img {
    max-width: 16rem;
  }
}
@media all and (min-width: 992px) {
  .highlight .-right img {
    max-width: 24rem;
  }
}
.highlight .-right .bg {
  width: 100%;
  position: absolute;
  z-index: -1;
}
.highlight .-right .bg .neon {
  position: relative;
  border-radius: 100rem;
  filter: blur(8rem);
  background-blend-mode: lighten;
  width: 18rem;
  height: 18rem;
  left: 10rem;
  bottom: 0;
  background-color: #38185f;
}
@media all and (min-width: 768px) {
  .highlight .-right .bg .neon {
    width: 10rem;
    height: 10rem;
    left: 0rem;
    bottom: 0;
  }
}
@media all and (min-width: 992px) {
  .highlight .-right .bg .neon {
    width: 18rem;
    height: 18rem;
    left: 10rem;
    bottom: 0;
  }
}

.framed {
  overflow: hidden;
  position: relative;
}
.framed .head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
  background: #dfdfdf;
  padding-inline: 3rem;
  padding-block: 1rem;
}
.framed .head h2 {
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  letter-spacing: 1.5px;
}
.framed .content {
  margin-top: 3rem;
}
.framed .row {
  padding: 0;
  margin: 0;
}
.framed .img {
  text-align: center;
  padding-top: 5rem;
}
@media all and (min-width: 768px) {
  .framed .img {
    padding-top: 0;
  }
}
.framed .img img {
  max-width: 100%;
  width: 70%;
  height: auto;
}
.framed .img img.has_cache {
  mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iQ2FscXVlXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgODM1LjUgNTg5Ij4KICA8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMjkuMi4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogMi4xLjAgQnVpbGQgMTA4KSAgLS0+CiAgPGRlZnM+CiAgICA8c3R5bGU+CiAgICAgIC5zdDAgewogICAgICAgIGZpbGw6ICMxZDFkMWI7CiAgICAgIH0KICAgIDwvc3R5bGU+CiAgPC9kZWZzPgogIDxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik04MzUuNSwzMzMuMmMwLDE4NC0xODcsMjU1LjgtNDE3LjgsMjU1LjhTMCw1MTcuMywwLDMzMy4yLDE4NywwLDQxNy44LDBzNDE3LjgsMTQ5LjIsNDE3LjgsMzMzLjJoMFoiLz4KPC9zdmc+);
  mask-repeat: no-repeat;
  mask-size: contain;
}
.framed .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding-inline: 2rem;
}
@media all and (min-width: 992px) {
  .framed .text {
    padding-inline: 6rem 0;
  }
}
.framed .text .cta {
  margin-top: 1.5rem;
}

.double-content {
  position: relative;
}
.double-content .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0.06;
}
.double-content .container {
  position: relative;
}
.double-content .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}
.double-content .head img {
  width: 4.4rem;
  margin-bottom: 1rem;
}
.double-content .bottom {
  padding-block: 10rem;
}
.double-content .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding: 3rem;
}
.double-content .text h3,
.double-content .text .excerpt {
  margin-bottom: 4rem;
}
.double-content .gallery div {
  padding: 1rem;
}

.platdujour .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}
.platdujour .head img {
  width: 4.4rem;
  margin-bottom: 1rem;
}
.platdujour .item {
  border: 1px solid #ffffff;
  margin: 1rem;
  padding: 1rem;
}
.platdujour .item.active {
  background: #f9d74b;
  border-color: #f9d74b;
}
.platdujour .item.active .inner .jour {
  color: #ffffff;
}
.platdujour .item .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 30rem;
  border: 1px solid #ffffff;
  padding: 2rem;
}
.platdujour .item .inner .jour,
.platdujour .item .inner .date,
.platdujour .item .inner .prix {
  text-align: center;
}
.platdujour .item .inner .jour {
  font-size: 3.6rem;
  color: #f9d74b;
  text-transform: capitalize;
  font-variation-settings: "wght" 600;
}
.platdujour .item .inner .date {
  font-variation-settings: "wght" 300;
}
.platdujour .item .inner h3 {
  font-size: 3.6rem;
  line-height: 120%;
  margin-block: 3rem;
}
.platdujour .item .inner .prix {
  font-size: 2.4rem;
  font-variation-settings: "wght" 500;
}

.text-double .item {
  padding-inline: 3rem;
}
.text-double h2,
.text-double h3,
.text-double h4,
.text-double h4,
.text-double h5,
.text-double h6 {
  margin-bottom: 3rem;
}

#gallery .head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
  background: #dfdfdf;
  padding-inline: 3rem;
  padding-block: 1rem;
}
#gallery .head h2 {
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  letter-spacing: 1.5px;
}
#gallery .row {
  --bs-gutter-x: 1rem;
}
#gallery .img-wrapper {
  position: relative;
  margin-top: 15px;
}
#gallery .img-wrapper img {
  height: 25rem;
  object-fit: cover;
  max-width: 100%;
}
#gallery .img-overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
#gallery .img-overlay i {
  color: #fff;
  font-size: 1em;
}
#gallery #overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#gallery #overlay img {
  margin: 0;
  width: 80%;
  height: auto;
  object-fit: contain;
  padding: 5%;
}
@media screen and (min-width: 768px) {
  #gallery #overlay img {
    width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  #gallery #overlay img {
    width: 50%;
  }
}
#gallery #nextButton {
  color: #fff;
  font-size: 2em !important;
  transition: opacity 0.8s;
}
#gallery #nextButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #gallery #nextButton {
    font-size: 3em;
  }
}
#gallery #prevButton {
  color: #fff;
  font-size: 2em !important;
  transition: opacity 0.8s;
}
#gallery #prevButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #gallery #prevButton {
    font-size: 3em;
  }
}
#gallery #exitButton {
  color: #fff;
  font-size: 2em !important;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
}
#gallery #exitButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #gallery #exitButton {
    font-size: 3em;
  }
}

.contact-block {
  padding-block: 6rem;
  background: #e0e0e0;
  position: relative;
  z-index: 2;
}

.video-block .row .col-md-6 {
  margin-bottom: 1rem;
}
@media all and (min-width: 768px) {
  .video-block .row .col-md-6:nth-child(even) {
    padding-left: 0.5rem;
  }
  .video-block .row .col-md-6:nth-child(odd) {
    padding-right: 0.5rem;
  }
}

.logo-slider .head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
  background: #dfdfdf;
  padding-inline: 3rem;
  padding-block: 1rem;
}
.logo-slider .head h2 {
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  letter-spacing: 1.5px;
}
.logo-slider .splide {
  padding-inline: 6rem;
}
.logo-slider .item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-slider .item a {
  align-self: center;
  justify-self: center;
  text-align: center;
}
.logo-slider .item a img {
  max-width: 100%;
  width: 60%;
  height: auto;
}
.logo-slider .splide__arrow--prev {
  left: 0em;
}
.logo-slider .splide__arrow--next {
  right: 0em;
}
.logo-slider .splide__pagination {
  bottom: -1em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

/**
*
* 04. BS Override
*
*/
.menu-item {
  font-size: 2.1rem;
}

.dropdown-toggle[aria-expanded=true]:after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 32 18'%3E%3Cpath fill='%23ebd54a' d='M1 .78a2 2 0 0 0 0 2.83l13.59 13.6a2 2 0 0 0 2.82 0L31 3.61A2 2 0 1 0 28.17.8L16 12.97 3.83.79A2 2 0 0 0 1 .79Z'/%3E%3C/svg%3E");
}
@media all and (min-width: 1200px) {
  .dropdown-toggle[aria-expanded=true]:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 14 8'%3E%3Cpath fill='%23ebd54a' d='M.44.35a.89.89 0 0 0-.2.97c.05.1.12.2.2.29l5.94 6.04a.87.87 0 0 0 .96.2c.1-.05.2-.12.28-.2l5.94-6.04a.89.89 0 0 0 .21-.98.9.9 0 0 0-.48-.5.86.86 0 0 0-.97.22L7 5.76 1.68.36a.87.87 0 0 0-.96-.2C.62.2.52.26.44.35Z'/%3E%3C/svg%3E");
  }
}
.dropdown-toggle:after {
  content: "";
  border: none !important;
  display: inline-block;
  width: 2.2rem;
  height: 1.2rem;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='22' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.414.421a1.36 1.36 0 0 0-.307.442 1.32 1.32 0 0 0 .307 1.484l9.576 9.254a1.454 1.454 0 0 0 1.995 0l9.577-9.254c.136-.125.245-.275.32-.442a1.32 1.32 0 0 0-.296-1.507 1.454 1.454 0 0 0-2.02.027l-8.578 8.29-8.58-8.29a1.414 1.414 0 0 0-.457-.297A1.454 1.454 0 0 0 .414.421Z' fill='%23ebebeb'/%3E%3C/svg%3E");
  opacity: 1;
  position: absolute;
  top: 1.8rem;
}
@media all and (min-width: 1200px) {
  .dropdown-toggle:after {
    width: 1.4rem;
    height: 0.8rem;
    top: 1rem;
    right: -2rem;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='14' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.263.28A.908.908 0 0 0 0 .924a.917.917 0 0 0 .263.642l6.094 6.169A.897.897 0 0 0 6.992 8a.888.888 0 0 0 .635-.266l6.094-6.17A.908.908 0 0 0 14 .919a.916.916 0 0 0-.263-.653A.897.897 0 0 0 13.09 0a.889.889 0 0 0-.64.283L6.993 5.81 1.532.283A.897.897 0 0 0 .899.016.888.888 0 0 0 .263.28Z' fill='%23ebebeb'/%3E%3C/svg%3E");
  }
}
.dropdown-toggle:hover:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 14 8'%3E%3Cpath fill='%23ebd54a' d='M.44.35a.89.89 0 0 0-.2.97c.05.1.12.2.2.29l5.94 6.04a.87.87 0 0 0 .96.2c.1-.05.2-.12.28-.2l5.94-6.04a.89.89 0 0 0 .21-.98.9.9 0 0 0-.48-.5.86.86 0 0 0-.97.22L7 5.76 1.68.36a.87.87 0 0 0-.96-.2C.62.2.52.26.44.35Z'/%3E%3C/svg%3E");
}

.row {
  --bs-gutter-x: 0;
}

.max-w-xl {
  max-width: 1920px;
}

.pe-6 {
  padding-right: 4.5rem;
}

.ps-6 {
  padding-left: 4.5rem;
}

.p-6 {
  padding: 4.5rem;
}

.pe-7 {
  padding-right: 5.5rem;
}

.ps-7 {
  padding-left: 5.5rem;
}

.p-7 {
  padding: 5.5rem;
}

.page-item {
  text-align: center;
}
.page-item .page-link {
  width: 4rem;
  height: 4rem;
  text-align: center;
  color: #363635 !important;
  background-color: transparent;
  border-color: transparent;
  border-radius: 50%;
  z-index: 3;
  margin: 0 0.2rem !important;
}
@media all and (min-width: 992px) {
  .page-item .page-link {
    margin: 0 1.5rem !important;
  }
}
.page-item .page-link:focus, .page-item .page-link.dots {
  box-shadow: none;
  border-color: transparent;
}
.page-item .page-link.prev, .page-item .page-link.next {
  font-weight: bold;
}
.page-item.active .page-link {
  width: 4rem;
  height: 4rem;
  text-align: center;
  color: transparent !important;
  background-color: #363635;
  border-color: #363635;
  border-radius: 50%;
  z-index: 3;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border: 1px solid #363635;
  padding: 0.6rem;
}
thead h6,
tbody h6,
tfoot h6,
tr h6,
td h6,
th h6 {
  font-size: 1.6rem;
  color: #363635;
  padding-bottom: 0;
  margin-bottom: 0;
}

.add-to-cart {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 18px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.85rem;
}
.add-to-cart .icon.-cart {
  width: 2.8rem;
  height: 2.6rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='26' fill='none'%3E%3Cpath fill='%23fff' stroke='%23fff' d='m17.771 1-.569.22 3.041 7.445H7.753l3.041-7.445-.569-.22-3.129 7.665H1v5.076h1.645l-.135.033 2.84 11.225 17.3.001 2.838-11.225-.134-.033H27V8.664h-6.096L17.77 1Zm4.4 23.4H5.83L3.135 13.738H24.87l-2.698 10.66Zm4.217-11.256H1.612V9.262h24.776v3.882Z'/%3E%3Cpath fill='%23fff' d='M13.693 16.289h.612v6.047h-.612v-6.047ZM17.365 16.289h.612v6.047h-.612v-6.047ZM10.023 16.289h.612v6.047h-.612v-6.047Z'/%3E%3C/svg%3E");
}
.add-to-cart:hover .icon.-cart {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='26' fill='none'%3E%3Cpath fill='%23e40520' stroke='%23e40520' d='m17.771 1-.569.22 3.041 7.445H7.753l3.041-7.445-.569-.22-3.129 7.665H1v5.076h1.645l-.135.033 2.84 11.225 17.3.001 2.838-11.225-.134-.033H27V8.664h-6.096L17.77 1Zm4.4 23.4H5.83L3.135 13.738H24.87l-2.698 10.66Zm4.217-11.256H1.612V9.262h24.776v3.882Z'/%3E%3Cpath fill='%23e40520' d='M13.693 16.289h.612v6.047h-.612v-6.047ZM17.365 16.289h.612v6.047h-.612v-6.047ZM10.023 16.289h.612v6.047h-.612v-6.047Z'/%3E%3C/svg%3E");
}

.csWidgetModal-content h1 {
  line-height: 1.2;
}
.csWidgetModal-content h3 {
  line-height: 1.5;
}

.accordion-button {
  padding-right: 4rem !important;
  padding-left: 1.5rem !important;
  color: #363635 !important;
  line-height: 1.5;
}
.accordion-button:after {
  content: "" !important;
  right: 1rem !important;
  width: 2.4rem !important;
  height: 2.4rem !important;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%231D1D1B' fill-rule='evenodd' d='M13 11V0h-2v11H0v2h11v11h2V13h11v-2H13Z' clip-rule='evenodd'/%3E%3C/svg%3E") !important;
}
.accordion-button[aria-expanded=true] {
  color: #363635 !important;
}
.accordion-button[aria-expanded=true]:after {
  content: "" !important;
  right: 1rem !important;
  width: 2.4rem !important;
  height: 0.2rem !important;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='2' fill='none'%3E%3Cpath fill='%231D1D1B' d='M0 0h24v2H0V0Z'/%3E%3C/svg%3E") !important;
}
@media all and (max-width: 967px) {
  .accordion-button .wp-block-spacer {
    height: 50px !important;
  }
}

.wireframe {
  background: #ffffff !important;
  color: #363635 !important;
}
.wireframe #wpadminbar {
  color: white !important;
}
.wireframe #wpadminbar a {
  color: white !important;
}
.wireframe ul,
.wireframe li,
.wireframe p,
.wireframe a,
.wireframe h1,
.wireframe h2,
.wireframe h3,
.wireframe h4,
.wireframe h5,
.wireframe h6 {
  color: #363635 !important;
}
.wireframe .main-menu li.active a {
  color: #f9d74b !important;
}
.wireframe .main-menu li.active.dropdown ul li a {
  color: #363635 !important;
}
.wireframe .main-menu li.active.dropdown ul li.active a {
  color: #f9d74b !important;
}
@media all and (max-width: 992px) {
  .wireframe .navbar-nav .nav-link {
    color: rgb(255, 255, 255) !important;
  }
}
.wireframe .wireframe-row .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.wireframe .framed {
  border-color: #363635 !important;
}

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