/**
* 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 #1d1d1b;
  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: #1d1d1b;
  height: 2.5em;
  transition: fill 0.2s linear;
  width: 2.5em;
}

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

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #1d1d1b;
  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 #1d1d1b;
  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: #1d1d1b;
  transform: scale(1.4);
  z-index: 1;
}

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

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

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #1d1d1b;
  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 #1d1d1b;
  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 #1d1d1b;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #1d1d1b;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #1d1d1b;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #1d1d1b;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #1d1d1b;
  }
}
.splide__toggle {
  cursor: pointer;
}

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

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #1d1d1b;
  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;
}

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

.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='%235AC994' 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='%235AC994' 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='%23282828'/%3E%3C/svg%3E");
  opacity: 1;
  position: absolute;
  top: 3.7rem;
  right: 2rem;
}
@media all and (min-width: 1200px) {
  .dropdown-toggle:after {
    width: 1.4rem;
    height: 0.8rem;
    top: 0.7rem;
    right: -0.5rem;
    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='%23282828'/%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;
}

.navbar-nav .nav-link {
  color: rgb(255, 255, 255);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
  color: #1d1d1b;
  /* &:after {
    opacity: 0.75;
  } */
}
.navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.page-item {
  text-align: center;
}
.page-item .page-link {
  width: 4rem;
  height: 4rem;
  text-align: center;
  color: transparent !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: transparent;
  border-color: transparent;
  border-radius: 50%;
  z-index: 3;
}

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

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;
}

.txt_black {
  color: #1d1d1b;
}

.txt_white {
  color: #ffffff;
}

.txt_neutral {
  color: #bdbdbd;
}

.txt_primary {
  color: #1d1d1b;
}

.txt_primary-light {
  color: transparent;
}

.txt_primary-dark {
  color: transparent;
}

.txt_secondary {
  color: transparent;
}

.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: #1d1d1b;
}

.bg_white {
  background-color: #ffffff;
}

.bg_neutral {
  background-color: #bdbdbd;
}

.bg_primary {
  background-color: #1d1d1b;
}

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

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

.bg_secondary {
  background-color: transparent;
}

.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;
}

