/**
* 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 #e40520;
  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: #e40520;
  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 #e40520;
  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 #e40520;
  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: #e40520;
  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 #e40520;
  outline-offset: 3px;
}

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

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

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #e40520;
  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: #e40520;
  /* &: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;
}

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: #e40520;
}

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

.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: "gothambold", 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;
}
.cta.-plain.-primary {
  color: #ffffff;
  background-color: #e40520;
}
.cta.-plain.-primary:hover {
  color: #e40520;
  background-color: #ffffff;
}
.cta.-plain.-primary:hover.-on-bg_white {
  background-color: #bdbdbd;
}
.cta.-plain.-primary:hover.-clear {
  border: 2px solid #e40520;
}
.cta.-plain.-primary-light {
  color: #ffffff;
  background-color: transparent;
}
.cta.-plain.-primary-light:hover {
  color: transparent;
  background-color: #ffffff;
}
.cta.-plain.-primary-light:hover.-on-bg_white {
  background-color: #bdbdbd;
}
.cta.-plain.-primary-light:hover.-clear {
  border: 2px solid transparent;
}
.cta.-plain.-primary-dark {
  color: #ffffff;
  background-color: transparent;
}
.cta.-plain.-primary-dark:hover {
  color: transparent;
  background-color: #ffffff;
}
.cta.-plain.-primary-dark:hover.-on-bg_white {
  background-color: #bdbdbd;
}
.cta.-plain.-primary-dark:hover.-clear {
  border: 2px solid transparent;
}
.cta.-plain.-secondary {
  color: #ffffff;
  background-color: transparent;
}
.cta.-plain.-secondary:hover {
  color: transparent;
  background-color: #ffffff;
}
.cta.-plain.-secondary:hover.-on-bg_white {
  background-color: #bdbdbd;
}
.cta.-plain.-secondary:hover.-clear {
  border: 2px solid transparent;
}
.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: #bdbdbd;
}
.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: #bdbdbd;
}
.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: #bdbdbd;
}
.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: #bdbdbd;
}
.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: #bdbdbd;
}
.cta.-plain.-tertiary-dark:hover.-clear {
  border: 2px solid transparent;
}
.cta.-plain.-black {
  color: #ffffff;
  background-color: #1d1d1b;
}
.cta.-plain.-black:hover {
  color: #1d1d1b;
  background-color: #ffffff;
}
.cta.-plain.-black:hover.-on-bg_white {
  background-color: #bdbdbd;
}
.cta.-plain.-black:hover.-clear {
  border: 2px solid #1d1d1b;
}
.cta.-plain.-white {
  color: #1d1d1b;
  background-color: #ffffff;
}
.cta.-plain.-white.-on-bg_white {
  background-color: #bdbdbd;
}
.cta.-plain.-white:hover {
  color: #ffffff;
  background-color: #1d1d1b;
}
.cta.-plain.-neutral {
  color: #e40520;
  background-color: #bdbdbd;
}
.cta.-plain.-neutral:hover {
  color: #bdbdbd;
  background-color: #e40520;
}
.cta.-outline.-primary {
  color: #e40520;
  border: 2px solid #e40520;
}
.cta.-outline.-primary:hover {
  color: #ffffff;
  background-color: #e40520;
}
.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: #e40520;
  background-color: #bdbdbd;
}
.cta.-text {
  display: flex;
  align-items: center;
  color: #e40520;
  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-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: #e40520;
  font-weight: 700;
  font-size: 22px;
}
.divider--text:before, .divider--text:after {
  content: "";
  flex: 1 1;
  border-bottom: 1px solid #e40520;
  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 #e40520;
}

/**
* 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: #e40520;
}
.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: inherit;
  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: #e40520;
}
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: inherit;
  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: inherit;
  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: inherit;
  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: inherit;
  font-weight: 500;
  font-size: 1.8rem;
  padding-bottom: 1rem;
}

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

.font-heading {
  font-family: inherit;
  font-weight: 600;
}

.font-base {
  font-family: inherit;
}

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

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

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

body {
  font-family: inherit;
  font-size: 1.6rem;
  line-height: normal;
  letter-spacing: normal;
  color: #1d1d1b;
  margin: 0;
  padding: 0;
}

a {
  color: #e40520;
}
a:hover {
  color: #b20419;
}

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;
}
.social-menu li {
  margin-right: 1.5rem;
  background: #1D1D1B;
  border-radius: 4px;
  padding: 10px;
}
.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.2s 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='%23fafafa' 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='%23fafafa' /%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='%23fafafa' 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='%23fafafa' 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='%23fafafa' /%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='%23fafafa' 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='%23fafafa' /%3E%3Cpath fill='%23fafafa' 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='%23fafafa' 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='%23fafafa' /%3E%3Cpath fill='%23fafafa' 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='%23fafafa' 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");
}

.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=");
}

.navbar {
  height: 8rem;
  padding-block: 0 !important;
  background: #ffffff;
}
.navbar.dark {
  color: #ffffff;
}
.navbar.dark h1,
.navbar.dark h2,
.navbar.dark h3,
.navbar.dark h4,
.navbar.dark h5,
.navbar.dark h6,
.navbar.dark a,
.navbar.dark li,
.navbar.dark p {
  color: #ffffff;
}
.navbar:not(.dark) {
  color: #1d1d1b;
}
.navbar:not(.dark) h1,
.navbar:not(.dark) h2,
.navbar:not(.dark) h3,
.navbar:not(.dark) h4,
.navbar:not(.dark) h5,
.navbar:not(.dark) h6,
.navbar:not(.dark) a,
.navbar:not(.dark) li,
.navbar:not(.dark) p {
  color: #1d1d1b;
}
.navbar .navbar-wrapper {
  height: 8rem;
  padding: 0;
}
.navbar .navbar-wrapper .nav-top {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: 0 3rem;
  width: 100%;
  height: 8rem;
}
@media all and (min-width: 1200px) {
  .navbar .navbar-wrapper .nav-top {
    width: auto;
    padding: 0.5rem 0;
  }
}
.navbar .mobile-toggle-cta {
  width: 6rem;
  height: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media all and (min-width: 1200px) {
  .navbar .mobile-toggle-cta {
    display: none;
  }
}
.navbar .mobile-toggle-cta .bar {
  display: none;
}
.navbar .mobile-toggle-cta .close-cross {
  display: block;
}
.navbar .mobile-toggle-cta.collapsed .bar {
  display: block;
}
.navbar .mobile-toggle-cta.collapsed .close-cross {
  display: none;
}
.navbar .bar {
  display: block;
  height: 4px;
  margin: 3px 0;
  border-radius: 4rem;
}
.navbar .bar.-top {
  width: 4rem;
  background-color: #e40520;
}
.navbar .bar.-middle {
  width: 4rem;
  background-color: #e40520;
}
.navbar .bar.-bottom {
  width: 4rem;
  background-color: #e40520;
}
.navbar .close-cross {
  width: 3rem;
  height: 3rem;
  background-repeat: no-repeat;
}
.navbar .close-cross.-black {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M29.413 3.464a2 2 0 0 0 0-2.829l-.05-.05a2 2 0 0 0-2.828 0L14.999 12.123 3.464.586a2 2 0 0 0-2.829 0l-.05.05a2 2 0 0 0 0 2.828L12.122 15 .586 26.536a2 2 0 0 0 0 2.828l.05.05a2 2 0 0 0 2.828 0l11.535-11.537 11.536 11.537a2 2 0 0 0 2.828 0l.05-.05a2 2 0 0 0 0-2.828L17.877 15 29.413 3.464Z' fill='%23000000'/%3E%3C/svg%3E");
}
.navbar .close-cross.-white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M29.413 3.464a2 2 0 0 0 0-2.829l-.05-.05a2 2 0 0 0-2.828 0L14.999 12.123 3.464.586a2 2 0 0 0-2.829 0l-.05.05a2 2 0 0 0 0 2.828L12.122 15 .586 26.536a2 2 0 0 0 0 2.828l.05.05a2 2 0 0 0 2.828 0l11.535-11.537 11.536 11.537a2 2 0 0 0 2.828 0l.05-.05a2 2 0 0 0 0-2.828L17.877 15 29.413 3.464Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.navbar .close-cross.-primary {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M29.413 3.464a2 2 0 0 0 0-2.829l-.05-.05a2 2 0 0 0-2.828 0L14.999 12.123 3.464.586a2 2 0 0 0-2.829 0l-.05.05a2 2 0 0 0 0 2.828L12.122 15 .586 26.536a2 2 0 0 0 0 2.828l.05.05a2 2 0 0 0 2.828 0l11.535-11.537 11.536 11.537a2 2 0 0 0 2.828 0l.05-.05a2 2 0 0 0 0-2.828L17.877 15 29.413 3.464Z' fill='%23225252'/%3E%3C/svg%3E");
}
.navbar .close-cross.-secondary {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M29.413 3.464a2 2 0 0 0 0-2.829l-.05-.05a2 2 0 0 0-2.828 0L14.999 12.123 3.464.586a2 2 0 0 0-2.829 0l-.05.05a2 2 0 0 0 0 2.828L12.122 15 .586 26.536a2 2 0 0 0 0 2.828l.05.05a2 2 0 0 0 2.828 0l11.535-11.537 11.536 11.537a2 2 0 0 0 2.828 0l.05-.05a2 2 0 0 0 0-2.828L17.877 15 29.413 3.464Z' fill='%23e39767'/%3E%3C/svg%3E");
}
.navbar .navbar-brand {
  margin-right: 0 !important;
}
@media all and (min-width: 1200px) {
  .navbar .navbar-brand {
    order: 2;
  }
}
.navbar #main_nav {
  order: 2;
  justify-content: flex-end;
  padding: 3rem 2.4rem;
}
@media all and (min-width: 1200px) {
  .navbar #main_nav {
    padding: 0;
  }
}
.navbar #main_nav.dark {
  color: #ffffff;
}
.navbar #main_nav.dark h1,
.navbar #main_nav.dark h2,
.navbar #main_nav.dark h3,
.navbar #main_nav.dark h4,
.navbar #main_nav.dark h5,
.navbar #main_nav.dark h6,
.navbar #main_nav.dark a,
.navbar #main_nav.dark li,
.navbar #main_nav.dark p {
  color: #ffffff;
}
.navbar #main_nav:not(.dark) {
  color: #1d1d1b;
}
.navbar #main_nav:not(.dark) h1,
.navbar #main_nav:not(.dark) h2,
.navbar #main_nav:not(.dark) h3,
.navbar #main_nav:not(.dark) h4,
.navbar #main_nav:not(.dark) h5,
.navbar #main_nav:not(.dark) h6,
.navbar #main_nav:not(.dark) a,
.navbar #main_nav:not(.dark) li,
.navbar #main_nav:not(.dark) p {
  color: #1d1d1b;
}
.navbar #main_nav.collapse {
  transition: all 600ms ease-in-out;
}
.navbar #main_nav.show {
  background-color: #e40520;
  color: #ffffff;
}
.navbar #main_nav.show .nav-link {
  color: #ffffff;
  font-size: 2.4rem;
}
@media all and (min-width: 1200px) {
  .navbar #main_nav.show {
    background-color: #ffffff;
    color: #ffffff;
  }
  .navbar #main_nav.show .nav-link {
    color: #1d1d1b;
  }
}
.navbar #main_nav .navbar-nav {
  padding: 0;
  margin-bottom: 2rem;
}
@media all and (min-width: 992px) {
  .navbar #main_nav .navbar-nav {
    margin-bottom: 0;
  }
}
.navbar #main_nav .navbar-nav .nav-item {
  list-style-type: none;
  padding: 0;
  margin-left: 1rem;
}
@media all and (min-width: 1200px) {
  .navbar #main_nav .navbar-nav .nav-item {
    border-bottom: 1px solid transparent;
  }
}
.navbar #main_nav .navbar-nav .nav-item .dropdown-item.active, .navbar #main_nav .navbar-nav .nav-item .dropdown-item:active {
  background-color: #bdbdbd;
}
.navbar #main_nav .navbar-nav .nav-item.current_page_item .dropdown-item {
  color: #e40520;
  font-weight: 500;
}
.navbar #main_nav .navbar-nav .nav-item.current_page_item .dropdown-item.active, .navbar #main_nav .navbar-nav .nav-item.current_page_item .dropdown-item:active {
  background-color: #bdbdbd;
}
.navbar #main_nav .navbar-nav .nav-item.show .dropdown-toggle {
  color: #1d1d1b;
}
.navbar #main_nav .navbar-nav .nav-item.menu-title .dropdown-item {
  font-family: "gothambold", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 3.12rem;
  color: #ffffff;
}
.navbar #main_nav .navbar-nav .nav-item .dropdown-item {
  font-family: "gothambold", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  line-height: 2.6rem;
  padding: 1rem 0.8rem;
  color: #ffffff;
  white-space: break-spaces;
}
@media all and (min-width: 992px) {
  .navbar #main_nav .navbar-nav .nav-item .dropdown-item {
    white-space: nowrap;
  }
}
.navbar #main_nav .navbar-nav .nav-item .dropdown-item:hover {
  color: #e40520;
}
.navbar #main_nav .navbar-nav .nav-item .nav-link {
  font-family: "gothambold", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: #ffffff;
  padding: 2rem 0;
}
@media all and (min-width: 1200px) {
  .navbar #main_nav .navbar-nav .nav-item .nav-link {
    color: #1d1d1b;
    font-size: 1.8rem;
    padding-top: 0;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    padding-bottom: inherit;
  }
}
.navbar #main_nav .navbar-nav .nav-item .nav-link:hover {
  color: transparent;
}
@media all and (min-width: 1200px) {
  .navbar #main_nav .navbar-nav .nav-item .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
  }
}
@media all and (min-width: 1200px) {
  .navbar #main_nav .navbar-nav .nav-item .submenu-left {
    right: 100%;
    left: auto;
  }
}
.navbar #main_nav .navbar-nav .dropdown ul {
  height: 26rem;
  left: 0;
  padding: 2rem 0;
  overflow: scroll;
  background-color: #bdbdbd;
}
@media all and (min-width: 1200px) {
  .navbar #main_nav .navbar-nav .dropdown ul {
    height: auto;
    overflow: visible;
    background-color: #ffffff;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  }
}
.navbar #main_nav .navbar-nav .dropdown ul li {
  font-weight: 300;
  border: 1px solid transparent;
}
.navbar #main_nav .navbar-nav .dropdown:last-child ul {
  right: 0;
  left: auto;
}
.navbar #main_nav.show {
  height: 100vh;
}
@media all and (min-width: 1200px) {
  .navbar #main_nav.show {
    height: auto;
  }
}
.navbar #main_nav .mobile-socials {
  position: fixed;
  bottom: 0;
  width: 90%;
}
.navbar #main_nav .-cta {
  display: flex;
  flex-flow: column;
  gap: 1rem;
}
@media all and (min-width: 1200px) {
  .navbar #main_nav .-cta {
    flex-flow: row;
  }
}
.navbar #main_nav .-cta a {
  display: block;
  margin-bottom: 2rem;
}
@media all and (min-width: 1200px) {
  .navbar #main_nav .-cta a {
    margin-bottom: 0;
  }
}
.navbar #main_nav .-cta a button {
  width: 100%;
  line-height: 0.34;
}
@media all and (min-width: 1200px) {
  .navbar #main_nav .-cta a button {
    width: auto;
  }
}
.navbar .dropdown-menu {
  border: none;
}
@media all and (min-width: 1200px) {
  .navbar .dropdown-menu {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    border: inherit;
  }
}
.navbar .dropdown-menu li {
  position: relative;
}
@media all and (min-width: 1200px) {
  .navbar .dropdown-menu li:hover a {
    color: #e40520;
    background-color: transparent;
  }
}
@media all and (min-width: 1200px) {
  .navbar .dropdown-menu li:hover .submenu {
    display: block;
  }
}
.navbar .dropdown-menu .dropdown-menu {
  margin-left: 0.7rem;
  margin-right: 0.7rem;
  margin-bottom: 0.5rem;
  padding-left: 3rem;
}
@media all and (min-width: 1200px) {
  .navbar .dropdown-menu .dropdown-menu {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
}

.sticky-top {
  transition: all 0.8s;
  background: #ffffff;
}
.sticky-top.active {
  background: #e40520;
}
.sticky-top.active .navbar .navbar-brand img.-dark {
  display: none;
}
.sticky-top.active .navbar .navbar-brand img.-light {
  display: block;
}
.sticky-top .navbar {
  background: transparent;
}
.sticky-top .navbar .navbar-brand img {
  width: 14rem;
  height: auto;
}
.sticky-top .navbar .navbar-brand img.-light {
  display: none;
}

#menupanel-search .search_all--input {
  width: 100%;
  border: 1px solid #1d1d1b;
  height: 4.8rem;
  border-radius: 0.4rem;
  padding-inline: 2rem;
}
#menupanel-search .input-group-prepend {
  position: absolute;
  top: 0;
  right: 0;
  width: 4.8rem;
  height: 4.8rem;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
#menupanel-search .input-group-prepend .search_all--submit {
  background-color: transparent;
  border: none;
}
#menupanel-search .input-group-prepend .search_all--submit:after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.23264 9.15916C3.23264 5.88603 5.88603 3.23264 9.15916 3.23264C12.4323 3.23264 15.0857 5.88603 15.0857 9.15916C15.0857 12.4323 12.4323 15.0857 9.15916 15.0857C5.88603 15.0857 3.23264 12.4323 3.23264 9.15916ZM9.15916 0C4.10069 0 0 4.10069 0 9.15916C0 14.2176 4.10069 18.3183 9.15916 18.3183C11.1047 18.3183 12.9085 17.7117 14.3919 16.6774L17.7145 20L20.0003 17.7142L16.6776 14.3915C17.7118 12.9082 18.3183 11.1045 18.3183 9.15916C18.3183 4.10069 14.2176 0 9.15916 0Z' fill='%231D1D1B'/%3E%3C/svg%3E");
}

.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 {
  background: #f2f2f2;
}
.footer .footer-navigation {
  padding: 56px 0;
}
@media (min-width: 1200px) {
  .footer .footer-navigation {
    padding: 64px 0;
  }
}
.footer .footer-navigation .footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer-navigation .footer-info .footer-logo {
  margin-bottom: 32px;
}
.footer .footer-navigation .footer-info .footer-logo .logo {
  max-width: 100%;
}
@media (min-width: 992px) {
  .footer .footer-navigation .footer-info .footer-logo .logo {
    width: 140px;
  }
}
.footer .footer-navigation .footer-info .social-menu {
  max-width: 140px;
}
.footer .footer-navigation .footer-info .footer-buttons a:last-child {
  margin-left: 20px;
  color: #1d1d1b;
}
.footer .footer-navigation .footer-column-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 42px;
}
@media (min-width: 768px) {
  .footer .footer-navigation .footer-column-wrapper {
    grid-template-columns: repeat(4, minmax(68px, 1fr));
  }
}
@media (min-width: 992px) {
  .footer .footer-navigation .footer-column-wrapper {
    grid-template-columns: repeat(5, minmax(68px, 1fr));
  }
}
.footer .footer-navigation .footer-column-wrapper .footer-column h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
}
.footer .footer-navigation .footer-column-wrapper .footer-column .footer-menu ul {
  padding: 0;
}
.footer .footer-navigation .footer-column-wrapper .footer-column .footer-menu ul li {
  list-style-type: none;
}
.footer .footer-navigation .footer-column-wrapper .footer-column .footer-menu ul li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  display: inline-block;
  color: #1d1d1b;
}
.footer .footer-navigation .footer-column-wrapper .footer-column .footer-buttons a {
  display: block;
  width: 172px;
}
.footer .footer-navigation .footer-column-wrapper .footer-column .footer-buttons a:first-child {
  margin-bottom: 16px;
}
.footer .footer-navigation .footer-column-wrapper .footer-column .footer-buttons a:last-child {
  color: #1d1d1b;
}
@media (min-width: 1440px) {
  .footer .footer-navigation .footer-column-wrapper .footer-text-column {
    display: flex;
    flex-direction: column;
    margin-left: auto;
  }
}
.footer .footer-column.hide-mobile {
  display: none;
}
@media (min-width: 768px) {
  .footer .footer-column.hide-mobile {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.footer .footer-info.hide-mobile {
  display: none;
}
@media (min-width: 992px) {
  .footer .footer-info.hide-mobile {
    display: block;
  }
}
@media (min-width: 992px) {
  .footer .footer-info.hide-desktop,
  .footer .divider--red.hide-desktop {
    display: none;
  }
}
@media (min-width: 768px) {
  .footer .footer-info .footer-buttons.hide-tablet {
    display: none;
  }
}

.copyright {
  background: #1d1d1b;
  color: #ffffff;
  padding-top: 16px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .copyright {
    padding-top: 9px;
    padding-bottom: 13px;
  }
}
.copyright .copyright-text {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .copyright .copyright-text {
    margin-bottom: 0;
  }
}
.copyright .copyright-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .copyright .copyright-container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.copyright .copyright-container .copyright-pages {
  display: flex;
}
.copyright .copyright-container .copyright-pages__second {
  margin-left: 24px;
}

.wiki-container {
  display: flex;
  flex-flow: column;
  color: #1d1d1b;
}
@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: transparent;
}

.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*/