/*!***************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/scss/main.scss ***!
  \***************************************************************************************************************************************************************************************************************/
:root {
  --site-max-width: 1520px;
  --site-max-width-large: 1400px;
  --site-max-width-medium-lg: 1200px;
  --site-max-width-medium: 1000px;
  --site-max-width-narrow: 900px;
  --site-max-width-x-narrow: 800px;
  --site-gutter-desktop: 2.5rem;
  --site-gutter-tablet: 2rem;
  --site-gutter-mobile: 1.5rem;
  --surface-default: #0f0d0b;
  --color-default: #222222;
  --color-primary: #fa8927;
  --color-secondary: maroon;
  --color-tertiary: gray;
}

/*-----Helpers-----*/
.background-image {
  background-position: center;
  background-size: cover;
}

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

.text-left {
  text-align: left;
}

.unstyled {
  list-style-type: none;
  padding-left: 0;
}

.flex-center {
  display: flex;
  justify-content: center; /* horizontal (main axis) */
  align-items: center; /* vertical (cross axis) */
}

.flex-between {
  display: flex;
  justify-content: space-between; /* horizontal spacing */
  align-items: center; /* vertical alignment */
}

.flex-middle {
  display: flex;
  align-items: center; /* vertical alignment */
}

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

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

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

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

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

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

.muted {
  color: #bcb6b1;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stack * {
  margin-bottom: 0;
}
.stack--2 {
  gap: 1.5rem;
}
.stack--3 {
  gap: 2rem;
}
.stack--4 {
  gap: 3rem;
}

.button-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 769px) {
  .button-wrap {
    flex-direction: row;
  }
}

@media (min-width: 769px) {
  .half-wrapper {
    width: 50%;
  }
}