.cta {
  font-family: "inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  padding: 1.7rem 2.4rem;
  display: inline-block;
  border: 2px solid transparent;
  background-color: transparent;
  border-radius: 0.4rem;
  transition: all 0.3s ease-in-out;
  text-align: center;
  text-decoration: none;
  /* Solid Colour Button - 
  cta -plain 
  [-primary, -primary-light, -primary-dark, 
  -secondary, -secondary-light, -secondary-dark,
  -tertiary , -tertiary-light, -tertiary-dark
  -black
  -white
  -neutral]

  -clear  = changes border colour on hover.
  ]

   */
  /* Outline Border Colour Button - When hover it fills background
  cta -outline
  [-primary, -primary-light, -primary-dark, 
  -secondary, -secondary-light, -secondary-dark,
  -tertiary , -tertiary-light, -tertiary-dark
  -black
  -white
  -neutral
  ]
   */
  /* Text Link Button - 
  	cta -text */
}
.cta.-plain.-primary {
  color: #ffffff;
  background-color: #1d1d1b;
  border: 2px solid #1d1d1b;
}
.cta.-plain.-primary:hover {
  color: #1d1d1b;
  border: 2px solid #1d1d1b;
  background-color: #ffffff;
}
.cta.-plain.-primary:hover.-on-bg_white {
  background-color: #ffffff;
  border: 2px solid #1d1d1b;
}
.cta.-plain.-primary:hover.-clear {
  background-color: transparent;
  border: 2px solid #1d1d1b;
}
.cta.-plain.-primary-light {
  color: #ffffff;
  background-color: transparent;
}
.cta.-plain.-primary-light:hover {
  color: transparent;
  background-color: #ffffff;
  border: 2px solid transparent;
}
.cta.-plain.-primary-light:hover.-on-bg_white {
  background-color: #ffffff;
  border: 2px solid transparent;
}
.cta.-plain.-primary-light:hover.-clear {
  background-color: transparent;
  border: 2px solid transparent;
}
.cta.-plain.-primary-dark {
  color: #ffffff;
  background-color: transparent;
}
.cta.-plain.-primary-dark:hover {
  color: transparent;
  background-color: #ffffff;
  border: 2px solid transparent;
}
.cta.-plain.-primary-dark:hover.-on-bg_white {
  background-color: #ffffff;
  border: 2px solid transparent;
}
.cta.-plain.-primary-dark:hover.-clear {
  background-color: transparent;
  border: 2px solid transparent;
}
.cta.-plain.-secondary {
  color: #ffffff;
  background-color: transparent;
}
.cta.-plain.-secondary:hover {
  color: transparent;
  background-color: #ffffff;
  border: 2px solid transparent;
}
.cta.-plain.-secondary:hover.-on-bg_white {
  background-color: #ffffff;
  border: 2px solid transparent;
}
.cta.-plain.-secondary:hover.-clear {
  background-color: transparent;
  border: 2px solid transparent;
}
.cta.-plain.-secondary-light {
  color: #ffffff;
  background-color: transparent;
}
.cta.-plain.-secondary-light:hover {
  color: transparent;
  background-color: #ffffff;
  border: 2px solid transparent;
}
.cta.-plain.-secondary-light:hover.-on-bg_white {
  background-color: #ffffff;
  border: 2px solid transparent;
}
.cta.-plain.-secondary-light:hover.-clear {
  background-color: transparent;
  border: 2px solid transparent;
}
.cta.-plain.-secondary-dark {
  color: #ffffff;
  background-color: transparent;
}
.cta.-plain.-secondary-dark:hover {
  color: transparent;
  background-color: #ffffff;
  border: 2px solid transparent;
}
.cta.-plain.-secondary-dark:hover.-on-bg_white {
  background-color: #ffffff;
  border: 2px solid transparent;
}
.cta.-plain.-secondary-dark:hover.-clear {
  background-color: transparent;
  border: 2px solid transparent;
}
.cta.-plain.-tertiary {
  color: #ffffff;
  background-color: transparent;
}
.cta.-plain.-tertiary:hover {
  color: transparent;
  background-color: #ffffff;
  border: 2px solid transparent;
}
.cta.-plain.-tertiary:hover.-on-bg_white {
  background-color: #ffffff;
  border: 2px solid transparent;
}
.cta.-plain.-tertiary:hover.-clear {
  background-color: transparent;
  border: 2px solid transparent;
}
.cta.-plain.-tertiary-light {
  color: #ffffff;
  background-color: transparent;
}
.cta.-plain.-tertiary-light:hover {
  color: transparent;
  background-color: #ffffff;
  border: 2px solid transparent;
}
.cta.-plain.-tertiary-light:hover.-on-bg_white {
  background-color: #ffffff;
  border: 2px solid transparent;
}
.cta.-plain.-tertiary-light:hover.-clear {
  background-color: transparent;
  border: 2px solid transparent;
}
.cta.-plain.-tertiary-dark {
  color: #ffffff;
  background-color: transparent;
}
.cta.-plain.-tertiary-dark:hover {
  color: transparent;
  background-color: #ffffff;
  border: 2px solid transparent;
}
.cta.-plain.-tertiary-dark:hover.-on-bg_white {
  background-color: #ffffff;
  border: 2px solid transparent;
}
.cta.-plain.-tertiary-dark:hover.-clear {
  background-color: transparent;
  border: 2px solid transparent;
}
.cta.-plain.-black {
  color: #ffffff;
  background-color: #1d1d1b;
}
.cta.-plain.-black:hover {
  color: #1d1d1b;
  background-color: #ffffff;
  border: 2px solid #1d1d1b;
}
.cta.-plain.-black:hover.-on-bg_white {
  background-color: #ffffff;
  border: 2px solid #1d1d1b;
}
.cta.-plain.-black:hover.-clear {
  background-color: transparent;
  border: 2px solid #1d1d1b;
}
.cta.-plain.-white {
  color: #1d1d1b;
  background-color: #ffffff;
}
.cta.-plain.-white.-on-bg_white {
  background-color: #ffffff;
}
.cta.-plain.-white:hover {
  color: #ffffff;
  background-color: #1d1d1b;
}
.cta.-plain.-neutral {
  color: #1d1d1b;
  background-color: #ffffff;
}
.cta.-plain.-neutral:hover {
  color: #bdbdbd;
  background-color: #1d1d1b;
}
.cta.-outline.-primary {
  color: #1d1d1b;
  border: 2px solid #1d1d1b;
}
.cta.-outline.-primary:hover {
  color: #ffffff;
  background-color: #1d1d1b;
}
.cta.-outline.-primary-light {
  color: transparent;
  border: 2px solid transparent;
}
.cta.-outline.-primary-light:hover {
  color: #ffffff;
  background-color: transparent;
}
.cta.-outline.-primary-dark {
  color: transparent;
  border: 2px solid transparent;
}
.cta.-outline.-primary-dark:hover {
  color: #ffffff;
  background-color: transparent;
}
.cta.-outline.-secondary {
  color: transparent;
  border: 2px solid transparent;
}
.cta.-outline.-secondary:hover {
  color: #ffffff;
  background-color: transparent;
}
.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: #1d1d1b;
  border: 2px solid #1d1d1b;
}
.cta.-outline.-black:hover {
  color: #ffffff !important;
  background-color: #1d1d1b;
}
.cta.-outline.-white {
  color: #ffffff;
  border: 2px solid #ffffff;
}
.cta.-outline.-white:hover {
  color: #1d1d1b;
  background-color: #ffffff;
}
.cta.-outline.-neutral {
  color: #bdbdbd;
  border: 2px solid #bdbdbd;
}
.cta.-outline.-neutral:hover {
  color: #1d1d1b;
  background-color: #ffffff;
}
.cta.-text {
  color: #1d1d1b;
  margin-top: 1rem;
  text-decoration: none;
  font-size: 1.8rem;
  line-height: 2.5rem;
}
.cta.-text:hover:after {
  margin-left: 1rem;
}
.cta.-text.-primary {
  color: #1d1d1b;
}
.cta.-text.-secondary {
  color: transparent;
}
.cta.-text.-tertiary {
  color: transparent;
}
.cta .-inherit {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: inherit;
}

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

.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: #1d1d1b;
  font-weight: 700;
  font-size: 22px;
}
.divider--text:before, .divider--text:after {
  content: "";
  flex: 1 1;
  border-bottom: 1px solid #1d1d1b;
  margin: auto;
}
.divider--text:before {
  margin-right: 17px;
}
.divider--text:after {
  margin-left: 17px;
}

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

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

/**
* IFRAME Video responsive
*/
.responsive-video {
  height: 0;
  padding-bottom: 56.5%;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.responsive-video.widescreen {
  padding-bottom: 56.34%;
}
.responsive-video.vimeo {
  padding-top: 0;
}
.responsive-video embed,
.responsive-video iframe,
.responsive-video object,
.responsive-video 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 #1d1d1b !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 transparent !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 #1d1d1b !important;
  border-radius: 0.4rem !important;
}
.bm_form textarea:hover, .bm_form textarea:focus {
  border: 1px solid transparent !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: #1d1d1b;
}
.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;
}

/**
*
* Headings & titles
*
*/
h1,
.bm__h1 {
  font-family: "inter", sans-serif;
  font-weight: 600;
  font-size: 3.9rem;
  line-height: 5.07rem;
}
@media all and (min-width: 768px) {
  h1,
  .bm__h1 {
    font-size: 4.8rem;
    line-height: 6.24rem;
  }
}
@media all and (min-width: 992px) {
  h1,
  .bm__h1 {
    font-size: 5.6rem;
    line-height: 7.056rem;
  }
}
@media all and (min-width: 1440px) {
  h1,
  .bm__h1 {
    font-size: 6.1rem;
    line-height: 7.93rem;
  }
}
h1.txt_white,
.bm__h1.txt_white {
  color: #ffffff;
}
h1.txt_black,
.bm__h1.txt_black {
  color: #1d1d1b;
}
h1.txt_primary,
.bm__h1.txt_primary {
  color: #1d1d1b;
}
h1.txt_primary-light,
.bm__h1.txt_primary-light {
  color: transparent;
}
h1.txt_primary-dark,
.bm__h1.txt_primary-dark {
  color: transparent;
}
h1.txt_secondary,
.bm__h1.txt_secondary {
  color: transparent;
}
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: #bdbdbd;
}