.has-accent {
  color: #fa8927;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (min-width: 1025px) {
  .hide-md-up {
    display: none !important;
  }
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-----Fix Flash of Unstyled Text-----*/
.wf-loading {
  opacity: 0;
}

.wf-active {
  -webkit-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  opacity: 1;
}

.wf-inactive {
  opacity: 1;
}

.alignnone {
  margin-bottom: 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

.sticky {
  display: block;
}

.gallery-caption {
  display: block;
}

.bypostauthor {
  display: block;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
}

h1, h2, h3, h4, h5, p, ul {
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: #f7f5f1;
  background: #0f0d0b;
}

.body-xs {
  line-height: 1.5;
  font-size: clamp(0.6875rem, 2vw, 0.75rem);
}

.body-sm {
  line-height: 1.65;
  font-size: clamp(0.75rem, 2.5vw, 0.875rem);
}

.body-md {
  font-size: clamp(1rem, 3.2vw, 1.125rem);
}

.body-lg {
  font-size: clamp(1.125rem, 3.5vw, 1.25rem);
}

.heading-xs, .heading-sm, .heading-md, .heading-ml, .heading-lg, .heading-xl, .heading-xxl, .heading-display, h1, h2, h3 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.heading-xs span, .heading-sm span, .heading-md span, .heading-ml span, .heading-lg span, .heading-xl span, .heading-xxl span, .heading-display span, h1 span, h2 span, h3 span {
  color: #fa8927;
}

h1 {
  letter-spacing: -0.025em;
}

h2 {
  font-size: 2.5rem;
}

.heading-display {
  font-size: clamp(4rem, 12vw, 12rem);
}

.heading-xxl {
  font-size: clamp(4rem, 12vw, 8rem);
}

.heading-xl {
  font-size: clamp(3rem, 9vw, 6rem);
}

.heading-lg {
  font-size: clamp(2.5rem, 57vw, 4.5rem);
}

.heading-ml {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
}

.heading-md {
  font-size: clamp(2rem, 5.5vw, 3rem);
  line-height: 1.1;
}

.heading-sm {
  font-size: clamp(1.875rem, 5.5vw, 2.25rem);
  line-height: 1.1;
}

.heading-xs {
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.heading-display {
  font-size: clamp(4rem, 12vw, 12rem);
}

.heading-xxl {
  font-size: clamp(4rem, 12vw, 8rem);
}

.heading-xl {
  font-size: clamp(3rem, 9vw, 6rem);
}

.heading-lg {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
}

.heading-ml {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
}

.heading-md {
  font-size: clamp(2rem, 5.5vw, 3rem);
}

.heading-sm {
  font-size: clamp(1.875rem, 5vw, 2.25rem);
}

.heading-xs {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #fa8927;
}
.eyebrow--sm {
  font-weight: 400;
}
.eyebrow__index {
  flex-shrink: 0;
}
.eyebrow__rule {
  flex-shrink: 0;
  display: block;
  width: 2rem;
  height: 1px;
  background: currentColor;
}

@media (max-width: 1024px) {
  .body-md {
    font-size: clamp(0.875rem, 2.8vw, 1rem);
  }
  .body-lg {
    font-size: clamp(1rem, 3vw, 1.125rem);
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
  .heading-display {
    font-size: clamp(3.75rem, 9.5vw, 5.5rem);
  }
  .heading-xxl {
    font-size: clamp(3.5rem, 9vw, 5rem);
  }
  .heading-xl {
    font-size: clamp(3.25rem, 7.5vw, 4.25rem);
  }
  .heading-lg {
    font-size: clamp(2.75rem, 6.5vw, 3.75rem);
  }
  .heading-ml {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
  .heading-md {
    font-size: clamp(1.75rem, 5.5vw, 2.25rem);
  }
  .heading-sm {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}
.accordion {
  padding-left: 0;
  list-style: none;
  border-top: 1px solid #e5e5e5;
}

.accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

/* Thumb */
.accordion-thumb {
  margin: 0;
  padding: 0.8rem 0;
  cursor: pointer;
  font-weight: normal;
}

.accordion-thumb::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 7px;
  float: right;
  height: 7px;
  width: 7px;
  margin-right: 1rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  border-right: 1px solid;
  border-bottom: 1px solid;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

/* Panel */
.accordion-panel {
  margin: 0;
  padding-bottom: 0.8rem;
  display: none;
}

/* Active */
.accordion-item.is-active .accordion-thumb::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.button,
.site-search__submit, .gform_footer.gform-footer .gform_button.button {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none !important;
  max-width: 380px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1.4;
  gap: 0.75rem;
  border-radius: 0;
  -webkit-transition-duration: 0.3s;
  /* Safari */
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.button:not(.button--text),
.site-search__submit:not(.button--text), .gform_footer.gform-footer .gform_button.button:not(.button--text) {
  padding: 1rem 1.75rem;
}
@media (max-width: 560px) {
  .button,
  .site-search__submit, .gform_footer.gform-footer .gform_button.button {
    max-width: 100%;
  }
}
.button *,
.site-search__submit *, .gform_footer.gform-footer .gform_button.button * {
  -webkit-transition-duration: 0.3s;
  /* Safari */
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.button:hover,
.site-search__submit:hover, .gform_footer.gform-footer .gform_button.button:hover {
  opacity: 0.9;
}
.button--text,
.site-search__submit--text, .gform_footer.gform-footer .gform_button.button--text {
  line-height: 1.5;
}

.button--arrow::after, .gform_button.button::after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  vertical-align: middle;
  -webkit-transition-duration: 0.3s;
  /* Safari */
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.button--arrow:hover::after, .gform_button.button:hover::after {
  transform: translateX(5px);
}

.button--primary {
  background: #fa8927;
  color: #0f0d0b;
}

.button--light {
  color: #f7f5f1;
  border: 1px solid rgba(247, 245, 241, 0.3);
}

.gform_button.button {
  background: #fa8927 !important;
  color: #0f0d0b !important;
}

/*-----Forms-----*/
.gform_body {
  margin: 0 !important;
}
.gform_body li {
  list-style-type: none;
  padding-right: 0 !important;
}
.gform_body .gfield,
.gform_body .ginput_container {
  margin: 0 !important;
}
.gform_body ::placeholder {
  color: #bcb6b1 !important;
  opacity: 1;
}
.gform_body textarea, .gform_body input:not([type=submit]):not([type=checkbox]):not([type=radio]) {
  font-family: "Inter", sans-serif;
  display: block !important;
  padding: 0.875rem 0 !important;
  width: 100% !important;
  border: none !important;
  border-radius: 0;
  background: transparent !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
}
.gform_body .gform_fields > li:first-of-type input:not([type=submit]) {
  margin-top: 0 !important;
}
.gform_body .gfield--type-text label,
.gform_body .gfield--type-email label,
.gform_body .gfield--type-phone label,
.gform_body .gfield--type-textarea label {
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.015em;
  color: #bcb6b1;
  font-size: 0.625rem;
}
.gform_body .gfield_checkbox label,
.gform_body .gfield--type-select label {
  display: initial !important;
}
.gform_body textarea {
  margin-bottom: 0;
  height: 100px !important;
  block-size: 100px !important;
  min-height: 0 !important;
  min-block-size: 0 !important;
  max-height: 100px !important;
  overflow-y: auto !important;
  resize: none !important;
}
.gform_body .gfield_required > span {
  display: none;
}
.gform_body .gfield_required::after {
  content: " *";
  color: #fa8927;
}
.gform_body .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text] {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.gform_wrapper .gform_footer {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.gform_wrapper .gform_button {
  background: #fa8927 !important;
  color: #0f0d0b !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 600 !important;
  inline-size: auto !important;
  width: auto !important;
  -webkit-appearance: none !important;
  padding: 1rem 3rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.25em !important;
  border-radius: 0 !important;
  border: none !important;
  margin-top: 2rem !important;
  font-size: 0.75rem !important;
}
.gform_wrapper .gform_button:hover {
  opacity: 0.9 !important;
}

.gform_confirmation_message * {
  font: 400 45px/43px "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-default) !important;
}

.site-container {
  width: 100%;
  max-width: var(--site-max-width);
  margin-inline: auto;
  padding-inline: var(--site-gutter-desktop);
}
@media (max-width: 1024px) {
  .site-container {
    padding-inline: var(--site-gutter-tablet);
  }
}
@media (max-width: 560px) {
  .site-container {
    padding-inline: var(--site-gutter-mobile);
  }
}
.site-container--medium-lg {
  max-width: var(--site-max-width-medium-lg);
}
.site-container--medium {
  max-width: var(--site-max-width-medium);
}
.site-container--narrow {
  max-width: var(--site-max-width-narrow);
}
.site-container--x-narrow {
  max-width: var(--site-max-width-x-narrow);
}
.site-container--full {
  max-width: none;
  padding-inline: 0;
}
.site-container--wide {
  max-width: 1400px;
}

.bb-section {
  padding: 3rem 0;
}
.bb-section.no-top-padding {
  padding-top: 0;
}
.bb-section.no-bottom-padding {
  padding-bottom: 0;
}
.bb-section.light-top-padding {
  padding-top: 1.5rem;
}
.bb-section.light-bottom-padding {
  padding-bottom: 1.5rem;
}
.bb-section.extra-top-padding {
  padding-top: 4rem;
}
.bb-section.extra-bottom-padding {
  padding-bottom: 4rem;
}

@media (min-width: 1025px) {
  .bb-section {
    padding: 10rem 0;
  }
  .bb-section.light-top-padding {
    padding-top: 6rem;
  }
  .bb-section.light-bottom-padding {
    padding-bottom: 6rem;
  }
  .bb-section.extra-top-padding {
    padding-top: 12rem;
  }
  .bb-section.extra-bottom-padding {
    padding-bottom: 12rem;
  }
}
@media (max-width: 1365px) {
  :root {
    --header-height: 64px;
  }
}
@media (min-width: 1366px) {
  :root {
    --header-height: 80px;
  }
}

body:not(.has-hero-first) #shim {
  height: var(--header-height);
}

.bb-header {
  padding: 0.5rem 1.25rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(15, 13, 11, 0.8) 0%, rgba(15, 13, 11, 0) 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background-color 500ms ease, backdrop-filter 500ms ease, box-shadow 500ms ease;
}
.bb-header.is-scrolled {
  background: rgba(15, 13, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}
.bb-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-inline: auto;
}
.bb-header__nav .menu {
  display: flex;
  column-gap: 1.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bb-header__nav .menu li {
  position: relative;
  display: flex;
  column-gap: 0.5rem;
  align-items: center;
}
.bb-header__nav .menu li a {
  display: block;
}
.bb-header__nav .menu li .caret-wrapper {
  display: inline-flex;
  background-color: transparent;
  cursor: pointer;
}
.bb-header__nav .menu > li > a {
  color: #f7f5f1;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.bb-header__nav .menu > li.current-menu-item > a, .bb-header__nav .menu > li.current-page-ancestor > a {
  color: #fa8927;
}
.bb-header__nav .sub-menu {
  background-color: var(--surface-default);
}
.bb-header__nav .sub-menu a {
  color: var(--color-default);
}
.bb-header__right {
  display: flex;
  gap: 1.5rem;
}
.bb-header__toggle {
  display: none;
  z-index: 2;
  cursor: pointer;
  border: none !important;
  background: none;
  padding: 0.25rem;
}
.bb-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #f7f5f1;
  border-radius: 15px;
  margin: 5px 0;
}
.bb-header__cta-mobile a {
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  background: #fa8927;
  display: block !important;
  text-align: center;
  margin-left: 0.5rem !important;
}
.bb-header .custom-logo {
  height: 3rem;
  width: auto;
  position: relative;
  z-index: 5;
}
.bb-header .button {
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.bb-header ul {
  list-style: none;
}
.bb-header a:hover {
  text-decoration: none;
}
.bb-header a, .bb-header .sub-menu, .bb-header .caret-wrapper, .bb-header svg, .bb-header path, .bb-header .bb-header__toggle span {
  transition: all 0.25s ease;
}

@media (min-width: 561px) {
  .bb-header__cta-mobile {
    display: none !important;
  }
}
@media (min-width: 1366px) {
  .bb-header {
    padding: 1rem 2.5rem;
  }
  .bb-header__nav .menu {
    justify-content: flex-end;
    width: auto;
  }
  .bb-header__nav .menu li {
    position: relative;
    column-gap: 0.5rem;
    align-items: center;
  }
  .bb-header__nav .menu > li:hover .sub-menu {
    display: block;
  }
  .bb-header__nav .menu-item-has-children:hover .caret-wrapper svg path {
    fill: var(--surface-default);
  }
  .bb-header .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 14rem;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.35);
  }
}
@media (max-width: 1365px) {
  .bb-header__nav {
    position: fixed;
    width: 100%;
    transform: translateX(-200%);
    background-color: var(--color-default);
    top: 0;
    left: 0;
    padding: 0;
    min-height: 100vh;
    transition: all 0.2s ease-out;
  }
  .bb-header__nav .menu {
    padding: 100px 0;
    display: block;
    margin-left: 0.75rem;
    margin-right: 1.25rem;
  }
  .bb-header__nav .menu li {
    padding-bottom: 1.25rem;
    display: block;
  }
  .bb-header__nav .menu li a {
    min-width: 8rem;
    padding-left: 0.5rem;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  .bb-header__nav .menu li svg {
    cursor: pointer;
  }
  .bb-header__nav .menu li .sub-menu {
    position: relative;
    max-height: 0;
    overflow: hidden;
    top: 0;
    padding: 0 0 0 1.5rem;
  }
  .bb-header__nav .menu li .sub-menu li:last-of-type {
    padding-bottom: 0;
  }
  .bb-header__nav .menu li .sub-menu li a {
    padding-left: 0;
    font-size: 17px;
    margin: 0;
  }
  .bb-header__nav .menu li:hover svg {
    transform: none;
  }
  .bb-header__nav .menu-item-has-children:hover > a {
    pointer-events: none;
  }
  .bb-header__toggle {
    display: block;
    position: relative;
  }
  .bb-header__toggle.nav-open span {
    transition: all 0.25s ease;
    position: relative;
    right: 0;
  }
  .bb-header__toggle.nav-open span:first-of-type {
    transform: translateY(4px) rotate(45deg);
  }
  .bb-header__toggle.nav-open span:nth-of-type(2) {
    display: none;
  }
  .bb-header__toggle.nav-open span:last-of-type {
    transform: translateY(-3px) rotate(-45deg);
  }
  .bb-header.nav-open .bb-header__nav {
    transform: translateX(0);
    transition: all 0.3s ease-out;
  }
}
@media (max-width: 560px) {
  .bb-header__right .button {
    display: none;
  }
}
.bb-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3.5rem 1.25rem;
  row-gap: 3rem;
}
.bb-footer__left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.bb-footer__left .button {
  place-self: start;
}
.bb-footer__heading span {
  display: block;
  color: #fa8927;
}
.bb-footer__body {
  line-height: 1.6;
}
.bb-footer__bottom {
  display: flex;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 1.25rem;
  gap: 2rem;
}
.bb-footer__credit {
  padding: 0 1.25rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
}
.bb-footer__credit a:hover {
  color: #fa8927;
  text-decoration: none;
}
.bb-footer .bb-footer__line--light {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.bb-footer__logo {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}
.bb-footer__logo img {
  max-height: 3rem;
  width: auto;
}
.bb-footer__extra {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.bb-footer__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bb-footer__right .eyebrow {
  margin-bottom: 1.5rem;
}
.bb-footer__right ul {
  list-style: none;
}
.bb-footer__right ul a {
  display: inline-block;
}
.bb-footer__right ul a:hover {
  transform: translateX(3px);
  text-decoration: none;
}
.bb-footer__line {
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0));
}

@media (min-width: 561px) {
  .bb-footer__inner {
    column-gap: 2rem;
    padding-inline: 2rem;
  }
  .bb-footer__bottom {
    padding: 2rem;
  }
}
@media (min-width: 769px) {
  .bb-footer__heading {
    font-size: clamp(2.25rem, 4vw, 4rem);
  }
  .bb-footer__body {
    max-width: 450px;
  }
  .bb-footer__bottom {
    padding: 3.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .bb-footer__right {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
  }
  .bb-footer__right > * {
    width: calc(33.333333% - 2rem);
  }
  .bb-footer__credit {
    padding: 0 1.25rem 2rem;
  }
  .bb-footer__extra {
    flex-direction: row;
  }
  .bb-footer__logo {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 1025px) {
  .bb-footer__inner {
    flex-direction: row;
    gap: 3rem;
    justify-content: space-between;
  }
  .bb-footer__left {
    width: calc(40% - 2rem);
  }
  .bb-footer__right {
    width: calc(60% - 2rem);
  }
}
@media (min-width: 1366px) {
  .bb-footer__inner {
    gap: 4rem;
    padding: 8rem 3.25rem 6rem;
  }
}
@media (max-width: 1024px) {
  .bb-footer .heading-ml {
    font-size: clamp(4.5rem, 6vw, 5.5rem);
  }
  .bb-footer__bottom {
    padding: 2.5rem 1.25rem;
  }
}
@media (max-width: 850px) {
  .bb-footer__bottom {
    padding: 2rem 1.25rem;
    flex-direction: column;
    gap: 2.5rem;
  }
}
@media (max-width: 768px) {
  .bb-footer .heading-ml {
    font-size: clamp(3.5rem, 6vw, 4.5rem);
  }
  .bb-footer__extra {
    gap: 1rem;
  }
  .bb-footer__credit {
    text-align: left;
  }
}
.site-search {
  display: flex;
}
.site-search__field {
  line-height: 1;
  -webkit-appearance: none;
  padding: 5px 10px;
  border: 1px solid #ddd;
  height: 38px;
  border-radius: 0;
  width: calc(100% - 110px);
  font-size: 18px;
}
.site-search__result {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 2px solid var(--surface-default) 2;
  text-decoration: none !important;
  -webkit-transition-duration: 0.2s;
  /* Safari */
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}
.site-search__result h2 {
  font-size: 20px;
}
.site-search__result p {
  font-size: 15px;
}
.site-search__result * {
  text-decoration: none !important;
  margin: 0;
}
a {
  -webkit-transition-duration: 0.2s;
  /* Safari */
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}

.has-accent {
  color: #fa8927;
}

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