h2,
.bm__h2 {
  font-family: "inter", sans-serif;
  font-weight: 600;
  font-size: 3.1rem;
  line-height: 4.03rem;
}
@media all and (min-width: 768px) {
  h2,
  .bm__h2 {
    font-size: 4.8rem;
    line-height: 6.24rem;
  }
}
@media all and (min-width: 1440px) {
  h2,
  .bm__h2 {
    font-size: 4.9rem;
    line-height: 6.37rem;
  }
}

h3,
.bm__h3 {
  font-family: "inter", sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 3.12rem;
}
@media all and (min-width: 768px) {
  h3,
  .bm__h3 {
    font-size: 3.2rem;
    line-height: 4.16rem;
  }
}
@media all and (min-width: 1440px) {
  h3,
  .bm__h3 {
    font-size: 3.9rem;
    line-height: 5.07rem;
  }
}

h4,
.bm__h4 {
  font-family: "inter", sans-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: "inter", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}

h6,
.bm__h6 {
  font-family: "inter", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 3rem;
}

.font-heading {
  font-family: "inter", sans-serif;
  font-weight: 600;
}

.font-base {
  font-family: "inter", sans-serif;
}

.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;
  }
}

.bm_fm-thin {
  font-family: inherit;
}

.bm_fm-medium {
  font-family: "inter", sans-serif;
}

.bm_fm-thick {
  font-family: "inter", sans-serif;
}

/**
*
* Markup types
*
*/
html {
  font-size: 62.5%;
}
html.sr .load-hidden {
  visibility: hidden;
}

body {
  font-family: "inter", sans-serif;
  font-size: 1.6rem;
  line-height: normal;
  letter-spacing: normal;
  color: #1d1d1b;
  margin: 0;
  padding: 0;
}

a {
  color: #1d1d1b;
}
a:hover {
  color: #030302;
}

p {
  font-size: 1.6rem;
  font-family: inherit;
}

.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: #1d1d1b !important;
}
.light h1,
.light h2,
.light h3,
.light h4,
.light h5,
.light h6,
.light a,
.light li,
.light p {
  color: #1d1d1b !important;
}

/**
*
* MISCS
* (deprecated?)
*
*/
.glass {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1019607843);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.shadow-1 {
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.08);
}

.img-shadow {
  box-shadow: 4px 4px 15px 0px #1d1d1b;
}

.opacity-0 {
  opacity: 0;
}

.hide {
  display: none !important;
}

.vis-hidden {
  visibility: hidden !important;
}

.zindex1 {
  z-index: 1;
}

.zindex2 {
  z-index: 2;
}

.zindex4 {
  z-index: 4;
}

.order1 {
  order: 1;
}

.order2 {
  order: 2;
}

/**
*
* SOCIAL ICONS
*
*/
.social-menu {
  width: 100%;
  display: flex;
  list-style-type: none;
  justify-content: center;
  margin-bottom: 32px;
  padding: 0;
}
@media all and (min-width: 992px) {
  .social-menu {
    justify-content: space-between;
  }
}
.social-menu li {
  margin-right: 1.5rem;
  border-radius: 4px;
  width: 50px;
}
.social-menu li:last-child {
  margin-right: 0;
}
.social-menu a {
  text-decoration: none;
  color: #1d1d1b;
  transition: ease-in-out 0.2s;
}
.social-menu a:hover {
  color: #1d1d1b;
  transition: ease-in-out 0.2s;
  cursor: pointer;
}

.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;
}

@keyframes heroBannerFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#hero-banner {
  animation: heroBannerFade 300ms 600ms ease-in-out forwards;
  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=");
}

.main-nav {
  position: sticky;
  inset: 0;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 10000;
}
.main-nav .nav-container {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .main-nav .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.main-nav .nav-container .nav-top {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .main-nav .nav-container .nav-top {
    width: auto;
  }
}
.main-nav .nav-container .nav-top .mobile-toggle {
  display: block;
  cursor: pointer;
}
@media (min-width: 768px) {
  .main-nav .nav-container .nav-top .mobile-toggle {
    display: none;
  }
}
.main-nav .nav-container .nav-top .mobile-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #333;
}
.main-nav .nav-container .nav-top .logo img {
  max-height: 40px;
}
.main-nav .nav-container .nav-menu {
  width: 100%;
  display: none;
  flex-flow: column;
  margin: 16px 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .main-nav .nav-container .nav-menu {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
}
.main-nav .nav-container .nav-menu.active {
  display: flex;
}
.main-nav .nav-container .nav-menu .nav-links {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .main-nav .nav-container .nav-menu .nav-links {
    justify-content: var(--nav-pos);
  }
}
.main-nav .nav-container .nav-menu .nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-nav .nav-container .nav-menu .nav-links ul.nav-items {
  margin: 0 1rem;
  display: flex;
  flex-flow: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .main-nav .nav-container .nav-menu .nav-links ul.nav-items {
    flex-flow: row;
    width: 100%;
    justify-content: var(--nav-pos);
    align-items: center;
  }
}
.main-nav .nav-container .nav-menu .nav-links ul li {
  position: relative;
}
.main-nav .nav-container .nav-menu .nav-links ul li.dropdown {
  display: block;
}
.main-nav .nav-container .nav-menu .nav-links ul li a {
  padding: 1rem;
  text-decoration: none;
  color: #333;
  display: block;
}
.main-nav .nav-container .nav-menu .nav-links .dropbtn {
  border: none;
  background: none;
  cursor: pointer;
  padding: 1rem;
}
.main-nav .nav-container .nav-menu .nav-links .dropbtn:focus {
  outline: none;
}
.main-nav .nav-container .nav-menu .nav-links .dropdown-content {
  display: none;
  position: relative;
  background-color: #f9f9f9;
  min-width: 160px;
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .main-nav .nav-container .nav-menu .nav-links .dropdown-content {
    position: absolute;
    width: auto;
  }
}
.main-nav .nav-container .nav-menu .nav-links .dropdown-content.active {
  display: block;
}
.main-nav .nav-container .nav-menu .nav-links .dropdown-content a,
.main-nav .nav-container .nav-menu .nav-links .dropdown-content button {
  display: block;
}
.main-nav .nav-container .nav-menu .nav-cta {
  margin-inline: auto;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .main-nav .nav-container .nav-menu .nav-cta {
    margin-top: 0;
    margin-inline: initial;
  }
}

.modal-outer {
  display: grid;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  justify-content: center;
}

.modal-outer.open {
  opacity: 1;
  pointer-events: all;
}

.modal-inner {
  background: #ffffff;
  border-radius: 4px;
  position: relative;
  text-align: center;
  margin: 1rem;
  padding: 4.2rem 1.8rem;
  box-shadow: 0px 4px 15px 0px rgba(51, 51, 51, 0.1490196078);
}
@media (min-width: 768px) {
  .modal-inner {
    display: flex;
    justify-self: center;
    align-items: center;
    gap: 6rem;
    padding: 4rem 4.2rem 5.2rem 4.2rem;
  }
}
.modal-inner .modal-close {
  position: absolute;
  right: 15px;
  font-size: 3rem;
  display: block;
  top: 10px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .modal-inner .modal-close {
    top: 24px;
    right: 20px;
  }
}

.footer {
  padding-top: 9.6rem;
}
.footer a {
  text-decoration: none;
}
.footer .footer-content__container .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer-content__container .footer-content .footer-info-container {
  display: flex;
  flex-direction: column;
}
.footer .footer-content__container .footer-content .footer-logo {
  width: 19.6rem;
  height: auto;
  margin-bottom: 20px;
}
.footer .footer-content__container .footer-content .footer-logo .logo {
  max-width: 100%;
  height: auto;
  width: 19.6rem;
}
.footer .footer-content__container .footer-content .footer-buttons a:last-child {
  margin-left: 0;
}
.footer .footer-content__container .footer-content .footer-buttons a:nth-child(2) {
  margin-top: 2rem;
}
.footer .footer-content__container .footer-column-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 5rem;
}
@media (min-width: 992px) {
  .footer .footer-content__container .footer-column-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer .footer-content__container .footer-column-wrapper .footer-buttons {
  order: -1;
  margin-bottom: 2.4rem;
}
.footer .footer-content__container .footer-column-wrapper .footer-columns-container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  font-weight: 200;
}
@media (min-width: 768px) {
  .footer .footer-content__container .footer-column-wrapper .footer-columns-container {
    flex-direction: row;
    justify-content: center;
  }
}
.footer .footer-content__container .footer-column-wrapper .footer-columns-container .footer-column h5 {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 22.4px;
}
.footer .footer-content__container .footer-column-wrapper .footer-columns-container .footer-column p {
  margin-bottom: 0;
  line-height: 2.24rem;
}
.footer .footer-content__container .footer-column-wrapper .footer-columns-container .footer-column ul.footer-menu {
  padding: 0;
}
.footer .footer-content__container .footer-column-wrapper .footer-columns-container .footer-column ul.footer-menu li {
  list-style-type: none;
  margin-bottom: 0.8rem;
}
.footer .footer-content__container .footer-column-wrapper .footer-columns-container .footer-column ul.footer-menu li a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 200;
  line-height: 2.24rem;
  display: inline-block;
}
.footer .footer-content__container .footer-column-wrapper .footer-columns-container .footer-column .addresses {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 1440px) {
  .footer .footer-content__container .footer-column-wrapper .footer-columns-container .footer-text-column {
    display: flex;
    flex-direction: column;
    margin-left: auto;
  }
}

.copyright-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #1d1d1b;
  color: #ffffff;
  padding-top: 16px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .copyright-container {
    flex-direction: row;
    justify-content: start;
    padding-top: 13px;
    padding-bottom: 13px;
  }
}
.copyright-container .copyright-label {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .copyright-container .copyright-label {
    margin-bottom: 0;
    margin-right: 24px;
  }
}
.copyright-container .copyright-label p {
  font-weight: 200;
}
.copyright-container .copyright-links {
  display: flex;
  gap: 2rem;
}
.copyright-container .copyright-links__second {
  margin-left: 24px;
}
.copyright-container .copyright-links a {
  text-decoration: none;
  font-weight: 200;
  color: #ffffff;
}

.wiki-container {
  display: flex;
  flex-flow: column;
}
@media (min-width: 992px) {
  .wiki-container {
    flex-flow: row;
  }
}

.wiki-sidebar {
  width: 100%;
  padding: 4rem;
  background-color: #f0f0f0;
}
@media (min-width: 992px) {
  .wiki-sidebar {
    width: 25%;
    height: 100vh;
    overflow-y: auto;
    position: sticky;
    top: 0;
  }
}
.wiki-sidebar .brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}
.wiki-sidebar nav {
  margin-block: 2rem;
}
.wiki-sidebar nav ul {
  list-style: none;
  padding: 0;
}
.wiki-sidebar nav ul li {
  margin-bottom: 1rem;
}
.wiki-sidebar nav ul li a {
  text-decoration: none;
  color: #333;
}
.wiki-sidebar nav ul li a:hover {
  text-decoration: underline;
  color: #ff7b5f;
}

.wiki-content {
  width: 100%;
  padding: 4rem;
  background-color: #fff;
  min-height: 50rem;
}
@media (min-width: 992px) {
  .wiki-content {
    width: 75%;
  }
}
.wiki-content h1 {
  font-size: 5rem;
  margin-top: 0;
}
.wiki-content h2 {
  font-size: 3.2rem;
  margin-top: 2rem;
}
.wiki-content h3 {
  font-size: 2.6rem;
  margin-top: 1.5rem;
}
.wiki-content p {
  font-size: 1.8rem;
  margin-top: 1rem;
}
.wiki-content a {
  color: #ff7b5f;
  text-decoration: none;
}
.wiki-content a:hover {
  text-decoration: underline;
}
.wiki-content img {
  width: 100%;
  height: auto;
}

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